Skip to content

Commit

Permalink
🔖Release [email protected] (#3443)
Browse files Browse the repository at this point in the history
also released [email protected] and [email protected] with only dependency updates
  • Loading branch information
oddvernes authored May 14, 2024
1 parent 916bbb6 commit 9190f32
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 5 deletions.
24 changes: 24 additions & 0 deletions packages/eds-core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.38.0] - 2024-05-14

### Added

-`DatePicker`: Enable custom date-formats in the input segments when they are not focused. Also added support for custom locale by @yusijs in https://github.com/equinor/design-system/pull/3415

### Changed

- `🧑‍💻 Autocomplete`: improved type safety for autocomplete when `optionLabel` is required by @FredrikMWold in https://github.com/equinor/design-system/pull/3408
- 🚸 `Autocomplete`: implement native `popover` for better compatability with `Dialog` by @oddvernes in https://github.com/equinor/design-system/pull/3416
- ⬆️ Updated prod dependencies by @oddvernes in https://github.com/equinor/design-system/pull/3425

### Fixed

- 🐛 `Autocomplete` "Select all" toggle causing crashes under certain circumstances with controlled `Autocomplete` by @mhwaage in https://github.com/equinor/design-system/pull/3428
- 🐛 `Autocomplete` when toggling "Select all" or clicking the "clear" button, disabled items are now left unchanged. The "x/y selected" text in the input has changed "y" from "total non-disabled items length" to "all items length" by @oddvernes in https://github.com/equinor/design-system/pull/3429
- 🐛 `Autocomplete`: dragging scrollbar and then switching to using up/down arrow navigation should now work as expected by @oddvernes in https://github.com/equinor/design-system/pull/3441

### Notes

Due to the introduction of the native `popover` attribute, downstream unit tests involving eds `Autocomplete` may fail due to Jest/jsDom not having added support for the popover api yet. The easy solution to this is to add the following lines to your `jest.setup.ts` or alternatively within the test itself:
`HTMLElement.prototype.showPopover = jest.fn()`
`HTMLElement.prototype.hidePopover = jest.fn()`

## [0.37.0] - 2024-04-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/eds-core-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/eds-core-react",
"version": "0.37.0",
"version": "0.38.0",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
5 changes: 3 additions & 2 deletions packages/eds-lab-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased] - 2024-03-12
## [0.7.7] - 2024-05-14

### Changed

- 🗑️ `DatePicker`: We removed import of CSS. You need to require the CSS file from `react-datepicker`. We will continue providing the style overrides encapsulated in our DatePicker component abstraction.
- 🗑️ `DatePicker`: We removed import of CSS. You need to require the CSS file from `react-datepicker`. In any event, this component should be considered deprecated in favour of `DatePicker` in `@equinor/eds-core-react`. by @torleifhalseth in https://github.com/equinor/design-system/pull/3346
- ⬆️ Updated prod dependencies by @oddvernes in https://github.com/equinor/design-system/pull/3425

## [0.7.6] - 2024-03-01

Expand Down
2 changes: 1 addition & 1 deletion packages/eds-lab-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/eds-lab-react",
"version": "0.7.6",
"version": "0.7.7",
"description": "The lab for the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
6 changes: 6 additions & 0 deletions packages/eds-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.5] - 2024-05-14

### Changed

- ⬆️ Updated prod dependencies by @oddvernes in https://github.com/equinor/design-system/pull/3425

## [0.8.4] - 2024-02-09

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/eds-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/eds-utils",
"version": "0.8.4",
"version": "0.8.5",
"description": "Utility functions and hooks for the Equinor Design System",
"sideEffects": false,
"type": "module",
Expand Down

0 comments on commit 9190f32

Please sign in to comment.