Skip to content

Releases: scaleway/ultraviolet

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Major Changes

  • #5758 bc629aa Thanks @etienne-scaleway! - ! POTENTIAL BREAKING CHANGES !
    Fixed the maxLength prop on TagList. This prop was previously implemented incorrectly and would only reduce the threshold by one when the total length exceeded maxLength.
    This change might affect the number of visible tags, particularly if you have many long tags (the default maxLength is set to 600 characters) or if you have specified a custom maxLength.

Minor Changes

  • #5762 440d5bb Thanks @lisalupi! - SelectableCardOptionGroup and Toaster migrate missing sub-components to vanilla extract

Patch Changes

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Patch Changes

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Patch Changes

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Patch Changes

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Minor Changes

Patch Changes

@ultraviolet/[email protected]

06 Nov 14:39
65fe1f7

Choose a tag to compare

Pre-release

Patch Changes

@ultraviolet/[email protected]

03 Nov 14:12
8265fe9

Choose a tag to compare

Pre-release

Minor Changes

  • #5756 4386617 Thanks @lisalupi! - Refactor components Key, SelectableCardGroup and SelectableCardOptionGroup to use vanilla-extract instead of Emotion and finish LineChart migration

Patch Changes

@ultraviolet/[email protected]

03 Nov 14:12
8265fe9

Choose a tag to compare

Pre-release

Minor Changes

  • #5747 2eea0ad Thanks @lisalupi! - To replace Global from Emotion and normalize from @ultraviolet/ui, you can now directly import the style as CSS to use in your app:

    Before:

    import { Global } from '@emotion/react'
    import { normalize } from '@ultraviolet/ui'
    import { ThemeProvider } from '@ultraviolet/themes'
    
    const App = () => (
        <ThemeProvider theme={theme}>
            <Global styles={css`${normalize()}`}>
            <MyApp />
        </ThemeProvider>
    )

    After :

    import { ThemeProvider } from "@ultraviolet/themes";
    import "@ultraviolet/themes/global";
    
    const App = () => (
      <ThemeProvider theme={theme}>
        <MyApp />
      </ThemeProvider>
    );

@ultraviolet/[email protected]

03 Nov 14:12
8265fe9

Choose a tag to compare

Pre-release

Minor Changes

  • #5743 6683a8d Thanks @lisalupi! - Refaactor component Navigation to use vanilla-extract instead of Emotion

  • #5755 eecead1 Thanks @lisalupi! - Refactor component SteppedListCard to use vanilla-extract instead of Emotion

  • #5751 4c52634 Thanks @lisalupi! - Refactor component OrderSummary to use vanilla-extract instead of Emotion

  • #5752 137020b Thanks @lisalupi! - Refactor component Plans to use vanilla-extract instead of Emotion

  • #5737 62e6d7c Thanks @lisalupi! - Refactor component EstimateCost to use vanilla extract instead of Emotion

Patch Changes

@ultraviolet/[email protected]

03 Nov 14:12
8265fe9

Choose a tag to compare

Pre-release

Patch Changes