@westpac/ui 0.22.0 → 0.24.0
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 +17 -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/badge/badge.styles.js +3 -3
- package/dist/components/footer/footer.styles.js +1 -1
- package/dist/components/grid/components/grid-container/grid-container.component.js +1 -1
- package/dist/components/grid/components/grid-container/grid-container.styles.d.ts +3 -1
- package/dist/components/grid/components/grid-container/grid-container.styles.js +3 -2
- 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/css/westpac-ui.css +174 -50
- package/dist/css/westpac-ui.min.css +174 -50
- package/dist/tailwind/constants/breakpoints.js +1 -1
- package/dist/tailwind/tailwind-plugin.js +5 -1
- package/package.json +8 -6
- package/src/components/badge/badge.styles.ts +3 -3
- package/src/components/footer/footer.styles.ts +1 -1
- package/src/components/grid/components/grid-container/grid-container.component.tsx +1 -1
- package/src/components/grid/components/grid-container/grid-container.styles.ts +3 -2
- 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/tailwind/constants/breakpoints.ts +1 -1
- package/src/tailwind/tailwind-plugin.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @westpac/ui
|
|
2
2
|
|
|
3
|
+
## 0.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4522a5c8: Added left and right directions for the drop arrow icon in ui.
|
|
8
|
+
|
|
9
|
+
## 0.23.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- af5972c: update the grid container component
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 2097183: color change on footer component and example
|
|
18
|
+
- aeceb95: updated styling on badge so it looks correct
|
|
19
|
+
|
|
3
20
|
## 0.22.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -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>
|