Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖Release [email protected], [email protected], [email protected] #3265

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions packages/eds-core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ 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.36.0] - 2024-02-09

### Added

- ✨ `Autocomplete`: Implemented "Select all" functionality, enabled with `allowSelectAll` prop by @yusijs in https://github.com/equinor/design-system/pull/3245
- 💄 `Slider`: option to render "value label" below the track with new `labelBelow` prop by @oddvernes in https://github.com/equinor/design-system/pull/3227

### Fixed

- 🐛 `Slider`: `onChangeCommitted` was not triggered by touch input by @oddvernes in https://github.com/equinor/design-system/pull/3244
- 🐛 `Slider`: fixed bug in Firefox where "value label" did not show on hover by @oddvernes in https://github.com/equinor/design-system/pull/3224
- 🐛 `Snackbar`: A missing check in the autohide timer caused `onClose` to be called twice by @oddvernes and @yusijs in https://github.com/equinor/design-system/pull/3241
- 🐛 `Autocomplete`: with `multiple`, `readOnly` was still accessible when clicking in the input. `readOnly` was still accessible in both modes when using keyboard arrow buttons by @oddvernes in https://github.com/equinor/design-system/pull/3216

### Changed

- 💄`Slider`: design adjustments to the "value label": changed color, reduced padding, removed "arrow" and moved closer to the "thumb" by @oddvernes in https://github.com/equinor/design-system/pull/3227
- 💄 `TextField`/`InputWrapper`: allow line break character to work in `HelperText` by @oddvernes in https://github.com/equinor/design-system/pull/3233
- 🔧 Updated `babel` browserlist from "defaults" to "last 2 versions of chrome/edge/firefox/safari". This reduces build size significantly and removes all the babel runtime helpers. by @oddvernes in https://github.com/equinor/design-system/pull/3219
- 🚸 `Autocomplete` ux-changes: input cleared on blur, added "no options" dropdown and `noOptionsText` prop by @oddvernes in https://github.com/equinor/design-system/pull/3216

## [0.35.1] - 2023-12-21

### Fixed
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.35.1",
"version": "0.36.0",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
6 changes: 6 additions & 0 deletions packages/eds-lab-react/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.7.5] - 2024-02-09

### Changed

- 🔧 Updated `babel` browserlist from "defaults" to "last 2 versions of chrome/edge/firefox/safari". This reduces build size significantly and removes all the babel runtime helpers. by @oddvernes in https://github.com/equinor/design-system/pull/3219

## [0.7.4] - 2023-12-13

### Changed
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.4",
"version": "0.7.5",
"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.4] - 2024-02-09

### Changed

- 🔧 Updated `babel` browserlist from "defaults" to "last 2 versions of chrome/edge/firefox/safari". This reduces build size significantly and removes all the babel runtime helpers. by @oddvernes in https://github.com/equinor/design-system/pull/3219

## [0.8.3] - 2023-10-20

### Fixed
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.3",
"version": "0.8.4",
"description": "Utility functions and hooks for the Equinor Design System",
"sideEffects": false,
"type": "module",
Expand Down
Loading