Releases: equinor/design-system
Releases · equinor/design-system
eds-data-grid-react@0.6.2
eds-core-react@0.41.3
[0.41.3] - 2024-08-28
Changed
- ✨
Popover
: implement nativepopover
. This also deprecates thewithinPortal
prop. by @oddvernes in #3601 - 🔥
Autocomplete
: remove deprecateddisablePortal
prop by @oddvernes in #3603
Fixed
eds-core-react@0.41.2
[0.41.2] - 2024-08-26
Changed
- ✨
DatePicker
: year picker is now multipage by @arkadiy93 in #3571
New Contributors
- @arkadiy93 made their first contribution in #3571
eds-core-react@0.41.1
[0.41.1] - 2024-08-20
Changed
- 🧑💻
Button.Toggle
: allow "wrapped" Button as child by @oddvernes in #3590
Fixed
- 🐛
Snackbar
: fixed "auto hide" timer restarting every render by @oddvernes in #3591
eds-core-react@0.41.0
[0.41.0] - 2024-08-14
Fixed
- 🐛
DateRangePicker
: Added missing{...props}
spread that prevented attaching eventlisteners etc to this component by @oddvernes in #3584 - 🐛
Autocomplete
: fixed an edge case where it would crash when all items in filter are disabled by @mhwaage in #3565 - 🐛
Autocomplete
: fixed a bug where it was unclickable insideMenu
by @oddvernes in #3583 - 🩹
Tabs
: Fix firefox error message caused by invalid value for scrollbar-width by @benjamin-lyon in #3578 - ♿️
Menu
: added missingrole="group"
toMenu.Section
by @oddvernes in #3583
Changed
- 💄
Tooltip
: implement nativepopover
by @oddvernes in #3575 - 💄
Snackbar
: implement nativepopover
by @oddvernes in #3577 - 💄
Menu
: implement nativepopover
by @oddvernes in #3583 - ⬆️ Updated dependencies by @oddvernes in #3579
New Contributors
- @benjamin-lyon made their first contribution in #3578
eds-core-react@0.40.1
[0.40.1] - 2024-07-10
Fixed
Changed
- 🧑💻
Icon
: improve icon type definition by making it a descriminated union onname
anddata
by @FredrikMWold in #3547 - ⬆️ Updated prod dependencies by @oddvernes in #3554
eds-core-react@0.40.0
[0.40.0] - 2024-06-21
Fixed
- 💄
DatePicker
: use correct token for text color by @oddvernes in #3520 - 🐛
DatePicker
: exportDatePickerProps
type by @oddvernes in #3538 - 🐛
Autocomplete
: reverted changes from #3408 (conditionaloptionLabel
type) due to typescript issues when wrapping the component. Also madeoptions
typereadonly
by @oddvernes in #3515 - 🚸
Autocomplete
: return focus to input after pressing 'clear' button by @oddvernes in #3531 - 🐛
Autocomplete
: crash triggered by opening dropdown using keyboard if all items are disabled by @oddvernes in #3534
Added
- 🧑💻
Datepicker
type: allow passing standard html attributes by @oddvernes in #3509 - ✨
Datepicker
/DateRangepicker
: addedhideClearButton
prop, and also hide clear button if no date is set by @oddvernes in #3537
eds-data-grid-react@0.6.1
[0.6.1] - 2024-06-04
Fixed
- 🐛 package.json: restored "engine" requirements to old values
eds-data-grid-react@0.6.0
[0.6.0] - 2024-06-04
Added
- ✨Expose
enableSubRowSelection
fromreact-table
and make it disabled by default by @ana-cepuran in #3472
New Contributors
- @ana-cepuran made their first contribution in #3472
eds-data-grid-react@0.5.0
[0.5.0] - 2024-05-27
Added
- ✨ Added possibility for custom filters by @yusijs in #3359
- ✨ Expose
createColumnHelper
fromreact-table
by @magnh in #3451 - ✨ Allow enabling/disabling multi row selection with
enableMultiRowSelection
by @mhwaage in #3355
Changed
- 📌 Bump required styled-components version to 5.1 by @oddvernes in #3459
- 🚸✨ Align selection state props with react table by @magnh in #3456
Details of #3456:
- Warn developer in developer environment when using deprecated props.
- Rename
selectedRows
torowSelectionState
and deprecatedselectedRows
. - Rename
rowSelection
toenableRowSelection
and deprecatedrowSelection
. - Add
onRowClick
andonCellClick
handlers as props.