@ws-ui/store 0.3.13 → 1.1.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 (51) hide show
  1. package/README.md +6 -2
  2. package/dist/index.cjs.js +57 -68
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.es.js +7900 -7883
  5. package/dist/index.es.js.map +1 -1
  6. package/dist/modules/catalog/reducer.d.ts +3 -3
  7. package/dist/modules/catalog/thunks.d.ts +1 -1
  8. package/dist/modules/debugger/reducer.d.ts +40 -40
  9. package/dist/modules/debugger/thunks.d.ts +2 -2
  10. package/dist/modules/explorer/reducer.d.ts +9 -9
  11. package/dist/modules/explorer/thunks.d.ts +49 -36
  12. package/dist/modules/modals/reducer.d.ts +5 -5
  13. package/dist/modules/modals/thunks.d.ts +1 -1
  14. package/dist/modules/model/helpers.d.ts +1 -1
  15. package/dist/modules/model/selectors.d.ts +1 -0
  16. package/dist/modules/model/subjects.d.ts +1 -1
  17. package/dist/modules/model/thunks.d.ts +8 -8
  18. package/dist/modules/model/utils.d.ts +3 -3
  19. package/dist/modules/roles/reducer.d.ts +22 -12
  20. package/dist/modules/roles/thunks.d.ts +4 -3
  21. package/dist/modules/root/reducer.d.ts +56 -47
  22. package/dist/modules/root/thunks.d.ts +27 -27
  23. package/dist/modules/settings/thunks.d.ts +2 -2
  24. package/dist/modules/shared-conditions/reducer.d.ts +10 -10
  25. package/dist/modules/shared-conditions/thunks.d.ts +1 -1
  26. package/dist/modules/shared-css/reducer.d.ts +4 -4
  27. package/dist/modules/shared-css/thunks.d.ts +1 -1
  28. package/dist/modules/shared-datasources/index.d.ts +1 -0
  29. package/dist/modules/shared-datasources/reducer.d.ts +1 -1
  30. package/dist/modules/shared-datasources/thunks.d.ts +10 -10
  31. package/dist/modules/shared-datasources/utils.d.ts +6 -0
  32. package/dist/modules/tabs/selectors.d.ts +3 -3
  33. package/dist/modules/webforms/datasources.adapter.d.ts +1 -1
  34. package/dist/modules/webforms/reducer.d.ts +10 -10
  35. package/dist/modules/webforms/thunks.d.ts +102 -15
  36. package/dist/package.json +61 -0
  37. package/dist/selectors/catalog.d.ts +1 -0
  38. package/dist/selectors/common.d.ts +44 -44
  39. package/dist/selectors/components.d.ts +8 -8
  40. package/dist/selectors/datasources.d.ts +123 -75
  41. package/dist/selectors/debugger.d.ts +9 -9
  42. package/dist/selectors/explorer.d.ts +369 -327
  43. package/dist/selectors/modals.d.ts +12 -12
  44. package/dist/selectors/roles.d.ts +104 -102
  45. package/dist/selectors/settings.d.ts +136 -136
  46. package/dist/selectors/states.d.ts +3 -3
  47. package/dist/selectors/styles.d.ts +60 -60
  48. package/dist/selectors/tabs.d.ts +5 -3
  49. package/dist/selectors/webforms.d.ts +157 -157
  50. package/dist/store.d.ts +1 -1
  51. package/package.json +10 -17
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
- # Qodly store
1
+ # store
2
2
 
3
- coming soon...
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test store` to execute the unit tests via [Vitest](https://vitest.dev/).