react-luminus-components 1.1.28 → 1.2.1

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 (78) hide show
  1. package/dist/.vite/manifest.json +43 -43
  2. package/dist/{DataKey-CuZpR5t0.cjs → DataKey-CLYT9XGM.cjs} +1 -1
  3. package/dist/{DataKey-C3jtX0q4.js → DataKey-CPc1_-be.js} +1 -1
  4. package/dist/{SimpleTooltip-BMSn8Fqk.js → SimpleTooltip-EPgkOstR.js} +1 -1
  5. package/dist/{SimpleTooltip-XmxUVlDH.cjs → SimpleTooltip-rgKvGQAh.cjs} +1 -1
  6. package/dist/{Typography-CHpY2hUz.cjs → Typography-C9GM_GzV.cjs} +1 -1
  7. package/dist/{Typography-DUoLZCdX.js → Typography-PSv7V5A1.js} +9 -9
  8. package/dist/{UserAvatarToggle-I_MgjXhA.js → UserAvatarToggle-CIQXhmcN.js} +67 -63
  9. package/dist/{UserAvatarToggle-DP4YFoNZ.cjs → UserAvatarToggle-DmBqBnvE.cjs} +41 -41
  10. package/dist/components/Buttons/ContextButton/ContextButton.d.ts +1 -1
  11. package/dist/components/Dropdown/comps/SimpleToggle/SimpleToggle.d.ts +1 -1
  12. package/dist/components/Form/CheckInput/CheckInput.d.ts +2 -10
  13. package/dist/components/Form/DropdownPicker/DropdownPicker.d.ts +2 -17
  14. package/dist/components/Form/SelectInput/SelectInput.d.ts +2 -17
  15. package/dist/components/Form/TextInput/TextInput.d.ts +2 -16
  16. package/dist/components/HookForm/CheckInput/HookFormCheckInput.d.ts +2 -2
  17. package/dist/components/HookForm/DropdownPicker/HookFormDropdownPicker.d.ts +2 -10
  18. package/dist/components/HookForm/FileInput/HookFormFileInput.d.ts +2 -13
  19. package/dist/components/HookForm/RadioInput/HookFormRadioInput.d.ts +2 -2
  20. package/dist/components/HookForm/SelectInput/HookFormSelectInput.d.ts +2 -2
  21. package/dist/components/HookForm/TextAreaInput/HookFormTextAreaInput.d.ts +2 -2
  22. package/dist/components/HookForm/TextInput/HookFormTextInput.d.ts +2 -2
  23. package/dist/components/InputContainers/FloatingLabelInput/FloatingLabelInput.d.ts +4 -0
  24. package/dist/components/InputContainers/RowLabelInput/RowLabelInput.d.ts +4 -0
  25. package/dist/components/InputContainers/index.d.ts +2 -0
  26. package/dist/components/common/Card/Card.d.ts +28 -0
  27. package/dist/components/common/InvalidFeedback/InvalidFeedback.d.ts +1 -2
  28. package/dist/components/common/PhotoLibrary/PhotoLibrary.d.ts +10 -0
  29. package/dist/components/common/PhotoLightbox/PhotoLightbox.d.ts +13 -0
  30. package/dist/components/common/index.d.ts +3 -1
  31. package/dist/contexts.cjs.js +1 -1
  32. package/dist/contexts.es.js +4 -4
  33. package/dist/hooks/useZodSchemaTypes/useZodSchemaTypes.d.ts +6 -2
  34. package/dist/hooks.cjs.js +1 -1
  35. package/dist/hooks.es.js +652 -652
  36. package/dist/layout.cjs.js +1 -1
  37. package/dist/layout.es.js +3 -3
  38. package/dist/main.cjs.js +1 -1
  39. package/dist/main.d.ts +5 -2
  40. package/dist/main.es.js +2109 -1952
  41. package/dist/models/index.d.ts +26 -7
  42. package/dist/models/prop-types/FormInputProps/FormCheckInputProps.d.ts +6 -0
  43. package/dist/models/prop-types/FormInputProps/FormFileInputProps.d.ts +11 -0
  44. package/dist/models/prop-types/FormInputProps/FormRadioInputProps.d.ts +6 -0
  45. package/dist/models/prop-types/FormInputProps/FormSelectInputProps.d.ts +6 -0
  46. package/dist/models/prop-types/FormInputProps/FormTextAreaInputProps.d.ts +6 -0
  47. package/dist/models/prop-types/FormInputProps/FormTextInputProps.d.ts +6 -0
  48. package/dist/models/prop-types/HookFormInputProps/HookFormCheckInputProps.d.ts +4 -0
  49. package/dist/models/prop-types/HookFormInputProps/HookFormDropdownPickerProps.d.ts +4 -0
  50. package/dist/models/prop-types/HookFormInputProps/HookFormFileInputProps.d.ts +4 -0
  51. package/dist/models/prop-types/HookFormInputProps/HookFormInputBaseProps.d.ts +7 -0
  52. package/dist/models/prop-types/HookFormInputProps/HookFormRadioInputProps.d.ts +4 -0
  53. package/dist/models/prop-types/HookFormInputProps/HookFormSelectInputProps.d.ts +4 -0
  54. package/dist/models/prop-types/HookFormInputProps/HookFormTextAreaInputProps.d.ts +4 -0
  55. package/dist/models/prop-types/HookFormInputProps/HookFormTextInputProps.d.ts +4 -0
  56. package/dist/models/prop-types/InputContainerProps.d.ts +23 -0
  57. package/dist/models/prop-types/InputProps/CheckInputProps.d.ts +5 -0
  58. package/dist/models/prop-types/InputProps/DropdownPickerProps.d.ts +14 -0
  59. package/dist/models/prop-types/InputProps/FileInputProps.d.ts +6 -0
  60. package/dist/models/prop-types/InputProps/InputBaseProps.d.ts +15 -0
  61. package/dist/models/prop-types/InputProps/RadioInputProps.d.ts +6 -0
  62. package/dist/models/prop-types/InputProps/SelectInputProps.d.ts +8 -0
  63. package/dist/models/prop-types/InputProps/TextAreaInputProps.d.ts +6 -0
  64. package/dist/models/prop-types/InputProps/TextInputProps.d.ts +6 -0
  65. package/dist/models/types/PhotoAction.d.ts +9 -0
  66. package/dist/models/types/PhotoLibraryItemModel.d.ts +7 -0
  67. package/dist/style.css +1 -1
  68. package/dist/{useConfirm-BGatkLkP.js → useConfirm-C_gZ96ka.js} +1 -1
  69. package/dist/{useConfirm-D677YHtT.cjs → useConfirm-CrF2KHR-.cjs} +1 -1
  70. package/package.json +1 -1
  71. package/dist/components/common/InputContainer/InputContainer.d.ts +0 -10
  72. package/dist/models/prop-types/HookFormCheckInputProps.d.ts +0 -10
  73. package/dist/models/prop-types/HookFormDropdownPickerProps.d.ts +0 -13
  74. package/dist/models/prop-types/HookFormRadioInputProps.d.ts +0 -10
  75. package/dist/models/prop-types/HookFormSelectInputProps.d.ts +0 -16
  76. package/dist/models/prop-types/HookFormTextAreaInputProps.d.ts +0 -13
  77. package/dist/models/prop-types/HookFormTextInputProps.d.ts +0 -14
  78. /package/dist/models/prop-types/{HookFormInputProps.d.ts → HookFormInputProps/HookFormInputProps.d.ts} +0 -0

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.