Skip to content

Releases: scaleway/ultraviolet

@ultraviolet/[email protected]

12 Feb 11:59
3c7fdf8
Compare
Choose a tag to compare

Patch Changes

@ultraviolet/[email protected]

10 Feb 14:39
22175c5
Compare
Choose a tag to compare

Patch Changes

  • #4742 2a8b327 Thanks @matthprost! - - System Icons from @ultraviolet/icons have a change in their sizing. large became medium and a new large sizing has been created (around 24px)

    • <Button /> the prop icon, iconPosition and iconSentiment has been marked as deprecated and will be removed in future major release. You should use the icon component directly in the children of the button:
    // Before
    import { Button } from "@ultraviolet/ui";
    
    <Button icon="pencil" iconPosition="right" iconVariant="outline">
      Edit
    </Button>;
    // After
    import { Button } from "@ultraviolet/ui";
    import { PencilOutlineIcon } from "@ultraviolet/icons";
    
    <Button>
      Edit <PencilOutlineIcon />
    </Button>;
    • Fix of other legacy usages of icons into the library
  • Updated dependencies [2a8b327]:

@ultraviolet/[email protected]

10 Feb 14:39
22175c5
Compare
Choose a tag to compare

Patch Changes

  • #4742 2a8b327 Thanks @matthprost! - - System Icons from @ultraviolet/icons have a change in their sizing. large became medium and a new large sizing has been created (around 24px)

    • <Button /> the prop icon, iconPosition and iconSentiment has been marked as deprecated and will be removed in future major release. You should use the icon component directly in the children of the button:
    // Before
    import { Button } from "@ultraviolet/ui";
    
    <Button icon="pencil" iconPosition="right" iconVariant="outline">
      Edit
    </Button>;
    // After
    import { Button } from "@ultraviolet/ui";
    import { PencilOutlineIcon } from "@ultraviolet/icons";
    
    <Button>
      Edit <PencilOutlineIcon />
    </Button>;
    • Fix of other legacy usages of icons into the library
  • Updated dependencies [2a8b327]:

@ultraviolet/[email protected]

10 Feb 14:39
22175c5
Compare
Choose a tag to compare

Patch Changes

  • #4742 2a8b327 Thanks @matthprost! - - System Icons from @ultraviolet/icons have a change in their sizing. large became medium and a new large sizing has been created (around 24px)

    • <Button /> the prop icon, iconPosition and iconSentiment has been marked as deprecated and will be removed in future major release. You should use the icon component directly in the children of the button:
    // Before
    import { Button } from "@ultraviolet/ui";
    
    <Button icon="pencil" iconPosition="right" iconVariant="outline">
      Edit
    </Button>;
    // After
    import { Button } from "@ultraviolet/ui";
    import { PencilOutlineIcon } from "@ultraviolet/icons";
    
    <Button>
      Edit <PencilOutlineIcon />
    </Button>;
    • Fix of other legacy usages of icons into the library

@ultraviolet/[email protected]

10 Feb 14:39
22175c5
Compare
Choose a tag to compare

Patch Changes

  • #4742 2a8b327 Thanks @matthprost! - - System Icons from @ultraviolet/icons have a change in their sizing. large became medium and a new large sizing has been created (around 24px)

    • <Button /> the prop icon, iconPosition and iconSentiment has been marked as deprecated and will be removed in future major release. You should use the icon component directly in the children of the button:
    // Before
    import { Button } from "@ultraviolet/ui";
    
    <Button icon="pencil" iconPosition="right" iconVariant="outline">
      Edit
    </Button>;
    // After
    import { Button } from "@ultraviolet/ui";
    import { PencilOutlineIcon } from "@ultraviolet/icons";
    
    <Button>
      Edit <PencilOutlineIcon />
    </Button>;
    • Fix of other legacy usages of icons into the library
  • Updated dependencies [2a8b327]:

@ultraviolet/[email protected]

06 Feb 13:39
d2ea473
Compare
Choose a tag to compare

Patch Changes

@ultraviolet/[email protected]

06 Feb 13:39
d2ea473
Compare
Choose a tag to compare

Patch Changes

@ultraviolet/[email protected]

06 Feb 13:39
d2ea473
Compare
Choose a tag to compare

Patch Changes

@ultraviolet/[email protected]

06 Feb 13:39
d2ea473
Compare
Choose a tag to compare

Patch Changes

@ultraviolet/[email protected]

05 Feb 10:36
bbf179d
Compare
Choose a tag to compare

Minor Changes

  • #4734 1b5dd12 Thanks @JulienSaguez! - add defaultValue prop for initial value and value for change value locally of searchinput

Patch Changes

  • #4729 fc68c84 Thanks @matthprost! - Fix <Dialog /> component to have correct icon when having warning and danger sentiment

  • #4731 112031d Thanks @matthprost! - Fix <BarChart /> and <LineChart /> colors for legends and some other bugs