Skip to content

Commit

Permalink
🔖Release eds-core-react@0.21.0 (#2465)
Browse files Browse the repository at this point in the history
* 🔖Update package.json with dev release

* 🔖Utils: Update package.json with dev release

* 📝 Updated changelogs

* little formatting fixing

* 🔖Update version for release

* Updated utils readme

* Changelogs updated dates
  • Loading branch information
oddvernes authored Sep 8, 2022
1 parent af85454 commit b67c8ae
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
23 changes: 23 additions & 0 deletions packages/eds-core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ 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.21.0] - 2022-09-08

### Fixed
- 💄 Fixes to make sure both `style` and `className` are applied to outermost element (changes to `switch`, `NativeSelect`, `Radio`, `Checkbox`, `Search`, `Autocomplete`) by @oddvernes in https://github.com/equinor/design-system/pull/2367
- 🐛 Popover: changed to `overflow: auto` by @oddvernes in https://github.com/equinor/design-system/pull/2431

### Added
-`Autocomplete`: Added disable clear button prop (`hideClearButton`) by @Simrayz in https://github.com/equinor/design-system/pull/2378
- ✨ Added `width` prop to `SideSheet` by @martalalik in https://github.com/equinor/design-system/pull/2399
-`Button` is now a proper overridable component (can be rendered as another component/element-type with the `as` prop and typescript will only allow valid props for that component) by @oddvernes in https://github.com/equinor/design-system/pull/2410
- ✨ Make `Typography` an overridable component by @oddvernes in https://github.com/equinor/design-system/pull/2432
- ✨ Make `Breadcrumb` an overridable component by @oddvernes in https://github.com/equinor/design-system/pull/2442
- ✨ Created `Button.Group` wrapper component by @martalalik in https://github.com/equinor/design-system/pull/2420

### Changed
- ♻️ Replaced `popperjs` with `floating-UI` in `Tooltip` by @oddvernes in https://github.com/equinor/design-system/pull/2377
- ♻️ Replaced `popperjs` with `floating-UI` in `Popover` by @oddvernes in https://github.com/equinor/design-system/pull/2384
- ♻️ Replaced `popperjs` with `floating-UI` in `Menu` by @oddvernes in https://github.com/equinor/design-system/pull/2405
- ♻️ Replaced `popperjs` with `floating-UI` in `Autocomplete` by @oddvernes in https://github.com/equinor/design-system/pull/2460
- 📝 Updated `Typography` documentation in storybook by @martalalik in https://github.com/equinor/design-system/pull/2247
- 🗑️ `Card`: removed logic to style cursor based on `onClick` listener being present by @oddvernes in https://github.com/equinor/design-system/pull/2436
- 💄 `Topbar`: inline padding reduced from 40 to 24px by @oddvernes in https://github.com/equinor/design-system/pull/2451

## [0.20.4] - 2022-06-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.20.4",
"version": "0.21.0",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
11 changes: 11 additions & 0 deletions packages/eds-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.3.0] - 2022-09-08

### Added
- ✨ Added `mergeRefs` utility function, this replaces `useCombinedRefs` and works the same way, except it doesn't internally memoize the ref, by @oddvernes in https://github.com/equinor/design-system/pull/2381
- ✨ Added OverridableComponent type by @oddvernes in https://github.com/equinor/design-system/pull/2410

### Removed
- 🗑️ `useCombinedRefs` was removed/renamed to `mergeRefs` by @oddvernes in https://github.com/equinor/design-system/pull/2381

### Deprecated
- 🗑️ Marked `usePopper` as Deprecated by @oddvernes in https://github.com/equinor/design-system/pull/2463
## [0.2.3] - 2022-06-24

### 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.2.3",
"version": "0.3.0",
"description": "Utility functions and hooks for the Equinor Design System",
"sideEffects": false,
"main": "dist/eds-utils.cjs.js",
Expand Down

0 comments on commit b67c8ae

Please sign in to comment.