@simplybusiness/mobius 6.10.5 → 7.1.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 +16 -0
- package/dist/cjs/index.js +375 -311
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/meta.json +168 -78
- package/dist/esm/index.js +227 -157
- package/dist/esm/index.js.map +7 -0
- package/dist/esm/meta.json +170 -79
- 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/components/Toast/Toast.d.ts +13 -0
- package/dist/types/src/components/Toast/ToastOptionsDoc.d.ts +9 -0
- package/dist/types/src/components/Toast/Toaster.d.ts +19 -0
- package/dist/types/src/components/Toast/index.d.ts +4 -0
- package/dist/types/src/components/Toast/state.d.ts +3 -0
- package/dist/types/src/components/Toast/types.d.ts +27 -0
- package/dist/types/src/components/index.d.ts +1 -0
- 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 +11 -10
- 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/Combobox/Combobox.tsx +1 -0
- 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/components/Toast/Toast.css +233 -0
- package/src/components/Toast/Toast.mdx +131 -0
- package/src/components/Toast/Toast.stories.tsx +285 -0
- package/src/components/Toast/Toast.test.tsx +188 -0
- package/src/components/Toast/Toast.tsx +154 -0
- package/src/components/Toast/ToastOptionsDoc.tsx +8 -0
- package/src/components/Toast/Toaster.tsx +46 -0
- package/src/components/Toast/index.tsx +4 -0
- package/src/components/Toast/state.ts +6 -0
- package/src/components/Toast/types.ts +36 -0
- package/src/components/index.tsx +1 -0
- 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,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7ac6357: Add Toast component for non-blocking notification messages, built on Sonner library with Alert color token integration
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 45ddf19: set is changing to false when blurring away from combobox
|
|
12
|
+
|
|
13
|
+
## 7.0.0
|
|
14
|
+
|
|
15
|
+
### Major Changes
|
|
16
|
+
|
|
17
|
+
- 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.
|
|
18
|
+
|
|
3
19
|
## 6.10.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|