Skip to content

Commit

Permalink
πŸ”– Release eds-core-react@0.26.0, eds-lab-react@0.6.0, eds-utils@0.7.0 (…
Browse files Browse the repository at this point in the history
…#2635)

* πŸ”–πŸ“ Added changelogs & bumped versions

* correcting documentation

* updated changelogs
  • Loading branch information
oddvernes authored Nov 4, 2022
1 parent 883de9a commit 6af17b9
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 5 deletions.
17 changes: 17 additions & 0 deletions packages/eds-core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.26.0] - 2022-11-04

### Added

- ✨ Added `SideBar` component by @oddvernes in https://github.com/equinor/design-system/pull/2614
- 🚸 Button: `aria-disabled` now adds "disabled" styles by @denektenina in https://github.com/equinor/design-system/pull/2624

### Changed

- ♿️ `Tooltip` better announced by screen readers by @martalalik in https://github.com/equinor/design-system/pull/2596
- πŸ’„ `TopBar.Header` Changed gap to 12px (from from 24px) by @martalalik in https://github.com/equinor/design-system/pull/2623
- ✨ Replaced unnecessary occurrences of `useLayoutEffect` with `useEffect` for better ssr support by @oddvernes in https://github.com/equinor/design-system/pull/2631

### Fixed

- πŸ› `Textfield`: fixed missing id on helpertext for aria-labelledby by @oddvernes in https://github.com/equinor/design-system/pull/2639

## [0.25.0] - 2022-10-19

### 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.25.0",
"version": "0.26.0",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ It has a toggleable collapsed and expanded state. This is an adaptation of the [
</ul>

```tsx
import { SideBar, SidebarLinkProps } from '@equinor/eds-lab-react'
import { SideBar, SidebarLinkProps } from '@equinor/eds-core-react'
const menuItemsInitial: SidebarLinkProps[] = [
{
name: 'Home',
Expand Down Expand Up @@ -80,7 +80,7 @@ Use the `active` property to indicate current active path when used for navigati
Use <code>useSideBar</code> to detect sidebar state in your custom content if it needs to be modified based on expanded/collapsed state.
Here it is used to make the footer with two states.
```tsx
import { SideBar, useSideBar } from '@equinor/eds-lab-react'
import { SideBar, useSideBar } from '@equinor/eds-core-react'
```
<Story id="navigation-sidebar--custom-content" />

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.6.0] - 2022-11-04

### Removed

- 🚚 Moved `SideBar` component to eds-core-react by @oddvernes in https://github.com/equinor/design-system/pull/2614

## [0.5.2] - 2022-10-19

### Fixed
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.5.2",
"version": "0.6.0",
"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.7.0] - 2022-11-04

### Added

- ✨`useIsomorphicLayoutEffect`: new hook for better ssr support by @oddvernes in https://github.com/equinor/design-system/pull/2631

## [0.6.0] - 2022-10-19

### Added
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.6.0",
"version": "0.7.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 6af17b9

Please sign in to comment.