@simplybusiness/mobius 5.32.0 → 5.32.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 +16 -0
- package/dist/cjs/index.js +1138 -1106
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/index.js +1206 -1174
- package/dist/types/src/components/Accordion/Accordion.d.ts +4 -15
- package/dist/types/src/components/Accordion/AccordionLink.d.ts +16 -0
- package/dist/types/src/components/NumberField/NumberField.d.ts +2 -0
- package/dist/types/src/hooks/useButton/useButton.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Accordion/Accordion.test.tsx +1 -1
- package/src/components/Accordion/Accordion.tsx +25 -94
- package/src/components/Accordion/AccordionLink.tsx +101 -0
- package/src/components/NumberField/NumberField.css +12 -0
- package/src/components/NumberField/NumberField.tsx +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.32.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 07312b5: Suppress number input spin buttons via a prop
|
|
8
|
+
- Updated dependencies [23d5f93]
|
|
9
|
+
- Updated dependencies [e1038a9]
|
|
10
|
+
- Updated dependencies [4b2f6d0]
|
|
11
|
+
- @simplybusiness/icons@4.32.0
|
|
12
|
+
|
|
13
|
+
## 5.32.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 20ac0fd: Add aria-label for the Accordion component
|
|
18
|
+
|
|
3
19
|
## 5.32.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|