Skip to content

Commit

Permalink
[terra-icon] OCS icons v1.49.0 (cerner#3700)
Browse files Browse the repository at this point in the history
* Bumped OCS icon library to v1.49.0
* Added Nav Stack Up icon
  • Loading branch information
jeremyfuksa authored Jan 6, 2023
1 parent d48d842 commit 4c0b15b
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 24 deletions.
34 changes: 13 additions & 21 deletions packages/terra-core-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,50 @@

## Unreleased

* Changed
* Updated `iconAll` test to accommodate new icons added from OCS icon library v1.49.0.

## 1.17.0 - (January 3, 2023)

* Added
* Added Accessibility Guide for `terra-form-fieldset`.
* Added single and multi select list test examples for `terra-list`.

* Updated
* Changed
* Updated single and multi select guides with the new ariaSelectionStyle prop for `terra-list`.

## 1.16.0 - (December 7, 2022)

* Added
* Added Accessibility Guide for `terra-form-select`.

* Changed
* Updated wording in examples for `terra-demographics-banner`

* Added
* Added Higher Order examples for `terra-profile-image`.
* Added Accessibility Guide for `terra-Profile-image`.

* Changed
* Added higher-order examples and Accessibility Guide for `terra-profile-image`.
* Added ariaLabel and ariaLabelledBy examples for `terra-toolbar`.
* Added Accordion Examples for `terra-section-header`.
* Added accessibility guide for `terra-divider`.
* Added accordion examples for `terra-section-header`.
* Added Accessibility Guide for `terra-divider`.
* Added tests and example for adding row header to `terra-html-table`.
* Added `terra-list` tests and examples for `ariaDescribedBy`, `ariaDescription`, and `ariaDetails` props.
* Added accessibility guide for `terra-html-table`.
* Added Accessibility Guide for `terra-html-table`.
* Added an accessibility hooks example for `terra-form-field` and `terra-input`.

* Changed
* Updated wording in examples for `terra-demographics-banner`.
* Updated `terra-list` section guide to not use listbox role.
* Updated `terra-divider` tests and doc examples to include heading level prop.
* Updated `terra-section-header` tests and examples.

## 1.15.1 - (September 8, 2022)

* Changed
* Moved outline-view-table docs and tests folders to component dev-site folder.
* Moved `terra-outline-view-table` docs and tests folders to component dev-site folder.

## 1.15.0 - (September 07, 2022)

* Changed
* Relative import paths of terra-hyperlink tests are changed to absolute path.

* Added
* Added new outline-view-table docs and tests folders
* Changed
* Updated `iconAll` test to accommodate new icons added from OCS icon library v1.48.0.
* Added new `terra-outline-view-table` docs and tests folders.

* Changed
* terra-outline-view-table tests and doc for now initial implementation
* Relative import paths of `terra-hyperlink` tests are changed to absolute path.
* Updated `iconAll` test to accommodate new icons added from OCS icon library v1.48.0.

## 1.14.1 - (July 14, 2022)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ import IconPersonConnection from 'terra-icon/lib/icon/IconPersonConnection';
import IconTrendingUp from 'terra-icon/lib/icon/IconTrendingUp';
import IconTrendingDown from 'terra-icon/lib/icon/IconTrendingDown';
import IconNoResults from 'terra-icon/lib/icon/IconNoResults';
import IconNavStackUp from 'terra-icon/lib/icon/IconNavStackUp';
import IconCircleSymbol from 'terra-icon/lib/icon/IconCircleSymbol';
import IconCircleSymbolLight from 'terra-icon/lib/icon/IconCircleSymbolLight';
import IconDiamondSymbol from 'terra-icon/lib/icon/IconDiamondSymbol';
Expand Down Expand Up @@ -2102,6 +2103,15 @@ const IconAll = () => (
</code>
</td>
</tr>
<tr style={{ backgroundColor: '#EEEEEE' }}>
<td style={cellStyle}><IconNavStackUp height='2em' width='2em' /></td>
<td style={cellStyle}>navStackUp</td>
<td style={{ fontWeight: 'bold', padding: '0.5rem' }}>
<code>
import IconNavStackUp from 'terra-icon/lib/icon/IconNavStackUp';
</code>
</td>
</tr>
<tr style={{ backgroundColor: '#EEEEEE' }}>
<td style={cellStyle}><IconCircleSymbol height='2em' width='2em' /></td>
<td style={cellStyle}>circle_symbol</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ const IconAll = () => (
<Icon.IconModerate className={cx(['icon'])} />
<Icon.IconModerateLowLight className={cx(['icon'])} />
<Icon.IconModified className={cx(['icon'])} />
<Icon.IconNavStackUp className={cx(['icon'])} />
<Icon.IconNext className={cx(['icon'])} />
<Icon.IconNoRisk className={cx(['icon'])} />
<Icon.IconNoResults className={cx(['icon'])} />
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-icon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## 3.49.0 - (December 7, 2022)

* Changed
* Updated to `one-cerner-style-icons` v1.48.0
* Updated to `one-cerner-style-icons` v1.49.0

## 3.48.0 - (July 5, 2022)

Expand Down
2 changes: 1 addition & 1 deletion packages/terra-icon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devDependencies": {
"csvtojson": "^2.0.8",
"jsdom": "^15.1.1",
"one-cerner-style-icons": "https://github.com/cerner/one-cerner-style-icons/archive/v1.48.0.tar.gz",
"one-cerner-style-icons": "https://github.com/cerner/one-cerner-style-icons/archive/v1.49.0.tar.gz",
"shelljs": "^0.8.2",
"svgo": "^1.2.2"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/terra-icon/src/IconExports.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ import IconMissedCall from './icon/IconMissedCall';
import IconModerate from './icon/IconModerate';
import IconModerateLowLight from './icon/IconModerateLowLight';
import IconModified from './icon/IconModified';
import IconNavStackUp from './icon/IconNavStackUp';
import IconNext from './icon/IconNext';
import IconNoResults from './icon/IconNoResults';
import IconNoRisk from './icon/IconNoRisk';
Expand Down Expand Up @@ -502,6 +503,7 @@ const Icons = {
IconModerate,
IconModerateLowLight,
IconModified,
IconNavStackUp,
IconNext,
IconNoRisk,
IconNoRiskLowLight,
Expand Down
1 change: 1 addition & 0 deletions packages/terra-icon/src/cerner-one-icons.csv
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ personConnection,src/icons/0222_PersonConnection_i_48.svg,themeable,,
trendingUp,src/icons/0223_trendingUp_i_48.svg,themeable,,
trendingDown,src/icons/0224_trendingDown_i_48.svg,themeable,,
noResults,src/icons/0225_noResults_i_48.svg,themeable,,
navStackUp,src/icons/0226_NavStackUp_Icon_a_48.svg,themeable,,
statusPositive_low_light,src/icons/LL_0213_statusPositive_i_lightDiamond.svg,,,
statusPositiveWhite_low_light,src/icons/LL_0214_statusPositive_i_lightDiamondWhite.svg,,,
circle_symbol,src/icons/S_0001_circle.svg,themeable,,
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-icon/src/icon-data.json

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions packages/terra-icon/src/icon/IconNavStackUp.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* eslint-disable */
import React from 'react';
import IconBase from '../IconBase';

const SvgIcon = (customProps) => {
const attributes = Object.assign({}, customProps);

return (
<IconBase {...attributes}>
<path d="M42.981 47.962V42H21.984V11.447l6.553 6.546 4.242-4.243L19.029 0l-.012.012L19.005 0 5.255 13.75l4.243 4.243 6.507-6.508L16.038 48l26.943-.038z" ></path>
</IconBase>
);
};

SvgIcon.displayName = "IconNavStackUp";
SvgIcon.defaultProps = {"viewBox":"0 0 48 48","xmlns":"http://www.w3.org/2000/svg"};

export default SvgIcon;
/* eslint-enable */
1 change: 1 addition & 0 deletions packages/terra-icon/src/svg/navStackUp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4c0b15b

Please sign in to comment.