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
|
@@ -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: ({ max, min, selectedText, onChange, onFocusInput, ...otherProps }: import('../../interfaces/components/NumberFormat').INumberFormat) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,34 +8,388 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
label: {
|
|
12
|
+
control: "text";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
15
20
|
};
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
value: {
|
|
22
|
+
control: "text";
|
|
23
|
+
description: string;
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
type: {
|
|
27
|
+
summary: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
18
30
|
};
|
|
19
|
-
|
|
20
|
-
|
|
31
|
+
defaultValue: {
|
|
32
|
+
control: "text";
|
|
33
|
+
description: string;
|
|
34
|
+
table: {
|
|
35
|
+
category: string;
|
|
36
|
+
type: {
|
|
37
|
+
summary: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
21
40
|
};
|
|
22
|
-
|
|
23
|
-
|
|
41
|
+
max: {
|
|
42
|
+
control: "number";
|
|
43
|
+
description: string;
|
|
44
|
+
table: {
|
|
45
|
+
category: string;
|
|
46
|
+
type: {
|
|
47
|
+
summary: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
24
50
|
};
|
|
25
51
|
min: {
|
|
26
|
-
|
|
52
|
+
control: "number";
|
|
53
|
+
description: string;
|
|
54
|
+
table: {
|
|
55
|
+
category: string;
|
|
56
|
+
type: {
|
|
57
|
+
summary: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
27
60
|
};
|
|
28
|
-
|
|
29
|
-
|
|
61
|
+
sizeInput: {
|
|
62
|
+
control: {
|
|
63
|
+
type: "select";
|
|
64
|
+
};
|
|
65
|
+
options: string[];
|
|
66
|
+
description: string;
|
|
67
|
+
table: {
|
|
68
|
+
category: string;
|
|
69
|
+
type: {
|
|
70
|
+
summary: string;
|
|
71
|
+
};
|
|
72
|
+
defaultValue: {
|
|
73
|
+
summary: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
type: {
|
|
78
|
+
control: {
|
|
79
|
+
type: "select";
|
|
80
|
+
};
|
|
81
|
+
options: string[];
|
|
82
|
+
description: string;
|
|
83
|
+
table: {
|
|
84
|
+
category: string;
|
|
85
|
+
type: {
|
|
86
|
+
summary: string;
|
|
87
|
+
};
|
|
88
|
+
defaultValue: {
|
|
89
|
+
summary: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
displayType: {
|
|
94
|
+
control: {
|
|
95
|
+
type: "select";
|
|
96
|
+
};
|
|
97
|
+
options: string[];
|
|
98
|
+
description: string;
|
|
99
|
+
table: {
|
|
100
|
+
category: string;
|
|
101
|
+
type: {
|
|
102
|
+
summary: string;
|
|
103
|
+
};
|
|
104
|
+
defaultValue: {
|
|
105
|
+
summary: string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
prefix: {
|
|
110
|
+
control: "text";
|
|
111
|
+
description: string;
|
|
112
|
+
table: {
|
|
113
|
+
category: string;
|
|
114
|
+
type: {
|
|
115
|
+
summary: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
suffix: {
|
|
120
|
+
control: "text";
|
|
121
|
+
description: string;
|
|
122
|
+
table: {
|
|
123
|
+
category: string;
|
|
124
|
+
type: {
|
|
125
|
+
summary: string;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
thousandSeparator: {
|
|
130
|
+
control: {
|
|
131
|
+
type: "select";
|
|
132
|
+
options: (string | boolean)[];
|
|
133
|
+
};
|
|
134
|
+
description: string;
|
|
135
|
+
table: {
|
|
136
|
+
category: string;
|
|
137
|
+
type: {
|
|
138
|
+
summary: string;
|
|
139
|
+
};
|
|
140
|
+
defaultValue: {
|
|
141
|
+
summary: string;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
thousandsGroupStyle: {
|
|
146
|
+
control: {
|
|
147
|
+
type: "select";
|
|
148
|
+
};
|
|
149
|
+
options: string[];
|
|
150
|
+
description: string;
|
|
151
|
+
table: {
|
|
152
|
+
category: string;
|
|
153
|
+
type: {
|
|
154
|
+
summary: string;
|
|
155
|
+
};
|
|
156
|
+
defaultValue: {
|
|
157
|
+
summary: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
decimalSeparator: {
|
|
162
|
+
control: "text";
|
|
163
|
+
description: string;
|
|
164
|
+
table: {
|
|
165
|
+
category: string;
|
|
166
|
+
type: {
|
|
167
|
+
summary: string;
|
|
168
|
+
};
|
|
169
|
+
defaultValue: {
|
|
170
|
+
summary: string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
decimalScale: {
|
|
175
|
+
control: "number";
|
|
176
|
+
description: string;
|
|
177
|
+
table: {
|
|
178
|
+
category: string;
|
|
179
|
+
type: {
|
|
180
|
+
summary: string;
|
|
181
|
+
};
|
|
182
|
+
defaultValue: {
|
|
183
|
+
summary: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
fixedDecimalScale: {
|
|
188
|
+
control: "boolean";
|
|
189
|
+
description: string;
|
|
190
|
+
table: {
|
|
191
|
+
category: string;
|
|
192
|
+
type: {
|
|
193
|
+
summary: string;
|
|
194
|
+
};
|
|
195
|
+
defaultValue: {
|
|
196
|
+
summary: string;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
placeholder: {
|
|
201
|
+
control: "text";
|
|
202
|
+
description: string;
|
|
203
|
+
table: {
|
|
204
|
+
category: string;
|
|
205
|
+
type: {
|
|
206
|
+
summary: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
selectedText: {
|
|
211
|
+
control: "text";
|
|
212
|
+
description: string;
|
|
213
|
+
table: {
|
|
214
|
+
category: string;
|
|
215
|
+
type: {
|
|
216
|
+
summary: string;
|
|
217
|
+
};
|
|
218
|
+
defaultValue: {
|
|
219
|
+
summary: string;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
inputMode: {
|
|
224
|
+
control: {
|
|
225
|
+
type: "select";
|
|
226
|
+
};
|
|
227
|
+
options: string[];
|
|
228
|
+
description: string;
|
|
229
|
+
table: {
|
|
230
|
+
category: string;
|
|
231
|
+
type: {
|
|
232
|
+
summary: string;
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
allowNegative: {
|
|
237
|
+
control: "boolean";
|
|
238
|
+
description: string;
|
|
239
|
+
table: {
|
|
240
|
+
category: string;
|
|
241
|
+
type: {
|
|
242
|
+
summary: string;
|
|
243
|
+
};
|
|
244
|
+
defaultValue: {
|
|
245
|
+
summary: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
allowLeadingZeros: {
|
|
250
|
+
control: "boolean";
|
|
251
|
+
description: string;
|
|
252
|
+
table: {
|
|
253
|
+
category: string;
|
|
254
|
+
type: {
|
|
255
|
+
summary: string;
|
|
256
|
+
};
|
|
257
|
+
defaultValue: {
|
|
258
|
+
summary: string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
allowedDecimalSeparators: {
|
|
263
|
+
control: "object";
|
|
264
|
+
description: string;
|
|
265
|
+
table: {
|
|
266
|
+
category: string;
|
|
267
|
+
type: {
|
|
268
|
+
summary: string;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
valueIsNumericString: {
|
|
273
|
+
control: "boolean";
|
|
274
|
+
description: string;
|
|
275
|
+
table: {
|
|
276
|
+
category: string;
|
|
277
|
+
type: {
|
|
278
|
+
summary: string;
|
|
279
|
+
};
|
|
280
|
+
defaultValue: {
|
|
281
|
+
summary: string;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
isAllowed: {
|
|
286
|
+
description: string;
|
|
287
|
+
table: {
|
|
288
|
+
category: string;
|
|
289
|
+
type: {
|
|
290
|
+
summary: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
onValueChange: {
|
|
295
|
+
action: string;
|
|
296
|
+
description: string;
|
|
297
|
+
table: {
|
|
298
|
+
category: string;
|
|
299
|
+
type: {
|
|
300
|
+
summary: string;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
onChange: {
|
|
305
|
+
action: string;
|
|
306
|
+
description: string;
|
|
307
|
+
table: {
|
|
308
|
+
category: string;
|
|
309
|
+
type: {
|
|
310
|
+
summary: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
onFocus: {
|
|
315
|
+
action: string;
|
|
316
|
+
description: string;
|
|
317
|
+
table: {
|
|
318
|
+
category: string;
|
|
319
|
+
type: {
|
|
320
|
+
summary: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
onBlur: {
|
|
325
|
+
action: string;
|
|
326
|
+
description: string;
|
|
327
|
+
table: {
|
|
328
|
+
category: string;
|
|
329
|
+
type: {
|
|
330
|
+
summary: string;
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
onKeyDown: {
|
|
335
|
+
action: string;
|
|
336
|
+
description: string;
|
|
337
|
+
table: {
|
|
338
|
+
category: string;
|
|
339
|
+
type: {
|
|
340
|
+
summary: string;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
onMouseUp: {
|
|
345
|
+
action: string;
|
|
346
|
+
description: string;
|
|
347
|
+
table: {
|
|
348
|
+
category: string;
|
|
349
|
+
type: {
|
|
350
|
+
summary: string;
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
onFocusInput: {
|
|
355
|
+
action: string;
|
|
356
|
+
description: string;
|
|
357
|
+
table: {
|
|
358
|
+
category: string;
|
|
359
|
+
type: {
|
|
360
|
+
summary: string;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
30
363
|
};
|
|
31
364
|
customInput: {
|
|
365
|
+
description: string;
|
|
32
366
|
table: {
|
|
33
|
-
|
|
367
|
+
category: string;
|
|
368
|
+
type: {
|
|
369
|
+
summary: string;
|
|
370
|
+
};
|
|
371
|
+
defaultValue: {
|
|
372
|
+
summary: string;
|
|
373
|
+
};
|
|
34
374
|
};
|
|
35
375
|
};
|
|
36
|
-
|
|
37
|
-
|
|
376
|
+
getInputRef: {
|
|
377
|
+
description: string;
|
|
378
|
+
table: {
|
|
379
|
+
category: string;
|
|
380
|
+
type: {
|
|
381
|
+
summary: string;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
renderText: {
|
|
386
|
+
description: string;
|
|
387
|
+
table: {
|
|
388
|
+
category: string;
|
|
389
|
+
type: {
|
|
390
|
+
summary: string;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
38
393
|
};
|
|
39
394
|
};
|
|
40
395
|
args: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IPaginationProps } from '../../interfaces/components/Pagination';
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
declare const Pagination: ({ totalData, totalPage, pageNumber, pageSize, className, id, kind, prevIcon, nextIcon, onChange, optionPageSize, offset, zIndex, withGotoPage, withMorePage, withOptionPageSize, locale, }: IPaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default Pagination;
|
|
@@ -1,14 +1,211 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
2
3
|
declare const meta: {
|
|
3
4
|
title: string;
|
|
4
|
-
component: ({ totalData, totalPage, pageNumber, pageSize, className, id, kind, prevIcon, nextIcon, onChange, optionPageSize, offset, zIndex, withGotoPage, withMorePage, withOptionPageSize, }: import('../../interfaces/components/Pagination').IPaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
component: ({ totalData, totalPage, pageNumber, pageSize, className, id, kind, prevIcon, nextIcon, onChange, optionPageSize, offset, zIndex, withGotoPage, withMorePage, withOptionPageSize, locale, }: import('../../interfaces/components/Pagination').IPaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
parameters: {
|
|
6
7
|
layout: string;
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
pageNumber: {
|
|
12
|
+
control: "number";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
defaultValue: {
|
|
20
|
+
summary: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
pageSize: {
|
|
25
|
+
control: "number";
|
|
26
|
+
description: string;
|
|
27
|
+
table: {
|
|
28
|
+
category: string;
|
|
29
|
+
type: {
|
|
30
|
+
summary: string;
|
|
31
|
+
};
|
|
32
|
+
defaultValue: {
|
|
33
|
+
summary: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
totalData: {
|
|
38
|
+
control: "number";
|
|
39
|
+
description: string;
|
|
40
|
+
table: {
|
|
41
|
+
category: string;
|
|
42
|
+
type: {
|
|
43
|
+
summary: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
totalPage: {
|
|
48
|
+
control: "number";
|
|
49
|
+
description: string;
|
|
50
|
+
table: {
|
|
51
|
+
category: string;
|
|
52
|
+
type: {
|
|
53
|
+
summary: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
onChange: {
|
|
58
|
+
action: string;
|
|
59
|
+
description: string;
|
|
60
|
+
table: {
|
|
61
|
+
category: string;
|
|
62
|
+
type: {
|
|
63
|
+
summary: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
kind: {
|
|
68
|
+
control: "select";
|
|
69
|
+
options: string[];
|
|
70
|
+
description: string;
|
|
71
|
+
table: {
|
|
72
|
+
category: string;
|
|
73
|
+
type: {
|
|
74
|
+
summary: string;
|
|
75
|
+
};
|
|
76
|
+
defaultValue: {
|
|
77
|
+
summary: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
10
81
|
className: {
|
|
11
|
-
|
|
82
|
+
control: "text";
|
|
83
|
+
description: string;
|
|
84
|
+
table: {
|
|
85
|
+
category: string;
|
|
86
|
+
type: {
|
|
87
|
+
summary: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
offset: {
|
|
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
|
+
zIndex: {
|
|
105
|
+
control: "number";
|
|
106
|
+
description: string;
|
|
107
|
+
table: {
|
|
108
|
+
category: string;
|
|
109
|
+
type: {
|
|
110
|
+
summary: string;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
prevIcon: {
|
|
115
|
+
control: "object";
|
|
116
|
+
description: string;
|
|
117
|
+
table: {
|
|
118
|
+
category: string;
|
|
119
|
+
type: {
|
|
120
|
+
summary: string;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
nextIcon: {
|
|
125
|
+
control: "object";
|
|
126
|
+
description: string;
|
|
127
|
+
table: {
|
|
128
|
+
category: string;
|
|
129
|
+
type: {
|
|
130
|
+
summary: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
locale: {
|
|
135
|
+
control: "select";
|
|
136
|
+
options: string[];
|
|
137
|
+
description: string;
|
|
138
|
+
table: {
|
|
139
|
+
category: string;
|
|
140
|
+
type: {
|
|
141
|
+
summary: string;
|
|
142
|
+
};
|
|
143
|
+
defaultValue: {
|
|
144
|
+
summary: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
withOptionPageSize: {
|
|
149
|
+
control: "boolean";
|
|
150
|
+
description: string;
|
|
151
|
+
table: {
|
|
152
|
+
category: string;
|
|
153
|
+
type: {
|
|
154
|
+
summary: string;
|
|
155
|
+
};
|
|
156
|
+
defaultValue: {
|
|
157
|
+
summary: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
optionPageSize: {
|
|
162
|
+
control: "object";
|
|
163
|
+
description: string;
|
|
164
|
+
table: {
|
|
165
|
+
category: string;
|
|
166
|
+
type: {
|
|
167
|
+
summary: string;
|
|
168
|
+
};
|
|
169
|
+
defaultValue: {
|
|
170
|
+
summary: string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
withGotoPage: {
|
|
175
|
+
control: "boolean";
|
|
176
|
+
description: string;
|
|
177
|
+
table: {
|
|
178
|
+
category: string;
|
|
179
|
+
type: {
|
|
180
|
+
summary: string;
|
|
181
|
+
};
|
|
182
|
+
defaultValue: {
|
|
183
|
+
summary: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
withMorePage: {
|
|
188
|
+
control: "boolean";
|
|
189
|
+
description: string;
|
|
190
|
+
table: {
|
|
191
|
+
category: string;
|
|
192
|
+
type: {
|
|
193
|
+
summary: string;
|
|
194
|
+
};
|
|
195
|
+
defaultValue: {
|
|
196
|
+
summary: string;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
id: {
|
|
201
|
+
control: "text";
|
|
202
|
+
description: string;
|
|
203
|
+
table: {
|
|
204
|
+
category: string;
|
|
205
|
+
type: {
|
|
206
|
+
summary: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
12
209
|
};
|
|
13
210
|
};
|
|
14
211
|
args: {
|