@me1a/ui 1.2.4 → 1.2.6

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 (63) hide show
  1. package/dist/components/iconify/iconify.d.ts +7 -0
  2. package/dist/components/iconify/index.d.ts +2 -0
  3. package/dist/components/iconify/types.d.ts +2 -0
  4. package/dist/components/index.cjs.js +12760 -0
  5. package/dist/components/index.cjs.js.map +1 -0
  6. package/dist/components/index.d.ts +2 -0
  7. package/dist/components/index.es.js +12736 -0
  8. package/dist/components/index.es.js.map +1 -0
  9. package/dist/components/snackbar/index.d.ts +2 -0
  10. package/dist/components/snackbar/snackbar-provider.d.ts +5 -0
  11. package/dist/components/snackbar/styles.d.ts +6 -0
  12. package/dist/hook-forms/index.cjs.js.map +1 -1
  13. package/dist/hook-forms/index.d.ts +11 -2
  14. package/dist/hook-forms/index.es.js.map +1 -1
  15. package/dist/hooks/index.cjs.js +27 -0
  16. package/dist/hooks/index.cjs.js.map +1 -0
  17. package/dist/hooks/index.d.ts +1 -0
  18. package/dist/hooks/index.es.js +25 -0
  19. package/dist/hooks/index.es.js.map +1 -0
  20. package/dist/hooks/use-boolean.d.ts +9 -0
  21. package/dist/index.cjs.js +3926 -3923
  22. package/dist/index.cjs.js.map +1 -1
  23. package/dist/index.d.ts +1 -1
  24. package/dist/index.es.js +2546 -2543
  25. package/dist/index.es.js.map +1 -1
  26. package/dist/redux/index.cjs.js +1347 -0
  27. package/dist/redux/index.cjs.js.map +1 -0
  28. package/dist/redux/index.d.ts +1 -0
  29. package/dist/redux/index.es.js +1317 -0
  30. package/dist/redux/index.es.js.map +1 -0
  31. package/dist/redux-toolkit/index.cjs.js +3 -0
  32. package/dist/redux-toolkit/index.cjs.js.map +1 -0
  33. package/dist/redux-toolkit/index.es.js +2 -0
  34. package/dist/redux-toolkit/index.es.js.map +1 -0
  35. package/package.json +29 -9
  36. package/dist/example/example/index.d.ts +0 -1
  37. package/dist/example/example/simple.d.ts +0 -4
  38. package/dist/example/hook-forms/form-provider.d.ts +0 -8
  39. package/dist/example/hook-forms/index.d.ts +0 -11
  40. package/dist/example/hook-forms/rhf-autocomplete.d.ts +0 -11
  41. package/dist/example/hook-forms/rhf-checkbox.d.ts +0 -19
  42. package/dist/example/hook-forms/rhf-radio-group.d.ts +0 -13
  43. package/dist/example/hook-forms/rhf-select.d.ts +0 -11
  44. package/dist/example/hook-forms/rhf-slider.d.ts +0 -7
  45. package/dist/example/hook-forms/rhf-switch.d.ts +0 -7
  46. package/dist/example/hook-forms/rhf-text-field.d.ts +0 -6
  47. package/dist/example/index.cjs.js +0 -1381
  48. package/dist/example/index.cjs.js.map +0 -1
  49. package/dist/example/index.d.ts +0 -2
  50. package/dist/example/index.es.js +0 -1379
  51. package/dist/example/index.es.js.map +0 -1
  52. package/dist/example/simple.d.ts +0 -4
  53. package/dist/hook-forms/example/index.d.ts +0 -1
  54. package/dist/hook-forms/example/simple.d.ts +0 -4
  55. package/dist/hook-forms/hook-forms/form-provider.d.ts +0 -8
  56. package/dist/hook-forms/hook-forms/index.d.ts +0 -11
  57. package/dist/hook-forms/hook-forms/rhf-autocomplete.d.ts +0 -11
  58. package/dist/hook-forms/hook-forms/rhf-checkbox.d.ts +0 -19
  59. package/dist/hook-forms/hook-forms/rhf-radio-group.d.ts +0 -13
  60. package/dist/hook-forms/hook-forms/rhf-select.d.ts +0 -11
  61. package/dist/hook-forms/hook-forms/rhf-slider.d.ts +0 -7
  62. package/dist/hook-forms/hook-forms/rhf-switch.d.ts +0 -7
  63. package/dist/hook-forms/hook-forms/rhf-text-field.d.ts +0 -6
@@ -1,2 +1,11 @@
1
- export * from "./example";
2
- export * from "./hook-forms";
1
+ export { FormProvider as FormProviderController } from "react-hook-form";
2
+ export * from "react-hook-form";
3
+ export * from "./rhf-select";
4
+ export * from "./rhf-checkbox";
5
+ export { default as RHFSwitch } from "./rhf-switch";
6
+ export { default as RHFSlider } from "./rhf-slider";
7
+ export { default as RHFTextField } from "./rhf-text-field";
8
+ export { default as RHFRadioGroup } from "./rhf-radio-group";
9
+ export { default as FormProvider } from "./form-provider";
10
+ export { yupResolver } from "@hookform/resolvers/yup";
11
+ export * as Yup from "yup";