@mittwald/flow-react-components 0.2.0-alpha.710 → 0.2.0-alpha.712
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 +12 -0
- package/dist/assets/doc-properties.json +3649 -3622
- package/dist/js/components/src/components/Action/AbortActionError.mjs +19 -0
- package/dist/js/components/src/components/Action/AbortActionError.mjs.map +1 -0
- package/dist/js/components/src/components/Action/lib/abortAction.mjs +10 -0
- package/dist/js/components/src/components/Action/lib/abortAction.mjs.map +1 -0
- package/dist/js/components/src/components/Action/models/ActionExecution.mjs +3 -3
- package/dist/js/components/src/components/Action/models/ActionExecution.mjs.map +1 -1
- package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs +8 -0
- package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs.map +1 -1
- package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs +4 -2
- package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs.map +1 -1
- package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs +7 -3
- package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs.map +1 -1
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/FormRootError.mjs +16 -0
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/FormRootError.mjs.map +1 -0
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.mjs +17 -0
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.mjs.map +1 -0
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.mjs +17 -0
- package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.mjs.map +1 -0
- package/dist/js/components/src/integrations/react-hook-form/lib/FormRootError.mjs +13 -0
- package/dist/js/components/src/integrations/react-hook-form/lib/FormRootError.mjs.map +1 -0
- package/dist/js/default.mjs +2 -1
- package/dist/js/default.mjs.map +1 -1
- package/dist/js/react-hook-form.mjs +1 -0
- package/dist/js/react-hook-form.mjs.map +1 -1
- package/dist/types/components/Action/AbortActionError.d.ts +6 -0
- package/dist/types/components/Action/AbortActionError.d.ts.map +1 -0
- package/dist/types/components/Action/index.d.ts +2 -1
- package/dist/types/components/Action/index.d.ts.map +1 -1
- package/dist/types/components/Action/lib/abortAction.d.ts +2 -0
- package/dist/types/components/Action/lib/abortAction.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/components/Form/Form.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/components/Form/stories/Form.stories.d.ts +1 -0
- package/dist/types/integrations/react-hook-form/components/Form/stories/Form.stories.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts +3 -0
- package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/components/FormRootError/FormRootError.d.ts +4 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/FormRootError.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/index.d.ts +3 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/index.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.d.ts +7 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.d.ts +2 -0
- package/dist/types/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/index.d.ts +1 -0
- package/dist/types/integrations/react-hook-form/index.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/lib/FormRootError.d.ts +6 -0
- package/dist/types/integrations/react-hook-form/lib/FormRootError.d.ts.map +1 -0
- package/package.json +4 -4
- package/dist/js/components/src/components/Action/MutedActionError.mjs +0 -19
- package/dist/js/components/src/components/Action/MutedActionError.mjs.map +0 -1
- package/dist/types/components/Action/MutedActionError.d.ts +0 -6
- package/dist/types/components/Action/MutedActionError.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.2.0-alpha.712](https://github.com/mittwald/flow/compare/0.2.0-alpha.711...0.2.0-alpha.712) (2026-03-10)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add abortAction function to improve DX ([42db421](https://github.com/mittwald/flow/commit/42db42199482792820ac27f348cb8c417aeff7ee))
|
|
11
|
+
|
|
12
|
+
# [0.2.0-alpha.711](https://github.com/mittwald/flow/compare/0.2.0-alpha.710...0.2.0-alpha.711) (2026-03-10)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **Form:** add <FormRootError /> component ([0a27499](https://github.com/mittwald/flow/commit/0a2749944d51d873c089230f19130d9557cdd99b))
|
|
17
|
+
|
|
6
18
|
# [0.2.0-alpha.710](https://github.com/mittwald/flow/compare/0.2.0-alpha.709...0.2.0-alpha.710) (2026-03-09)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @mittwald/flow-react-components
|