@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.
Files changed (31) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/assets/icons/filled/drop-left-filled.svg +1 -0
  3. package/assets/icons/filled/drop-right-filled.svg +1 -0
  4. package/assets/icons/outlined/drop-left-outlined.svg +1 -0
  5. package/assets/icons/outlined/drop-right-outlined.svg +1 -0
  6. package/dist/component-type.json +1 -1
  7. package/dist/components/badge/badge.styles.js +3 -3
  8. package/dist/components/footer/footer.styles.js +1 -1
  9. package/dist/components/grid/components/grid-container/grid-container.component.js +1 -1
  10. package/dist/components/grid/components/grid-container/grid-container.styles.d.ts +3 -1
  11. package/dist/components/grid/components/grid-container/grid-container.styles.js +3 -2
  12. package/dist/components/icon/components/drop-left-icon.d.ts +2 -0
  13. package/dist/components/icon/components/drop-left-icon.js +25 -0
  14. package/dist/components/icon/components/drop-right-icon.d.ts +2 -0
  15. package/dist/components/icon/components/drop-right-icon.js +25 -0
  16. package/dist/components/icon/index.d.ts +2 -0
  17. package/dist/components/icon/index.js +2 -0
  18. package/dist/css/westpac-ui.css +174 -50
  19. package/dist/css/westpac-ui.min.css +174 -50
  20. package/dist/tailwind/constants/breakpoints.js +1 -1
  21. package/dist/tailwind/tailwind-plugin.js +5 -1
  22. package/package.json +8 -6
  23. package/src/components/badge/badge.styles.ts +3 -3
  24. package/src/components/footer/footer.styles.ts +1 -1
  25. package/src/components/grid/components/grid-container/grid-container.component.tsx +1 -1
  26. package/src/components/grid/components/grid-container/grid-container.styles.ts +3 -2
  27. package/src/components/icon/components/drop-left-icon.tsx +12 -0
  28. package/src/components/icon/components/drop-right-icon.tsx +12 -0
  29. package/src/components/icon/index.ts +2 -0
  30. package/src/tailwind/constants/breakpoints.ts +1 -1
  31. 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>