@simplybusiness/mobius 6.1.0 → 6.1.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 +18 -0
- package/dist/cjs/index.js +140 -115
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/index.js +65 -41
- package/dist/types/src/components/Drawer/types.d.ts +1 -0
- package/dist/types/src/components/Drawer/useDrawer.d.ts +1 -0
- package/dist/types/src/components/NumberField/NumberField.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Drawer/Drawer.tsx +5 -2
- package/src/components/Drawer/DrawerContext.tsx +1 -0
- package/src/components/Drawer/Header.tsx +2 -2
- package/src/components/Drawer/types.ts +1 -0
- package/src/components/Drawer/useDrawer.ts +2 -2
- package/src/components/NumberField/NumberField.tsx +42 -2
- package/src/components/Radio/Radio.test.tsx +65 -1
- package/src/components/Radio/Radio.tsx +10 -13
- package/src/components/Radio/RadioGroup.tsx +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 6.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f40bcec: revert radio group focus
|
|
8
|
+
- dc2e49f: Prevent value change on scroll event within a Number field
|
|
9
|
+
- f994dea: Update Drawer component to improve accessibility
|
|
10
|
+
- Updated dependencies [4a99304]
|
|
11
|
+
- @simplybusiness/icons@4.32.1
|
|
12
|
+
|
|
13
|
+
## 6.1.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- dd0fdce: Fix RadioGroup onChange being called twice in controlled mode
|
|
18
|
+
|
|
19
|
+
Fixed a bug where the onChange callback was being called twice when clicking a radio button in a controlled RadioGroup. This was caused by both onClick and onChange event handlers calling the onChange prop.
|
|
20
|
+
|
|
3
21
|
## 6.1.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|