@westpac/ui 0.48.0 → 0.49.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 +11 -0
- package/dist/component-type.json +1 -1
- package/dist/components/button-dropdown/button-dropdown.component.d.ts +1 -1
- package/dist/components/button-dropdown/button-dropdown.component.js +3 -2
- package/dist/components/button-dropdown/button-dropdown.types.d.ts +2 -1
- package/dist/components/button-dropdown/components/button-dropdown-panel/button-dropdown-panel.component.js +0 -1
- package/dist/components/button-dropdown/components/button-dropdown-panel/button-dropdown-panel.styles.js +1 -1
- package/dist/components/input-group/input-group.component.d.ts +1 -1
- package/dist/components/input-group/input-group.component.js +9 -3
- package/dist/components/input-group/input-group.styles.js +1 -1
- package/dist/components/input-group/input-group.types.d.ts +16 -0
- package/dist/css/westpac-ui.css +4 -3
- package/dist/css/westpac-ui.min.css +4 -3
- package/package.json +3 -3
- package/src/components/button-dropdown/button-dropdown.component.tsx +2 -0
- package/src/components/button-dropdown/button-dropdown.types.ts +3 -1
- package/src/components/button-dropdown/components/button-dropdown-panel/button-dropdown-panel.component.tsx +1 -1
- package/src/components/button-dropdown/components/button-dropdown-panel/button-dropdown-panel.styles.ts +1 -1
- package/src/components/input-group/input-group.component.tsx +9 -3
- package/src/components/input-group/input-group.styles.ts +1 -1
- package/src/components/input-group/input-group.types.ts +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @westpac/ui
|
|
2
2
|
|
|
3
|
+
## 0.49.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 53a19b8: Allow button-dropdown to show at the top of the btn when not enough space below
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- b2214b2: InputGroup with Field passing the props properly
|
|
12
|
+
- 8c21c8d: removing the margin-bottom on input-group
|
|
13
|
+
|
|
3
14
|
## 0.48.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|