@mittwald/flow-react-components 0.2.0-alpha.478 → 0.2.0-alpha.479

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 (57) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/assets/doc-properties.json +21320 -21601
  3. package/dist/js/components/src/components/Action/models/ActionState.mjs.map +1 -1
  4. package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs +16 -20
  5. package/dist/js/components/src/components/MarkdownEditor/MarkdownEditor.mjs.map +1 -1
  6. package/dist/js/components/src/components/MarkdownEditor/components/ModeButton.mjs +6 -4
  7. package/dist/js/components/src/components/MarkdownEditor/components/ModeButton.mjs.map +1 -1
  8. package/dist/js/components/src/components/MarkdownEditor/components/Toolbar.mjs +14 -11
  9. package/dist/js/components/src/components/MarkdownEditor/components/Toolbar.mjs.map +1 -1
  10. package/dist/js/components/src/components/MarkdownEditor/components/ToolbarButton.mjs +3 -13
  11. package/dist/js/components/src/components/MarkdownEditor/components/ToolbarButton.mjs.map +1 -1
  12. package/dist/js/components/src/components/MarkdownEditor/lib/handleKeyDown.mjs +7 -12
  13. package/dist/js/components/src/components/MarkdownEditor/lib/handleKeyDown.mjs.map +1 -1
  14. package/dist/js/components/src/components/MarkdownEditor/lib/insertAtCursor.mjs +4 -3
  15. package/dist/js/components/src/components/MarkdownEditor/lib/insertAtCursor.mjs.map +1 -1
  16. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs +4 -19
  17. package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs.map +1 -1
  18. package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs +15 -26
  19. package/dist/js/components/src/integrations/react-hook-form/components/Form/Form.mjs.map +1 -1
  20. package/dist/js/components/src/integrations/react-hook-form/components/Form/lib/useRegisterActionStateContext.mjs +70 -0
  21. package/dist/js/components/src/integrations/react-hook-form/components/Form/lib/useRegisterActionStateContext.mjs.map +1 -0
  22. package/dist/js/components/src/lib/hooks/useManagedValue.mjs +23 -0
  23. package/dist/js/components/src/lib/hooks/useManagedValue.mjs.map +1 -0
  24. package/dist/types/components/Action/models/ActionState.d.ts +1 -1
  25. package/dist/types/components/Action/models/ActionState.d.ts.map +1 -1
  26. package/dist/types/components/MarkdownEditor/MarkdownEditor.d.ts.map +1 -1
  27. package/dist/types/components/MarkdownEditor/components/ModeButton.d.ts +5 -6
  28. package/dist/types/components/MarkdownEditor/components/ModeButton.d.ts.map +1 -1
  29. package/dist/types/components/MarkdownEditor/components/Toolbar.d.ts +9 -11
  30. package/dist/types/components/MarkdownEditor/components/Toolbar.d.ts.map +1 -1
  31. package/dist/types/components/MarkdownEditor/components/ToolbarButton.d.ts +5 -11
  32. package/dist/types/components/MarkdownEditor/components/ToolbarButton.d.ts.map +1 -1
  33. package/dist/types/components/MarkdownEditor/lib/handleKeyDown.d.ts +1 -1
  34. package/dist/types/components/MarkdownEditor/lib/handleKeyDown.d.ts.map +1 -1
  35. package/dist/types/components/MarkdownEditor/lib/insertAtCursor.d.ts +1 -1
  36. package/dist/types/components/MarkdownEditor/lib/insertAtCursor.d.ts.map +1 -1
  37. package/dist/types/components/MarkdownEditor/stories/Default.stories.d.ts.map +1 -1
  38. package/dist/types/components/PasswordCreationField/PasswordCreationField.d.ts.map +1 -1
  39. package/dist/types/integrations/react-hook-form/components/Form/Form.d.ts +2 -2
  40. package/dist/types/integrations/react-hook-form/components/Form/Form.d.ts.map +1 -1
  41. package/dist/types/integrations/react-hook-form/components/Form/lib/useRegisterActionStateContext.d.ts +7 -0
  42. package/dist/types/integrations/react-hook-form/components/Form/lib/useRegisterActionStateContext.d.ts.map +1 -0
  43. package/dist/types/lib/hooks/useManagedValue.d.ts +11 -0
  44. package/dist/types/lib/hooks/useManagedValue.d.ts.map +1 -0
  45. package/package.json +4 -4
  46. package/dist/js/components/src/components/Action/ActionStateContext.mjs +0 -24
  47. package/dist/js/components/src/components/Action/ActionStateContext.mjs.map +0 -1
  48. package/dist/js/components/src/integrations/react-hook-form/components/ActionGroupWrapper/SubmitButtonStateProvider.mjs +0 -44
  49. package/dist/js/components/src/integrations/react-hook-form/components/ActionGroupWrapper/SubmitButtonStateProvider.mjs.map +0 -1
  50. package/dist/js/components/src/integrations/react-hook-form/components/AfterFormSubmitEffect/AfterFormSubmitEffect.mjs +0 -32
  51. package/dist/js/components/src/integrations/react-hook-form/components/AfterFormSubmitEffect/AfterFormSubmitEffect.mjs.map +0 -1
  52. package/dist/types/components/Action/ActionStateContext.d.ts +0 -9
  53. package/dist/types/components/Action/ActionStateContext.d.ts.map +0 -1
  54. package/dist/types/integrations/react-hook-form/components/ActionGroupWrapper/SubmitButtonStateProvider.d.ts +0 -7
  55. package/dist/types/integrations/react-hook-form/components/ActionGroupWrapper/SubmitButtonStateProvider.d.ts.map +0 -1
  56. package/dist/types/integrations/react-hook-form/components/AfterFormSubmitEffect/AfterFormSubmitEffect.d.ts +0 -15
  57. package/dist/types/integrations/react-hook-form/components/AfterFormSubmitEffect/AfterFormSubmitEffect.d.ts.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.