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
package/.prettierrc.js
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
module.exports = {
|
2
|
+
printWidth: 80, // max 080 chars in line, code is easy to read
|
3
|
+
useTabs: false, // use spaces instead of tabs
|
4
|
+
tabWidth: 2, // "visual width" of of the "tab"
|
5
|
+
trailingComma: 'es5', // add trailing commas in objects, arrays, etc.
|
6
|
+
semi: true, // add ; when needed
|
7
|
+
singleQuote: true, // '' for stings instead of ""
|
8
|
+
bracketSpacing: true, // import { some } ... instead of import {some} ...
|
9
|
+
arrowParens: 'always', // braces even for single param in arrow functions (a) => { }
|
10
|
+
jsxSingleQuote: false, // "" for react props, like in html
|
11
|
+
bracketSameLine: false, // pretty JSX
|
12
|
+
endOfLine: 'lf', // 'lf' for linux, 'crlf' for windows, we need to use 'lf' for git
|
13
|
+
};
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import type { StorybookConfig } from '@storybook/react-vite';
|
2
|
+
|
3
|
+
const config: StorybookConfig = {
|
4
|
+
stories: ['../src/**/*.stories.tsx'],
|
5
|
+
|
6
|
+
addons: [
|
7
|
+
'@storybook/addon-links',
|
8
|
+
'@storybook/addon-essentials',
|
9
|
+
'@storybook/addon-onboarding',
|
10
|
+
'@storybook/addon-interactions',
|
11
|
+
'@chromatic-com/storybook',
|
12
|
+
"storybook-addon-theme-provider",
|
13
|
+
],
|
14
|
+
|
15
|
+
framework: {
|
16
|
+
name: '@storybook/react-vite',
|
17
|
+
options: {},
|
18
|
+
},
|
19
|
+
|
20
|
+
docs: {},
|
21
|
+
|
22
|
+
typescript: {
|
23
|
+
reactDocgen: 'react-docgen-typescript'
|
24
|
+
}
|
25
|
+
};
|
26
|
+
export default config;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import type { Preview } from '@storybook/react';
|
2
|
+
import { withThemeProvider } from 'storybook-addon-theme-provider';
|
3
|
+
import ThemeProvider from '../src/components/ThemeProvider/ThemeProvider';
|
4
|
+
import '../index.scss';
|
5
|
+
import '../src/assets/Themes/Theme.scss';
|
6
|
+
|
7
|
+
const preview: Preview = {
|
8
|
+
parameters: {
|
9
|
+
actions: {},
|
10
|
+
controls: {
|
11
|
+
matchers: {
|
12
|
+
color: /(background|color)$/i,
|
13
|
+
date: /Date$/i,
|
14
|
+
},
|
15
|
+
},
|
16
|
+
docs: {
|
17
|
+
source: {
|
18
|
+
language: 'tsx',
|
19
|
+
},
|
20
|
+
},
|
21
|
+
},
|
22
|
+
tags: ['autodocs'],
|
23
|
+
decorators: [withThemeProvider(ThemeProvider)],
|
24
|
+
};
|
25
|
+
|
26
|
+
export default preview;
|
Binary file
|
package/.yarnrc.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
nodeLinker: node-modules
|
package/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
<h1 align="center">FireFlink UI</h1>
|
2
|
+
|
3
|
+
FireFlink UI is an open-source React component library.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install the package in your project directory with:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
npm install fireflink
|
11
|
+
```
|
12
|
+
|
13
|
+
## Documentation
|
14
|
+
|
15
|
+
[Click Here](https://main--65d5ca6d09c1eaf0731601fc.chromatic.com/)
|
16
|
+
|
17
|
+
## Example
|
18
|
+
|
19
|
+
```bash
|
20
|
+
import { Button } from 'fireflink'
|
21
|
+
|
22
|
+
...
|
23
|
+
<Button label="Button Label" variant="primary" />
|
24
|
+
...
|
25
|
+
```
|
@@ -0,0 +1 @@
|
|
1
|
+
{"root":["../src/index.ts","../src/assets/utils/functionutils.ts","../src/components/button/button.stories.tsx","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/hooks/useclickoutside.tsx","../src/utils/checkempty/checkempty.stories.tsx","../src/utils/checkempty/checkempty.ts"],"version":"5.6.2"}
|
package/index.scss
ADDED
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './ColorPalette';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface ColorBoxProps {
|
2
|
+
name: string;
|
3
|
+
colorCode: string;
|
4
|
+
opacity?: number;
|
5
|
+
dropShadow?: string;
|
6
|
+
border?: string;
|
7
|
+
}
|
8
|
+
export interface Color {
|
9
|
+
name: string;
|
10
|
+
colorCode: string;
|
11
|
+
opacity?: number;
|
12
|
+
dropShadow?: string;
|
13
|
+
border?: string;
|
14
|
+
}
|
15
|
+
export type ColorPaletteType = Color[];
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const isFunction: (functionToCheck: any) => any;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import './Accordion.scss';
|
2
|
+
import '../../../index.scss';
|
3
|
+
import { AccordionProps } from './types';
|
4
|
+
/**
|
5
|
+
* Accordion UI component
|
6
|
+
*/
|
7
|
+
declare const Accordion: ({ headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, }: AccordionProps) => import("react/jsx-runtime").JSX.Element;
|
8
|
+
export default Accordion;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Accordion';
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { ReactNode } from 'react';
|
2
|
+
export interface AccordionProps {
|
3
|
+
/**
|
4
|
+
* Accordion Header Title
|
5
|
+
*/
|
6
|
+
headerTitle: string | JSX.Element;
|
7
|
+
/**
|
8
|
+
* Content that to be shown while Accordion is expanded
|
9
|
+
*/
|
10
|
+
accordionContent: ReactNode;
|
11
|
+
/**
|
12
|
+
* Custom color for the Accordion header
|
13
|
+
*/
|
14
|
+
color?: string;
|
15
|
+
/**
|
16
|
+
* Minimum height for the Accordion
|
17
|
+
*/
|
18
|
+
minHeight?: string;
|
19
|
+
/**
|
20
|
+
* Property to disable accordion
|
21
|
+
*/
|
22
|
+
disable?: boolean;
|
23
|
+
/**
|
24
|
+
* Info message to user for disabling accordion
|
25
|
+
*/
|
26
|
+
disableInfoMessage?: string;
|
27
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import AddButton from './AddButton';
|
3
|
+
declare const meta: Meta<typeof AddButton>;
|
4
|
+
type Story = StoryObj<typeof AddButton>;
|
5
|
+
export declare const Default: Story;
|
6
|
+
export declare const TwoArrowsButtons: Story;
|
7
|
+
export declare const ThreeArrowsButton: Story;
|
8
|
+
export default meta;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import './ArrowsButton.scss';
|
2
|
+
import { DirectionalArrowButtonProps } from '../type';
|
3
|
+
declare const ArrowsButton: ({ direction, menuOptions, onArrowClick, }: DirectionalArrowButtonProps & {
|
4
|
+
isActive: boolean;
|
5
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
6
|
+
export default ArrowsButton;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './AddButton';
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/**
|
2
|
+
* Describes the directional arrow used in the Add Resource Button component.
|
3
|
+
* The arrow specifies its direction (top, right, down) and associated menu options.
|
4
|
+
*
|
5
|
+
* @property {('top' | 'right' | 'down')} direction - Specifies the direction of the arrow.
|
6
|
+
* @property {(Object | null)[]} menuOptions - The list of menu options displayed when the arrow button is active.
|
7
|
+
* If null, no menu options will be shown.
|
8
|
+
*/
|
9
|
+
export interface DirectionalArrow {
|
10
|
+
direction: 'top' | 'right' | 'down';
|
11
|
+
menuOptions: ({
|
12
|
+
label: string;
|
13
|
+
value: string | string[];
|
14
|
+
icon: string;
|
15
|
+
disable?: boolean;
|
16
|
+
})[];
|
17
|
+
}
|
18
|
+
/**a
|
19
|
+
* Props for the Add Resource Button component.
|
20
|
+
*
|
21
|
+
* @property {string} [id] - An optional unique identifier for the Add Resource Button.
|
22
|
+
* @property {('primary' | 'secondary')} [variant] - Optional button style variant.
|
23
|
+
* @property {DirectionalArrow[]} directionalArrow - An array of directional arrows, each specifying the direction and associated menu options. Default values will be provided if not passed.
|
24
|
+
* @property {number} [zIndex] - An optional z-index value for positioning, defaults to 99.
|
25
|
+
*/
|
26
|
+
export interface AddResourceButtonProps {
|
27
|
+
id?: string;
|
28
|
+
variant?: 'primary' | 'secondary';
|
29
|
+
directionalArrow: {
|
30
|
+
direction: 'top' | 'right' | 'down';
|
31
|
+
menuOptions: ({
|
32
|
+
label: string;
|
33
|
+
value: string | string[];
|
34
|
+
icon: string;
|
35
|
+
disable?: boolean;
|
36
|
+
})[];
|
37
|
+
}[];
|
38
|
+
zIndex?: number;
|
39
|
+
}
|
40
|
+
/**
|
41
|
+
* Props for individual directional arrow buttons.
|
42
|
+
*
|
43
|
+
* @property {('top' | 'right' | 'down')} direction - The direction of the arrow button (top, right, or down).
|
44
|
+
* @property {(Object | any)} menuOptions - The list of menu options or a generic value for dynamic content.
|
45
|
+
* @property {() => void} onArrowClick - Callback function triggered when the arrow button is clicked.
|
46
|
+
* @property {boolean} isActive - Specifies if the button is in an active state (highlighted when selected).
|
47
|
+
*/
|
48
|
+
export interface DirectionalArrowButtonProps {
|
49
|
+
direction: 'top' | 'right' | 'down';
|
50
|
+
menuOptions: ({
|
51
|
+
label: string;
|
52
|
+
value: string | string[];
|
53
|
+
icon: string;
|
54
|
+
disable?: boolean;
|
55
|
+
})[];
|
56
|
+
onArrowClick: () => void;
|
57
|
+
isActive: boolean;
|
58
|
+
variant?: 'primary' | 'secondary';
|
59
|
+
}
|
60
|
+
/**
|
61
|
+
* Utility function to validate an array of directional arrows.
|
62
|
+
* Ensures there is at least one valid arrow in the array.
|
63
|
+
* If the array is empty, it returns a default arrow object.
|
64
|
+
*/
|
65
|
+
export declare const validateArrows: (arrows: DirectionalArrow[]) => DirectionalArrow[];
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import './Button.scss';
|
2
|
+
import '../../assets/styles/_colors.scss';
|
3
|
+
import { ButtonProps } from './types';
|
4
|
+
declare const Button: import("react").ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
5
|
+
export default Button;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Button from './Button';
|
3
|
+
declare const meta: Meta<typeof Button>;
|
4
|
+
type Story = StoryObj<typeof Button>;
|
5
|
+
export declare const Primary: Story;
|
6
|
+
export declare const Secondary: Story;
|
7
|
+
export declare const Tertiary: Story;
|
8
|
+
export declare const Delete: Story;
|
9
|
+
export declare const PrimaryWithIcon: Story;
|
10
|
+
export declare const SecondaryWithIcon: Story;
|
11
|
+
export declare const TertiaryWithIcon: Story;
|
12
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Button';
|
@@ -0,0 +1,61 @@
|
|
1
|
+
import { ReactNode } from 'react';
|
2
|
+
export interface ButtonProps {
|
3
|
+
/**
|
4
|
+
* Variant of the button
|
5
|
+
*/
|
6
|
+
variant: 'primary' | 'secondary' | 'tertiary' | 'delete';
|
7
|
+
/**
|
8
|
+
* What background color to use
|
9
|
+
*/
|
10
|
+
backgroundColor?: string;
|
11
|
+
/**
|
12
|
+
* How large should the button be?
|
13
|
+
*/
|
14
|
+
size?: 'small' | 'medium' | 'large';
|
15
|
+
/**
|
16
|
+
* Button contents
|
17
|
+
*/
|
18
|
+
label?: string;
|
19
|
+
/**
|
20
|
+
* Type of the button
|
21
|
+
*/
|
22
|
+
type?: 'button' | 'submit';
|
23
|
+
disabled?: boolean;
|
24
|
+
/**
|
25
|
+
* Optional click handler
|
26
|
+
*/
|
27
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
28
|
+
/**
|
29
|
+
* Button content
|
30
|
+
*/
|
31
|
+
children?: ReactNode;
|
32
|
+
/**
|
33
|
+
* Button id
|
34
|
+
*/
|
35
|
+
id?: string;
|
36
|
+
/**
|
37
|
+
* onSubmit function handler
|
38
|
+
*/
|
39
|
+
onSubmit?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
40
|
+
/**
|
41
|
+
* react ref for the button
|
42
|
+
*/
|
43
|
+
ref?: any;
|
44
|
+
/**
|
45
|
+
* Classname for the button
|
46
|
+
*/
|
47
|
+
className?: string;
|
48
|
+
/**
|
49
|
+
* Additional styles for the button
|
50
|
+
*/
|
51
|
+
style?: React.CSSProperties;
|
52
|
+
/**
|
53
|
+
* Give icon name availble in storybook that to be on left side of button
|
54
|
+
*/
|
55
|
+
iconName?: string;
|
56
|
+
/**
|
57
|
+
* Give icon name availble in storybook that to be on left side of button
|
58
|
+
*/
|
59
|
+
iconPosition?: 'left' | 'right';
|
60
|
+
transparentBackground?: boolean;
|
61
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './DonutChart';
|
@@ -0,0 +1,13 @@
|
|
1
|
+
export type Status = 'passed' | 'failed' | 'warning' | 'skipped' | 'Passed' | 'Failed' | 'Skipped' | 'Warning';
|
2
|
+
export type StatusValue = {
|
3
|
+
status: Status;
|
4
|
+
value: number;
|
5
|
+
};
|
6
|
+
export type DonutChartProps = {
|
7
|
+
radius: number;
|
8
|
+
lineWidth: number;
|
9
|
+
statusValues: StatusValue[];
|
10
|
+
legendDetailsType: string;
|
11
|
+
isLegendDetails: boolean;
|
12
|
+
gapAngle?: number;
|
13
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './RadialChart';
|
@@ -0,0 +1,25 @@
|
|
1
|
+
export type Status = {
|
2
|
+
status: 'Passed' | 'Failed' | 'Warning' | 'Skipped' | 'passed' | 'failed' | 'warning' | 'skipped';
|
3
|
+
value: number;
|
4
|
+
};
|
5
|
+
export interface RadialChartProps {
|
6
|
+
radius: number;
|
7
|
+
lineWidth: number;
|
8
|
+
statusValues: Status[];
|
9
|
+
onClick?: (status: Status) => void;
|
10
|
+
fontSize: number;
|
11
|
+
}
|
12
|
+
export type ArcParams = {
|
13
|
+
x: number;
|
14
|
+
y: number;
|
15
|
+
radius: number;
|
16
|
+
startAngle: number;
|
17
|
+
endAngle: number;
|
18
|
+
};
|
19
|
+
export type ArcResult = string;
|
20
|
+
export type ArcAnglesResult = {
|
21
|
+
endAngle: number;
|
22
|
+
backgroundArcPath: string;
|
23
|
+
foregroundArcPath: string;
|
24
|
+
percentage: number;
|
25
|
+
};
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Checkbox from './Checkbox';
|
3
|
+
declare const meta: Meta<typeof Checkbox>;
|
4
|
+
export default meta;
|
5
|
+
type Story = StoryObj<typeof meta>;
|
6
|
+
export declare const Default: Story;
|
7
|
+
export declare const Partial: Story;
|
8
|
+
export declare const Controlled: Story;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Checkbox';
|
@@ -0,0 +1,30 @@
|
|
1
|
+
export interface CheckboxProps {
|
2
|
+
/**
|
3
|
+
* Unique ID for the checkbox input
|
4
|
+
*/
|
5
|
+
id?: string;
|
6
|
+
/**
|
7
|
+
* Name attribute for the checkbox input
|
8
|
+
*/
|
9
|
+
name?: string;
|
10
|
+
/**
|
11
|
+
* Optional side label
|
12
|
+
*/
|
13
|
+
label?: string;
|
14
|
+
/**
|
15
|
+
* Optional disable attribute
|
16
|
+
*/
|
17
|
+
disabled?: boolean;
|
18
|
+
/**
|
19
|
+
* Optional checked attribute to prefill
|
20
|
+
*/
|
21
|
+
checked?: boolean;
|
22
|
+
/**
|
23
|
+
* Optional onChange function
|
24
|
+
*/
|
25
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
26
|
+
/**
|
27
|
+
* For partially checked checkbox
|
28
|
+
*/
|
29
|
+
partial?: boolean;
|
30
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Chip from './Chip';
|
3
|
+
import '../../assets/styles/_colors.scss';
|
4
|
+
import './Chip.scss';
|
5
|
+
declare const meta: Meta<typeof Chip>;
|
6
|
+
type Story = StoryObj<typeof Chip>;
|
7
|
+
export declare const Primary: Story;
|
8
|
+
export declare const withoutExpand: Story;
|
9
|
+
export declare const Group: Story;
|
10
|
+
export declare const CustomChip: Story;
|
11
|
+
export declare const Success: Story;
|
12
|
+
export declare const Errors: Story;
|
13
|
+
export declare const Warning: Story;
|
14
|
+
export default meta;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Chip';
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface ChipsProps {
|
2
|
+
/**
|
3
|
+
* The text to be displayed on the Chip.
|
4
|
+
*/
|
5
|
+
label: string;
|
6
|
+
/**
|
7
|
+
* The text to be displayed on hover.
|
8
|
+
*/
|
9
|
+
fullText?: string;
|
10
|
+
/**
|
11
|
+
* The variant of the Chip.
|
12
|
+
*/
|
13
|
+
variant?: 'primary' | 'success' | 'error' | 'warning' | 'custom';
|
14
|
+
/**
|
15
|
+
* The callback function to be executed when the Chip is clicked.
|
16
|
+
*/
|
17
|
+
onClick?: () => void;
|
18
|
+
}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { DrawerProps } from './Types.js';
|
2
|
+
import './Drawer.scss';
|
3
|
+
declare const Drawer: ({ isOpen, children, onClose, title, primaryButtonProps, secondaryButtonProps, leftPrimaryButtonProps, leftSecondaryButtonProps, showEditButton, onEdit, overlay, isFooterRequired, footerContent, size, _isExpanded, isBackButtonVisible, _isCloseModalButtonVisible, }: DrawerProps) => import("react").ReactPortal;
|
4
|
+
export default Drawer;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
2
|
+
import Drawer from './Drawer';
|
3
|
+
declare const meta: Meta<typeof Drawer>;
|
4
|
+
export default meta;
|
5
|
+
type Story = StoryObj<typeof Drawer>;
|
6
|
+
export declare const Default: Story;
|
7
|
+
export declare const Controlled: Story;
|