@westpac/ui 0.59.2 → 0.59.3
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/.eslintrc.cjs +1 -1
- package/CHANGELOG.md +11 -0
- package/assets/icons/filled/arrow-back-filled.svg +3 -0
- package/assets/icons/filled/arrow-down-filled.svg +3 -0
- package/assets/icons/filled/arrow-forward-filled.svg +3 -0
- package/assets/icons/filled/arrow-up-filled.svg +3 -0
- package/assets/icons/outlined/arrow-back-outlined.svg +3 -0
- package/assets/icons/outlined/arrow-down-outlined.svg +3 -0
- package/assets/icons/outlined/arrow-forward-outlined.svg +3 -0
- package/assets/icons/outlined/arrow-up-outlined.svg +3 -0
- package/dist/component-type.json +1 -1
- package/dist/components/icon/components/arrow-back-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-back-icon.js +12 -0
- package/dist/components/icon/components/arrow-down-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-down-icon.js +12 -0
- package/dist/components/icon/components/arrow-forward-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-forward-icon.js +12 -0
- package/dist/components/icon/components/arrow-up-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-up-icon.js +12 -0
- package/dist/components/icon/icon.styles.js +5 -5
- package/dist/components/icon/index.d.ts +4 -0
- package/dist/components/icon/index.js +4 -0
- package/dist/components/link/link.styles.d.ts +0 -6
- package/dist/components/link/link.styles.js +5 -7
- package/dist/components/popover/components/panel/panel.component.d.ts +1 -1
- package/dist/components/popover/components/panel/panel.component.js +29 -12
- package/dist/components/popover/components/panel/panel.types.d.ts +8 -0
- package/dist/components/popover/popover.component.js +14 -4
- package/dist/components/selector/components/selector-checkbox-group/components/selector-checkbox-group-option/selector-checkbox-group-option.component.js +1 -0
- package/dist/components/selector/components/selector-radio-group/components/selector-radio-group-option/selector-radio-group-option.component.js +1 -0
- package/dist/css/westpac-ui.css +150 -36
- package/dist/css/westpac-ui.min.css +150 -36
- package/package.json +5 -4
- package/src/components/date-picker-beta/components/calendar/components/calendar-cell/calendar-cell.types.ts +0 -4
- package/src/components/icon/components/arrow-back-icon.tsx +17 -0
- package/src/components/icon/components/arrow-down-icon.tsx +17 -0
- package/src/components/icon/components/arrow-forward-icon.tsx +17 -0
- package/src/components/icon/components/arrow-up-icon.tsx +17 -0
- package/src/components/icon/icon.styles.ts +5 -5
- package/src/components/icon/index.ts +4 -0
- package/src/components/link/link.component.tsx +1 -0
- package/src/components/link/link.styles.ts +5 -7
- package/src/components/popover/components/panel/panel.component.tsx +41 -23
- package/src/components/popover/components/panel/panel.types.ts +8 -0
- package/src/components/popover/popover.component.tsx +16 -2
- package/src/components/selector/components/selector-checkbox-group/components/selector-checkbox-group-option/selector-checkbox-group-option.component.tsx +6 -1
- package/src/components/selector/components/selector-radio-group/components/selector-radio-group-option/selector-radio-group-option.component.tsx +6 -1
package/.eslintrc.cjs
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @westpac/ui
|
|
2
2
|
|
|
3
|
+
## 0.59.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b47606f: - Made changes to popover to have better accessibility
|
|
8
|
+
- Fixed issue with radio and checkbox selector that caused hint to be read multiple times
|
|
9
|
+
- added min width and min height to icons so they don't shrink in certain cases
|
|
10
|
+
- fixed issue with Link component not wrapping correctly when content was too long
|
|
11
|
+
- made adjustments to Link to work better inline along with above changes
|
|
12
|
+
- added 4 new icons
|
|
13
|
+
|
|
3
14
|
## 0.59.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|