react-luminus-components 1.4.17 → 1.4.18

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 (39) hide show
  1. package/README.md +349 -349
  2. package/dist/.vite/manifest.json +30 -30
  3. package/dist/FormDisabledProvider-CFVvRfQA.cjs +1 -0
  4. package/dist/{FormDisabledProvider-CdkJlYfk.js → FormDisabledProvider-Ivy5y4wP.js} +1 -1
  5. package/dist/components/Contacts/ContactButtonQrModal/ContactButtonQrModal.d.ts +6 -0
  6. package/dist/components/Contacts/ContactsLink/ContactsLink.d.ts +11 -0
  7. package/dist/components/Contacts/index.d.ts +2 -0
  8. package/dist/components/Form/ContactInput/ContactInput.d.ts +4 -0
  9. package/dist/components/Form/index.d.ts +1 -0
  10. package/dist/components/HookForm/ContactInput/HookFormContactInput.d.ts +4 -0
  11. package/dist/components/HookForm/index.d.ts +1 -0
  12. package/dist/components/common/QrCode/QrCode.d.ts +11 -0
  13. package/dist/components/common/QrCode/utils/qrCodeComponentUtils.d.ts +86 -0
  14. package/dist/contexts.cjs.js +1 -1
  15. package/dist/contexts.es.js +5 -5
  16. package/dist/hooks.cjs.js +1 -1
  17. package/dist/hooks.es.js +52 -52
  18. package/dist/layout.cjs.js +1 -1
  19. package/dist/layout.es.js +28 -28
  20. package/dist/main.cjs.js +62 -62
  21. package/dist/main.d.ts +3 -2
  22. package/dist/main.es.js +9681 -9520
  23. package/dist/models/index.d.ts +3 -0
  24. package/dist/models/prop-types/FormInputProps/FormContactInputProp.d.ts +6 -0
  25. package/dist/models/prop-types/HookFormInputProps/HookFormContactInputProps.d.ts +5 -0
  26. package/dist/models/prop-types/InputProps/ContactInputProp.d.ts +6 -0
  27. package/dist/{ShortcutLinksContext-BjRebgUy.js → nivo-bar.es-Cr3RGn0C.js} +17871 -16184
  28. package/dist/nivo-bar.es-XyEWv2u7.cjs +281 -0
  29. package/dist/style.css +1 -1
  30. package/dist/useGetApiData-Csr4g-NL.cjs +1 -0
  31. package/dist/{useGetApiData-BRW203DN.js → useGetApiData-vqVw7uCt.js} +8 -8
  32. package/dist/utils/constants/CommonLuminusIconsArray.d.ts +1 -1
  33. package/dist/utils.cjs.js +1 -1
  34. package/dist/utils.es.js +22 -19
  35. package/dist/variables.scss +165 -165
  36. package/package.json +122 -121
  37. package/dist/FormDisabledProvider-DU9jpzIh.cjs +0 -1
  38. package/dist/ShortcutLinksContext-B2J2n2kF.cjs +0 -279
  39. package/dist/useGetApiData-DSsW3tlv.cjs +0 -1
@@ -4,6 +4,9 @@ export type { default as HookFormInputBaseProps } from './prop-types/HookFormInp
4
4
  export type { default as TextInputProps } from './prop-types/InputProps/TextInputProps';
5
5
  export type { default as FormTextInputProps } from './prop-types/FormInputProps/FormTextInputProps';
6
6
  export type { default as HookFormTextInputProps } from './prop-types/HookFormInputProps/HookFormTextInputProps';
7
+ export type { default as ContactInputProp } from './prop-types/InputProps/ContactInputProp';
8
+ export type { default as FormContactInputProp } from './prop-types/FormInputProps/FormContactInputProp';
9
+ export type { default as HookFormContactInputProps } from './prop-types/HookFormInputProps/HookFormContactInputProps';
7
10
  export type { default as SelectInputProps } from './prop-types/InputProps/SelectInputProps';
8
11
  export type { default as FormSelectInputProps } from './prop-types/FormInputProps/FormSelectInputProps';
9
12
  export type { default as HookFormSelectInputProps } from './prop-types/HookFormInputProps/HookFormSelectInputProps';
@@ -0,0 +1,6 @@
1
+ import { default as ContactInputProp } from '../InputProps/ContactInputProp';
2
+
3
+ type FormContactInputProp = ContactInputProp & {
4
+ value: string | null;
5
+ };
6
+ export default FormContactInputProp;
@@ -0,0 +1,5 @@
1
+ import { default as ContactInputProp } from '../InputProps/ContactInputProp';
2
+ import { default as HookFormInputBaseProps } from './HookFormInputBaseProps';
3
+
4
+ type HookFormContactInputProp = HookFormInputBaseProps & ContactInputProp;
5
+ export default HookFormContactInputProp;
@@ -0,0 +1,6 @@
1
+ import { default as InputBaseProps } from './InputBaseProps';
2
+
3
+ type ContactInputProp = InputBaseProps & {
4
+ contactType: 'email' | 'phone';
5
+ };
6
+ export default ContactInputProp;