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/main.d.ts
CHANGED
|
@@ -8,8 +8,9 @@ export { HomeDashboard } from './components/common';
|
|
|
8
8
|
export { SimpleTooltip, HtmlTooltip } from './components/Tooltip';
|
|
9
9
|
export { AvatarIcon } from './components/UserAvatar';
|
|
10
10
|
export { InvalidFeedback } from './components/common';
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
11
|
+
export { ContactButtonQrModal, ContactsLink } from './components/Contacts';
|
|
12
|
+
export { TextInput, ContactInput, CheckInput, SelectInput, DropdownPicker, TextAreaInput, NumericStepperInput, NumericTextInput, RadioInput, } from './components/Form';
|
|
13
|
+
export { HookFormTextInput, HookFormContactInput, HookFormTextAreaInput, HookFormCheckInput, HookFormRadioInput, CustomSelectInput as HookFormSelectInput, HookFormDropdownPicker, HookFormFileInput, HookFormFloatingSubmit, HookFormNumericStepperInput, HookFormNumericTextInput, } from './components/HookForm';
|
|
13
14
|
export { PrimaryButton, FloatingFormSubmit, ContextButton, FileUploadContextButton, IconButton, FileUploadButton, } from './components/Buttons';
|
|
14
15
|
export { Dropdown, DropdownItem, SimpleToggle, UserAvatarToggle, DropdownToggle, FileUploadDropdownItem, DropdownDivider, } from './components/Dropdown';
|
|
15
16
|
export { Documents, FileExtensionIcon } from './components/Documents';
|