1mpacto-react-ui 0.2.0-beta.8 → 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 +16 -9
- 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 +7 -2
- 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
|
@@ -1,21 +1,230 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
2
|
import { IRefPopover } from '../../interfaces/components/Popover';
|
|
3
|
+
|
|
3
4
|
declare const meta: {
|
|
4
5
|
title: string;
|
|
5
|
-
component: import('react').ForwardRefExoticComponent<import('
|
|
6
|
+
component: import('react').ForwardRefExoticComponent<import('../../interfaces/components/Popover').IPopover & import('react').RefAttributes<IRefPopover>>;
|
|
6
7
|
parameters: {
|
|
7
8
|
layout: string;
|
|
8
9
|
};
|
|
9
10
|
tags: string[];
|
|
10
11
|
argTypes: {
|
|
12
|
+
children: {
|
|
13
|
+
control: "text";
|
|
14
|
+
description: string;
|
|
15
|
+
table: {
|
|
16
|
+
category: string;
|
|
17
|
+
type: {
|
|
18
|
+
summary: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
11
22
|
className: {
|
|
12
|
-
|
|
23
|
+
control: "text";
|
|
24
|
+
description: string;
|
|
25
|
+
table: {
|
|
26
|
+
category: string;
|
|
27
|
+
type: {
|
|
28
|
+
summary: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
style: {
|
|
33
|
+
control: "object";
|
|
34
|
+
description: string;
|
|
35
|
+
table: {
|
|
36
|
+
category: string;
|
|
37
|
+
type: {
|
|
38
|
+
summary: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
styleInnerPopover: {
|
|
43
|
+
control: "object";
|
|
44
|
+
description: string;
|
|
45
|
+
table: {
|
|
46
|
+
category: string;
|
|
47
|
+
type: {
|
|
48
|
+
summary: string;
|
|
49
|
+
};
|
|
50
|
+
defaultValue: {
|
|
51
|
+
summary: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
width: {
|
|
56
|
+
control: "text";
|
|
57
|
+
description: string;
|
|
58
|
+
table: {
|
|
59
|
+
category: string;
|
|
60
|
+
type: {
|
|
61
|
+
summary: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
zIndex: {
|
|
66
|
+
control: "number";
|
|
67
|
+
description: string;
|
|
68
|
+
table: {
|
|
69
|
+
category: string;
|
|
70
|
+
type: {
|
|
71
|
+
summary: string;
|
|
72
|
+
};
|
|
73
|
+
defaultValue: {
|
|
74
|
+
summary: string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
withArrow: {
|
|
79
|
+
control: "boolean";
|
|
80
|
+
description: string;
|
|
81
|
+
table: {
|
|
82
|
+
category: string;
|
|
83
|
+
type: {
|
|
84
|
+
summary: string;
|
|
85
|
+
};
|
|
86
|
+
defaultValue: {
|
|
87
|
+
summary: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
propsArrow: {
|
|
92
|
+
control: "object";
|
|
93
|
+
description: string;
|
|
94
|
+
table: {
|
|
95
|
+
category: string;
|
|
96
|
+
type: {
|
|
97
|
+
summary: string;
|
|
98
|
+
};
|
|
99
|
+
defaultValue: {
|
|
100
|
+
summary: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
offset: {
|
|
105
|
+
control: "number";
|
|
106
|
+
description: string;
|
|
107
|
+
table: {
|
|
108
|
+
category: string;
|
|
109
|
+
type: {
|
|
110
|
+
summary: string;
|
|
111
|
+
};
|
|
112
|
+
defaultValue: {
|
|
113
|
+
summary: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
useAutoPlacement: {
|
|
118
|
+
control: "boolean";
|
|
119
|
+
description: string;
|
|
120
|
+
table: {
|
|
121
|
+
category: string;
|
|
122
|
+
type: {
|
|
123
|
+
summary: string;
|
|
124
|
+
};
|
|
125
|
+
defaultValue: {
|
|
126
|
+
summary: string;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
floatingOptions: {
|
|
131
|
+
control: "object";
|
|
132
|
+
description: string;
|
|
133
|
+
table: {
|
|
134
|
+
category: string;
|
|
135
|
+
type: {
|
|
136
|
+
summary: string;
|
|
137
|
+
};
|
|
138
|
+
defaultValue: {
|
|
139
|
+
summary: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
flipOptions: {
|
|
144
|
+
control: "object";
|
|
145
|
+
description: string;
|
|
146
|
+
table: {
|
|
147
|
+
category: string;
|
|
148
|
+
type: {
|
|
149
|
+
summary: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
autoPlacementOptions: {
|
|
154
|
+
control: "object";
|
|
155
|
+
description: string;
|
|
156
|
+
table: {
|
|
157
|
+
category: string;
|
|
158
|
+
type: {
|
|
159
|
+
summary: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
useDismissProps: {
|
|
164
|
+
control: "object";
|
|
165
|
+
description: string;
|
|
166
|
+
table: {
|
|
167
|
+
category: string;
|
|
168
|
+
type: {
|
|
169
|
+
summary: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
isShow: {
|
|
174
|
+
control: "boolean";
|
|
175
|
+
description: string;
|
|
176
|
+
table: {
|
|
177
|
+
category: string;
|
|
178
|
+
type: {
|
|
179
|
+
summary: string;
|
|
180
|
+
};
|
|
181
|
+
defaultValue: {
|
|
182
|
+
summary: string;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
anchorEl: {
|
|
187
|
+
control: "object";
|
|
188
|
+
description: string;
|
|
189
|
+
table: {
|
|
190
|
+
category: string;
|
|
191
|
+
type: {
|
|
192
|
+
summary: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
onClose: {
|
|
197
|
+
action: string;
|
|
198
|
+
description: string;
|
|
199
|
+
table: {
|
|
200
|
+
category: string;
|
|
201
|
+
type: {
|
|
202
|
+
summary: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
floatingFocusManagerProps: {
|
|
207
|
+
control: "object";
|
|
208
|
+
description: string;
|
|
209
|
+
table: {
|
|
210
|
+
category: string;
|
|
211
|
+
type: {
|
|
212
|
+
summary: string;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
title: {
|
|
217
|
+
control: "text";
|
|
218
|
+
description: string;
|
|
219
|
+
table: {
|
|
220
|
+
category: string;
|
|
221
|
+
type: {
|
|
222
|
+
summary: string;
|
|
223
|
+
};
|
|
224
|
+
};
|
|
13
225
|
};
|
|
14
226
|
};
|
|
15
|
-
args:
|
|
16
|
-
onChange: import('@vitest/spy').Mock<(...args: any[]) => any>;
|
|
17
|
-
};
|
|
18
|
-
render: (args: import('..').IPopover & import('react').RefAttributes<IRefPopover>) => import("react/jsx-runtime").JSX.Element;
|
|
227
|
+
render: (args: import('../../interfaces/components/Popover').IPopover & import('react').RefAttributes<IRefPopover>) => import("react/jsx-runtime").JSX.Element;
|
|
19
228
|
};
|
|
20
229
|
export default meta;
|
|
21
230
|
type Story = StoryObj<typeof meta>;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
|
|
4
|
+
declare const meta: {
|
|
5
|
+
title: string;
|
|
6
|
+
component: FC<{
|
|
7
|
+
containerId?: string;
|
|
8
|
+
children: import('react').ReactNode;
|
|
9
|
+
selector?: string;
|
|
10
|
+
}>;
|
|
11
|
+
parameters: {
|
|
12
|
+
layout: string;
|
|
13
|
+
};
|
|
14
|
+
tags: string[];
|
|
15
|
+
argTypes: {
|
|
16
|
+
children: {
|
|
17
|
+
control: "object";
|
|
18
|
+
description: string;
|
|
19
|
+
table: {
|
|
20
|
+
category: string;
|
|
21
|
+
type: {
|
|
22
|
+
summary: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
containerId: {
|
|
27
|
+
control: "text";
|
|
28
|
+
description: string;
|
|
29
|
+
table: {
|
|
30
|
+
category: string;
|
|
31
|
+
type: {
|
|
32
|
+
summary: string;
|
|
33
|
+
};
|
|
34
|
+
defaultValue: {
|
|
35
|
+
summary: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
selector: {
|
|
40
|
+
control: "text";
|
|
41
|
+
description: string;
|
|
42
|
+
table: {
|
|
43
|
+
category: string;
|
|
44
|
+
type: {
|
|
45
|
+
summary: string;
|
|
46
|
+
};
|
|
47
|
+
defaultValue: {
|
|
48
|
+
summary: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
render: (args: {
|
|
54
|
+
containerId?: string;
|
|
55
|
+
children: import('react').ReactNode;
|
|
56
|
+
selector?: string;
|
|
57
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
+
};
|
|
59
|
+
export default meta;
|
|
60
|
+
type Story = StoryObj<typeof meta>;
|
|
61
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const configRadioCheckbox: {
|
|
2
|
+
size: {
|
|
3
|
+
reguler: string;
|
|
4
|
+
small: string;
|
|
5
|
+
m: string;
|
|
6
|
+
s: string;
|
|
7
|
+
};
|
|
8
|
+
variants: {
|
|
9
|
+
'laba-blue-10': string;
|
|
10
|
+
'laba-blue-10-hv_bg_transparent': string;
|
|
11
|
+
'blue-700': string;
|
|
12
|
+
'blue-700-hv_bg_transparent': string;
|
|
13
|
+
'bill-primary-500': string;
|
|
14
|
+
'bill-primary-600-hv_bg_transparent': string;
|
|
15
|
+
'bill-secondary-800-hv_bg_transparent': string;
|
|
16
|
+
};
|
|
17
|
+
variantDisableds: {
|
|
18
|
+
'default-disabled-checkbox': string;
|
|
19
|
+
'default-disabled-radio': string;
|
|
20
|
+
};
|
|
21
|
+
borderRadius: {
|
|
22
|
+
'0px': string;
|
|
23
|
+
'2px': string;
|
|
24
|
+
'4px': string;
|
|
25
|
+
'6px': string;
|
|
26
|
+
'8px': string;
|
|
27
|
+
'12px': string;
|
|
28
|
+
'16px': string;
|
|
29
|
+
'24px': string;
|
|
30
|
+
full: string;
|
|
31
|
+
};
|
|
32
|
+
typography: Record<import('../../config/components/typography').Itypography, string>;
|
|
33
|
+
fonts: {
|
|
34
|
+
lato: string;
|
|
35
|
+
inter: string;
|
|
36
|
+
pJakartaSans: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare const keysConfigRadioCheckboxSize: string[];
|
|
40
|
+
export declare const keysConfigRadioCheckboxVariant: string[];
|
|
41
|
+
export declare const keysConfigRadioCheckboxVariantDisabled: 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/RadioCheckbox/RadioCheckbox').IRadioCheckbox & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -7,26 +8,247 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
label: {
|
|
12
|
+
control: "text";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
checkedIcon: {
|
|
22
|
+
control: "object";
|
|
23
|
+
description: string;
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
type: {
|
|
27
|
+
summary: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
sizeInput: {
|
|
32
|
+
control: {
|
|
33
|
+
type: "select";
|
|
34
|
+
};
|
|
35
|
+
options: string[];
|
|
36
|
+
description: string;
|
|
37
|
+
table: {
|
|
38
|
+
category: string;
|
|
39
|
+
type: {
|
|
40
|
+
summary: string;
|
|
41
|
+
};
|
|
42
|
+
defaultValue: {
|
|
43
|
+
summary: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
variants: {
|
|
48
|
+
control: {
|
|
49
|
+
type: "select";
|
|
50
|
+
};
|
|
51
|
+
options: string[];
|
|
52
|
+
description: string;
|
|
53
|
+
table: {
|
|
54
|
+
category: string;
|
|
55
|
+
type: {
|
|
56
|
+
summary: string;
|
|
57
|
+
};
|
|
58
|
+
defaultValue: {
|
|
59
|
+
summary: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
variantDisableds: {
|
|
64
|
+
control: {
|
|
65
|
+
type: "select";
|
|
66
|
+
};
|
|
67
|
+
options: string[];
|
|
68
|
+
description: string;
|
|
69
|
+
table: {
|
|
70
|
+
category: string;
|
|
71
|
+
type: {
|
|
72
|
+
summary: string;
|
|
73
|
+
};
|
|
74
|
+
defaultValue: {
|
|
75
|
+
summary: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
borderRadius: {
|
|
80
|
+
control: {
|
|
81
|
+
type: "select";
|
|
82
|
+
};
|
|
83
|
+
options: string[];
|
|
84
|
+
description: string;
|
|
85
|
+
table: {
|
|
86
|
+
category: string;
|
|
87
|
+
type: {
|
|
88
|
+
summary: string;
|
|
89
|
+
};
|
|
90
|
+
defaultValue: {
|
|
91
|
+
summary: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
typography: {
|
|
96
|
+
control: {
|
|
97
|
+
type: "select";
|
|
98
|
+
};
|
|
99
|
+
options: string[];
|
|
100
|
+
description: string;
|
|
101
|
+
table: {
|
|
102
|
+
category: string;
|
|
103
|
+
type: {
|
|
104
|
+
summary: string;
|
|
105
|
+
};
|
|
106
|
+
defaultValue: {
|
|
107
|
+
summary: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
fonts: {
|
|
112
|
+
control: {
|
|
113
|
+
type: "select";
|
|
114
|
+
};
|
|
115
|
+
options: string[];
|
|
116
|
+
description: string;
|
|
117
|
+
table: {
|
|
118
|
+
category: string;
|
|
119
|
+
type: {
|
|
120
|
+
summary: string;
|
|
121
|
+
};
|
|
122
|
+
defaultValue: {
|
|
123
|
+
summary: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
10
127
|
className: {
|
|
11
|
-
|
|
128
|
+
control: "text";
|
|
129
|
+
description: string;
|
|
130
|
+
table: {
|
|
131
|
+
category: string;
|
|
132
|
+
type: {
|
|
133
|
+
summary: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
12
136
|
};
|
|
13
137
|
classNameContainer: {
|
|
14
|
-
|
|
138
|
+
control: "text";
|
|
139
|
+
description: string;
|
|
140
|
+
table: {
|
|
141
|
+
category: string;
|
|
142
|
+
type: {
|
|
143
|
+
summary: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
15
146
|
};
|
|
16
147
|
classNameLabel: {
|
|
17
|
-
|
|
148
|
+
control: "text";
|
|
149
|
+
description: string;
|
|
150
|
+
table: {
|
|
151
|
+
category: string;
|
|
152
|
+
type: {
|
|
153
|
+
summary: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
18
156
|
};
|
|
19
157
|
classNameCheckedIcon: {
|
|
20
|
-
|
|
158
|
+
control: "text";
|
|
159
|
+
description: string;
|
|
160
|
+
table: {
|
|
161
|
+
category: string;
|
|
162
|
+
type: {
|
|
163
|
+
summary: string;
|
|
164
|
+
};
|
|
165
|
+
};
|
|
21
166
|
};
|
|
22
167
|
classNameContainerCheckedIcon: {
|
|
23
|
-
|
|
168
|
+
control: "text";
|
|
169
|
+
description: string;
|
|
170
|
+
table: {
|
|
171
|
+
category: string;
|
|
172
|
+
type: {
|
|
173
|
+
summary: string;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
24
176
|
};
|
|
25
|
-
|
|
26
|
-
control:
|
|
177
|
+
type: {
|
|
178
|
+
control: {
|
|
179
|
+
type: "radio";
|
|
180
|
+
};
|
|
181
|
+
options: string[];
|
|
182
|
+
description: string;
|
|
183
|
+
table: {
|
|
184
|
+
category: string;
|
|
185
|
+
type: {
|
|
186
|
+
summary: string;
|
|
187
|
+
};
|
|
188
|
+
defaultValue: {
|
|
189
|
+
summary: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
name: {
|
|
194
|
+
control: "text";
|
|
195
|
+
description: string;
|
|
196
|
+
table: {
|
|
197
|
+
category: string;
|
|
198
|
+
type: {
|
|
199
|
+
summary: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
27
202
|
};
|
|
28
203
|
checked: {
|
|
29
204
|
control: "boolean";
|
|
205
|
+
description: string;
|
|
206
|
+
table: {
|
|
207
|
+
category: string;
|
|
208
|
+
type: {
|
|
209
|
+
summary: string;
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
disabled: {
|
|
214
|
+
control: "boolean";
|
|
215
|
+
description: string;
|
|
216
|
+
table: {
|
|
217
|
+
category: string;
|
|
218
|
+
type: {
|
|
219
|
+
summary: string;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
value: {
|
|
224
|
+
control: "text";
|
|
225
|
+
description: string;
|
|
226
|
+
table: {
|
|
227
|
+
category: string;
|
|
228
|
+
type: {
|
|
229
|
+
summary: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
onChange: {
|
|
234
|
+
action: string;
|
|
235
|
+
description: string;
|
|
236
|
+
table: {
|
|
237
|
+
category: string;
|
|
238
|
+
type: {
|
|
239
|
+
summary: string;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
id: {
|
|
244
|
+
control: "text";
|
|
245
|
+
description: string;
|
|
246
|
+
table: {
|
|
247
|
+
category: string;
|
|
248
|
+
type: {
|
|
249
|
+
summary: string;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
30
252
|
};
|
|
31
253
|
};
|
|
32
254
|
args: {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const configRadioCheckboxLabel: {
|
|
2
|
+
borderRadius: {
|
|
3
|
+
'0px': string;
|
|
4
|
+
'2px': string;
|
|
5
|
+
'4px': string;
|
|
6
|
+
'6px': string;
|
|
7
|
+
'8px': string;
|
|
8
|
+
'12px': string;
|
|
9
|
+
'16px': string;
|
|
10
|
+
'24px': string;
|
|
11
|
+
full: string;
|
|
12
|
+
};
|
|
13
|
+
typographyLabel: Record<import('../../config/components/typography').Itypography, string>;
|
|
14
|
+
typographyDesc: Record<import('../../config/components/typography').Itypography, string>;
|
|
15
|
+
fonts: {
|
|
16
|
+
lato: string;
|
|
17
|
+
inter: string;
|
|
18
|
+
pJakartaSans: string;
|
|
19
|
+
};
|
|
20
|
+
variants: {
|
|
21
|
+
'laba-blue-01': string;
|
|
22
|
+
'blue-50': string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export declare const keysConfigRadioCheckboxLabelVariant: string[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IRadioCheckboxLabel } from '../../interfaces/components/RadioCheckbox/RadioCheckboxLabel';
|
|
2
|
+
|
|
2
3
|
declare const RadioCheckboxLabel: ({ radioCheckboxProps, name, id, type, typographyLabel, typographyDesc, fonts, borderRadius, className, disabled, variants, label, desc, backgroundWithHover, ...props }: IRadioCheckboxLabel) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default RadioCheckboxLabel;
|