Skip to content

Commit 57d3c66

Browse files
chore: release main (#4166)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9e89e75 commit 57d3c66

7 files changed

Lines changed: 63 additions & 6 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"packages/eds-core-react": "1.1.0",
2+
"packages/eds-core-react": "2.0.0",
33
"packages/eds-data-grid-react": "1.1.0",
44
"packages/eds-icons": "1.0.1",
55
"packages/eds-lab-react": "0.9.0",
6-
"packages/eds-tokens": "1.1.4",
7-
"packages/eds-utils": "1.1.0"
6+
"packages/eds-tokens": "2.0.0",
7+
"packages/eds-utils": "2.0.0"
88
}

packages/eds-core-react/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0](https://github.com/equinor/design-system/compare/eds-core-react@v1.1.0...eds-core-react@v2.0.0) (2025-11-06)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200))
14+
* **eds-tokens,eds-core-react:** move typography css foundation and remove core style ([#4173](https://github.com/equinor/design-system/issues/4173))
15+
* **eds-core-react, eds-utils:** Improve onChange handler typing for TextField component and remove multiline support ([#4134](https://github.com/equinor/design-system/issues/4134))
16+
17+
### ✨ Added
18+
19+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200)) ([7621866](https://github.com/equinor/design-system/commit/7621866194f67d4118167285e9209c5a5194217c))
20+
* **eds-tokens,eds-core-react:** move typography css foundation and remove core style ([#4173](https://github.com/equinor/design-system/issues/4173)) ([0a20351](https://github.com/equinor/design-system/commit/0a20351e68d61334f877bc6ef0a05fcfc1c99c95))
21+
22+
23+
### 🐛 Fixed
24+
25+
* Corrected tsconfig.build.json to ensure proper type declaration structure ([#4172](https://github.com/equinor/design-system/issues/4172)) ([f1d07e2](https://github.com/equinor/design-system/commit/f1d07e24298a939d22a7832c8d1107f8d8d0a7de))
26+
* **eds-core-react, eds-utils:** Improve onChange handler typing for TextField component and remove multiline support ([#4134](https://github.com/equinor/design-system/issues/4134)) ([72c5f78](https://github.com/equinor/design-system/commit/72c5f78c1eba95beeb1e4363b3808168f3683745))
27+
* **eds-core-react:** 🐛 Autocomplete - should start at selected index and preserve scroll position ([#3996](https://github.com/equinor/design-system/issues/3996)) ([d5d51a7](https://github.com/equinor/design-system/commit/d5d51a790d5f2fe98c747e7ff9b37041997d44c6))
28+
* update stories to use callback refs instead ([#4195](https://github.com/equinor/design-system/issues/4195)) ([3492802](https://github.com/equinor/design-system/commit/34928027b8b486e2d22fc41cae6bdd8a50693da6))
29+
30+
31+
### 🔧 Chores
32+
33+
* ensure index.json is properly overwritten during Storybook deployment ([#4179](https://github.com/equinor/design-system/issues/4179)) ([3950502](https://github.com/equinor/design-system/commit/395050206c908dd144e906b581242d6499388748))
34+
835
## [1.1.0](https://github.com/equinor/design-system/compare/eds-core-react@v1.0.2...eds-core-react@v1.1.0) (2025-10-29)
936

1037

packages/eds-core-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/eds-core-react",
3-
"version": "1.1.0",
3+
"version": "2.0.0",
44
"description": "The React implementation of the Equinor Design System",
55
"sideEffects": [
66
"**/*.css"

packages/eds-tokens/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0](https://github.com/equinor/design-system/compare/eds-tokens@v1.1.4...eds-tokens@v2.0.0) (2025-11-06)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200))
14+
* **eds-tokens,eds-core-react:** move typography css foundation and remove core style ([#4173](https://github.com/equinor/design-system/issues/4173))
15+
16+
### ✨ Added
17+
18+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200)) ([7621866](https://github.com/equinor/design-system/commit/7621866194f67d4118167285e9209c5a5194217c))
19+
* **eds-tokens,eds-core-react:** move typography css foundation and remove core style ([#4173](https://github.com/equinor/design-system/issues/4173)) ([0a20351](https://github.com/equinor/design-system/commit/0a20351e68d61334f877bc6ef0a05fcfc1c99c95))
20+
821
## [1.1.4](https://github.com/equinor/design-system/compare/eds-tokens@v1.1.3...eds-tokens@v1.1.4) (2025-10-29)
922

1023

packages/eds-tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/eds-tokens",
3-
"version": "1.1.4",
3+
"version": "2.0.0",
44
"description": "Design tokens for the Equinor Design System",
55
"type": "module",
66
"exports": {

packages/eds-utils/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0](https://github.com/equinor/design-system/compare/eds-utils@v1.1.0...eds-utils@v2.0.0) (2025-11-06)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200))
14+
* **eds-core-react, eds-utils:** Improve onChange handler typing for TextField component and remove multiline support ([#4134](https://github.com/equinor/design-system/issues/4134))
15+
16+
### ✨ Added
17+
18+
* **eds-core-react, eds-tokens:** add spacing foundation variables, fix names in old variables and remove density specific spacing variables. eds-tokens package is now a peerDependency in eds-core-react to support using the new variables. ([#4200](https://github.com/equinor/design-system/issues/4200)) ([7621866](https://github.com/equinor/design-system/commit/7621866194f67d4118167285e9209c5a5194217c))
19+
20+
21+
### 🐛 Fixed
22+
23+
* **eds-core-react, eds-utils:** Improve onChange handler typing for TextField component and remove multiline support ([#4134](https://github.com/equinor/design-system/issues/4134)) ([72c5f78](https://github.com/equinor/design-system/commit/72c5f78c1eba95beeb1e4363b3808168f3683745))
24+
825
## [1.1.0](https://github.com/equinor/design-system/compare/eds-utils@v1.0.1...eds-utils@v1.1.0) (2025-10-29)
926

1027

packages/eds-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/eds-utils",
3-
"version": "1.1.0",
3+
"version": "2.0.0",
44
"description": "Utility functions and hooks for the Equinor Design System",
55
"type": "module",
66
"sideEffects": false,

0 commit comments

Comments
 (0)