@simplybusiness/mobius 6.10.5 → 7.0.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 +6 -0
- package/dist/cjs/index.js +228 -307
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/meta.json +30 -75
- package/dist/esm/index.js +53 -132
- package/dist/esm/index.js.map +7 -0
- package/dist/esm/meta.json +30 -76
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/src/components/Button/Button.d.ts +1 -1
- package/dist/types/src/components/Modal/types.d.ts +0 -20
- package/dist/types/src/hooks/index.d.ts +0 -1
- package/dist/types/src/hooks/useValidationClasses/useValidationClasses.d.ts +1 -1
- package/dist/types/src/types/events.d.ts +0 -3
- package/package.json +9 -9
- package/src/components/Button/Button.test.tsx +0 -26
- package/src/components/Button/Button.tsx +2 -30
- package/src/components/Checkbox/Checkbox.tsx +1 -5
- package/src/components/Checkbox/CheckboxGroup.tsx +1 -5
- package/src/components/Modal/Modal.stories.tsx +1 -8
- package/src/components/Modal/Modal.tsx +0 -15
- package/src/components/Modal/types.ts +0 -20
- package/src/components/Radio/RadioGroup.tsx +1 -5
- package/src/components/Select/Select.tsx +1 -5
- package/src/components/TextArea/TextArea.tsx +1 -5
- package/src/components/TextField/TextField.tsx +1 -5
- package/src/hooks/index.tsx +0 -1
- package/src/hooks/useValidationClasses/useValidationClasses.test.ts +0 -51
- package/src/hooks/useValidationClasses/useValidationClasses.ts +4 -10
- package/src/types/events.ts +0 -4
- package/dist/types/src/hooks/useDeprecationWarning/index.d.ts +0 -1
- package/dist/types/src/hooks/useDeprecationWarning/useDeprecationWarning.d.ts +0 -2
- package/src/hooks/useDeprecationWarning/index.ts +0 -1
- package/src/hooks/useDeprecationWarning/useDeprecationWarning.test.ts +0 -51
- package/src/hooks/useDeprecationWarning/useDeprecationWarning.ts +0 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- ec27737: Remove deprecated useDeprecationWarning hook, Modal props (size, appElement, preventCloseOnEsc, shouldFocusAfterRender, parentSelector), Button variants (inverse, inverse-ghost), and validationState from form components. Use isInvalid instead of validationState.
|
|
8
|
+
|
|
3
9
|
## 6.10.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|