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: (props: import('..').IDatePicker) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,8 +8,226 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
value: {
|
|
12
|
+
control: "date";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
defaultValue: {
|
|
22
|
+
control: "date";
|
|
23
|
+
description: string;
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
type: {
|
|
27
|
+
summary: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
minDate: {
|
|
32
|
+
control: "date";
|
|
33
|
+
description: string;
|
|
34
|
+
table: {
|
|
35
|
+
category: string;
|
|
36
|
+
type: {
|
|
37
|
+
summary: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
maxDate: {
|
|
42
|
+
control: "date";
|
|
43
|
+
description: string;
|
|
44
|
+
table: {
|
|
45
|
+
category: string;
|
|
46
|
+
type: {
|
|
47
|
+
summary: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
10
51
|
className: {
|
|
11
|
-
|
|
52
|
+
control: "text";
|
|
53
|
+
description: string;
|
|
54
|
+
table: {
|
|
55
|
+
category: string;
|
|
56
|
+
type: {
|
|
57
|
+
summary: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
classNameButton: {
|
|
62
|
+
control: "text";
|
|
63
|
+
description: string;
|
|
64
|
+
table: {
|
|
65
|
+
category: string;
|
|
66
|
+
type: {
|
|
67
|
+
summary: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
prevIcon: {
|
|
72
|
+
control: "object";
|
|
73
|
+
description: string;
|
|
74
|
+
table: {
|
|
75
|
+
category: string;
|
|
76
|
+
type: {
|
|
77
|
+
summary: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
nextIcon: {
|
|
82
|
+
control: "object";
|
|
83
|
+
description: string;
|
|
84
|
+
table: {
|
|
85
|
+
category: string;
|
|
86
|
+
type: {
|
|
87
|
+
summary: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
hiddenHeader: {
|
|
92
|
+
control: "boolean";
|
|
93
|
+
description: string;
|
|
94
|
+
table: {
|
|
95
|
+
category: string;
|
|
96
|
+
type: {
|
|
97
|
+
summary: string;
|
|
98
|
+
};
|
|
99
|
+
defaultValue: {
|
|
100
|
+
summary: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
zIndexPopper: {
|
|
105
|
+
control: "text";
|
|
106
|
+
description: string;
|
|
107
|
+
table: {
|
|
108
|
+
category: string;
|
|
109
|
+
type: {
|
|
110
|
+
summary: string;
|
|
111
|
+
};
|
|
112
|
+
defaultValue: {
|
|
113
|
+
summary: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
buttonClick: {
|
|
118
|
+
description: string;
|
|
119
|
+
table: {
|
|
120
|
+
category: string;
|
|
121
|
+
type: {
|
|
122
|
+
summary: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
buttonReset: {
|
|
127
|
+
description: string;
|
|
128
|
+
table: {
|
|
129
|
+
category: string;
|
|
130
|
+
type: {
|
|
131
|
+
summary: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
buttonSubmit: {
|
|
136
|
+
description: string;
|
|
137
|
+
table: {
|
|
138
|
+
category: string;
|
|
139
|
+
type: {
|
|
140
|
+
summary: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
withConfirm: {
|
|
145
|
+
control: "boolean";
|
|
146
|
+
description: string;
|
|
147
|
+
table: {
|
|
148
|
+
category: string;
|
|
149
|
+
type: {
|
|
150
|
+
summary: string;
|
|
151
|
+
};
|
|
152
|
+
defaultValue: {
|
|
153
|
+
summary: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
isCustomTime: {
|
|
158
|
+
control: "boolean";
|
|
159
|
+
description: string;
|
|
160
|
+
table: {
|
|
161
|
+
category: string;
|
|
162
|
+
type: {
|
|
163
|
+
summary: string;
|
|
164
|
+
};
|
|
165
|
+
defaultValue: {
|
|
166
|
+
summary: string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
offsetPopover: {
|
|
171
|
+
control: "object";
|
|
172
|
+
description: string;
|
|
173
|
+
table: {
|
|
174
|
+
category: string;
|
|
175
|
+
type: {
|
|
176
|
+
summary: string;
|
|
177
|
+
};
|
|
178
|
+
defaultValue: {
|
|
179
|
+
summary: string;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
floatingOptions: {
|
|
184
|
+
control: "object";
|
|
185
|
+
description: string;
|
|
186
|
+
table: {
|
|
187
|
+
category: string;
|
|
188
|
+
type: {
|
|
189
|
+
summary: string;
|
|
190
|
+
};
|
|
191
|
+
defaultValue: {
|
|
192
|
+
summary: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
onChange: {
|
|
197
|
+
action: string;
|
|
198
|
+
description: string;
|
|
199
|
+
table: {
|
|
200
|
+
category: string;
|
|
201
|
+
type: {
|
|
202
|
+
summary: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
id: {
|
|
207
|
+
control: "text";
|
|
208
|
+
description: string;
|
|
209
|
+
table: {
|
|
210
|
+
category: string;
|
|
211
|
+
type: {
|
|
212
|
+
summary: string;
|
|
213
|
+
};
|
|
214
|
+
defaultValue: {
|
|
215
|
+
summary: string;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
idPopover: {
|
|
220
|
+
control: "text";
|
|
221
|
+
description: string;
|
|
222
|
+
table: {
|
|
223
|
+
category: string;
|
|
224
|
+
type: {
|
|
225
|
+
summary: string;
|
|
226
|
+
};
|
|
227
|
+
defaultValue: {
|
|
228
|
+
summary: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
12
231
|
};
|
|
13
232
|
};
|
|
14
233
|
render: (args: import('..').IDatePicker) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IFilterDate } from '../../interfaces/components/DatePicker';
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
declare const FilterDate: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, }: IFilterDate) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default FilterDate;
|
|
@@ -1,14 +1,243 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
2
3
|
declare const meta: {
|
|
3
4
|
title: string;
|
|
4
|
-
component: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, mountedExecuteChange, formatingDate, }: import('../../interfaces/components/DatePicker').IFilterDate) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
component: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, }: import('../../interfaces/components/DatePicker').IFilterDate) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
parameters: {
|
|
6
7
|
layout: string;
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
buttonClick: {
|
|
12
|
+
control: "object";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
prevIcon: {
|
|
22
|
+
control: "object";
|
|
23
|
+
description: string;
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
type: {
|
|
27
|
+
summary: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
nextIcon: {
|
|
32
|
+
control: "object";
|
|
33
|
+
description: string;
|
|
34
|
+
table: {
|
|
35
|
+
category: string;
|
|
36
|
+
type: {
|
|
37
|
+
summary: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
buttonReset: {
|
|
42
|
+
control: "object";
|
|
43
|
+
description: string;
|
|
44
|
+
table: {
|
|
45
|
+
category: string;
|
|
46
|
+
type: {
|
|
47
|
+
summary: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
buttonSubmit: {
|
|
52
|
+
control: "object";
|
|
53
|
+
description: string;
|
|
54
|
+
table: {
|
|
55
|
+
category: string;
|
|
56
|
+
type: {
|
|
57
|
+
summary: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
value: {
|
|
62
|
+
control: "object";
|
|
63
|
+
description: string;
|
|
64
|
+
table: {
|
|
65
|
+
category: string;
|
|
66
|
+
type: {
|
|
67
|
+
summary: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
defaultValueLabel: {
|
|
72
|
+
control: "object";
|
|
73
|
+
description: string;
|
|
74
|
+
table: {
|
|
75
|
+
category: string;
|
|
76
|
+
type: {
|
|
77
|
+
summary: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
buttonList: {
|
|
82
|
+
control: "object";
|
|
83
|
+
description: string;
|
|
84
|
+
table: {
|
|
85
|
+
category: string;
|
|
86
|
+
type: {
|
|
87
|
+
summary: string;
|
|
88
|
+
};
|
|
89
|
+
defaultValue: {
|
|
90
|
+
summary: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
formatingDate: {
|
|
95
|
+
control: "text";
|
|
96
|
+
description: string;
|
|
97
|
+
table: {
|
|
98
|
+
category: string;
|
|
99
|
+
type: {
|
|
100
|
+
summary: string;
|
|
101
|
+
};
|
|
102
|
+
defaultValue: {
|
|
103
|
+
summary: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
10
107
|
className: {
|
|
11
|
-
|
|
108
|
+
control: "text";
|
|
109
|
+
description: string;
|
|
110
|
+
table: {
|
|
111
|
+
category: string;
|
|
112
|
+
type: {
|
|
113
|
+
summary: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
classNameButton: {
|
|
118
|
+
control: "text";
|
|
119
|
+
description: string;
|
|
120
|
+
table: {
|
|
121
|
+
category: string;
|
|
122
|
+
type: {
|
|
123
|
+
summary: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
typePicker: {
|
|
128
|
+
control: "select";
|
|
129
|
+
options: string[];
|
|
130
|
+
description: string;
|
|
131
|
+
table: {
|
|
132
|
+
category: string;
|
|
133
|
+
type: {
|
|
134
|
+
summary: string;
|
|
135
|
+
};
|
|
136
|
+
defaultValue: {
|
|
137
|
+
summary: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
zIndexPopper: {
|
|
142
|
+
control: "number";
|
|
143
|
+
description: string;
|
|
144
|
+
table: {
|
|
145
|
+
category: string;
|
|
146
|
+
type: {
|
|
147
|
+
summary: string;
|
|
148
|
+
};
|
|
149
|
+
defaultValue: {
|
|
150
|
+
summary: string;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
isCustomTime: {
|
|
155
|
+
control: "boolean";
|
|
156
|
+
description: string;
|
|
157
|
+
table: {
|
|
158
|
+
category: string;
|
|
159
|
+
type: {
|
|
160
|
+
summary: string;
|
|
161
|
+
};
|
|
162
|
+
defaultValue: {
|
|
163
|
+
summary: string;
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
mountedExecuteChange: {
|
|
168
|
+
control: "boolean";
|
|
169
|
+
description: string;
|
|
170
|
+
table: {
|
|
171
|
+
category: string;
|
|
172
|
+
type: {
|
|
173
|
+
summary: string;
|
|
174
|
+
};
|
|
175
|
+
defaultValue: {
|
|
176
|
+
summary: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
offsetPopover: {
|
|
181
|
+
control: "number";
|
|
182
|
+
description: string;
|
|
183
|
+
table: {
|
|
184
|
+
category: string;
|
|
185
|
+
type: {
|
|
186
|
+
summary: string;
|
|
187
|
+
};
|
|
188
|
+
defaultValue: {
|
|
189
|
+
summary: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
floatingOptions: {
|
|
194
|
+
control: "object";
|
|
195
|
+
description: string;
|
|
196
|
+
table: {
|
|
197
|
+
category: string;
|
|
198
|
+
type: {
|
|
199
|
+
summary: string;
|
|
200
|
+
};
|
|
201
|
+
defaultValue: {
|
|
202
|
+
summary: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
onChange: {
|
|
207
|
+
action: string;
|
|
208
|
+
description: string;
|
|
209
|
+
table: {
|
|
210
|
+
category: string;
|
|
211
|
+
type: {
|
|
212
|
+
summary: string;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
id: {
|
|
217
|
+
control: "text";
|
|
218
|
+
description: string;
|
|
219
|
+
table: {
|
|
220
|
+
category: string;
|
|
221
|
+
type: {
|
|
222
|
+
summary: string;
|
|
223
|
+
};
|
|
224
|
+
defaultValue: {
|
|
225
|
+
summary: string;
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
idPopover: {
|
|
230
|
+
control: "text";
|
|
231
|
+
description: string;
|
|
232
|
+
table: {
|
|
233
|
+
category: string;
|
|
234
|
+
type: {
|
|
235
|
+
summary: string;
|
|
236
|
+
};
|
|
237
|
+
defaultValue: {
|
|
238
|
+
summary: string;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
12
241
|
};
|
|
13
242
|
};
|
|
14
243
|
render: (args: import('../../interfaces/components/DatePicker').IFilterDate) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IMonthYearPicker } from '../../interfaces/components/DatePicker';
|
|
2
|
+
|
|
2
3
|
declare const MonthYearPicker: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, }: IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default MonthYearPicker;
|
|
@@ -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: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, }: import('../../interfaces/components/DatePicker').IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,8 +8,203 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
month: {
|
|
12
|
+
control: "number";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
year: {
|
|
22
|
+
control: "number";
|
|
23
|
+
description: string;
|
|
24
|
+
table: {
|
|
25
|
+
category: string;
|
|
26
|
+
type: {
|
|
27
|
+
summary: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
minDate: {
|
|
32
|
+
control: "date";
|
|
33
|
+
description: string;
|
|
34
|
+
table: {
|
|
35
|
+
category: string;
|
|
36
|
+
type: {
|
|
37
|
+
summary: string;
|
|
38
|
+
};
|
|
39
|
+
defaultValue: {
|
|
40
|
+
summary: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
maxDate: {
|
|
45
|
+
control: "date";
|
|
46
|
+
description: string;
|
|
47
|
+
table: {
|
|
48
|
+
category: string;
|
|
49
|
+
type: {
|
|
50
|
+
summary: string;
|
|
51
|
+
};
|
|
52
|
+
defaultValue: {
|
|
53
|
+
summary: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
buttonClick: {
|
|
58
|
+
control: "object";
|
|
59
|
+
description: string;
|
|
60
|
+
table: {
|
|
61
|
+
category: string;
|
|
62
|
+
type: {
|
|
63
|
+
summary: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
10
67
|
className: {
|
|
11
|
-
|
|
68
|
+
control: "text";
|
|
69
|
+
description: string;
|
|
70
|
+
table: {
|
|
71
|
+
category: string;
|
|
72
|
+
type: {
|
|
73
|
+
summary: string;
|
|
74
|
+
};
|
|
75
|
+
defaultValue: {
|
|
76
|
+
summary: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
classNameButton: {
|
|
81
|
+
control: "text";
|
|
82
|
+
description: string;
|
|
83
|
+
table: {
|
|
84
|
+
category: string;
|
|
85
|
+
type: {
|
|
86
|
+
summary: string;
|
|
87
|
+
};
|
|
88
|
+
defaultValue: {
|
|
89
|
+
summary: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
zIndexPopper: {
|
|
94
|
+
control: "number";
|
|
95
|
+
description: string;
|
|
96
|
+
table: {
|
|
97
|
+
category: string;
|
|
98
|
+
type: {
|
|
99
|
+
summary: string;
|
|
100
|
+
};
|
|
101
|
+
defaultValue: {
|
|
102
|
+
summary: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
hiddenHeader: {
|
|
107
|
+
control: "boolean";
|
|
108
|
+
description: string;
|
|
109
|
+
table: {
|
|
110
|
+
category: string;
|
|
111
|
+
type: {
|
|
112
|
+
summary: string;
|
|
113
|
+
};
|
|
114
|
+
defaultValue: {
|
|
115
|
+
summary: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
type: {
|
|
120
|
+
control: "inline-check";
|
|
121
|
+
options: string[];
|
|
122
|
+
description: string;
|
|
123
|
+
table: {
|
|
124
|
+
category: string;
|
|
125
|
+
type: {
|
|
126
|
+
summary: string;
|
|
127
|
+
};
|
|
128
|
+
defaultValue: {
|
|
129
|
+
summary: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
activeType: {
|
|
134
|
+
control: "radio";
|
|
135
|
+
options: string[];
|
|
136
|
+
description: string;
|
|
137
|
+
table: {
|
|
138
|
+
category: string;
|
|
139
|
+
type: {
|
|
140
|
+
summary: string;
|
|
141
|
+
};
|
|
142
|
+
defaultValue: {
|
|
143
|
+
summary: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
offsetPopover: {
|
|
148
|
+
control: "number";
|
|
149
|
+
description: string;
|
|
150
|
+
table: {
|
|
151
|
+
category: string;
|
|
152
|
+
type: {
|
|
153
|
+
summary: string;
|
|
154
|
+
};
|
|
155
|
+
defaultValue: {
|
|
156
|
+
summary: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
floatingOptions: {
|
|
161
|
+
control: "object";
|
|
162
|
+
description: string;
|
|
163
|
+
table: {
|
|
164
|
+
category: string;
|
|
165
|
+
type: {
|
|
166
|
+
summary: string;
|
|
167
|
+
};
|
|
168
|
+
defaultValue: {
|
|
169
|
+
summary: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
onChange: {
|
|
174
|
+
action: string;
|
|
175
|
+
description: string;
|
|
176
|
+
table: {
|
|
177
|
+
category: string;
|
|
178
|
+
type: {
|
|
179
|
+
summary: string;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
id: {
|
|
184
|
+
control: "text";
|
|
185
|
+
description: string;
|
|
186
|
+
table: {
|
|
187
|
+
category: string;
|
|
188
|
+
type: {
|
|
189
|
+
summary: string;
|
|
190
|
+
};
|
|
191
|
+
defaultValue: {
|
|
192
|
+
summary: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
idPopover: {
|
|
197
|
+
control: "text";
|
|
198
|
+
description: string;
|
|
199
|
+
table: {
|
|
200
|
+
category: string;
|
|
201
|
+
type: {
|
|
202
|
+
summary: string;
|
|
203
|
+
};
|
|
204
|
+
defaultValue: {
|
|
205
|
+
summary: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
12
208
|
};
|
|
13
209
|
};
|
|
14
210
|
render: (args: import('../../interfaces/components/DatePicker').IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
|