@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.
Files changed (55) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/assets/doc-properties.json +3649 -3622
  3. package/dist/js/components/src/components/Action/AbortActionError.mjs +19 -0
  4. package/dist/js/components/src/components/Action/AbortActionError.mjs.map +1 -0
  5. package/dist/js/components/src/components/Action/lib/abortAction.mjs +10 -0
  6. package/dist/js/components/src/components/Action/lib/abortAction.mjs.map +1 -0
  7. package/dist/js/components/src/components/Action/models/ActionExecution.mjs +3 -3
  8. package/dist/js/components/src/components/Action/models/ActionExecution.mjs.map +1 -1
  9. package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs +8 -0
  10. package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs.map +1 -1
  11. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs +4 -2
  12. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs.map +1 -1
  13. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs +7 -3
  14. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs.map +1 -1
  15. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/FormRootError.mjs +16 -0
  16. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/FormRootError.mjs.map +1 -0
  17. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.mjs +17 -0
  18. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.mjs.map +1 -0
  19. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.mjs +17 -0
  20. package/dist/js/components/src/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.mjs.map +1 -0
  21. package/dist/js/components/src/integrations/react-hook-form/lib/FormRootError.mjs +13 -0
  22. package/dist/js/components/src/integrations/react-hook-form/lib/FormRootError.mjs.map +1 -0
  23. package/dist/js/default.mjs +2 -1
  24. package/dist/js/default.mjs.map +1 -1
  25. package/dist/js/react-hook-form.mjs +1 -0
  26. package/dist/js/react-hook-form.mjs.map +1 -1
  27. package/dist/types/components/Action/AbortActionError.d.ts +6 -0
  28. package/dist/types/components/Action/AbortActionError.d.ts.map +1 -0
  29. package/dist/types/components/Action/index.d.ts +2 -1
  30. package/dist/types/components/Action/index.d.ts.map +1 -1
  31. package/dist/types/components/Action/lib/abortAction.d.ts +2 -0
  32. package/dist/types/components/Action/lib/abortAction.d.ts.map +1 -0
  33. package/dist/types/integrations/react-hook-form/components/Form/Form.d.ts.map +1 -1
  34. package/dist/types/integrations/react-hook-form/components/Form/stories/Form.stories.d.ts +1 -0
  35. package/dist/types/integrations/react-hook-form/components/Form/stories/Form.stories.d.ts.map +1 -1
  36. package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts +3 -0
  37. package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts.map +1 -1
  38. package/dist/types/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.d.ts.map +1 -1
  39. package/dist/types/integrations/react-hook-form/components/FormRootError/FormRootError.d.ts +4 -0
  40. package/dist/types/integrations/react-hook-form/components/FormRootError/FormRootError.d.ts.map +1 -0
  41. package/dist/types/integrations/react-hook-form/components/FormRootError/index.d.ts +3 -0
  42. package/dist/types/integrations/react-hook-form/components/FormRootError/index.d.ts.map +1 -0
  43. package/dist/types/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.d.ts +7 -0
  44. package/dist/types/integrations/react-hook-form/components/FormRootError/useFormRootErrorController.d.ts.map +1 -0
  45. package/dist/types/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.d.ts +2 -0
  46. package/dist/types/integrations/react-hook-form/components/FormRootError/useMountedFormRootErrorComponent.d.ts.map +1 -0
  47. package/dist/types/integrations/react-hook-form/index.d.ts +1 -0
  48. package/dist/types/integrations/react-hook-form/index.d.ts.map +1 -1
  49. package/dist/types/integrations/react-hook-form/lib/FormRootError.d.ts +6 -0
  50. package/dist/types/integrations/react-hook-form/lib/FormRootError.d.ts.map +1 -0
  51. package/package.json +4 -4
  52. package/dist/js/components/src/components/Action/MutedActionError.mjs +0 -19
  53. package/dist/js/components/src/components/Action/MutedActionError.mjs.map +0 -1
  54. package/dist/types/components/Action/MutedActionError.d.ts +0 -6
  55. 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