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.
- package/README.md +349 -349
- package/dist/.vite/manifest.json +30 -30
- package/dist/FormDisabledProvider-CFVvRfQA.cjs +1 -0
- package/dist/{FormDisabledProvider-CdkJlYfk.js → FormDisabledProvider-Ivy5y4wP.js} +1 -1
- package/dist/components/Contacts/ContactButtonQrModal/ContactButtonQrModal.d.ts +6 -0
- package/dist/components/Contacts/ContactsLink/ContactsLink.d.ts +11 -0
- package/dist/components/Contacts/index.d.ts +2 -0
- package/dist/components/Form/ContactInput/ContactInput.d.ts +4 -0
- package/dist/components/Form/index.d.ts +1 -0
- package/dist/components/HookForm/ContactInput/HookFormContactInput.d.ts +4 -0
- package/dist/components/HookForm/index.d.ts +1 -0
- package/dist/components/common/QrCode/QrCode.d.ts +11 -0
- package/dist/components/common/QrCode/utils/qrCodeComponentUtils.d.ts +86 -0
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +5 -5
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +52 -52
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +28 -28
- package/dist/main.cjs.js +62 -62
- package/dist/main.d.ts +3 -2
- package/dist/main.es.js +9681 -9520
- package/dist/models/index.d.ts +3 -0
- package/dist/models/prop-types/FormInputProps/FormContactInputProp.d.ts +6 -0
- package/dist/models/prop-types/HookFormInputProps/HookFormContactInputProps.d.ts +5 -0
- package/dist/models/prop-types/InputProps/ContactInputProp.d.ts +6 -0
- package/dist/{ShortcutLinksContext-BjRebgUy.js → nivo-bar.es-Cr3RGn0C.js} +17871 -16184
- package/dist/nivo-bar.es-XyEWv2u7.cjs +281 -0
- package/dist/style.css +1 -1
- package/dist/useGetApiData-Csr4g-NL.cjs +1 -0
- package/dist/{useGetApiData-BRW203DN.js → useGetApiData-vqVw7uCt.js} +8 -8
- package/dist/utils/constants/CommonLuminusIconsArray.d.ts +1 -1
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +22 -19
- package/dist/variables.scss +165 -165
- package/package.json +122 -121
- package/dist/FormDisabledProvider-DU9jpzIh.cjs +0 -1
- package/dist/ShortcutLinksContext-B2J2n2kF.cjs +0 -279
- package/dist/useGetApiData-DSsW3tlv.cjs +0 -1
package/dist/models/index.d.ts
CHANGED
|
@@ -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,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;
|