pixel-react 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/.prettierrc.js +13 -0
- package/.storybook/main.ts +26 -0
- package/.storybook/preview.ts +26 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarnrc.yml +1 -0
- package/README.md +25 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.scss +0 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.d.ts +3 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/ColorPalette/colorPaletteList.d.ts +3 -0
- package/lib/StyleGuide/ColorPalette/index.d.ts +1 -0
- package/lib/StyleGuide/ColorPalette/types.d.ts +15 -0
- package/lib/StyleGuide/Typography/Typography.d.ts +3 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/TypographyList.d.ts +5 -0
- package/lib/StyleGuide/Typography/types.d.ts +8 -0
- package/lib/assets/utils/functionUtils.d.ts +1 -0
- package/lib/components/Accordion/Accordion.d.ts +8 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/Accordion/index.d.ts +1 -0
- package/lib/components/Accordion/types.d.ts +27 -0
- package/lib/components/AddResourceButton/AddButton.d.ts +4 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AddResourceButton/ArrowsButton/ArrowsButton.d.ts +6 -0
- package/lib/components/AddResourceButton/index.d.ts +1 -0
- package/lib/components/AddResourceButton/type.d.ts +65 -0
- package/lib/components/Button/Button.d.ts +5 -0
- package/lib/components/Button/Button.stories.d.ts +12 -0
- package/lib/components/Button/index.d.ts +1 -0
- package/lib/components/Button/types.d.ts +61 -0
- package/lib/components/Charts/DonutChart/DonutChart.d.ts +5 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/DonutChart/index.d.ts +1 -0
- package/lib/components/Charts/DonutChart/type.d.ts +13 -0
- package/lib/components/Charts/RadialChart/RadialChart.d.ts +5 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Charts/RadialChart/index.d.ts +1 -0
- package/lib/components/Charts/RadialChart/types.d.ts +25 -0
- package/lib/components/Checkbox/Checkbox.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Checkbox/index.d.ts +1 -0
- package/lib/components/Checkbox/types.d.ts +30 -0
- package/lib/components/Chip/Chip.d.ts +4 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/Chip/index.d.ts +1 -0
- package/lib/components/Chip/types.d.ts +18 -0
- package/lib/components/Drawer/Drawer.d.ts +4 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +7 -0
- package/lib/components/Drawer/Types.d.ts +85 -0
- package/lib/components/Drawer/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.d.ts +5 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/ExpandableMenu/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/types.d.ts +34 -0
- package/lib/components/FileDropzone/Dropzone.d.ts +5 -0
- package/lib/components/FileDropzone/FileDropzone.d.ts +4 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FilePreview.d.ts +4 -0
- package/lib/components/FileDropzone/index.d.ts +1 -0
- package/lib/components/FileDropzone/types.d.ts +103 -0
- package/lib/components/Form/Form.d.ts +16 -0
- package/lib/components/Form/Form.stories.d.ts +6 -0
- package/lib/components/Form/index.d.ts +1 -0
- package/lib/components/Form/types.d.ts +1 -0
- package/lib/components/GridLayout/GridLayout.d.ts +6 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/GridLayout/index.d.ts +2 -0
- package/lib/components/GridLayout/types.d.ts +57 -0
- package/lib/components/HighlightText/HighlightText.d.ts +4 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/HighlightText/index.d.ts +1 -0
- package/lib/components/HighlightText/types.d.ts +4 -0
- package/lib/components/Icon/Icon.d.ts +4 -0
- package/lib/components/Icon/Icon.stories.d.ts +7 -0
- package/lib/components/Icon/iconList.d.ts +2 -0
- package/lib/components/Icon/index.d.ts +1 -0
- package/lib/components/Icon/types.d.ts +10 -0
- package/lib/components/Input/Input.d.ts +4 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/Input/index.d.ts +1 -0
- package/lib/components/Input/types.d.ts +74 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +4 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +8 -0
- package/lib/components/InputWithDropdown/index.d.ts +1 -0
- package/lib/components/InputWithDropdown/types.d.ts +88 -0
- package/lib/components/LazyLoad/LazyLoad.d.ts +2 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/LazyLoad/LazyLoading.d.ts +2 -0
- package/lib/components/LazyLoad/index.d.ts +1 -0
- package/lib/components/MenuOption/MenuOption.d.ts +4 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +15 -0
- package/lib/components/MenuOption/index.d.ts +1 -0
- package/lib/components/MenuOption/types.d.ts +134 -0
- package/lib/components/MiniModal/MiniModal.d.ts +4 -0
- package/lib/components/MiniModal/MiniModal.stories.d.ts +9 -0
- package/lib/components/MiniModal/index.d.ts +1 -0
- package/lib/components/MiniModal/types.d.ts +89 -0
- package/lib/components/MultiSelect/Dropdown.d.ts +4 -0
- package/lib/components/MultiSelect/MultiSelect.d.ts +4 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +9 -0
- package/lib/components/MultiSelect/MultiSelectTypes.d.ts +18 -0
- package/lib/components/MultiSelect/dropdownTypes.d.ts +15 -0
- package/lib/components/MultiSelect/index.d.ts +1 -0
- package/lib/components/RadioButton/RadioButton.d.ts +4 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioButton/index.d.ts +1 -0
- package/lib/components/RadioButton/radioButtonTypes.d.ts +35 -0
- package/lib/components/RadioGroup/RadioGroup.d.ts +4 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +8 -0
- package/lib/components/RadioGroup/index.d.ts +1 -0
- package/lib/components/RadioGroup/radioGroupTypes.d.ts +47 -0
- package/lib/components/Search/Search.d.ts +4 -0
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Search/index.d.ts +1 -0
- package/lib/components/Search/types.d.ts +15 -0
- package/lib/components/Select/Select.d.ts +4 -0
- package/lib/components/Select/Select.stories.d.ts +13 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +15 -0
- package/lib/components/Select/index.d.ts +1 -0
- package/lib/components/Select/types.d.ts +68 -0
- package/lib/components/Table/Table.d.ts +4 -0
- package/lib/components/Table/Table.stories.d.ts +11 -0
- package/lib/components/Table/Types.d.ts +98 -0
- package/lib/components/Table/index.d.ts +1 -0
- package/lib/components/TableTree/TableTree.d.ts +21 -0
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/TableTree/data.d.ts +313 -0
- package/lib/components/TableTree/index.d.ts +1 -0
- package/lib/components/Tabs/Tabs.d.ts +5 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +8 -0
- package/lib/components/Tabs/index.d.ts +1 -0
- package/lib/components/Tabs/types.d.ts +40 -0
- package/lib/components/TextArea/Textarea.d.ts +4 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/TextArea/Types.d.ts +78 -0
- package/lib/components/TextArea/index.d.ts +1 -0
- package/lib/components/ThemeProvider/ThemeProvider.d.ts +7 -0
- package/lib/components/ThemeProvider/index.d.ts +1 -0
- package/lib/components/ThemeProvider/types.d.ts +11 -0
- package/lib/components/Toast/Toast.d.ts +5 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toast/index.d.ts +1 -0
- package/lib/components/Toast/types.d.ts +20 -0
- package/lib/components/Toggle/Toggle.d.ts +5 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Toggle/index.d.ts +1 -0
- package/lib/components/Toggle/types.d.ts +50 -0
- package/lib/components/Tooltip/Tooltip.d.ts +5 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Tooltip/index.d.ts +1 -0
- package/lib/components/Tooltip/types.d.ts +37 -0
- package/lib/components/Typography/Typography.d.ts +5 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/Typography/index.d.ts +1 -0
- package/lib/components/Typography/types.d.ts +47 -0
- package/lib/hooks/keyboardevents/useEscKeyEvent.d.ts +2 -0
- package/lib/hooks/useClickOutside.d.ts +2 -0
- package/lib/hooks/useFileDropzone.d.ts +3 -0
- package/lib/hooks/usePortalPosition.d.ts +9 -0
- package/lib/hooks/useTheme.d.ts +3 -0
- package/lib/index.css +404 -0
- package/lib/index.d.ts +1286 -0
- package/lib/index.esm.css +404 -0
- package/lib/index.esm.js +9317 -0
- package/lib/index.esm.js.map +1 -0
- package/lib/index.js +9376 -0
- package/lib/index.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/utils/TableCell/TableCell.d.ts +1 -0
- package/lib/utils/checkEmpty/checkEmpty.d.ts +3 -0
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/ffID/ffid.d.ts +2 -0
- package/lib/utils/getExtension/getExtension.d.ts +4 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.d.ts +1 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +62 -0
- package/rollup.config.mjs +57 -0
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +58 -0
- package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -0
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +61 -0
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +97 -0
- package/src/StyleGuide/ColorPalette/index.ts +1 -0
- package/src/StyleGuide/ColorPalette/types.ts +17 -0
- package/src/StyleGuide/Typography/Typography.scss +100 -0
- package/src/StyleGuide/Typography/Typography.stories.tsx +16 -0
- package/src/StyleGuide/Typography/Typography.tsx +60 -0
- package/src/StyleGuide/Typography/TypographyList.ts +3 -0
- package/src/StyleGuide/Typography/types.ts +9 -0
- package/src/assets/Themes/BaseTheme.scss +130 -0
- package/src/assets/Themes/DarkTheme.scss +131 -0
- package/src/assets/Themes/Theme.scss +200 -0
- package/src/assets/icons/Arrow.svg +5 -0
- package/src/assets/icons/accordion_header_icon.svg +10 -0
- package/src/assets/icons/arrow_down.svg +3 -0
- package/src/assets/icons/arrow_right.svg +5 -0
- package/src/assets/icons/arrow_up.svg +3 -0
- package/src/assets/icons/arrows_down_icon.svg +3 -0
- package/src/assets/icons/arrows_right_icon.svg +10 -0
- package/src/assets/icons/arrows_top_icon.svg +3 -0
- package/src/assets/icons/check_mark.svg +3 -0
- package/src/assets/icons/close_pill.svg +3 -0
- package/src/assets/icons/delete.svg +17 -0
- package/src/assets/icons/dropzone_icon.svg +18 -0
- package/src/assets/icons/error.svg +17 -0
- package/src/assets/icons/file.svg +12 -0
- package/src/assets/icons/info.svg +17 -0
- package/src/assets/icons/logo.svg +18 -0
- package/src/assets/icons/manage_apps.svg +3 -0
- package/src/assets/icons/moon_stars.svg +10 -0
- package/src/assets/icons/more.svg +11 -0
- package/src/assets/icons/plus_icon.svg +11 -0
- package/src/assets/icons/remove.svg +12 -0
- package/src/assets/icons/replace.svg +12 -0
- package/src/assets/icons/search.svg +3 -0
- package/src/assets/icons/success.svg +13 -0
- package/src/assets/icons/sun_icon.svg +10 -0
- package/src/assets/icons/tick_icon.svg +5 -0
- package/src/assets/icons/toast_close.svg +3 -0
- package/src/assets/icons/warning.svg +17 -0
- package/src/assets/icons/wrong_mark.svg +3 -0
- package/src/assets/styles/_colors.scss +145 -0
- package/src/assets/styles/_fonts.scss +68 -0
- package/src/assets/styles/_mixins.scss +20 -0
- package/src/assets/utils/functionUtils.ts +5 -0
- package/src/components/Accordion/Accordion.scss +45 -0
- package/src/components/Accordion/Accordion.stories.tsx +31 -0
- package/src/components/Accordion/Accordion.tsx +62 -0
- package/src/components/Accordion/index.ts +1 -0
- package/src/components/Accordion/types.ts +28 -0
- package/src/components/AddResourceButton/AddButton.scss +36 -0
- package/src/components/AddResourceButton/AddButton.stories.tsx +126 -0
- package/src/components/AddResourceButton/AddButton.tsx +121 -0
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +160 -0
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -0
- package/src/components/AddResourceButton/index.ts +1 -0
- package/src/components/AddResourceButton/type.ts +60 -0
- package/src/components/Button/Button.scss +148 -0
- package/src/components/Button/Button.stories.tsx +74 -0
- package/src/components/Button/Button.tsx +66 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Button/types.ts +65 -0
- package/src/components/Charts/DonutChart/DonutChart.scss +76 -0
- package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -0
- package/src/components/Charts/DonutChart/DonutChart.tsx +241 -0
- package/src/components/Charts/DonutChart/index.ts +1 -0
- package/src/components/Charts/DonutChart/type.ts +23 -0
- package/src/components/Charts/RadialChart/RadialChart.scss +12 -0
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -0
- package/src/components/Charts/RadialChart/RadialChart.tsx +174 -0
- package/src/components/Charts/RadialChart/index.ts +1 -0
- package/src/components/Charts/RadialChart/types.ts +32 -0
- package/src/components/Checkbox/Checkbox.scss +89 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +47 -0
- package/src/components/Checkbox/Checkbox.tsx +61 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/Checkbox/types.ts +30 -0
- package/src/components/Chip/Chip.scss +70 -0
- package/src/components/Chip/Chip.stories.tsx +88 -0
- package/src/components/Chip/Chip.tsx +35 -0
- package/src/components/Chip/index.ts +1 -0
- package/src/components/Chip/types.ts +19 -0
- package/src/components/Drawer/Drawer.scss +121 -0
- package/src/components/Drawer/Drawer.stories.tsx +88 -0
- package/src/components/Drawer/Drawer.tsx +179 -0
- package/src/components/Drawer/Types.ts +88 -0
- package/src/components/Drawer/index.ts +1 -0
- package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -0
- package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -0
- package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -0
- package/src/components/ExpandableMenu/index.ts +1 -0
- package/src/components/ExpandableMenu/types.ts +34 -0
- package/src/components/FileDropzone/Dropzone.tsx +55 -0
- package/src/components/FileDropzone/FileDropzone.scss +134 -0
- package/src/components/FileDropzone/FileDropzone.stories.tsx +83 -0
- package/src/components/FileDropzone/FileDropzone.tsx +98 -0
- package/src/components/FileDropzone/FilePreview.tsx +75 -0
- package/src/components/FileDropzone/index.ts +1 -0
- package/src/components/FileDropzone/types.ts +113 -0
- package/src/components/Form/Form.scss +98 -0
- package/src/components/Form/Form.stories.tsx +177 -0
- package/src/components/Form/Form.tsx +57 -0
- package/src/components/Form/index.ts +1 -0
- package/src/components/Form/types.ts +1 -0
- package/src/components/Form/validation.json +29 -0
- package/src/components/GridLayout/GridLayout.scss +71 -0
- package/src/components/GridLayout/GridLayout.stories.tsx +128 -0
- package/src/components/GridLayout/GridLayout.tsx +30 -0
- package/src/components/GridLayout/GridLayoutStory.scss +25 -0
- package/src/components/GridLayout/index.ts +1 -0
- package/src/components/GridLayout/types.ts +64 -0
- package/src/components/HighlightText/HighlightText.scss +3 -0
- package/src/components/HighlightText/HighlightText.stories.tsx +22 -0
- package/src/components/HighlightText/HighlightText.tsx +33 -0
- package/src/components/HighlightText/index.ts +1 -0
- package/src/components/HighlightText/types.ts +4 -0
- package/src/components/Icon/Icon.stories.tsx +37 -0
- package/src/components/Icon/Icon.tsx +43 -0
- package/src/components/Icon/Icons.scss +34 -0
- package/src/components/Icon/iconList.ts +62 -0
- package/src/components/Icon/index.ts +1 -0
- package/src/components/Icon/types.ts +10 -0
- package/src/components/Input/Input.scss +150 -0
- package/src/components/Input/Input.stories.tsx +96 -0
- package/src/components/Input/Input.tsx +93 -0
- package/src/components/Input/index.ts +1 -0
- package/src/components/Input/types.ts +77 -0
- package/src/components/InputWithDropdown/InputWithDropdown.scss +185 -0
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +114 -0
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +85 -0
- package/src/components/InputWithDropdown/index.ts +1 -0
- package/src/components/InputWithDropdown/types.ts +110 -0
- package/src/components/LazyLoad/LazyLoad.d.ts +3 -0
- package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -0
- package/src/components/LazyLoad/LazyLoad.ts +2 -0
- package/src/components/LazyLoad/LazyLoading.tsx +19 -0
- package/src/components/LazyLoad/index.ts +1 -0
- package/src/components/MenuOption/MenuOption.scss +69 -0
- package/src/components/MenuOption/MenuOption.stories.tsx +259 -0
- package/src/components/MenuOption/MenuOption.tsx +126 -0
- package/src/components/MenuOption/index.ts +1 -0
- package/src/components/MenuOption/types.ts +161 -0
- package/src/components/MiniModal/MiniModal.scss +139 -0
- package/src/components/MiniModal/MiniModal.stories.tsx +475 -0
- package/src/components/MiniModal/MiniModal.tsx +218 -0
- package/src/components/MiniModal/index.ts +1 -0
- package/src/components/MiniModal/types.ts +88 -0
- package/src/components/MultiSelect/Dropdown.scss +66 -0
- package/src/components/MultiSelect/Dropdown.tsx +77 -0
- package/src/components/MultiSelect/MultiSelect.scss +190 -0
- package/src/components/MultiSelect/MultiSelect.stories.tsx +85 -0
- package/src/components/MultiSelect/MultiSelect.tsx +260 -0
- package/src/components/MultiSelect/MultiSelectTypes.ts +19 -0
- package/src/components/MultiSelect/dropdownTypes.ts +15 -0
- package/src/components/MultiSelect/index.ts +1 -0
- package/src/components/RadioButton/RadioButton.scss +99 -0
- package/src/components/RadioButton/RadioButton.stories.tsx +43 -0
- package/src/components/RadioButton/RadioButton.tsx +32 -0
- package/src/components/RadioButton/index.ts +1 -0
- package/src/components/RadioButton/radioButtonTypes.tsx +40 -0
- package/src/components/RadioGroup/RadioGroup.scss +5 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +81 -0
- package/src/components/RadioGroup/RadioGroup.tsx +30 -0
- package/src/components/RadioGroup/index.ts +1 -0
- package/src/components/RadioGroup/radioGroupTypes.tsx +54 -0
- package/src/components/Search/Search.scss +87 -0
- package/src/components/Search/Search.stories.tsx +26 -0
- package/src/components/Search/Search.tsx +103 -0
- package/src/components/Search/index.ts +1 -0
- package/src/components/Search/types.ts +15 -0
- package/src/components/Select/Select.scss +247 -0
- package/src/components/Select/Select.stories.tsx +156 -0
- package/src/components/Select/Select.tsx +368 -0
- package/src/components/Select/components/Dropdown/Dropdown.scss +70 -0
- package/src/components/Select/components/Dropdown/Dropdown.tsx +89 -0
- package/src/components/Select/components/Dropdown/dropdownTypes.ts +19 -0
- package/src/components/Select/index.ts +1 -0
- package/src/components/Select/types.ts +122 -0
- package/src/components/Table/Table.scss +101 -0
- package/src/components/Table/Table.stories.tsx +345 -0
- package/src/components/Table/Table.tsx +128 -0
- package/src/components/Table/Types.ts +100 -0
- package/src/components/Table/index.ts +1 -0
- package/src/components/TableTree/TableTree.scss +142 -0
- package/src/components/TableTree/TableTree.stories.tsx +121 -0
- package/src/components/TableTree/TableTree.tsx +216 -0
- package/src/components/TableTree/TableTreeStories.scss +22 -0
- package/src/components/TableTree/data.ts +573 -0
- package/src/components/TableTree/index.ts +1 -0
- package/src/components/Tabs/Tabs.scss +76 -0
- package/src/components/Tabs/Tabs.stories.tsx +104 -0
- package/src/components/Tabs/Tabs.tsx +64 -0
- package/src/components/Tabs/index.ts +1 -0
- package/src/components/Tabs/types.ts +38 -0
- package/src/components/TextArea/Textarea.scss +145 -0
- package/src/components/TextArea/Textarea.stories.tsx +92 -0
- package/src/components/TextArea/Textarea.tsx +84 -0
- package/src/components/TextArea/Types.ts +82 -0
- package/src/components/TextArea/index.tsx +1 -0
- package/src/components/ThemeProvider/ThemeProvider.tsx +24 -0
- package/src/components/ThemeProvider/index.ts +1 -0
- package/src/components/ThemeProvider/types.ts +14 -0
- package/src/components/Toast/Toast.scss +121 -0
- package/src/components/Toast/Toast.stories.tsx +180 -0
- package/src/components/Toast/Toast.tsx +116 -0
- package/src/components/Toast/index.ts +1 -0
- package/src/components/Toast/types.ts +27 -0
- package/src/components/Toggle/Toggle.scss +132 -0
- package/src/components/Toggle/Toggle.stories.tsx +132 -0
- package/src/components/Toggle/Toggle.tsx +96 -0
- package/src/components/Toggle/index.ts +1 -0
- package/src/components/Toggle/types.ts +43 -0
- package/src/components/Tooltip/Tooltip.scss +27 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +97 -0
- package/src/components/Tooltip/Tooltip.tsx +194 -0
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/Tooltip/types.ts +60 -0
- package/src/components/Typography/Typography.scss +49 -0
- package/src/components/Typography/Typography.stories.tsx +57 -0
- package/src/components/Typography/Typography.tsx +39 -0
- package/src/components/Typography/index.ts +1 -0
- package/src/components/Typography/types.ts +56 -0
- package/src/fonts/Montserrat/Montserrat-Medium.ttf +0 -0
- package/src/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
- package/src/fonts/Montserrat/Montserrat-SemiBold.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Black.ttf +0 -0
- package/src/fonts/Poppins/Poppins-BlackItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Bold.ttf +0 -0
- package/src/fonts/Poppins/Poppins-BoldItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-ExtraBold.ttf +0 -0
- package/src/fonts/Poppins/Poppins-ExtraBoldItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-ExtraLight.ttf +0 -0
- package/src/fonts/Poppins/Poppins-ExtraLightItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Italic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Light.ttf +0 -0
- package/src/fonts/Poppins/Poppins-LightItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Medium.ttf +0 -0
- package/src/fonts/Poppins/Poppins-MediumItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Regular.ttf +0 -0
- package/src/fonts/Poppins/Poppins-SemiBold.ttf +0 -0
- package/src/fonts/Poppins/Poppins-SemiBoldItalic.ttf +0 -0
- package/src/fonts/Poppins/Poppins-Thin.ttf +0 -0
- package/src/fonts/Poppins/Poppins-ThinItalic.ttf +0 -0
- package/src/hooks/keyboardevents/useEscKeyEvent.tsx +31 -0
- package/src/hooks/useClickOutside.tsx +30 -0
- package/src/hooks/useFileDropzone.tsx +273 -0
- package/src/hooks/usePortalPosition.tsx +53 -0
- package/src/hooks/useTheme.tsx +13 -0
- package/src/index.ts +91 -0
- package/src/utils/TableCell/TableCell.ts +16 -0
- package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -0
- package/src/utils/checkEmpty/checkEmpty.ts +10 -0
- package/src/utils/ffID/ffID.stories.tsx +35 -0
- package/src/utils/ffID/ffid.ts +9 -0
- package/src/utils/getExtension/getExtension.stories.tsx +23 -0
- package/src/utils/getExtension/getExtension.ts +28 -0
- package/src/utils/truncateText/truncateText.stories.tsx +37 -0
- package/src/utils/truncateText/truncateText.ts +4 -0
- package/tsconfig.json +55 -0
- package/ui-library.zip +0 -0
- package/vite.config.js +30 -0
@@ -0,0 +1,4 @@
|
|
1
|
+
import './MenuOption.scss';
|
2
|
+
import { MenuOptionProps } from './types';
|
3
|
+
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, dropdownPlacement, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, }: MenuOptionProps) => import("react/jsx-runtime").JSX.Element;
|
4
|
+
export default MenuOption;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import MenuOption from './MenuOption';
|
3
|
+
import './MenuOption.scss';
|
4
|
+
export declare const DefaultMenuOption: Story;
|
5
|
+
declare const meta: Meta<typeof MenuOption>;
|
6
|
+
type Story = StoryObj<typeof MenuOption>;
|
7
|
+
export declare const ControlledMenuOption: Story;
|
8
|
+
export declare const MenuOptionWithLabel: Story;
|
9
|
+
export declare const MenuOptionWithDisabledHoverEffect: Story;
|
10
|
+
export declare const MenuOptionWithToolTip: Story;
|
11
|
+
export declare const MenuOptionPlacementTop: Story;
|
12
|
+
export declare const MenuOptionPlacementDown: Story;
|
13
|
+
export declare const MenuOptionPlacementLeft: Story;
|
14
|
+
export declare const MenuOptionPlacementRight: Story;
|
15
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './MenuOption';
|
@@ -0,0 +1,134 @@
|
|
1
|
+
interface OptionClick {
|
2
|
+
/**
|
3
|
+
* The label displayed for the option.
|
4
|
+
* @type {string}
|
5
|
+
* @required
|
6
|
+
*/
|
7
|
+
label: string;
|
8
|
+
/**
|
9
|
+
* The value(s) associated with the option, which can be a single string or an array of strings.
|
10
|
+
* @type {Array<string> | string}
|
11
|
+
* @required
|
12
|
+
*/
|
13
|
+
value: Array<string> | string;
|
14
|
+
}
|
15
|
+
interface OptionType extends OptionClick {
|
16
|
+
/**
|
17
|
+
* The name of the icon associated with the option.
|
18
|
+
* @type {string}
|
19
|
+
* @required
|
20
|
+
*/
|
21
|
+
icon: string;
|
22
|
+
/**
|
23
|
+
* Indicates whether the option is disabled.
|
24
|
+
* @type {boolean}
|
25
|
+
* @optional
|
26
|
+
*/
|
27
|
+
disable?: boolean;
|
28
|
+
}
|
29
|
+
interface OptionCardProps {
|
30
|
+
/**
|
31
|
+
* The list of options displayed in the card.
|
32
|
+
* @type {Array<OptionType>}
|
33
|
+
* @required
|
34
|
+
*/
|
35
|
+
options: Array<OptionType>;
|
36
|
+
/**
|
37
|
+
* Callback function triggered when an option is clicked.
|
38
|
+
* @param {any} data - The data associated with the clicked option.
|
39
|
+
* @type {function}
|
40
|
+
* @required
|
41
|
+
*/
|
42
|
+
onClick: (data?: any) => void;
|
43
|
+
/**
|
44
|
+
* Optional styles applied to the card.
|
45
|
+
* @type {React.CSSProperties}
|
46
|
+
* @optional
|
47
|
+
*/
|
48
|
+
styles?: React.CSSProperties;
|
49
|
+
}
|
50
|
+
interface MenuOptionProps {
|
51
|
+
/**
|
52
|
+
* The name of the label displayed next to the icon.
|
53
|
+
* @type {string}
|
54
|
+
* @optional
|
55
|
+
*/
|
56
|
+
labelName?: string;
|
57
|
+
/**
|
58
|
+
* The name of the icon to be displayed.
|
59
|
+
* @type {string}
|
60
|
+
* @required
|
61
|
+
*/
|
62
|
+
iconName: string;
|
63
|
+
/**
|
64
|
+
* The list of options available in the dropdown.
|
65
|
+
* @type {Array<OptionType>}
|
66
|
+
* @required
|
67
|
+
*/
|
68
|
+
options: Array<OptionType>;
|
69
|
+
/**
|
70
|
+
* The title displayed in the tooltip when hovering over the icon.
|
71
|
+
* @type {string}
|
72
|
+
* @optional
|
73
|
+
*/
|
74
|
+
tooltipTitle?: string;
|
75
|
+
/**
|
76
|
+
* The placement of the tooltip relative to the icon.
|
77
|
+
* @type {'bottom' | 'left' | 'right' | 'top' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end'}
|
78
|
+
* @optional
|
79
|
+
*/
|
80
|
+
tooltipPlacement?: 'bottom' | 'left' | 'right' | 'top' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
|
81
|
+
/**
|
82
|
+
* The placement of the dropdown menu relative to the icon.
|
83
|
+
* @type {'top' | 'left' | 'right' | 'bottom'}
|
84
|
+
* @optional
|
85
|
+
*/
|
86
|
+
dropdownPlacement?: 'top' | 'left' | 'right' | 'down';
|
87
|
+
/**
|
88
|
+
* Callback function triggered when the icon is clicked.
|
89
|
+
* @type {function}
|
90
|
+
* @optional
|
91
|
+
*/
|
92
|
+
onClick?: () => void;
|
93
|
+
/**
|
94
|
+
* Callback function triggered when an option is clicked.
|
95
|
+
* @param {OptionClick} option - The option that was clicked.
|
96
|
+
* @type {function}
|
97
|
+
* @optional
|
98
|
+
*/
|
99
|
+
onOptionClick?: (option: OptionClick) => void;
|
100
|
+
/**
|
101
|
+
* The size of the icon button.
|
102
|
+
* @type {number}
|
103
|
+
* @default 20
|
104
|
+
*/
|
105
|
+
iconButtonSize?: number;
|
106
|
+
/**
|
107
|
+
* The size of the icon.
|
108
|
+
* @type {number}
|
109
|
+
* @default 16
|
110
|
+
*/
|
111
|
+
iconSize?: number;
|
112
|
+
/**
|
113
|
+
* The border radius of the icon.
|
114
|
+
* @type {number}
|
115
|
+
* @default 7
|
116
|
+
*/
|
117
|
+
iconButtonBorderRadius?: number;
|
118
|
+
}
|
119
|
+
interface OptionProps {
|
120
|
+
/**
|
121
|
+
* The option to be displayed.
|
122
|
+
* @type {OptionType}
|
123
|
+
* @required
|
124
|
+
*/
|
125
|
+
option: OptionType;
|
126
|
+
/**
|
127
|
+
* Callback function triggered when the option is clicked.
|
128
|
+
* @param {OptionClick} option - The clicked option.
|
129
|
+
* @type {function}
|
130
|
+
* @required
|
131
|
+
*/
|
132
|
+
onClick: (option: OptionClick) => void;
|
133
|
+
}
|
134
|
+
export { OptionProps, MenuOptionProps, OptionCardProps, OptionClick };
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import MiniModal from './MiniModal';
|
3
|
+
import './MiniModal.scss';
|
4
|
+
declare const meta: Meta<typeof MiniModal>;
|
5
|
+
type Story = StoryObj<typeof MiniModal>;
|
6
|
+
export declare const BasicModal: Story;
|
7
|
+
export declare const CustomModalWithWrapper: () => import("react/jsx-runtime").JSX.Element;
|
8
|
+
export declare const CustomModalWithArrow: () => import("react/jsx-runtime").JSX.Element;
|
9
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './MiniModal';
|
@@ -0,0 +1,89 @@
|
|
1
|
+
import { ReactNode, RefObject } from 'react';
|
2
|
+
interface ButtonProps {
|
3
|
+
text: string;
|
4
|
+
onClick: () => void;
|
5
|
+
}
|
6
|
+
interface ModalDimensions {
|
7
|
+
width?: number;
|
8
|
+
height?: number;
|
9
|
+
}
|
10
|
+
export interface MiniEditModalProps {
|
11
|
+
/**
|
12
|
+
* A reference to the button element that triggers the modal.
|
13
|
+
*/
|
14
|
+
anchorRef: RefObject<HTMLButtonElement>;
|
15
|
+
/**
|
16
|
+
* Optional properties for configuring the modal header.
|
17
|
+
*/
|
18
|
+
headerProps?: ReactNode;
|
19
|
+
/**
|
20
|
+
* The main content to be displayed inside the modal
|
21
|
+
*/
|
22
|
+
childContent: ReactNode;
|
23
|
+
/**
|
24
|
+
* Props for the cancel button inside the modal
|
25
|
+
*/
|
26
|
+
cancelButtonProps: ButtonProps;
|
27
|
+
/**
|
28
|
+
* Props for the proceed button inside the modal.
|
29
|
+
*/
|
30
|
+
proceedButtonProps: ButtonProps;
|
31
|
+
/**
|
32
|
+
* Optional content for the footer of the modal.
|
33
|
+
*/
|
34
|
+
footerContent?: ReactNode;
|
35
|
+
/**
|
36
|
+
* Determines if the modal should be wrapped inside a container element.
|
37
|
+
*/
|
38
|
+
isWrapped?: boolean;
|
39
|
+
/**
|
40
|
+
* Determines if the modal should have an animation when displayed.
|
41
|
+
*/
|
42
|
+
isAnimated?: boolean;
|
43
|
+
/**
|
44
|
+
* Specifies if the modal should behave as a popover with an arrow.
|
45
|
+
*/
|
46
|
+
isPopOver?: boolean;
|
47
|
+
/**
|
48
|
+
* Sets the position of the modal relative to its anchor.
|
49
|
+
* bottom: The modal appears below the anchor.
|
50
|
+
* right: The modal appears to the right of the anchor.
|
51
|
+
*/
|
52
|
+
modalPosition?: 'bottom' | 'right' | 'top' | 'left';
|
53
|
+
/**
|
54
|
+
* Adds a top-left aligned arrow to the modal when its position is set to `'right'`.
|
55
|
+
*/
|
56
|
+
leftTopArrow?: boolean;
|
57
|
+
/**
|
58
|
+
* A reference to an additional anchor element for positioning the modal.
|
59
|
+
*/
|
60
|
+
firstAnchorRef?: RefObject<HTMLButtonElement>;
|
61
|
+
/**
|
62
|
+
* A numeric value representing the left position of the anchor element, used to calculate the modal's left position.
|
63
|
+
*/
|
64
|
+
anchorRefLeftNum?: number;
|
65
|
+
/**
|
66
|
+
* Optional properties for configuring the modal's dimensions.
|
67
|
+
* width: The width of the modal.
|
68
|
+
* height: The height of the modal.
|
69
|
+
*/
|
70
|
+
modalProperties?: ModalDimensions;
|
71
|
+
/**distance for the wrapper model from align alignments */
|
72
|
+
anchorLeftDistanceForWrapper?: number;
|
73
|
+
/**extra top space added from anchor */
|
74
|
+
extraTopSpace?: {
|
75
|
+
wrappedModal?: number;
|
76
|
+
normalModal?: number;
|
77
|
+
};
|
78
|
+
/**extra right space added from anchor */
|
79
|
+
extraRightSpace?: {
|
80
|
+
leftTopArrow?: number;
|
81
|
+
middleLeftArrow?: number;
|
82
|
+
};
|
83
|
+
/**extra left space added from anchor */
|
84
|
+
extraLeftSpace?: {
|
85
|
+
normal?: number;
|
86
|
+
rightAlignModal?: number;
|
87
|
+
};
|
88
|
+
}
|
89
|
+
export {};
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import './MultiSelect.scss';
|
2
|
+
import { MultiSelectProps } from './MultiSelectTypes';
|
3
|
+
declare const MultiSelect: ({ options, selectedOptions, onChange, zIndex, label, onSearch, required, disabled, errorMessage, }: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
|
4
|
+
export default MultiSelect;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import MultiSelect from './MultiSelect';
|
3
|
+
declare const meta: Meta<typeof MultiSelect>;
|
4
|
+
type Story = StoryObj<typeof MultiSelect>;
|
5
|
+
export declare const Default: Story;
|
6
|
+
export declare const Default2: Story;
|
7
|
+
export declare const Default3: Story;
|
8
|
+
export declare const Controlled: Story;
|
9
|
+
export default meta;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
interface Option {
|
2
|
+
label?: string;
|
3
|
+
value?: string;
|
4
|
+
accessor?: string;
|
5
|
+
isChecked?: boolean;
|
6
|
+
}
|
7
|
+
interface MultiSelectProps {
|
8
|
+
options: Option[];
|
9
|
+
label: string;
|
10
|
+
selectedOptions?: Option[];
|
11
|
+
disabled?: boolean;
|
12
|
+
onSearch?: (searchedKeyword: string) => void;
|
13
|
+
onChange?: (selectedOptions: Option[]) => void;
|
14
|
+
zIndex?: number;
|
15
|
+
required?: boolean;
|
16
|
+
errorMessage?: string;
|
17
|
+
}
|
18
|
+
export { Option, MultiSelectProps };
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { Option } from './MultiSelectTypes';
|
2
|
+
export declare const dropdownDefaultCSSData: {
|
3
|
+
verticalMargin: number;
|
4
|
+
optionHeight: number;
|
5
|
+
maxDropdownHeight: number;
|
6
|
+
};
|
7
|
+
export interface DropdownProps {
|
8
|
+
options: Option[];
|
9
|
+
style?: React.CSSProperties;
|
10
|
+
handleOptionChange: (option: Option, isChecked: boolean) => void;
|
11
|
+
checkedOptions: Option[];
|
12
|
+
searchedKeyword: undefined | string;
|
13
|
+
dropdownPosition: any;
|
14
|
+
zIndex: number;
|
15
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './MultiSelect';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import RadioButton from './RadioButton';
|
3
|
+
declare const meta: Meta<typeof RadioButton>;
|
4
|
+
type Story = StoryObj<typeof RadioButton>;
|
5
|
+
export declare const Default: Story;
|
6
|
+
export declare const Checked: Story;
|
7
|
+
export declare const UncheckedDisabled: Story;
|
8
|
+
export declare const CheckedDisabled: Story;
|
9
|
+
export declare const WithoutLabel: Story;
|
10
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './RadioButton';
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/**
|
2
|
+
* Props for the RadioButton component.
|
3
|
+
*/
|
4
|
+
interface RadioButtonProps {
|
5
|
+
/**
|
6
|
+
* The display label for the radio button.
|
7
|
+
* Optional.
|
8
|
+
*/
|
9
|
+
label?: string;
|
10
|
+
/**
|
11
|
+
* The name attribute for the radio button, used for grouping.
|
12
|
+
*/
|
13
|
+
name: string;
|
14
|
+
/**
|
15
|
+
* The unique value of the radio button.
|
16
|
+
* Optional.
|
17
|
+
*/
|
18
|
+
value?: string;
|
19
|
+
/**
|
20
|
+
* Indicates whether the radio button is checked.
|
21
|
+
* Optional.
|
22
|
+
*/
|
23
|
+
checked?: boolean;
|
24
|
+
/**
|
25
|
+
* Callback function that is called when the radio button's value changes.
|
26
|
+
* Receives the change event as an argument.
|
27
|
+
* Optional.
|
28
|
+
*/
|
29
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
30
|
+
/**
|
31
|
+
* Indicates whether the radio button is disabled.
|
32
|
+
* Optional.
|
33
|
+
*/
|
34
|
+
disabled?: boolean;
|
35
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import RadioGroup from './RadioGroup';
|
3
|
+
declare const meta: Meta<typeof RadioGroup>;
|
4
|
+
type Story = StoryObj<typeof RadioGroup>;
|
5
|
+
export declare const Controlled: Story;
|
6
|
+
export declare const WithDisabledOption: Story;
|
7
|
+
export declare const DisabledSelcted: Story;
|
8
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './RadioGroup';
|
@@ -0,0 +1,47 @@
|
|
1
|
+
/**
|
2
|
+
* Represents a single option in the radio group.
|
3
|
+
*/
|
4
|
+
interface Option {
|
5
|
+
/**
|
6
|
+
* The unique value of the option.
|
7
|
+
*/
|
8
|
+
value: string;
|
9
|
+
/**
|
10
|
+
* The display label for the option.
|
11
|
+
*/
|
12
|
+
label: string;
|
13
|
+
/**
|
14
|
+
* Indicates whether the option is disabled.
|
15
|
+
* Optional.
|
16
|
+
*/
|
17
|
+
disabled?: boolean;
|
18
|
+
}
|
19
|
+
/**
|
20
|
+
* Props for the RadioGroup component.
|
21
|
+
*/
|
22
|
+
interface RadioGroupProps {
|
23
|
+
/**
|
24
|
+
* An array of options to be rendered in the radio group.
|
25
|
+
*/
|
26
|
+
options: Option[];
|
27
|
+
/**
|
28
|
+
* The name attribute for the radio inputs, used for grouping.
|
29
|
+
*/
|
30
|
+
name: string;
|
31
|
+
/**
|
32
|
+
* The currently selected value.
|
33
|
+
* Optional.
|
34
|
+
*/
|
35
|
+
selectedValue?: string;
|
36
|
+
/**
|
37
|
+
* Callback function that is called when the selected option changes.
|
38
|
+
* It receives the selected option as an argument.
|
39
|
+
* Optional.
|
40
|
+
*/
|
41
|
+
onChange?: (option: Option) => void;
|
42
|
+
/**
|
43
|
+
* Additional class names to apply to the radio group for custom styling.
|
44
|
+
* Optional.
|
45
|
+
*/
|
46
|
+
className?: string;
|
47
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Search';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface SearchProps {
|
2
|
+
/**
|
3
|
+
* Placeholder for the input field
|
4
|
+
*/
|
5
|
+
placeholder?: string;
|
6
|
+
/**
|
7
|
+
* Callback function to be called when the search button is clicked or enter key is pressed
|
8
|
+
*/
|
9
|
+
onSearch: (query: string) => void;
|
10
|
+
/**
|
11
|
+
* Additional styles for the button
|
12
|
+
*/
|
13
|
+
disabled?: boolean;
|
14
|
+
width?: number;
|
15
|
+
}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { SelectProps } from './types';
|
2
|
+
import './Select.scss';
|
3
|
+
declare const Select: ({ label, showLabel, optionsList, selectedOption, onChange, errorMsg, className, optionZIndex, disabled, borderRadius, showBorder, required, }: SelectProps) => import("react/jsx-runtime").JSX.Element;
|
4
|
+
export default Select;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Select from './Select';
|
3
|
+
declare const meta: Meta<typeof Select>;
|
4
|
+
type Story = StoryObj<typeof Select>;
|
5
|
+
export declare const Primary: Story;
|
6
|
+
export declare const WithError: Story;
|
7
|
+
export declare const WithoutLabel: Story;
|
8
|
+
export declare const EmptyOptions: Story;
|
9
|
+
export declare const Disable: Story;
|
10
|
+
export declare const WithInitialValue: Story;
|
11
|
+
export declare const OptionSelection: Story;
|
12
|
+
export declare const CustomJSX: Story;
|
13
|
+
export default meta;
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { DropDownListProps } from './dropdownTypes';
|
2
|
+
import './Dropdown.scss';
|
3
|
+
declare const Dropdown: ({ onSelectBlur, onSelectOptionSelector, dropdownPosition, options, optionZIndex, inputRef, }: DropDownListProps) => import("react/jsx-runtime").JSX.Element;
|
4
|
+
export default Dropdown;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { DrowdownPosition, Option } from '../../types';
|
2
|
+
export interface DropDownListProps {
|
3
|
+
onSelectBlur: () => void;
|
4
|
+
onSelectOptionSelector: (option: Option) => void;
|
5
|
+
dropdownPosition: DrowdownPosition;
|
6
|
+
options?: Option[];
|
7
|
+
optionZIndex?: number;
|
8
|
+
inputRef?: React.RefObject<HTMLInputElement>;
|
9
|
+
}
|
10
|
+
export declare const dropdownDefaultCSSData: {
|
11
|
+
margin: number;
|
12
|
+
optionHeight: number;
|
13
|
+
selectInputHeight: number;
|
14
|
+
dropDownWrapperPadding: number;
|
15
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Select';
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import { ReactNode } from "react";
|
2
|
+
export interface SelectProps {
|
3
|
+
label?: string;
|
4
|
+
showLabel?: boolean;
|
5
|
+
optionsList: Option[];
|
6
|
+
selectedOption?: Option;
|
7
|
+
onChange: (option: Option) => void;
|
8
|
+
errorMsg?: string;
|
9
|
+
className?: string;
|
10
|
+
optionZIndex?: number;
|
11
|
+
disabled?: boolean;
|
12
|
+
borderRadius?: boolean;
|
13
|
+
showBorder?: boolean;
|
14
|
+
required?: boolean;
|
15
|
+
}
|
16
|
+
export interface DrowdownPosition {
|
17
|
+
positionX: number;
|
18
|
+
positionY: number;
|
19
|
+
width: number;
|
20
|
+
fromBottom: number;
|
21
|
+
}
|
22
|
+
export interface SelectState {
|
23
|
+
isInputFocused: boolean;
|
24
|
+
iconColor: string;
|
25
|
+
isIconClick: boolean;
|
26
|
+
showOptions: boolean;
|
27
|
+
options: Option[];
|
28
|
+
option: string;
|
29
|
+
dropdownPosition: DrowdownPosition;
|
30
|
+
}
|
31
|
+
export type SelectAction = {
|
32
|
+
type: 'FOCUS_INPUT';
|
33
|
+
} | {
|
34
|
+
type: 'BLUR_INPUT';
|
35
|
+
payload: {
|
36
|
+
optionsList: Option[];
|
37
|
+
option: Option['value'];
|
38
|
+
};
|
39
|
+
} | {
|
40
|
+
type: 'MOUSE_ENTER';
|
41
|
+
} | {
|
42
|
+
type: 'MOUSE_LEAVE';
|
43
|
+
} | {
|
44
|
+
type: 'UPDATE_DROPDOWN_POSITION';
|
45
|
+
payload: {
|
46
|
+
positionX: number;
|
47
|
+
positionY: number;
|
48
|
+
width: number;
|
49
|
+
fromBottom: number;
|
50
|
+
};
|
51
|
+
} | {
|
52
|
+
type: 'UPDATE_OPTION';
|
53
|
+
payload: string;
|
54
|
+
} | {
|
55
|
+
type: 'UPDATE_OPTION_LIST';
|
56
|
+
payload: Option[];
|
57
|
+
} | {
|
58
|
+
type: 'SHOW_ERROR';
|
59
|
+
payload: {
|
60
|
+
optionsList: Option[];
|
61
|
+
option: Option['value'];
|
62
|
+
};
|
63
|
+
};
|
64
|
+
export interface Option {
|
65
|
+
label: string | ReactNode;
|
66
|
+
value: string;
|
67
|
+
disabled?: boolean;
|
68
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { StoryObj, Meta } from '@storybook/react';
|
2
|
+
import Table from './Table';
|
3
|
+
declare const meta: Meta<typeof Table>;
|
4
|
+
type Story = StoryObj<typeof Table>;
|
5
|
+
export declare const Default: Story;
|
6
|
+
export declare const PageTable: Story;
|
7
|
+
export declare const PrimaryHeader: Story;
|
8
|
+
export declare const FixedHeaderWithBorder: Story;
|
9
|
+
export declare const WithCheckBox: Story;
|
10
|
+
export declare const TableWithNoData: Story;
|
11
|
+
export default meta;
|