@westpac/ui 0.23.0 → 0.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/assets/icons/filled/drop-left-filled.svg +1 -0
- package/assets/icons/filled/drop-right-filled.svg +1 -0
- package/assets/icons/outlined/drop-left-outlined.svg +1 -0
- package/assets/icons/outlined/drop-right-outlined.svg +1 -0
- package/dist/component-type.json +1 -1
- package/dist/components/footer/footer.styles.js +1 -1
- package/dist/components/header/header.styles.js +1 -1
- package/dist/components/icon/components/drop-left-icon.d.ts +2 -0
- package/dist/components/icon/components/drop-left-icon.js +25 -0
- package/dist/components/icon/components/drop-right-icon.d.ts +2 -0
- package/dist/components/icon/components/drop-right-icon.js +25 -0
- package/dist/components/icon/index.d.ts +2 -0
- package/dist/components/icon/index.js +2 -0
- package/dist/components/popover/components/panel/panel.styles.js +1 -1
- package/dist/components/progress-bar/progress-bar.styles.js +2 -2
- package/dist/components/progress-indicator/progress-indicator.styles.d.ts +1 -1
- package/dist/components/progress-indicator/progress-indicator.styles.js +1 -1
- package/dist/components/progress-rope/components/progress-rope-group-step/progress-rope-group-step.styles.js +1 -1
- package/dist/components/progress-rope/components/progress-rope-step/progress-rope-step.styles.js +1 -1
- package/dist/components/progress-rope/progress-rope.styles.d.ts +3 -3
- package/dist/components/progress-rope/progress-rope.styles.js +1 -1
- package/dist/components/table/components/table-cell/table-cell.styles.js +1 -1
- package/dist/components/table/components/table-header-cell/table-header-cell.styles.js +1 -1
- package/dist/components/table/table.styles.js +1 -1
- package/dist/css/westpac-ui.css +16 -32
- package/dist/css/westpac-ui.min.css +16 -32
- package/package.json +9 -7
- package/src/components/footer/footer.styles.ts +1 -1
- package/src/components/header/header.styles.ts +1 -1
- package/src/components/icon/components/drop-left-icon.tsx +12 -0
- package/src/components/icon/components/drop-right-icon.tsx +12 -0
- package/src/components/icon/index.ts +2 -0
- package/src/components/popover/components/panel/panel.styles.ts +1 -1
- package/src/components/progress-bar/progress-bar.styles.ts +2 -2
- package/src/components/progress-indicator/progress-indicator.styles.ts +1 -1
- package/src/components/progress-rope/components/progress-rope-group-step/progress-rope-group-step.styles.ts +1 -1
- package/src/components/progress-rope/components/progress-rope-step/progress-rope-step.styles.ts +1 -1
- package/src/components/progress-rope/progress-rope.styles.ts +1 -1
- package/src/components/table/components/table-cell/table-cell.styles.ts +1 -1
- package/src/components/table/components/table-header-cell/table-header-cell.styles.ts +1 -1
- package/src/components/table/table.styles.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m8 19 8-7-8-7v14Z" fill="#00F"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m16 5-8 7 8 7V5Z" fill="#00F"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m8 19 8-7-8-7v14Z" fill="#00F"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m16 5-8 7 8 7V5Z" fill="#00F"/></svg>
|