Skip to content

Releases: equinor/design-system

eds-core-react@0.10.1

15 Apr 13:40
Compare
Choose a tag to compare

[0.10.1] - 2021-04-15

Fixed 🐛

  • Missing typescript suggestions on property placement (#1229)
  • Crashing Tooltip component when refreshing using SSR (#1230)

eds-core-react@0.10.0

14 Apr 11:57
469ed54
Compare
Choose a tag to compare

[0.10.0] - 2021-04-14

Added ✨

  • New placement property on Menu to define placement of opened Menu. List of available values here (#952)
  • New anchorEl property on Popover. Use this in combination with ref on anchor and open on Popover (#673)
  • New enterDelay property on Tooltip to delay open (#1154)
  • Tooltip can now be closed on global ESC keypress (#1195)
  • Tooltip can now be used on td elements (#984)

Changed 📓

  • Menu, Popover and Tooltip
  • Streamlined close logic for
    • Menu, Popover and Scrim (#1175)
  • Menu property anchorEl changed from required to optional (#1193)

Fixed 🐛

  • Missing focus frame on Breadcrumbs (#1134)
  • Missing props table for Menu in Storybook (#1164)
  • Missing role on Banner(#1178)
  • Clarified use of Banner.Actions in Storybook (#1188)
  • Missing focus frame on Typography links (#1203)
  • Missing disabled colours on TextField (#1161)
  • Wrong offset on Button focus frame (#1218)

Breaking changes ⚠️

  • Placement values in Tooltip and Popover are changed to match popperJS. List of available values here
  • Popover.Anchor deprecated, please use the anchorEl property on Popover instead
  • Removed open property on Tooltip as it was not working as expected

Deprecated 🗑

  • Popover.Anchor deprecated due to streamlined popup logic

eds-core-react@0.9.2

21 Mar 11:09
5c2d225
Compare
Choose a tag to compare

[0.9.2] - 2021-03-19

Fixed

  • Bumped eds-tokens version

eds-tokens@0.5.7

21 Mar 11:10
Compare
Choose a tag to compare

[0.5.7] - 2021-03-19

Fixed

  • Missing dist folder 🙈

eds-tokens@0.5.6

17 Mar 11:26
d5b5a4d
Compare
Choose a tag to compare

[0.5.6] - 2021-03-17

Added ✨

  • Support for both dashed and solid style in the Outline type

Changed 📓

  • Preparing the ground for theming (#1118, #401, #882, #1136, #1129)
    • Added CSS variables for the rgba value in tokens as a first and simple step for theming support

eds-core-react@0.9.0

17 Mar 11:26
d5b5a4d
Compare
Choose a tag to compare

[0.9.0] - 2021-03-17

Added ✨

  • TextField (#1107, #1108, #1111, #1115, #1131, #1128)
    • Input and Label is now available as separate components. This will make it easier to customize for more advanced patterns or for making your own custom components for specialized use-cases.
    • TextField now support unit inside the input field. This is useful for e.g. currency and units of measurement.

Changed 📓

  • Textfield
    • Improvements when using the Icon in the inputIcon and helperIcon props. This makes the behaviour here more similar to the rest of the EDS library. (#1130)
    • Internal fixes and optimization

Fixed 🐛

  • Textfield
    • Fixed missing disabled colors (#1160)

eds-tokens@0.5.5

22 Feb 09:50
1d01345
Compare
Choose a tag to compare

[0.5.5] - 2021-02-22

Added

  • New background token: background__semitransparent (#1100)

eds-core-react@0.8.5

22 Feb 09:50
1d01345
Compare
Choose a tag to compare

[0.8.5] - 2021-02-22

Added ✨

  • Progress indicators (#1090, #1098)
    • Circular, Star and Dots now have a size property for adjusting size.
    • Circular and Dots now have a color property following the same color scheme as our other components.
    • Refactored as compound components. You can now find the progress indicators under Progress, such as Progress.Dots, Progress.Star etc..
      • The individual LinearProgress, CircularProgress, StarProgress & DotProgress will be removed at a later time
  • Accordion.Header now has an onToggle callback to help defer rendering of content when Accordion are opened/closed (#1121)

Fixed 🐛

  • Adjusted text and icon placements inside Button so that Icon (svg) will always align to the sides regardless of button width (#1085)
  • Fixed Menu story where content would skew the MenuItem height (#1104)
  • Progress indicators (#1090, #1098)
    • Adjustments so that Circular and Dots can be used inside Button
    • Cleaned up component so that they are pure svgs now (except for Linear)

Changed 📓

  • Cleaned up sub-component naming, so no more repeating names such as, Card.CardActions or Menu.MenuSection (#1083)
    • The old sub-component names are still there but will be removed at a later time
  • Updated our storybook stories to better reflect usages of components with sub-components (#1094)

Deprecated

  • Progress indicators (#1090)
    • Removed variant property on Dots (replaced by color property)
  • Button do no longer force size on nested Icon

eds-icons@0.6.2

21 Jan 14:58
d984c27
Compare
Choose a tag to compare

[0.6.2] - 2021-01-21

Fixed 🐛

  • Icon name typo for icon close_cricle_outlined -> close_circle_outlined (#993)

eds-core-react@0.8.4

21 Jan 14:54
7480dc8
Compare
Choose a tag to compare

[0.8.4] - 2021-01-21

Added ✨

  • Active, error and hover states in Table (#940)
  • Support for toggling sortable Table column styling. New property sort on Table.Cell (#983)
  • Sticky Table head (#1031). New property sticky on Table.Head

Fixed 🐛

  • Tests for Table (#297)
  • Missing primary color on Button variant="ghost_icon" (#986)
  • Hover bug on touch devices (#987)
  • Icon bug in Storybook when changing name (#955)
  • SingleSelect items are properly updated when changed after initial render (#1064)

Changed 📓

  • Improved Table.Cell (#997)
  • Refactored Table to use React.forwardRef (#1007)

Deprecated

  • Table.Cell as property on is removed. This had to be done due to technical limitations with new features. Table.Cell will now automatically render th or td based on "parent" element.