Skip to content
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
18 changes: 18 additions & 0 deletions packages/eds-core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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.43.0] - 2025-01-17

### Fixed

- 🐛`Tooltip`: fixed an issue that caused the Tooltip to flicker in some cases by @oddvernes in https://github.com/equinor/design-system/pull/3695
- 🐛`Icon`: icon now uses deterministically generated id internally to work better with server side rendering by @sebastianvitterso in https://github.com/equinor/design-system/pull/3706

### Added

- ✨`Tooltip`: Allow defining custom root element for tooltips portal by setting the new `rootElement` prop on the `EdsProvider` by @yusijs in https://github.com/equinor/design-system/pull/3696
- 🧑‍💻`Tooltip`: added `eds-tooltip` class for easier access to override styling by @oddvernes in https://github.com/equinor/design-system/pull/3700

### Changed

- 🧑‍💻components are `'use client'` by default for better ssr support (this only applies to non-composite components) by @oddvernes in https://github.com/equinor/design-system/pull/3703
- ⬆️ updated dev dependencies by @oddvernes in https://github.com/equinor/design-system/pull/3713
- ⬆️ updated prod dependencies by @oddvernes in https://github.com/equinor/design-system/pull/3715

## [0.42.5] - 2024-11-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.42.5",
"version": "0.43.0",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
6 changes: 6 additions & 0 deletions packages/eds-data-grid-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] - 2025-01-17

### Added

- ✨ Expose `onRowDoubleClick` event by @oleksiishv in https://github.com/equinor/design-system/pull/3718

## [0.7.4] - 2024-11-15

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/eds-data-grid-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/eds-data-grid-react",
"version": "0.7.4",
"version": "0.7.5",
"description": "A feature-rich data-grid written in React, implementing the Equinor Design System",
"license": "MIT",
"types": "dist/types/index.d.ts",
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.6] - 2025-01-17

### Changed

- `useId`: changed from randomly generated number to deterministic counter in order to support server side rendering by @sebastianvitterso in https://github.com/equinor/design-system/pull/3706

## [0.8.5] - 2024-05-14

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