Skip to content

Commit

Permalink
πŸ”– Release eds-icons@0.19.0 (#2795)
Browse files Browse the repository at this point in the history
* Icons: Added sheet_rightposition sheet_topposition

* πŸ“ Update changelog

* bump version number

* Update release date on changelog
  • Loading branch information
oddvernes authored Mar 3, 2023
1 parent 7e7ac8a commit f6ddb53
Show file tree
Hide file tree
Showing 7 changed files with 784 additions and 733 deletions.
2 changes: 1 addition & 1 deletion assets/icons/system-icons/ui-views/sheet_leftposition.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/system-icons/ui-views/sheet_rightposition.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/system-icons/ui-views/sheet_topposition.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,484 changes: 754 additions & 730 deletions packages/eds-core-react/stories/assets/icons/system-icons.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions packages/eds-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.19.0] - 2023-03-03

### Added

- `sheet_rightposition`
- `sheet_topposition`

## [0.18.0] - 2023-01-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/eds-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/eds-icons",
"version": "0.18.0",
"version": "0.19.0",
"description": "Icons from the Equinor Design System",
"main": "dist/icons.cjs.js",
"module": "dist/esm/index.js",
Expand Down
20 changes: 19 additions & 1 deletion packages/eds-icons/src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -569,13 +569,31 @@ export const sheet_bottom_position: IconData = {
'M3 4h18c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm1 10h16V6H4v8z',
}

export const sheet_topposition: IconData = {
name: 'sheet_topposition',
prefix: 'eds',
height: '24',
width: '24',
svgPathData:
'M3 20h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1zm1-10h16v8H4v-8z',
}

export const sheet_leftposition: IconData = {
name: 'sheet_leftposition',
prefix: 'eds',
height: '24',
width: '24',
svgPathData:
'M3 4h18c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm7 14h10V6H10v12z',
'M3 20h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1zm7-14h10v12H10V6z',
}

export const sheet_rightposition: IconData = {
name: 'sheet_rightposition',
prefix: 'eds',
height: '24',
width: '24',
svgPathData:
'M3 4h18c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm1 14h10V6H4v12z',
}

export const enlarge: IconData = {
Expand Down

0 comments on commit f6ddb53

Please sign in to comment.