1mpacto-react-ui 0.2.0-beta.9 → 1.0.0
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/dist/assets/_colors.scss +80 -0
- package/dist/assets/_mixins.scss +44 -17
- package/dist/assets/_typography.scss +582 -0
- package/dist/assets/colors.css +40 -0
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
- package/dist/assets/icons/arrow-narrow-down.svg +3 -3
- package/dist/assets/style.css +1 -1
- package/dist/assets/toast.css +98 -194
- package/dist/assets/typography.css +96 -0
- package/dist/index.cjs +147 -144
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +27706 -27060
- package/dist/package.json.d.ts +131 -132
- package/dist/src/components/Alert/index.d.ts +1 -0
- package/dist/src/components/Badges/Badges.config.d.ts +57 -0
- package/dist/src/components/Badges/Badges.d.ts +1 -0
- package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
- package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
- package/dist/src/components/Button/Button.config.d.ts +70 -0
- package/dist/src/components/Button/Button.d.ts +1 -0
- package/dist/src/components/Button/Button.stories.d.ts +129 -4
- package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
- package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
- package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
- package/dist/src/components/Calendar/Calendar.d.ts +3 -1
- package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
- package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
- package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
- package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
- package/dist/src/components/Chart/LineChart.d.ts +1 -0
- package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
- package/dist/src/components/Chips/Chips.config.d.ts +35 -0
- package/dist/src/components/Chips/Chips.d.ts +1 -0
- package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
- package/dist/src/components/Collapse/Collapse.d.ts +1 -0
- package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
- package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
- package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
- package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
- package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
- package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
- package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
- package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
- package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
- package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
- package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
- package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
- package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
- package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
- package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
- package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
- package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
- package/dist/src/components/Input/InputNative.config.d.ts +9 -0
- package/dist/src/components/Input/InputNative.d.ts +1 -0
- package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
- package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
- package/dist/src/components/Input/InputReguler.d.ts +1 -0
- package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
- package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
- package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
- package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
- package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
- package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
- package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
- package/dist/src/components/Pagination/Pagination.d.ts +2 -1
- package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
- package/dist/src/components/Popover/Popover.d.ts +1 -0
- package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
- package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
- package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
- package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
- package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
- package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
- package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
- package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
- package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
- package/dist/src/components/Step/Step.d.ts +1 -0
- package/dist/src/components/Step/Step.stories.d.ts +135 -2
- package/dist/src/components/Step/StepIndicator.d.ts +1 -0
- package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
- package/dist/src/components/Switch/Switch.config.d.ts +26 -0
- package/dist/src/components/Switch/Switch.d.ts +1 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
- package/dist/src/components/Table/Table.config.d.ts +5 -0
- package/dist/src/components/Table/Table.d.ts +3 -3
- package/dist/src/components/Table/Table.stories.d.ts +71 -52
- package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
- package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
- package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
- package/dist/src/components/Tabs/Tabs.d.ts +2 -1
- package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
- package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
- package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
- package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
- package/dist/src/components/Textarea/Textarea.d.ts +1 -0
- package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
- package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
- package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
- package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
- package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
- package/dist/src/components/Timeline/Timeline.d.ts +1 -0
- package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
- package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
- package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
- package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
- package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
- package/dist/src/components/Upload/UploadFile.d.ts +1 -0
- package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
- package/dist/src/components/Upload/UploadImage.d.ts +2 -1
- package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
- package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
- package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
- package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
- package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
- package/dist/src/components/index.d.ts +15 -8
- package/dist/src/components/screens/Screens.stories.d.ts +14 -0
- package/dist/src/config/bigNumber/index.d.ts +1 -0
- package/dist/src/config/components/borderRadius.d.ts +1 -0
- package/dist/src/config/components/font.d.ts +7 -0
- package/dist/src/config/components/gap.d.ts +1 -0
- package/dist/src/config/components/tinymce.d.ts +1 -0
- package/dist/src/config/components/typography.d.ts +3 -49
- package/dist/src/config/tailwind/index.d.ts +3 -1
- package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
- package/dist/src/config/tailwind/typography.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +6 -3
- package/dist/src/hooks/useCombinedResizeObserver.d.ts +1 -0
- package/dist/src/hooks/useCountdown.d.ts +6 -3
- package/dist/src/hooks/useDeepCompareEffect.d.ts +1 -0
- package/dist/src/hooks/useEventListener.d.ts +1 -0
- package/dist/src/hooks/useMasonry.d.ts +1 -0
- package/dist/src/hooks/useMergeRefs.d.ts +1 -0
- package/dist/src/hooks/useOtpInput.d.ts +43 -0
- package/dist/src/hooks/useStateRef.d.ts +1 -0
- package/dist/src/interfaces/components/Alert/index.d.ts +1 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +3 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +7 -2
- package/dist/src/interfaces/components/Button/index.d.ts +3 -2
- package/dist/src/interfaces/components/ButtonIcon/index.d.ts +1 -0
- package/dist/src/interfaces/components/ButtonPopover/index.d.ts +1 -0
- package/dist/src/interfaces/components/Calendar/index.d.ts +21 -3
- package/dist/src/interfaces/components/Chart/index.d.ts +1 -0
- package/dist/src/interfaces/components/Checkbox/index.d.ts +1 -0
- package/dist/src/interfaces/components/Chips/index.d.ts +3 -1
- package/dist/src/interfaces/components/Collapse/index.d.ts +1 -0
- package/dist/src/interfaces/components/DatePicker/index.d.ts +4 -1
- package/dist/src/interfaces/components/ErrorMessage/index.d.ts +1 -1
- package/dist/src/interfaces/components/FilterContainer/index.d.ts +1 -0
- package/dist/src/interfaces/components/Input/index.d.ts +14 -0
- package/dist/src/interfaces/components/Modal/index.d.ts +1 -0
- package/dist/src/interfaces/components/NumberFormat/index.d.ts +1 -0
- package/dist/src/interfaces/components/Pagination/index.d.ts +3 -0
- package/dist/src/interfaces/components/Popover/index.d.ts +4 -1
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +4 -2
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +3 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +2 -1
- package/dist/src/interfaces/components/Sidebar/index.d.ts +4 -1
- package/dist/src/interfaces/components/Step/index.d.ts +1 -0
- package/dist/src/interfaces/components/Switch/index.d.ts +1 -1
- package/dist/src/interfaces/components/Table/index.d.ts +39 -6
- package/dist/src/interfaces/components/Tabs/index.d.ts +5 -1
- package/dist/src/interfaces/components/TextEditor/index.d.ts +1 -0
- package/dist/src/interfaces/components/Textarea/index.d.ts +14 -0
- package/dist/src/interfaces/components/TimeRange/index.d.ts +29 -0
- package/dist/src/interfaces/components/Timeline/index.d.ts +1 -0
- package/dist/src/interfaces/components/Tooltip/index.d.ts +1 -0
- package/dist/src/interfaces/components/UploadFile/index.d.ts +4 -0
- package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +1 -0
- package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +1 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/utils/common.d.ts +5 -4
- package/dist/src/utils/constant.d.ts +1 -0
- package/dist/tinymce/CHANGELOG.md +3785 -3785
- package/dist/tinymce/js/tinymce/langs/README.md +3 -3
- package/dist/tinymce/js/tinymce/license.md +6 -6
- package/dist/tinymce/js/tinymce/notices.txt +21 -21
- package/dist/tinymce/js/tinymce/plugins/codesample/plugin.min.js +8 -8
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js +92 -92
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +86 -86
- package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +92 -92
- package/dist/tinymce/js/tinymce/skins/content/dark/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/dark/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/content/default/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/default/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/content/document/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/document/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/content/writer/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/content/writer/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/oxide/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js +9 -9
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css +10 -10
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -1
- package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -1
- package/dist/tinymce/js/tinymce/tinymce.d.ts +3350 -3350
- package/dist/tinymce/js/tinymce/tinymce.min.js +10 -10
- package/dist/types-external/table.d.ts +15 -12
- package/package.json +131 -132
- package/dist/index.cjs.map +0 -1
- package/dist/index.mjs.map +0 -1
package/dist/package.json.d.ts
CHANGED
|
@@ -1,135 +1,134 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"name": "1mpacto-react-ui",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"engines": {
|
|
7
|
-
"node": ">=20.19.4",
|
|
8
|
-
"npm": ">=10.8.2"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",
|
|
12
|
-
"copy:mixin-scss": "cp ./src/styles/_mixins.scss ./dist/assets/_mixins.scss",
|
|
13
|
-
"dev": "vite",
|
|
14
|
-
"transform:style": "node -r ./src/utils/register-ts-node.js ./src/utils/generate-file-style.js",
|
|
15
|
-
"postProcess:fontfamily": "node ./src/utils/post-process-css.js",
|
|
16
|
-
"process:transformStyle": "npm run postProcess:fontfamily && npm run transform:style",
|
|
17
|
-
"process:copyStyle": "npm run copy:mixin-scss && npm run copy:toastify-css",
|
|
18
|
-
"build": "tsc -b && vite build && npm run build:css && npm run build:fontfamily && npm run process:copyStyle && npm run process:transformStyle",
|
|
19
|
-
"build:css": "tailwindcss -i ./src/styles/index.scss -o ./dist/assets/core.css --minify",
|
|
20
|
-
"build:fontfamily": "sass ./src/styles/fontfamily.scss ./dist/assets/fontfamily.css --no-source-map --style=compressed",
|
|
21
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
22
|
-
"preview": "vite preview",
|
|
23
|
-
"prepare": "husky && npm run build",
|
|
24
|
-
"watch:build": "npx watch \"npm run build\" ./src",
|
|
25
|
-
"storybook": "storybook dev -p 6006",
|
|
26
|
-
"build-storybook": "storybook build",
|
|
27
|
-
"postbuild": "copyfiles -f src/types/* dist/types-external/",
|
|
28
|
-
"install": "copyfiles -f dist/types-external/* ../../src/types/"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@chromatic-com/storybook": "^
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@storybook/
|
|
36
|
-
"@storybook/
|
|
37
|
-
"@storybook/react-vite": "^
|
|
38
|
-
"@
|
|
39
|
-
"@types/js-cookie": "^3.0.6",
|
|
40
|
-
"@types/node": "^20",
|
|
41
|
-
"@types/node-forge": "^1.3.14",
|
|
42
|
-
"@types/react": "^
|
|
43
|
-
"@types/react-dom": "^
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
45
|
-
"@typescript-eslint/parser": "^
|
|
46
|
-
"@vitejs/plugin-react-swc": "^3.
|
|
47
|
-
"autoprefixer": "^10.4.19",
|
|
48
|
-
"eslint": "^
|
|
49
|
-
"eslint-config-prettier": "^
|
|
50
|
-
"eslint-plugin-import": "^2.32.0",
|
|
51
|
-
"eslint-plugin-prettier": "^5.
|
|
52
|
-
"eslint-plugin-react": "^7.
|
|
53
|
-
"eslint-plugin-react-hooks": "^
|
|
54
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
55
|
-
"eslint-plugin-storybook": "^
|
|
56
|
-
"glob": "^11.0.3",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"react": "^
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"vite": "^
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"react": ">=
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"./dist/assets/
|
|
87
|
-
"./dist/assets/
|
|
88
|
-
"./dist/assets/
|
|
89
|
-
"./dist/assets/
|
|
90
|
-
"./dist/assets/
|
|
91
|
-
"./dist/assets/
|
|
92
|
-
"./dist/assets/
|
|
93
|
-
"./dist/assets/
|
|
94
|
-
"./dist/assets/
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"@
|
|
113
|
-
"@
|
|
114
|
-
"@
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"react-
|
|
124
|
-
"react-
|
|
125
|
-
"react-
|
|
126
|
-
"react-
|
|
127
|
-
"react-
|
|
128
|
-
"react-
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
}
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"name": "1mpacto-react-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=20.19.4",
|
|
8
|
+
"npm": ">=10.8.2"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",
|
|
12
|
+
"copy:mixin-scss": "cp ./src/styles/_mixins.scss ./dist/assets/_mixins.scss",
|
|
13
|
+
"dev": "vite",
|
|
14
|
+
"transform:style": "node -r ./src/utils/register-ts-node.js ./src/utils/generate-file-style.js",
|
|
15
|
+
"postProcess:fontfamily": "node ./src/utils/post-process-css.js",
|
|
16
|
+
"process:transformStyle": "npm run postProcess:fontfamily && npm run transform:style",
|
|
17
|
+
"process:copyStyle": "npm run copy:mixin-scss && npm run copy:toastify-css",
|
|
18
|
+
"build": "tsc -b && vite build && npm run build:css && npm run build:fontfamily && npm run process:copyStyle && npm run process:transformStyle",
|
|
19
|
+
"build:css": "tailwindcss -i ./src/styles/index.scss -o ./dist/assets/core.css --minify",
|
|
20
|
+
"build:fontfamily": "sass ./src/styles/fontfamily.scss ./dist/assets/fontfamily.css --no-source-map --style=compressed",
|
|
21
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
22
|
+
"preview": "vite preview",
|
|
23
|
+
"prepare": "husky && npm run build",
|
|
24
|
+
"watch:build": "npx watch \"npm run build\" ./src",
|
|
25
|
+
"storybook": "storybook dev -p 6006",
|
|
26
|
+
"build-storybook": "storybook build",
|
|
27
|
+
"postbuild": "copyfiles -f src/types/* dist/types-external/",
|
|
28
|
+
"install": "copyfiles -f dist/types-external/* ../../src/types/"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
32
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
33
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
34
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
35
|
+
"@storybook/blocks": "^8.4.7",
|
|
36
|
+
"@storybook/react": "^8.4.7",
|
|
37
|
+
"@storybook/react-vite": "^8.4.7",
|
|
38
|
+
"@storybook/test": "^8.4.7",
|
|
39
|
+
"@types/js-cookie": "^3.0.6",
|
|
40
|
+
"@types/node": "^20.14.10",
|
|
41
|
+
"@types/node-forge": "^1.3.14",
|
|
42
|
+
"@types/react": "^18.3.3",
|
|
43
|
+
"@types/react-dom": "^18.3.0",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
45
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
46
|
+
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
47
|
+
"autoprefixer": "^10.4.19",
|
|
48
|
+
"eslint": "^8.57.0",
|
|
49
|
+
"eslint-config-prettier": "^9.1.0",
|
|
50
|
+
"eslint-plugin-import": "^2.32.0",
|
|
51
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
52
|
+
"eslint-plugin-react": "^7.34.3",
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
54
|
+
"eslint-plugin-react-refresh": "^0.4.7",
|
|
55
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
56
|
+
"glob": "^11.0.3",
|
|
57
|
+
"husky": "^9.0.11",
|
|
58
|
+
"lint-staged": "^15.2.7",
|
|
59
|
+
"postcss": "^8.4.39",
|
|
60
|
+
"prettier": "^3.3.2",
|
|
61
|
+
"react": "^18.3.1",
|
|
62
|
+
"react-dom": "^18.3.1",
|
|
63
|
+
"sass": "^1.77.6",
|
|
64
|
+
"storybook": "^8.4.7",
|
|
65
|
+
"tailwindcss": "^3.4.4",
|
|
66
|
+
"ts-node": "^10.9.2",
|
|
67
|
+
"typescript": "^5.2.2",
|
|
68
|
+
"vite": "^5.3.1",
|
|
69
|
+
"vite-plugin-dts": "^3.9.1"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": ">=18",
|
|
73
|
+
"react-dom": ">=18",
|
|
74
|
+
"yup": ">=1.4.0"
|
|
75
|
+
},
|
|
76
|
+
"main": "./dist/index.cjs",
|
|
77
|
+
"module": "./dist/index.mjs",
|
|
78
|
+
"types": "./dist/index.d.ts",
|
|
79
|
+
"exports": {
|
|
80
|
+
".": {
|
|
81
|
+
"types": "./dist/index.d.ts",
|
|
82
|
+
"import": "./dist/index.mjs",
|
|
83
|
+
"require": "./dist/index.cjs"
|
|
84
|
+
},
|
|
85
|
+
"./dist/assets/toast.css": "./dist/assets/toast.css",
|
|
86
|
+
"./dist/assets/core.css": "./dist/assets/core.css",
|
|
87
|
+
"./dist/assets/style.css": "./dist/assets/style.css",
|
|
88
|
+
"./dist/assets/colors.css": "./dist/assets/colors.css",
|
|
89
|
+
"./dist/assets/_colors.scss": "./dist/assets/_colors.scss",
|
|
90
|
+
"./dist/assets/typography.css": "./dist/assets/typography.css",
|
|
91
|
+
"./dist/assets/_typography.scss": "./dist/assets/_typography.scss",
|
|
92
|
+
"./dist/assets/screen.css": "./dist/assets/screen.css",
|
|
93
|
+
"./dist/assets/_screen.scss": "./dist/assets/_screen.scss",
|
|
94
|
+
"./dist/assets/_mixins.scss": "./dist/assets/_mixins.scss"
|
|
95
|
+
},
|
|
96
|
+
"files": [
|
|
97
|
+
"/dist"
|
|
98
|
+
],
|
|
99
|
+
"publishConfig": {
|
|
100
|
+
"access": "public"
|
|
101
|
+
},
|
|
102
|
+
"lint-staged": {
|
|
103
|
+
"*.{js,jsx,ts,tsx}": [
|
|
104
|
+
"eslint --quiet --fix"
|
|
105
|
+
],
|
|
106
|
+
"*.{json,js,ts,jsx,tsx,html}": [
|
|
107
|
+
"prettier --write --ignore-unknown"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"dependencies": {
|
|
111
|
+
"@floating-ui/react": "^0.26.19",
|
|
112
|
+
"@internationalized/date": "^3.5.4",
|
|
113
|
+
"@tanstack/react-table": "^8.19.2",
|
|
114
|
+
"@tinymce/tinymce-react": "^6.2.1",
|
|
115
|
+
"bignumber.js": "^9.1.2",
|
|
116
|
+
"chart.js": "^4.4.3",
|
|
117
|
+
"copyfiles": "^2.4.1",
|
|
118
|
+
"date-fns": "^3.6.0",
|
|
119
|
+
"js-cookie": "^3.0.5",
|
|
120
|
+
"lossless-json": "^4.0.2",
|
|
121
|
+
"node-forge": "^1.3.1",
|
|
122
|
+
"react-aria": "^3.33.1",
|
|
123
|
+
"react-chartjs-2": "^5.2.0",
|
|
124
|
+
"react-number-format": "^5.4.0",
|
|
125
|
+
"react-select": "^5.8.0",
|
|
126
|
+
"react-stately": "^3.31.1",
|
|
127
|
+
"react-toastify": "^10.0.5",
|
|
128
|
+
"react-virtuoso": "^4.7.11",
|
|
129
|
+
"tinymce": "^7.9.1"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
133
132
|
;
|
|
134
133
|
|
|
135
134
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { TypeOptions } from 'react-toastify';
|
|
3
3
|
import { IOptionAlert } from '../../interfaces/components/Alert';
|
|
4
|
+
|
|
4
5
|
export declare const openAlert: (message: string | React.ReactNode | React.ReactNode[], type?: TypeOptions, options?: IOptionAlert) => import('react-toastify').Id;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare const configBadges: {
|
|
2
|
+
variants: {
|
|
3
|
+
'filled-gray-600': string;
|
|
4
|
+
'filled-green-600': string;
|
|
5
|
+
'filled-red-500': string;
|
|
6
|
+
'filled-blue-600': string;
|
|
7
|
+
'filled-amber-800': string;
|
|
8
|
+
'filled-pink-600': string;
|
|
9
|
+
'filled-lime-700': string;
|
|
10
|
+
'filled-lime-900-bg_lime-100': string;
|
|
11
|
+
'filled-red-900': string;
|
|
12
|
+
'filled-laba-green-10': string;
|
|
13
|
+
'filled-green-50': string;
|
|
14
|
+
'filled-blue-gray-50': string;
|
|
15
|
+
'filled-cyan-800-bg_cyan-100': string;
|
|
16
|
+
'ghost-laba-orange-01': string;
|
|
17
|
+
'ghost-laba-green-01': string;
|
|
18
|
+
'ghost-laba-green-02': string;
|
|
19
|
+
'ghost-laba-blue-02': string;
|
|
20
|
+
'ghost-laba-blue-01': string;
|
|
21
|
+
'ghost-gray-200': string;
|
|
22
|
+
'ghost-green-100': string;
|
|
23
|
+
'ghost-red-100': string;
|
|
24
|
+
'ghost-blue-100': string;
|
|
25
|
+
'ghost-amber-100': string;
|
|
26
|
+
'ghost-laba-grey-05': string;
|
|
27
|
+
'ghost-laba-red-01': string;
|
|
28
|
+
'outline-gray-600': string;
|
|
29
|
+
'outline-green-600': string;
|
|
30
|
+
'outline-red-500': string;
|
|
31
|
+
'outline-blue-600': string;
|
|
32
|
+
'outline-amber-800': string;
|
|
33
|
+
'outline-laba-blue-01': string;
|
|
34
|
+
'outline-laba-orange-06': string;
|
|
35
|
+
'outline-laba-orange-06-bg_laba-orange-01': string;
|
|
36
|
+
'outline-laba-green-06': string;
|
|
37
|
+
'outline-laba-red-06': string;
|
|
38
|
+
};
|
|
39
|
+
borderRadius: {
|
|
40
|
+
'0px': string;
|
|
41
|
+
'2px': string;
|
|
42
|
+
'4px': string;
|
|
43
|
+
'6px': string;
|
|
44
|
+
'8px': string;
|
|
45
|
+
'12px': string;
|
|
46
|
+
'16px': string;
|
|
47
|
+
'24px': string;
|
|
48
|
+
full: string;
|
|
49
|
+
};
|
|
50
|
+
fonts: {
|
|
51
|
+
lato: string;
|
|
52
|
+
inter: string;
|
|
53
|
+
pJakartaSans: string;
|
|
54
|
+
};
|
|
55
|
+
typography: Record<import('../../config/components/typography').Itypography, string>;
|
|
56
|
+
};
|
|
57
|
+
export declare const keysConfigBadgesVariant: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
2
3
|
declare const meta: {
|
|
3
4
|
title: string;
|
|
4
5
|
component: import('react').ForwardRefExoticComponent<import('../../interfaces/components/Badges').IBadges & import('react').RefAttributes<HTMLSpanElement>>;
|
|
@@ -7,8 +8,122 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
children: {
|
|
12
|
+
control: "text";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
variants: {
|
|
22
|
+
control: {
|
|
23
|
+
type: "select";
|
|
24
|
+
};
|
|
25
|
+
options: string[];
|
|
26
|
+
description: string;
|
|
27
|
+
table: {
|
|
28
|
+
category: string;
|
|
29
|
+
type: {
|
|
30
|
+
summary: string;
|
|
31
|
+
};
|
|
32
|
+
defaultValue: {
|
|
33
|
+
summary: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
rounded: {
|
|
38
|
+
control: {
|
|
39
|
+
type: "select";
|
|
40
|
+
};
|
|
41
|
+
options: string[];
|
|
42
|
+
description: string;
|
|
43
|
+
table: {
|
|
44
|
+
category: string;
|
|
45
|
+
type: {
|
|
46
|
+
summary: string;
|
|
47
|
+
};
|
|
48
|
+
defaultValue: {
|
|
49
|
+
summary: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
typography: {
|
|
54
|
+
control: {
|
|
55
|
+
type: "select";
|
|
56
|
+
};
|
|
57
|
+
options: string[];
|
|
58
|
+
description: string;
|
|
59
|
+
table: {
|
|
60
|
+
category: string;
|
|
61
|
+
type: {
|
|
62
|
+
summary: string;
|
|
63
|
+
};
|
|
64
|
+
defaultValue: {
|
|
65
|
+
summary: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
fonts: {
|
|
70
|
+
control: {
|
|
71
|
+
type: "select";
|
|
72
|
+
};
|
|
73
|
+
options: string[];
|
|
74
|
+
description: string;
|
|
75
|
+
table: {
|
|
76
|
+
category: string;
|
|
77
|
+
type: {
|
|
78
|
+
summary: string;
|
|
79
|
+
};
|
|
80
|
+
defaultValue: {
|
|
81
|
+
summary: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
10
85
|
className: {
|
|
11
|
-
|
|
86
|
+
control: "text";
|
|
87
|
+
description: string;
|
|
88
|
+
table: {
|
|
89
|
+
category: string;
|
|
90
|
+
type: {
|
|
91
|
+
summary: string;
|
|
92
|
+
};
|
|
93
|
+
defaultValue: {
|
|
94
|
+
summary: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
style: {
|
|
99
|
+
control: "object";
|
|
100
|
+
description: string;
|
|
101
|
+
table: {
|
|
102
|
+
category: string;
|
|
103
|
+
type: {
|
|
104
|
+
summary: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
onClick: {
|
|
109
|
+
action: string;
|
|
110
|
+
description: string;
|
|
111
|
+
table: {
|
|
112
|
+
category: string;
|
|
113
|
+
type: {
|
|
114
|
+
summary: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
title: {
|
|
119
|
+
control: "text";
|
|
120
|
+
description: string;
|
|
121
|
+
table: {
|
|
122
|
+
category: string;
|
|
123
|
+
type: {
|
|
124
|
+
summary: string;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
12
127
|
};
|
|
13
128
|
};
|
|
14
129
|
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
export declare const configBreadcrumbs: {
|
|
2
|
+
fonts: {
|
|
3
|
+
lato: string;
|
|
4
|
+
inter: string;
|
|
5
|
+
pJakartaSans: string;
|
|
6
|
+
};
|
|
7
|
+
variants: {
|
|
8
|
+
'laba-blue-10': string;
|
|
9
|
+
'blue-700': string;
|
|
10
|
+
'bill-secondary-800': string;
|
|
11
|
+
};
|
|
12
|
+
gapAction: {
|
|
13
|
+
'gap-0': string;
|
|
14
|
+
'gap-x-0': string;
|
|
15
|
+
'gap-y-0': string;
|
|
16
|
+
'gap-px': string;
|
|
17
|
+
'gap-x-px': string;
|
|
18
|
+
'gap-y-px': string;
|
|
19
|
+
'gap-0.5': string;
|
|
20
|
+
'gap-x-0.5': string;
|
|
21
|
+
'gap-y-0.5': string;
|
|
22
|
+
'gap-1': string;
|
|
23
|
+
'gap-x-1': string;
|
|
24
|
+
'gap-y-1': string;
|
|
25
|
+
'gap-1.5': string;
|
|
26
|
+
'gap-x-1.5': string;
|
|
27
|
+
'gap-y-1.5': string;
|
|
28
|
+
'gap-2': string;
|
|
29
|
+
'gap-x-2': string;
|
|
30
|
+
'gap-y-2': string;
|
|
31
|
+
'gap-2.5': string;
|
|
32
|
+
'gap-x-2.5': string;
|
|
33
|
+
'gap-y-2.5': string;
|
|
34
|
+
'gap-3': string;
|
|
35
|
+
'gap-x-3': string;
|
|
36
|
+
'gap-y-3': string;
|
|
37
|
+
'gap-3.5': string;
|
|
38
|
+
'gap-x-3.5': string;
|
|
39
|
+
'gap-y-3.5': string;
|
|
40
|
+
'gap-4': string;
|
|
41
|
+
'gap-x-4': string;
|
|
42
|
+
'gap-y-4': string;
|
|
43
|
+
'gap-5': string;
|
|
44
|
+
'gap-x-5': string;
|
|
45
|
+
'gap-y-5': string;
|
|
46
|
+
'gap-6': string;
|
|
47
|
+
'gap-x-6': string;
|
|
48
|
+
'gap-y-6': string;
|
|
49
|
+
'gap-7': string;
|
|
50
|
+
'gap-x-7': string;
|
|
51
|
+
'gap-y-7': string;
|
|
52
|
+
'gap-8': string;
|
|
53
|
+
'gap-x-8': string;
|
|
54
|
+
'gap-y-8': string;
|
|
55
|
+
'gap-9': string;
|
|
56
|
+
'gap-x-9': string;
|
|
57
|
+
'gap-y-9': string;
|
|
58
|
+
'gap-10': string;
|
|
59
|
+
'gap-x-10': string;
|
|
60
|
+
'gap-y-10': string;
|
|
61
|
+
};
|
|
62
|
+
gapUrls: {
|
|
63
|
+
'gap-0': string;
|
|
64
|
+
'gap-x-0': string;
|
|
65
|
+
'gap-y-0': string;
|
|
66
|
+
'gap-px': string;
|
|
67
|
+
'gap-x-px': string;
|
|
68
|
+
'gap-y-px': string;
|
|
69
|
+
'gap-0.5': string;
|
|
70
|
+
'gap-x-0.5': string;
|
|
71
|
+
'gap-y-0.5': string;
|
|
72
|
+
'gap-1': string;
|
|
73
|
+
'gap-x-1': string;
|
|
74
|
+
'gap-y-1': string;
|
|
75
|
+
'gap-1.5': string;
|
|
76
|
+
'gap-x-1.5': string;
|
|
77
|
+
'gap-y-1.5': string;
|
|
78
|
+
'gap-2': string;
|
|
79
|
+
'gap-x-2': string;
|
|
80
|
+
'gap-y-2': string;
|
|
81
|
+
'gap-2.5': string;
|
|
82
|
+
'gap-x-2.5': string;
|
|
83
|
+
'gap-y-2.5': string;
|
|
84
|
+
'gap-3': string;
|
|
85
|
+
'gap-x-3': string;
|
|
86
|
+
'gap-y-3': string;
|
|
87
|
+
'gap-3.5': string;
|
|
88
|
+
'gap-x-3.5': string;
|
|
89
|
+
'gap-y-3.5': string;
|
|
90
|
+
'gap-4': string;
|
|
91
|
+
'gap-x-4': string;
|
|
92
|
+
'gap-y-4': string;
|
|
93
|
+
'gap-5': string;
|
|
94
|
+
'gap-x-5': string;
|
|
95
|
+
'gap-y-5': string;
|
|
96
|
+
'gap-6': string;
|
|
97
|
+
'gap-x-6': string;
|
|
98
|
+
'gap-y-6': string;
|
|
99
|
+
'gap-7': string;
|
|
100
|
+
'gap-x-7': string;
|
|
101
|
+
'gap-y-7': string;
|
|
102
|
+
'gap-8': string;
|
|
103
|
+
'gap-x-8': string;
|
|
104
|
+
'gap-y-8': string;
|
|
105
|
+
'gap-9': string;
|
|
106
|
+
'gap-x-9': string;
|
|
107
|
+
'gap-y-9': string;
|
|
108
|
+
'gap-10': string;
|
|
109
|
+
'gap-x-10': string;
|
|
110
|
+
'gap-y-10': string;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
export declare const keysConfigBreadcrumbsVariant: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementType } from 'react';
|
|
2
2
|
import { IBreadcrumbs } from '../../interfaces/components/Breadcrumbs';
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
declare const Breadcrumbs: <T extends ElementType = "div">({ as, variants, fonts, urls, textBreadcrumbs, onClickBreadcrumbs, gapAction, gapUrls, className, textAction, iconAction, onClickAction, onClickUrls, separator, propsLink, classNameAction, classNameUrl, renderAction, ...props }: IBreadcrumbs<T>) => import("react/jsx-runtime").JSX.Element;
|
|
4
5
|
export default Breadcrumbs;
|