@westpac/ui 0.59.0 → 0.59.2
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 +14 -0
- package/dist/component-type.json +1 -1
- package/dist/components/button/button.component.js +3 -2
- package/dist/components/compacta/compacta.component.d.ts +1 -1
- package/dist/components/compacta/compacta.component.js +5 -2
- package/dist/components/compacta/compacta.types.d.ts +10 -0
- package/dist/components/popover/components/panel/panel.component.js +5 -4
- package/dist/components/popover/components/panel/panel.hook.d.ts +2 -1
- package/dist/components/popover/components/panel/panel.hook.js +64 -9
- package/dist/components/popover/components/panel/panel.styles.js +2 -2
- package/dist/css/westpac-ui.css +27 -72
- package/dist/css/westpac-ui.min.css +27 -72
- package/package.json +1 -1
- package/src/components/button/button.component.tsx +2 -1
- package/src/components/compacta/compacta.component.tsx +9 -1
- package/src/components/compacta/compacta.types.ts +11 -0
- package/src/components/popover/components/panel/panel.component.tsx +9 -3
- package/src/components/popover/components/panel/panel.hook.tsx +65 -8
- package/src/components/popover/components/panel/panel.styles.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @westpac/ui
|
|
2
2
|
|
|
3
|
+
## 0.59.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d2e9dbb: updates to horizontal positioning for popover on smaller screens
|
|
8
|
+
|
|
9
|
+
## 0.59.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- efa6a23: Added callbacks to compacta and return index for compacta children
|
|
14
|
+
- f36b6d5: Made Button component default to type="button" to avoid issue with components using button in forms
|
|
15
|
+
- e93a3d4: Fixed issue where popover wasn't automatically flipping vertically, also set the default position back to top
|
|
16
|
+
|
|
3
17
|
## 0.59.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|