@flowerforce/flower-react 3.0.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/LICENSE +15 -0
  3. package/README.md +771 -0
  4. package/dist/index.cjs.d.ts +1 -0
  5. package/dist/index.cjs.default.js +1 -0
  6. package/dist/index.cjs.js +1134 -0
  7. package/dist/index.cjs.mjs +2 -0
  8. package/dist/index.esm.d.ts +1 -0
  9. package/dist/index.esm.js +1113 -0
  10. package/dist/src/components/Flower.d.ts +9 -0
  11. package/dist/src/components/FlowerAction.d.ts +4 -0
  12. package/dist/src/components/FlowerComponent.d.ts +4 -0
  13. package/dist/src/components/FlowerField.d.ts +4 -0
  14. package/dist/src/components/FlowerFlow.d.ts +4 -0
  15. package/dist/src/components/FlowerNavigate/WrapperComponent.d.ts +4 -0
  16. package/dist/src/components/FlowerNavigate/index.d.ts +4 -0
  17. package/dist/src/components/FlowerNavigate/useFlowerNavigate.d.ts +7 -0
  18. package/dist/src/components/FlowerNode.d.ts +4 -0
  19. package/dist/src/components/FlowerRoute.d.ts +4 -0
  20. package/dist/src/components/FlowerRule.d.ts +4 -0
  21. package/dist/src/components/FlowerServer.d.ts +4 -0
  22. package/dist/src/components/FlowerStart.d.ts +4 -0
  23. package/dist/src/components/FlowerValue.d.ts +4 -0
  24. package/dist/src/components/types/DefaultNode.d.ts +8 -0
  25. package/dist/src/components/types/FlowerComponent.d.ts +4 -0
  26. package/dist/src/components/types/FlowerField.d.ts +30 -0
  27. package/dist/src/components/types/FlowerFlow.d.ts +4 -0
  28. package/dist/src/components/types/FlowerHooks.d.ts +26 -0
  29. package/dist/src/components/types/FlowerNavigate.d.ts +37 -0
  30. package/dist/src/components/types/FlowerNode.d.ts +4 -0
  31. package/dist/src/components/types/FlowerProvider.d.ts +13 -0
  32. package/dist/src/components/types/FlowerRoute.d.ts +8 -0
  33. package/dist/src/components/types/FlowerRule.d.ts +12 -0
  34. package/dist/src/components/types/FlowerServer.d.ts +7 -0
  35. package/dist/src/components/types/FlowerValue.d.ts +11 -0
  36. package/dist/src/components/useFlower.d.ts +3 -0
  37. package/dist/src/components/useFlowerForm.d.ts +3 -0
  38. package/dist/src/context.d.ts +9 -0
  39. package/dist/src/index.d.ts +20 -0
  40. package/dist/src/provider.d.ts +19 -0
  41. package/dist/src/reducer.d.ts +7 -0
  42. package/dist/src/selectors.d.ts +1377 -0
  43. package/dist/src/utils.d.ts +10 -0
  44. package/package.json +49 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## 3.0.0 (2024-05-20)
2
+
3
+ This was a version bump only for flower-react to align it with other projects, there were no code changes.
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ ISC License
2
+
3
+ Copyright (c) 2024 FlowerForce
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
10
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
12
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
14
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15
+ PERFORMANCE OF THIS SOFTWARE.