gd-design-library 0.0.11 → 0.2.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/CHANGELOG.md +75 -0
- package/README.md +138 -155
- package/assets/icons/account_circle.d.ts +1 -1
- package/assets/icons/arrow-down.d.ts +1 -1
- package/assets/icons/arrow-forward.d.ts +1 -1
- package/assets/icons/attachment.d.ts +7 -0
- package/assets/icons/check.d.ts +1 -1
- package/assets/icons/chevron-left.d.ts +7 -0
- package/assets/icons/chevron-right.d.ts +1 -1
- package/assets/icons/cross.d.ts +1 -1
- package/assets/icons/delete_outlined.d.ts +7 -0
- package/assets/icons/dot.d.ts +1 -1
- package/assets/icons/edit.d.ts +7 -0
- package/assets/icons/error_outline.d.ts +4 -2
- package/assets/icons/eye.d.ts +7 -0
- package/assets/icons/favorite.d.ts +1 -1
- package/assets/icons/favorite_outlined.d.ts +7 -0
- package/assets/icons/filter.d.ts +7 -0
- package/assets/icons/folder.d.ts +7 -0
- package/assets/icons/folderOpen.d.ts +7 -0
- package/assets/icons/home.d.ts +1 -1
- package/assets/icons/keyboard-arrow-down.d.ts +7 -0
- package/assets/icons/local_shipping.d.ts +1 -1
- package/assets/icons/minus.d.ts +1 -1
- package/assets/icons/mobile_menu_button.d.ts +1 -1
- package/assets/icons/paymentCard.d.ts +7 -0
- package/assets/icons/plus.d.ts +1 -1
- package/assets/icons/portrait.d.ts +7 -0
- package/assets/icons/processing.d.ts +7 -0
- package/assets/icons/ruler.d.ts +7 -0
- package/assets/icons/search.d.ts +7 -0
- package/assets/icons/shopping_bag.d.ts +1 -1
- package/assets/icons/slash.d.ts +1 -1
- package/assets/icons/star.d.ts +1 -1
- package/assets/icons/starOutlined.d.ts +3 -2
- package/assets/icons/toast_error.d.ts +3 -2
- package/assets/icons/toast_info.d.ts +1 -1
- package/assets/icons/toast_success.d.ts +3 -2
- package/assets/icons/toast_warning.d.ts +3 -2
- package/assets/icons/upload.d.ts +7 -0
- package/assets/icons/wifiTethering.d.ts +7 -0
- package/assets/index.d.ts +17 -0
- package/components/core/Button/Button.types.d.ts +3 -3
- package/components/core/Dropdown/Dropdown.types.d.ts +4 -1
- package/components/core/Dropdown/index.d.ts +1 -0
- package/components/core/Icon/Icon.d.ts +2 -0
- package/components/core/Icon/constants.d.ts +150 -32
- package/components/core/Image/Image.d.ts +1 -1
- package/components/core/Image/Image.types.d.ts +1 -1
- package/components/core/InlineNotification/InlineNotification.d.ts +4 -0
- package/components/core/InlineNotification/InlineNotification.types.d.ts +9 -0
- package/components/core/InlineNotification/InlineNotificationStyled.d.ts +3 -0
- package/components/core/InlineNotification/constants.d.ts +16 -0
- package/components/core/InlineNotification/index.d.ts +2 -0
- package/components/core/Input/Input.d.ts +1 -2
- package/components/core/Input/Input.types.d.ts +33 -10
- package/components/core/Input/InputAdornment/InputAdornment.d.ts +4 -0
- package/components/core/Input/InputAdornment/StyledInputAdornment.d.ts +2 -0
- package/components/core/Input/InputAdornment/constants.d.ts +1 -0
- package/components/core/Input/InputAdornment/index.d.ts +1 -0
- package/components/core/Input/InputHelper/InputHelper.d.ts +4 -0
- package/components/core/Input/InputHelper/StyledInputHelper.d.ts +2 -0
- package/components/core/Input/InputHelper/constants.d.ts +1 -0
- package/components/core/Input/InputHelper/index.d.ts +1 -0
- package/components/core/Input/InputWrapper/InputWrapper.d.ts +4 -0
- package/components/core/Input/InputWrapper/StyledInputWrapper.d.ts +2 -0
- package/components/core/Input/InputWrapper/constants.d.ts +2 -0
- package/components/core/Input/InputWrapper/index.d.ts +1 -0
- package/components/core/Input/StyledInput.d.ts +1 -2
- package/components/core/Input/constants.d.ts +15 -0
- package/components/core/Input/index.d.ts +1 -1
- package/components/core/Input/useInputHandlers.d.ts +17 -0
- package/components/core/InputFile/InputFile.d.ts +50 -0
- package/components/core/InputFile/InputFile.types.d.ts +8 -0
- package/components/core/InputFile/StyledInputFile.d.ts +4 -0
- package/components/core/InputFile/constants.d.ts +3 -0
- package/components/core/InputFile/index.d.ts +2 -0
- package/components/core/Label/Label.d.ts +1 -4
- package/components/core/Label/Label.types.d.ts +6 -19
- package/components/core/Label/LabelStyled.d.ts +2 -0
- package/components/core/Label/index.d.ts +1 -1
- package/components/core/List/List.types.d.ts +7 -3
- package/components/core/List/ListStyled.d.ts +3 -0
- package/components/core/Menu/Menu.d.ts +13 -0
- package/components/core/Menu/StyledMenu.d.ts +13 -0
- package/components/core/Menu/constants.d.ts +11 -0
- package/components/core/Menu/index.d.ts +1 -0
- package/components/core/Modal/Modal.d.ts +3 -1
- package/components/core/Modal/Modal.types.d.ts +9 -7
- package/components/core/Modal/StyledModal.d.ts +9 -7
- package/components/core/Scroll/Scroll.d.ts +24 -0
- package/components/core/Scroll/ScrollBar.d.ts +6 -0
- package/components/core/Scroll/StyledScrollBar.d.ts +11 -0
- package/components/core/Scroll/constants.d.ts +2 -0
- package/components/core/Scroll/index.d.ts +1 -0
- package/components/core/Scroll/types.d.ts +7 -0
- package/components/core/Scroll/utils.d.ts +5 -0
- package/components/core/Slider/Slider.d.ts +21 -0
- package/components/core/Slider/Slider.types.d.ts +13 -0
- package/components/core/Slider/StyledSlider.d.ts +2 -0
- package/components/core/Slider/constants.d.ts +3 -0
- package/components/core/Slider/index.d.ts +3 -0
- package/components/core/Snackbar/Snackbar.types.d.ts +6 -6
- package/components/core/Snackbar/SnackbarManager.d.ts +1 -1
- package/components/core/Snackbar/StyledSnackbar.d.ts +44 -5
- package/components/core/Switch/StyledSwitch.d.ts +10 -2
- package/components/core/Switch/Switch.d.ts +1 -1
- package/components/core/Switch/Switch.types.d.ts +10 -10
- package/components/core/Textarea/Textarea.types.d.ts +7 -4
- package/components/core/Toggle/StyledToggle.d.ts +2 -0
- package/components/core/Toggle/Toggle.d.ts +2 -0
- package/components/core/Toggle/Toggle.types.d.ts +18 -0
- package/components/core/Toggle/constants.d.ts +1 -0
- package/components/core/Toggle/index.d.ts +2 -0
- package/components/core/Tooltip/Tooltip.types.d.ts +2 -0
- package/components/core/index.d.ts +6 -0
- package/components/domainSpecific/Accordion/Accordion.d.ts +2 -0
- package/components/domainSpecific/Accordion/Accordion.types.d.ts +23 -0
- package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.d.ts +2 -0
- package/components/domainSpecific/Accordion/AccordionContent/index.d.ts +1 -0
- package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.d.ts +2 -0
- package/components/domainSpecific/Accordion/AccordionHeader/index.d.ts +1 -0
- package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.d.ts +2 -0
- package/components/domainSpecific/Accordion/AccordionItem/index.d.ts +1 -0
- package/components/domainSpecific/Accordion/StyledAccordion.d.ts +5 -0
- package/components/domainSpecific/Accordion/constants.d.ts +5 -0
- package/components/domainSpecific/Accordion/hooks/index.d.ts +1 -0
- package/components/domainSpecific/Accordion/hooks/useAccordion.d.ts +3 -0
- package/components/domainSpecific/Accordion/index.d.ts +4 -0
- package/components/domainSpecific/Card/Card.types.d.ts +5 -3
- package/components/domainSpecific/Card/{CardButton.d.ts → CardButton/CardButton.d.ts} +1 -1
- package/components/domainSpecific/Card/CardButton/StyledCardButton.d.ts +2 -0
- package/components/domainSpecific/Card/CardButton/constants.d.ts +1 -0
- package/components/domainSpecific/Card/CardButton/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardCounter.d.ts → CardCounter/CardCounter.d.ts} +1 -1
- package/components/domainSpecific/Card/CardCounter/StyledCardCounter.d.ts +2 -0
- package/components/domainSpecific/Card/CardCounter/constants.d.ts +1 -0
- package/components/domainSpecific/Card/CardCounter/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardDescription.d.ts → CardDescription/CardDescription.d.ts} +1 -1
- package/components/domainSpecific/Card/CardDescription/StyledCardDescription.d.ts +12 -0
- package/components/domainSpecific/Card/CardDescription/constants.d.ts +6 -0
- package/components/domainSpecific/Card/CardDescription/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardImage.d.ts → CardImage/CardImage.d.ts} +1 -1
- package/components/domainSpecific/Card/CardImage/StyledCardImage.d.ts +2 -0
- package/components/domainSpecific/Card/CardImage/constants.d.ts +1 -0
- package/components/domainSpecific/Card/CardImage/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardPrice.d.ts → CardPrice/CardPrice.d.ts} +1 -1
- package/components/domainSpecific/Card/CardPrice/StyledCardPrice.d.ts +2 -0
- package/components/domainSpecific/Card/CardPrice/constants.d.ts +1 -0
- package/components/domainSpecific/Card/CardPrice/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardRating.d.ts → CardRating/CardRating.d.ts} +1 -1
- package/components/domainSpecific/Card/CardRating/StyledCardRating.d.ts +2 -0
- package/components/domainSpecific/Card/CardRating/constants.d.ts +3 -0
- package/components/domainSpecific/Card/CardRating/index.d.ts +1 -0
- package/components/domainSpecific/Card/{CardTitle.d.ts → CardTitle/CardTitle.d.ts} +1 -1
- package/components/domainSpecific/Card/CardTitle/StyledCardTitle.d.ts +12 -0
- package/components/domainSpecific/Card/CardTitle/constants.d.ts +6 -0
- package/components/domainSpecific/Card/CardTitle/index.d.ts +1 -0
- package/components/domainSpecific/Card/StyledCard.d.ts +1 -29
- package/components/domainSpecific/Card/constants.d.ts +0 -18
- package/components/domainSpecific/Carousel/Carousel.d.ts +12 -0
- package/components/domainSpecific/Carousel/Carousel.types.d.ts +43 -0
- package/components/domainSpecific/Carousel/StyledCarousel.d.ts +42 -0
- package/components/domainSpecific/Carousel/constants.d.ts +1 -0
- package/components/domainSpecific/Carousel/index.d.ts +4 -0
- package/components/domainSpecific/Carousel/utils.d.ts +2 -0
- package/components/domainSpecific/ContentCarousel/ContentCarousel.d.ts +2 -0
- package/components/domainSpecific/ContentCarousel/ContentCarousel.types.d.ts +16 -0
- package/components/domainSpecific/ContentCarousel/StyledContentCarousel.d.ts +4 -0
- package/components/domainSpecific/ContentCarousel/constants.d.ts +1 -0
- package/components/domainSpecific/ContentCarousel/index.d.ts +1 -0
- package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.d.ts +54 -0
- package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.types.d.ts +20 -0
- package/components/domainSpecific/DragAndDropFiles/StyledDragAndDropFiles.d.ts +1 -0
- package/components/domainSpecific/DragAndDropFiles/constants.d.ts +1 -0
- package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/index.d.ts +1 -0
- package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.d.ts +19 -0
- package/components/domainSpecific/DragAndDropFiles/index.d.ts +2 -0
- package/components/domainSpecific/Header/Header.d.ts +1 -3
- package/components/domainSpecific/Header/Header.types.d.ts +3 -5
- package/components/domainSpecific/Header/{StyledHeader.d.ts → HeaderStyled.d.ts} +5 -25
- package/components/domainSpecific/ProgressBar/ProgressBar.d.ts +4 -0
- package/components/domainSpecific/ProgressBar/ProgressBar.types.d.ts +20 -0
- package/components/domainSpecific/ProgressBar/StyledProgressBar.d.ts +18 -0
- package/components/domainSpecific/ProgressBar/constants.d.ts +4 -0
- package/components/domainSpecific/ProgressBar/index.d.ts +2 -0
- package/components/domainSpecific/RadioGroup/RadioGroup.d.ts +4 -0
- package/components/domainSpecific/RadioGroup/RadioGroup.types.d.ts +69 -0
- package/components/domainSpecific/RadioGroup/RadioGroupItem/RadioGroupItem.d.ts +5 -0
- package/components/domainSpecific/RadioGroup/RadioGroupItem/index.d.ts +1 -0
- package/components/domainSpecific/RadioGroup/StyledRadioGroup.d.ts +8 -0
- package/components/domainSpecific/RadioGroup/constants.d.ts +2 -0
- package/components/domainSpecific/RadioGroup/index.d.ts +2 -0
- package/components/domainSpecific/Search/StyledSearch.d.ts +28 -3
- package/components/domainSpecific/Search/constants.d.ts +0 -2
- package/components/domainSpecific/Search/renderers.d.ts +2 -2
- package/components/domainSpecific/SearchModal/SearchInput/SearchInput.d.ts +5 -0
- package/components/domainSpecific/SearchModal/SearchInput/StyledSearchInput.d.ts +27 -0
- package/components/domainSpecific/SearchModal/SearchInput/constants.d.ts +3 -0
- package/components/domainSpecific/SearchModal/SearchInput/index.d.ts +1 -0
- package/components/domainSpecific/SearchModal/SearchItems/SearchItems.d.ts +5 -0
- package/components/domainSpecific/SearchModal/SearchItems/StyledSearchItems.d.ts +42 -0
- package/components/domainSpecific/SearchModal/SearchItems/constants.d.ts +7 -0
- package/components/domainSpecific/SearchModal/SearchItems/index.d.ts +1 -0
- package/components/domainSpecific/SearchModal/SearchItems/utils.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchLoader/SearchLoader.d.ts +5 -0
- package/components/domainSpecific/SearchModal/SearchLoader/StyledSearchLoader.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchLoader/constants.d.ts +1 -0
- package/components/domainSpecific/SearchModal/SearchLoader/index.d.ts +1 -0
- package/components/domainSpecific/SearchModal/SearchModal.d.ts +4 -0
- package/components/domainSpecific/SearchModal/SearchModal.types.d.ts +45 -0
- package/components/domainSpecific/SearchModal/SearchNoHistory/SearchInput.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchNoHistory/StyledSearchInput.d.ts +27 -0
- package/components/domainSpecific/SearchModal/SearchNoHistory/constants.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchNoHistory/index.d.ts +1 -0
- package/components/domainSpecific/SearchModal/SearchNoResults/SearchInput.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchNoResults/StyledSearchInput.d.ts +27 -0
- package/components/domainSpecific/SearchModal/SearchNoResults/constants.d.ts +2 -0
- package/components/domainSpecific/SearchModal/SearchNoResults/index.d.ts +1 -0
- package/components/domainSpecific/SearchModal/StyledSearchModal.d.ts +14 -0
- package/components/domainSpecific/SearchModal/constants.d.ts +5 -0
- package/components/domainSpecific/SearchModal/index.d.ts +2 -0
- package/components/domainSpecific/Stepper/utils.d.ts +1 -1
- package/components/domainSpecific/Tabs/StyledTabs.d.ts +1 -1
- package/components/domainSpecific/Tabs/Tabs.types.d.ts +1 -0
- package/components/domainSpecific/Templates/Cards/Skeleton/SkeletonSearch/{StyledSkeletonSearch.d.ts → SkeletonSearchStyled.d.ts} +12 -18
- package/components/domainSpecific/index.d.ts +7 -0
- package/components/index.d.ts +1 -1
- package/components/index.types.d.ts +78 -3
- package/components/layout/ChatContainer/ChatContainer.d.ts +25 -0
- package/components/layout/ChatContainer/StyledChatContainer.d.ts +34 -0
- package/components/layout/ChatContainer/constants.d.ts +1 -0
- package/components/layout/ChatContainer/index.d.ts +2 -0
- package/components/layout/ChatContainer/types.d.ts +18 -0
- package/components/layout/Column/Column.types.d.ts +3 -3
- package/components/layout/FlexContainer/FlexContainer.d.ts +1 -3
- package/components/layout/FlexContainer/FlexContainer.types.d.ts +7 -8
- package/components/layout/FlexContainer/FlexContainerStyled.d.ts +2 -0
- package/components/layout/Row/Row.types.d.ts +3 -3
- package/components/layout/index.d.ts +1 -0
- package/components/layout/index.types.d.ts +0 -1
- package/components/layout/utils.d.ts +4 -2
- package/constants/index.d.ts +1 -1
- package/constants/positioning.d.ts +3 -0
- package/hooks/index.d.ts +2 -0
- package/hooks/useCarousel/index.d.ts +1 -0
- package/hooks/useCarousel/useCarousel.d.ts +23 -0
- package/hooks/useKeyControls/index.d.ts +1 -0
- package/hooks/useKeyControls/useKeyControls.d.ts +2 -0
- package/hooks/useTheme/useTheme.d.ts +1 -1
- package/index.cjs.js +238 -0
- package/index.d.ts +1 -0
- package/index.es.js +12076 -0
- package/package.json +6 -13
- package/test-utils.d.ts +9 -0
- package/tokens/accordion.d.ts +62 -0
- package/tokens/animations.d.ts +11 -0
- package/tokens/borders.d.ts +3 -2
- package/tokens/breadcrumbs.d.ts +17 -10
- package/tokens/button.d.ts +42 -34
- package/tokens/card.d.ts +39 -89
- package/tokens/carousel.d.ts +195 -0
- package/tokens/chat.d.ts +108 -0
- package/tokens/colors.d.ts +1 -0
- package/tokens/column.d.ts +1 -0
- package/tokens/constants.d.ts +2 -0
- package/tokens/cursors.d.ts +1 -0
- package/tokens/defaultTheme.d.ts +1865 -899
- package/tokens/draganddropfiles.d.ts +3 -0
- package/tokens/flexContainer.d.ts +2 -1
- package/tokens/header.d.ts +8 -8
- package/tokens/index.d.ts +1297 -472
- package/tokens/inlineNotification.d.ts +55 -0
- package/tokens/input.d.ts +193 -60
- package/tokens/inputfile.d.ts +8 -0
- package/tokens/internal/index.d.ts +1 -0
- package/tokens/internal/switch.d.ts +13 -0
- package/tokens/label.d.ts +2 -19
- package/tokens/link.d.ts +9 -9
- package/tokens/list.d.ts +11 -8
- package/tokens/menu.d.ts +15 -0
- package/tokens/modal.d.ts +59 -42
- package/tokens/price.d.ts +12 -8
- package/tokens/progressbar.d.ts +51 -0
- package/tokens/radiogroup.d.ts +81 -0
- package/tokens/rating.d.ts +17 -9
- package/tokens/scroll.d.ts +91 -0
- package/tokens/search.d.ts +6 -4
- package/tokens/searchModal.d.ts +139 -0
- package/tokens/select.d.ts +15 -14
- package/tokens/shadow.d.ts +3 -0
- package/tokens/skeleton.d.ts +3 -3
- package/tokens/slider.d.ts +38 -0
- package/tokens/snackbar.d.ts +43 -102
- package/tokens/spacing.d.ts +1 -1
- package/tokens/stepper.d.ts +18 -28
- package/tokens/switch.d.ts +52 -4
- package/tokens/tabs.d.ts +33 -27
- package/tokens/textarea.d.ts +32 -45
- package/tokens/toggle.d.ts +8 -0
- package/tokens/tooltip.d.ts +4 -2
- package/tokens/types/index.types.d.ts +5 -0
- package/tokens/utils.d.ts +21 -3
- package/tokens/values.d.ts +15 -0
- package/types/carousel.d.ts +1 -0
- package/types/index.d.ts +3 -1
- package/types/keys.d.ts +8 -0
- package/types/styles.d.ts +3 -0
- package/utils/animationFrame.d.ts +15 -0
- package/utils/common.d.ts +2 -0
- package/utils/date.d.ts +9 -0
- package/utils/helpers.d.ts +13 -0
- package/utils/index.d.ts +5 -0
- package/utils/setInRange.d.ts +5 -0
- package/components/core/Label/StyledLabel.d.ts +0 -2
- package/components/core/List/StyledList.d.ts +0 -3
- package/components/domainSpecific/Card/utils.d.ts +0 -0
- package/components/layout/FlexContainer/StyledFlexContainer.d.ts +0 -2
- package/constants/events.d.ts +0 -5
- package/index.mjs +0 -7043
- /package/{style.css → gd-design-library.css} +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# [Versions](https://www.npmjs.com/package/gd-design-library?activeTab=versions)
|
|
2
|
+
|
|
3
|
+
# Changelog
|
|
4
|
+
|
|
5
|
+
## [0.1.0]
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **Icon Stories**: Enhanced Icon stories with custom icons registration (#138)
|
|
10
|
+
- **Custom Icons**: Added support for custom icons (#137)
|
|
11
|
+
- **Header**: Simplified Header component and registered custom icons (#110)
|
|
12
|
+
- **Card Components**: Refactored Card components and improved styles (#135)
|
|
13
|
+
- **Progress Bar**: Added base functionality for progress bar (#199)
|
|
14
|
+
- **Accordion**: Implemented accordion base functionality (#185)
|
|
15
|
+
- **Typography**: Improved Typography component formatting and added "Small" style (#195)
|
|
16
|
+
- **Select**: Added keyboard events and improved select state handling (#113)
|
|
17
|
+
- **Rating**: Added rating view and component (#50)
|
|
18
|
+
- **Theme**: Improved theme switching and custom theme support (#71)
|
|
19
|
+
- **Loader**: Added base Loader component with multiple sizes (#42)
|
|
20
|
+
- **Modal**: Added base modal window functionality (#39)
|
|
21
|
+
- **Tooltip**: Added tooltip component (#35)
|
|
22
|
+
- **Layout**: Created layout container components (Row/Column) (#20)
|
|
23
|
+
|
|
24
|
+
### Refactor
|
|
25
|
+
|
|
26
|
+
- **Theme Handling**: Updated typing for theme change handler
|
|
27
|
+
- **Imports**: Removed unused imports from Header component (multiple commits)
|
|
28
|
+
- **Typography**: Refactored typography style handling (#156)
|
|
29
|
+
- **Button**: Enhanced Button component with improved styling support
|
|
30
|
+
- **Components**: Simplified components and aligned imports (#124)
|
|
31
|
+
- **Tokens**: Updated color, radius, and spacing tokens (#65)
|
|
32
|
+
|
|
33
|
+
### Fixes
|
|
34
|
+
|
|
35
|
+
- **Console Warnings**: Fixed console warnings in App.tsx (#194)
|
|
36
|
+
- **Snapshot Tests**: Updated snapshots across multiple components
|
|
37
|
+
- **Focus Styles**: Implemented focus styles for checkbox and radio inputs (#186)
|
|
38
|
+
- **Select**: Fixed styles and theme integration (#188)
|
|
39
|
+
- **Textarea**: Skipped snapshot test in textarea (#82)
|
|
40
|
+
|
|
41
|
+
### CI/CD
|
|
42
|
+
|
|
43
|
+
- **NPM Publishing**: Added release pipeline for publishing to NPM (#111)
|
|
44
|
+
- **Slack Notifications**: Added Slack notifications to CI (#75)
|
|
45
|
+
- **Playwright**: Added initial Playwright test setup (#69)
|
|
46
|
+
|
|
47
|
+
### Documentation
|
|
48
|
+
|
|
49
|
+
- **README**: Updated README with component creation script (#99)
|
|
50
|
+
- **Storybook**: Enhanced Storybook docs for multiple components
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Previous Changes
|
|
55
|
+
|
|
56
|
+
<details>
|
|
57
|
+
<summary>Expand full history</summary>
|
|
58
|
+
|
|
59
|
+
### Older Features
|
|
60
|
+
|
|
61
|
+
- **Search**: Added search functionality based on select (#102)
|
|
62
|
+
- **Tabs**: Implemented Tabs component (#139)
|
|
63
|
+
- **Stepper**: Added stepper view (#46)
|
|
64
|
+
- **Form**: Added base form concept (#32)
|
|
65
|
+
- **Textarea**: Added core textarea functionality (#26)
|
|
66
|
+
- **Link**: Added Link component (#27)
|
|
67
|
+
- **Input**: Added base input component (#13)
|
|
68
|
+
|
|
69
|
+
### Infrastructure
|
|
70
|
+
|
|
71
|
+
- **Monorepo**: Integrated Nx monorepo setup
|
|
72
|
+
- **Linting**: Configured ESLint and Prettier (#6)
|
|
73
|
+
- **Testing**: Added Jest and React Testing Library (#11)
|
|
74
|
+
|
|
75
|
+
</details>
|
package/README.md
CHANGED
|
@@ -1,201 +1,184 @@
|
|
|
1
|
-
#
|
|
1
|
+
# GridKit – Grid Dynamics Design System
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
This design system is built using React and Vite, and it aims to provide a comprehensive set of reusable components and styles for Grid Dynamics.
|
|
3
|
+

|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
**GridKit** is the official design system and component library from Grid Dynamics.
|
|
6
|
+
It provides a set of reusable, accessible, and themeable React UI components designed to accelerate the development of consistent, scalable applications – with a focus on e-commerce and enterprise platforms.
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
gd-design-system/
|
|
8
|
+
---
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
│ │ │ │ ├── Button.types.ts
|
|
30
|
-
│ │ │ │ ├── Button.tsx
|
|
31
|
-
│ │ │ │ └── StyledButton.ts
|
|
32
|
-
│ │ │ ├── [Input](src/components/core/Input)
|
|
33
|
-
│ │ │ │ ├── index.ts
|
|
34
|
-
│ │ │ │ ├── constants.ts
|
|
35
|
-
│ │ │ │ ├── Input.stories.tsx
|
|
36
|
-
│ │ │ │ ├── Input.test.tsx
|
|
37
|
-
│ │ │ │ ├── Input.types.ts
|
|
38
|
-
│ │ │ │ ├── input.tsx
|
|
39
|
-
│ │ │ │ └── StyledInput.ts
|
|
40
|
-
│ │ │ ├── [Label](src/components/core/Label)
|
|
41
|
-
│ │ │ │ ├── index.ts
|
|
42
|
-
│ │ │ │ ├── constants.ts
|
|
43
|
-
│ │ │ │ ├── Label.stories.tsx
|
|
44
|
-
│ │ │ │ ├── Label.test.tsx
|
|
45
|
-
│ │ │ │ ├── Label.types.ts
|
|
46
|
-
│ │ │ │ ├── Label.tsx
|
|
47
|
-
│ │ │ │ └── StyledLabel.ts
|
|
48
|
-
│ │ │ ├── [Form](src/components/core/Form)
|
|
49
|
-
│ │ │ │ ├── index.ts
|
|
50
|
-
│ │ │ │ ├── constants.ts
|
|
51
|
-
│ │ │ │ ├── utils.ts
|
|
52
|
-
│ │ │ │ ├── Form.stories.tsx
|
|
53
|
-
│ │ │ │ ├── Form.test.tsx
|
|
54
|
-
│ │ │ │ ├── Form.types.ts
|
|
55
|
-
│ │ │ │ ├── Form.tsx
|
|
56
|
-
│ │ │ │ └── StyledForm.ts
|
|
57
|
-
│ │ │ ├── [Typography](src/components/core/Typography)
|
|
58
|
-
│ │ │ │ ├── index.ts
|
|
59
|
-
│ │ │ │ ├── constants.ts
|
|
60
|
-
│ │ │ │ ├── Typography.stories.tsx
|
|
61
|
-
│ │ │ │ ├── Typography.test.tsx
|
|
62
|
-
│ │ │ │ ├── Typography.types.ts
|
|
63
|
-
│ │ │ │ ├── Typography.tsx
|
|
64
|
-
│ │ │ │ └── StyledTypography.ts
|
|
65
|
-
│ │ │ └── index.ts
|
|
66
|
-
│ │ ├── [domainSpecific](src/components/domainSpecific)
|
|
67
|
-
│ │ │ └── index.ts
|
|
68
|
-
│ │ └── index.ts
|
|
69
|
-
│ ├── [hooks](src/hooks)
|
|
70
|
-
│ │ └── [useTheme](src/hooks/useTheme)
|
|
71
|
-
│ │ ├── index.ts
|
|
72
|
-
│ │ ├── types.ts
|
|
73
|
-
│ │ └── useTheme.ts
|
|
74
|
-
│ ├── index.css
|
|
75
|
-
│ ├── main.tsx
|
|
76
|
-
│ ├── [tokens](src/tokens)
|
|
77
|
-
│ │ ├── borders.ts
|
|
78
|
-
│ │ ├── button.ts
|
|
79
|
-
│ │ ├── colors.ts
|
|
80
|
-
│ │ ├── defaultTheme.ts
|
|
81
|
-
│ │ ├── index.ts
|
|
82
|
-
│ │ ├── utils.ts
|
|
83
|
-
│ │ ├── spacing.ts
|
|
84
|
-
│ │ ├── typography.ts
|
|
85
|
-
│ │ └── values.ts
|
|
86
|
-
│ ├── [utils](src/utils)
|
|
87
|
-
│ │ └── index.ts
|
|
88
|
-
│ └── vite-env.d.ts
|
|
89
|
-
├── tsconfig.app.json
|
|
90
|
-
├── tsconfig.json
|
|
91
|
-
├── tsconfig.node.json
|
|
92
|
-
|── vite.config.ts
|
|
93
|
-
├── eslint.config.js
|
|
94
|
-
├── index.html
|
|
95
|
-
├── package-lock.json
|
|
96
|
-
├── package.json
|
|
97
|
-
└── README.md
|
|
10
|
+
## ✨ Features
|
|
11
|
+
|
|
12
|
+
- 🧩 35+ modular components (core, layout, domain-specific)
|
|
13
|
+
- 🎨 Theming support with dynamic runtime switching
|
|
14
|
+
- 🔗 Design tokens synced with Figma
|
|
15
|
+
- 📦 Optimized build using Vite
|
|
16
|
+
- 📚 Fully documented via Storybook
|
|
17
|
+
- ♿ WCAG 2.1 AA-compliant components
|
|
18
|
+
- ⚙️ Type-safe and fully tested with Vitest + RTL
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## 📦 Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm install gd-design-library
|
|
26
|
+
# or
|
|
27
|
+
yarn add gd-design-library
|
|
98
28
|
```
|
|
99
29
|
|
|
100
|
-
|
|
30
|
+
Note: Since this package is private, you need to configure your `.npmrc` with a valid auth token:
|
|
101
31
|
|
|
102
|
-
|
|
32
|
+
```bash
|
|
33
|
+
//registry.npmjs.org/:_authToken=<npm_token>
|
|
34
|
+
```
|
|
103
35
|
|
|
104
|
-
|
|
36
|
+
---
|
|
105
37
|
|
|
106
|
-
|
|
107
|
-
- npm (version 6 or higher) or yarn
|
|
38
|
+
## 🧑💻 Getting Started
|
|
108
39
|
|
|
109
|
-
###
|
|
40
|
+
### Prerequisites
|
|
110
41
|
|
|
111
|
-
|
|
42
|
+
- Node.js (v18 or higher)
|
|
43
|
+
- Yarn or npm
|
|
112
44
|
|
|
113
|
-
|
|
45
|
+
### Clone & Install
|
|
46
|
+
|
|
47
|
+
```bash
|
|
114
48
|
git clone https://github.com/griddynamics/cto-rnd-system-design.git
|
|
115
49
|
cd gd-design-system
|
|
116
50
|
yarn install
|
|
117
51
|
```
|
|
118
52
|
|
|
119
|
-
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## 🚀 Development
|
|
120
56
|
|
|
121
|
-
|
|
57
|
+
Start the local dev server with Vite:
|
|
122
58
|
|
|
123
|
-
```
|
|
124
|
-
yarn
|
|
59
|
+
```bash
|
|
60
|
+
yarn dev
|
|
125
61
|
```
|
|
126
62
|
|
|
127
|
-
|
|
63
|
+
Open [http://localhost:5173](http://localhost:5173) in your browser.
|
|
128
64
|
|
|
129
|
-
###
|
|
65
|
+
### Run Storybook
|
|
130
66
|
|
|
131
|
-
|
|
67
|
+
```bash
|
|
68
|
+
yarn storybook
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## 🏗️ Project Structure
|
|
132
74
|
|
|
133
|
-
```
|
|
134
|
-
|
|
75
|
+
```
|
|
76
|
+
gd-design-system/
|
|
77
|
+
├── src/
|
|
78
|
+
│ ├── components/
|
|
79
|
+
│ │ ├── core/ # Core UI components (Button, Input, etc.)
|
|
80
|
+
│ │ ├── domainSpecific/ # Business-specific components
|
|
81
|
+
│ ├── tokens/ # Design tokens from Figma
|
|
82
|
+
│ ├── hooks/ # Shared React hooks
|
|
83
|
+
│ └── utils/ # Utility functions
|
|
84
|
+
├── .storybook/ # Storybook config
|
|
85
|
+
├── vite.config.ts # Vite config
|
|
86
|
+
├── tsconfig.json # TypeScript config
|
|
87
|
+
├── README.md
|
|
135
88
|
```
|
|
136
89
|
|
|
137
|
-
|
|
90
|
+
---
|
|
138
91
|
|
|
139
|
-
|
|
92
|
+
## 🧪 Testing & Linting
|
|
140
93
|
|
|
141
|
-
|
|
94
|
+
### Run Tests
|
|
142
95
|
|
|
143
|
-
```
|
|
144
|
-
yarn
|
|
96
|
+
```bash
|
|
97
|
+
yarn test
|
|
145
98
|
```
|
|
146
99
|
|
|
147
|
-
### Code
|
|
100
|
+
### Lint Code
|
|
148
101
|
|
|
149
|
-
|
|
102
|
+
```bash
|
|
103
|
+
yarn lint
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Format Code
|
|
150
107
|
|
|
151
|
-
```
|
|
108
|
+
```bash
|
|
152
109
|
yarn format
|
|
153
110
|
```
|
|
154
111
|
|
|
155
|
-
Check
|
|
112
|
+
### Check Formatting
|
|
156
113
|
|
|
157
|
-
```
|
|
114
|
+
```bash
|
|
158
115
|
yarn format:check
|
|
159
116
|
```
|
|
160
117
|
|
|
161
|
-
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 🧰 Component Generator
|
|
162
121
|
|
|
163
|
-
|
|
122
|
+
Use our CLI script to quickly scaffold new components:
|
|
164
123
|
|
|
165
|
-
|
|
124
|
+
### Add Execution Permission (first time)
|
|
166
125
|
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
languageOptions: {
|
|
170
|
-
// other options...
|
|
171
|
-
parserOptions: {
|
|
172
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
173
|
-
tsconfigRootDir: import.meta.dirname,
|
|
174
|
-
},
|
|
175
|
-
},
|
|
176
|
-
});
|
|
126
|
+
```bash
|
|
127
|
+
chmod +x ./bin/create-component.js
|
|
177
128
|
```
|
|
178
129
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
```js
|
|
184
|
-
// eslint.config.js
|
|
185
|
-
import react from 'eslint-plugin-react';
|
|
186
|
-
|
|
187
|
-
export default tseslint.config({
|
|
188
|
-
// Set the react version
|
|
189
|
-
settings: { react: { version: '18.3' } },
|
|
190
|
-
plugins: {
|
|
191
|
-
// Add the react plugin
|
|
192
|
-
react,
|
|
193
|
-
},
|
|
194
|
-
rules: {
|
|
195
|
-
// other rules...
|
|
196
|
-
// Enable its recommended rules
|
|
197
|
-
...react.configs.recommended.rules,
|
|
198
|
-
...react.configs['jsx-runtime'].rules,
|
|
199
|
-
},
|
|
200
|
-
});
|
|
130
|
+
### Create a Component
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
yarn crc ButtonGroup
|
|
201
134
|
```
|
|
135
|
+
|
|
136
|
+
You’ll be prompted to select:
|
|
137
|
+
|
|
138
|
+
- `core`
|
|
139
|
+
- `domainSpecific`
|
|
140
|
+
|
|
141
|
+
The script will generate boilerplate files and update exports automatically.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## 🧩 Usage
|
|
146
|
+
|
|
147
|
+
Wrap your app with the `ThemeProvider`:
|
|
148
|
+
|
|
149
|
+
```tsx
|
|
150
|
+
import { ThemeProvider } from 'gd-design-library';
|
|
151
|
+
|
|
152
|
+
function App() {
|
|
153
|
+
return (
|
|
154
|
+
<ThemeProvider>
|
|
155
|
+
<YourApp />
|
|
156
|
+
</ThemeProvider>
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Use components like:
|
|
162
|
+
|
|
163
|
+
```tsx
|
|
164
|
+
import { Button } from 'gd-design-library';
|
|
165
|
+
|
|
166
|
+
<Button variant="primary">Click Me</Button>;
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## 📘 Documentation
|
|
172
|
+
|
|
173
|
+
Explore our hosted Storybook:
|
|
174
|
+
|
|
175
|
+
👉 [https://storybook.cto-rnd-system-design.griddynamics.net](https://storybook.cto-rnd-system-design.griddynamics.net)
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## 📄 License
|
|
180
|
+
|
|
181
|
+
© Grid Dynamics. All rights reserved.
|
|
182
|
+
This package is for internal and authorized client use only.
|
|
183
|
+
|
|
184
|
+
---
|
|
@@ -4,4 +4,4 @@ export declare const AccountCircleIcon: ({ width, height, fillSvg, fill, ...rest
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const ArrowForwardIcon: ({ width, height, fillSvg, fill, ...rest
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const AttachmentIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/check.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const CheckIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const ChevronLeftIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const ChevronRightIcon: ({ width, height, fillSvg, fill, ...rest
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/cross.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const CrossIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const DeleteOutlinedIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/dot.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const DotIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const EditIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export declare const ErrorOutlineIcon: ({ width, height, color, ...rest }: {
|
|
1
|
+
export declare const ErrorOutlineIcon: ({ width, height, color, fillSvg, fill, ...rest }: {
|
|
2
2
|
[x: string]: any;
|
|
3
3
|
width?: number | undefined;
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
color?: string | undefined;
|
|
6
|
-
|
|
6
|
+
fillSvg?: string | undefined;
|
|
7
|
+
fill?: string | undefined;
|
|
8
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const EyeIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const FavoriteIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FavoriteOutlinedIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FilterIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FolderIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FolderOpenIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/home.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const HomeIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const KeyboardArrowDownIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const LocalShippingIcon: ({ width, height, fillSvg, fill, ...rest
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/minus.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const MinusIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const MobileMenuIcon: ({ width, height, fillSvg, fill, ...rest }:
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const PaymentCardIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/assets/icons/plus.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export declare const PlusIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const PortraitIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const ProcessingIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const RulerIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const SearchIcon: ({ width, height, fillSvg, fill, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
width?: number | undefined;
|
|
4
|
+
height?: number | undefined;
|
|
5
|
+
fillSvg?: string | undefined;
|
|
6
|
+
fill?: string | undefined;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export declare const ShoppingBagIcon: ({ width, height, fillSvg, fill, ...rest }
|
|
|
4
4
|
height?: number | undefined;
|
|
5
5
|
fillSvg?: string | undefined;
|
|
6
6
|
fill?: string | undefined;
|
|
7
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|