@mittwald/flow-react-components 0.2.0-alpha.679 → 0.2.0-alpha.680

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 (46) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/assets/doc-properties.json +2496 -2334
  3. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormAction.mjs +19 -0
  4. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormAction.mjs.map +1 -0
  5. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormResetAction.mjs +35 -0
  6. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormResetAction.mjs.map +1 -0
  7. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormSubmitAction.mjs +45 -0
  8. package/dist/js/components/src/integrations/react-hook-form/components/FormAction/FormSubmitAction.mjs.map +1 -0
  9. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs +5 -6
  10. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.mjs.map +1 -1
  11. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs +23 -24
  12. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.mjs.map +1 -1
  13. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useUpdateReadOnly.mjs +14 -0
  14. package/dist/js/components/src/integrations/react-hook-form/components/FormContextProvider/useUpdateReadOnly.mjs.map +1 -0
  15. package/dist/js/components/src/integrations/react-hook-form/components/ResetButton/ResetButton.mjs +2 -20
  16. package/dist/js/components/src/integrations/react-hook-form/components/ResetButton/ResetButton.mjs.map +1 -1
  17. package/dist/js/components/src/integrations/react-hook-form/components/SubmitButton/SubmitButton.mjs +3 -15
  18. package/dist/js/components/src/integrations/react-hook-form/components/SubmitButton/SubmitButton.mjs.map +1 -1
  19. package/dist/js/react-hook-form.mjs +1 -0
  20. package/dist/js/react-hook-form.mjs.map +1 -1
  21. package/dist/types/integrations/react-hook-form/components/FormAction/FormAction.d.ts +10 -0
  22. package/dist/types/integrations/react-hook-form/components/FormAction/FormAction.d.ts.map +1 -0
  23. package/dist/types/integrations/react-hook-form/components/FormAction/FormResetAction.d.ts +6 -0
  24. package/dist/types/integrations/react-hook-form/components/FormAction/FormResetAction.d.ts.map +1 -0
  25. package/dist/types/integrations/react-hook-form/components/FormAction/FormSubmitAction.d.ts +6 -0
  26. package/dist/types/integrations/react-hook-form/components/FormAction/FormSubmitAction.d.ts.map +1 -0
  27. package/dist/types/integrations/react-hook-form/components/FormAction/index.d.ts +2 -0
  28. package/dist/types/integrations/react-hook-form/components/FormAction/index.d.ts.map +1 -0
  29. package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts +1 -2
  30. package/dist/types/integrations/react-hook-form/components/FormContextProvider/FormContextProvider.d.ts.map +1 -1
  31. package/dist/types/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.d.ts +3 -9
  32. package/dist/types/integrations/react-hook-form/components/FormContextProvider/useFormSubmitAction.d.ts.map +1 -1
  33. package/dist/types/integrations/react-hook-form/components/FormContextProvider/useUpdateReadOnly.d.ts +8 -0
  34. package/dist/types/integrations/react-hook-form/components/FormContextProvider/useUpdateReadOnly.d.ts.map +1 -0
  35. package/dist/types/integrations/react-hook-form/components/ResetButton/ResetButton.d.ts.map +1 -1
  36. package/dist/types/integrations/react-hook-form/components/SubmitButton/SubmitButton.d.ts +4 -1
  37. package/dist/types/integrations/react-hook-form/components/SubmitButton/SubmitButton.d.ts.map +1 -1
  38. package/dist/types/integrations/react-hook-form/index.d.ts +1 -0
  39. package/dist/types/integrations/react-hook-form/index.d.ts.map +1 -1
  40. package/package.json +4 -4
  41. package/dist/js/components/src/integrations/react-hook-form/components/FormSubmitAction/FormSubmitAction.mjs +0 -17
  42. package/dist/js/components/src/integrations/react-hook-form/components/FormSubmitAction/FormSubmitAction.mjs.map +0 -1
  43. package/dist/types/integrations/react-hook-form/components/FormSubmitAction/FormSubmitAction.d.ts +0 -4
  44. package/dist/types/integrations/react-hook-form/components/FormSubmitAction/FormSubmitAction.d.ts.map +0 -1
  45. package/dist/types/integrations/react-hook-form/components/FormSubmitAction/index.d.ts +0 -2
  46. package/dist/types/integrations/react-hook-form/components/FormSubmitAction/index.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.680](https://github.com/mittwald/flow/compare/0.2.0-alpha.679...0.2.0-alpha.680) (2026-02-12)
7
+
8
+ ### Features
9
+
10
+ * **Form:** make FormSubmit behave like normal async action ([2cf5f21](https://github.com/mittwald/flow/commit/2cf5f21e84deb20136ee38f7af5229918080f15d))
11
+
6
12
  # [0.2.0-alpha.679](https://github.com/mittwald/flow/compare/0.2.0-alpha.678...0.2.0-alpha.679) (2026-02-11)
7
13
 
8
14
  ### Features