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.
Files changed (321) hide show
  1. package/CHANGELOG.md +75 -0
  2. package/README.md +138 -155
  3. package/assets/icons/account_circle.d.ts +1 -1
  4. package/assets/icons/arrow-down.d.ts +1 -1
  5. package/assets/icons/arrow-forward.d.ts +1 -1
  6. package/assets/icons/attachment.d.ts +7 -0
  7. package/assets/icons/check.d.ts +1 -1
  8. package/assets/icons/chevron-left.d.ts +7 -0
  9. package/assets/icons/chevron-right.d.ts +1 -1
  10. package/assets/icons/cross.d.ts +1 -1
  11. package/assets/icons/delete_outlined.d.ts +7 -0
  12. package/assets/icons/dot.d.ts +1 -1
  13. package/assets/icons/edit.d.ts +7 -0
  14. package/assets/icons/error_outline.d.ts +4 -2
  15. package/assets/icons/eye.d.ts +7 -0
  16. package/assets/icons/favorite.d.ts +1 -1
  17. package/assets/icons/favorite_outlined.d.ts +7 -0
  18. package/assets/icons/filter.d.ts +7 -0
  19. package/assets/icons/folder.d.ts +7 -0
  20. package/assets/icons/folderOpen.d.ts +7 -0
  21. package/assets/icons/home.d.ts +1 -1
  22. package/assets/icons/keyboard-arrow-down.d.ts +7 -0
  23. package/assets/icons/local_shipping.d.ts +1 -1
  24. package/assets/icons/minus.d.ts +1 -1
  25. package/assets/icons/mobile_menu_button.d.ts +1 -1
  26. package/assets/icons/paymentCard.d.ts +7 -0
  27. package/assets/icons/plus.d.ts +1 -1
  28. package/assets/icons/portrait.d.ts +7 -0
  29. package/assets/icons/processing.d.ts +7 -0
  30. package/assets/icons/ruler.d.ts +7 -0
  31. package/assets/icons/search.d.ts +7 -0
  32. package/assets/icons/shopping_bag.d.ts +1 -1
  33. package/assets/icons/slash.d.ts +1 -1
  34. package/assets/icons/star.d.ts +1 -1
  35. package/assets/icons/starOutlined.d.ts +3 -2
  36. package/assets/icons/toast_error.d.ts +3 -2
  37. package/assets/icons/toast_info.d.ts +1 -1
  38. package/assets/icons/toast_success.d.ts +3 -2
  39. package/assets/icons/toast_warning.d.ts +3 -2
  40. package/assets/icons/upload.d.ts +7 -0
  41. package/assets/icons/wifiTethering.d.ts +7 -0
  42. package/assets/index.d.ts +17 -0
  43. package/components/core/Button/Button.types.d.ts +3 -3
  44. package/components/core/Dropdown/Dropdown.types.d.ts +4 -1
  45. package/components/core/Dropdown/index.d.ts +1 -0
  46. package/components/core/Icon/Icon.d.ts +2 -0
  47. package/components/core/Icon/constants.d.ts +150 -32
  48. package/components/core/Image/Image.d.ts +1 -1
  49. package/components/core/Image/Image.types.d.ts +1 -1
  50. package/components/core/InlineNotification/InlineNotification.d.ts +4 -0
  51. package/components/core/InlineNotification/InlineNotification.types.d.ts +9 -0
  52. package/components/core/InlineNotification/InlineNotificationStyled.d.ts +3 -0
  53. package/components/core/InlineNotification/constants.d.ts +16 -0
  54. package/components/core/InlineNotification/index.d.ts +2 -0
  55. package/components/core/Input/Input.d.ts +1 -2
  56. package/components/core/Input/Input.types.d.ts +33 -10
  57. package/components/core/Input/InputAdornment/InputAdornment.d.ts +4 -0
  58. package/components/core/Input/InputAdornment/StyledInputAdornment.d.ts +2 -0
  59. package/components/core/Input/InputAdornment/constants.d.ts +1 -0
  60. package/components/core/Input/InputAdornment/index.d.ts +1 -0
  61. package/components/core/Input/InputHelper/InputHelper.d.ts +4 -0
  62. package/components/core/Input/InputHelper/StyledInputHelper.d.ts +2 -0
  63. package/components/core/Input/InputHelper/constants.d.ts +1 -0
  64. package/components/core/Input/InputHelper/index.d.ts +1 -0
  65. package/components/core/Input/InputWrapper/InputWrapper.d.ts +4 -0
  66. package/components/core/Input/InputWrapper/StyledInputWrapper.d.ts +2 -0
  67. package/components/core/Input/InputWrapper/constants.d.ts +2 -0
  68. package/components/core/Input/InputWrapper/index.d.ts +1 -0
  69. package/components/core/Input/StyledInput.d.ts +1 -2
  70. package/components/core/Input/constants.d.ts +15 -0
  71. package/components/core/Input/index.d.ts +1 -1
  72. package/components/core/Input/useInputHandlers.d.ts +17 -0
  73. package/components/core/InputFile/InputFile.d.ts +50 -0
  74. package/components/core/InputFile/InputFile.types.d.ts +8 -0
  75. package/components/core/InputFile/StyledInputFile.d.ts +4 -0
  76. package/components/core/InputFile/constants.d.ts +3 -0
  77. package/components/core/InputFile/index.d.ts +2 -0
  78. package/components/core/Label/Label.d.ts +1 -4
  79. package/components/core/Label/Label.types.d.ts +6 -19
  80. package/components/core/Label/LabelStyled.d.ts +2 -0
  81. package/components/core/Label/index.d.ts +1 -1
  82. package/components/core/List/List.types.d.ts +7 -3
  83. package/components/core/List/ListStyled.d.ts +3 -0
  84. package/components/core/Menu/Menu.d.ts +13 -0
  85. package/components/core/Menu/StyledMenu.d.ts +13 -0
  86. package/components/core/Menu/constants.d.ts +11 -0
  87. package/components/core/Menu/index.d.ts +1 -0
  88. package/components/core/Modal/Modal.d.ts +3 -1
  89. package/components/core/Modal/Modal.types.d.ts +9 -7
  90. package/components/core/Modal/StyledModal.d.ts +9 -7
  91. package/components/core/Scroll/Scroll.d.ts +24 -0
  92. package/components/core/Scroll/ScrollBar.d.ts +6 -0
  93. package/components/core/Scroll/StyledScrollBar.d.ts +11 -0
  94. package/components/core/Scroll/constants.d.ts +2 -0
  95. package/components/core/Scroll/index.d.ts +1 -0
  96. package/components/core/Scroll/types.d.ts +7 -0
  97. package/components/core/Scroll/utils.d.ts +5 -0
  98. package/components/core/Slider/Slider.d.ts +21 -0
  99. package/components/core/Slider/Slider.types.d.ts +13 -0
  100. package/components/core/Slider/StyledSlider.d.ts +2 -0
  101. package/components/core/Slider/constants.d.ts +3 -0
  102. package/components/core/Slider/index.d.ts +3 -0
  103. package/components/core/Snackbar/Snackbar.types.d.ts +6 -6
  104. package/components/core/Snackbar/SnackbarManager.d.ts +1 -1
  105. package/components/core/Snackbar/StyledSnackbar.d.ts +44 -5
  106. package/components/core/Switch/StyledSwitch.d.ts +10 -2
  107. package/components/core/Switch/Switch.d.ts +1 -1
  108. package/components/core/Switch/Switch.types.d.ts +10 -10
  109. package/components/core/Textarea/Textarea.types.d.ts +7 -4
  110. package/components/core/Toggle/StyledToggle.d.ts +2 -0
  111. package/components/core/Toggle/Toggle.d.ts +2 -0
  112. package/components/core/Toggle/Toggle.types.d.ts +18 -0
  113. package/components/core/Toggle/constants.d.ts +1 -0
  114. package/components/core/Toggle/index.d.ts +2 -0
  115. package/components/core/Tooltip/Tooltip.types.d.ts +2 -0
  116. package/components/core/index.d.ts +6 -0
  117. package/components/domainSpecific/Accordion/Accordion.d.ts +2 -0
  118. package/components/domainSpecific/Accordion/Accordion.types.d.ts +23 -0
  119. package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.d.ts +2 -0
  120. package/components/domainSpecific/Accordion/AccordionContent/index.d.ts +1 -0
  121. package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.d.ts +2 -0
  122. package/components/domainSpecific/Accordion/AccordionHeader/index.d.ts +1 -0
  123. package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.d.ts +2 -0
  124. package/components/domainSpecific/Accordion/AccordionItem/index.d.ts +1 -0
  125. package/components/domainSpecific/Accordion/StyledAccordion.d.ts +5 -0
  126. package/components/domainSpecific/Accordion/constants.d.ts +5 -0
  127. package/components/domainSpecific/Accordion/hooks/index.d.ts +1 -0
  128. package/components/domainSpecific/Accordion/hooks/useAccordion.d.ts +3 -0
  129. package/components/domainSpecific/Accordion/index.d.ts +4 -0
  130. package/components/domainSpecific/Card/Card.types.d.ts +5 -3
  131. package/components/domainSpecific/Card/{CardButton.d.ts → CardButton/CardButton.d.ts} +1 -1
  132. package/components/domainSpecific/Card/CardButton/StyledCardButton.d.ts +2 -0
  133. package/components/domainSpecific/Card/CardButton/constants.d.ts +1 -0
  134. package/components/domainSpecific/Card/CardButton/index.d.ts +1 -0
  135. package/components/domainSpecific/Card/{CardCounter.d.ts → CardCounter/CardCounter.d.ts} +1 -1
  136. package/components/domainSpecific/Card/CardCounter/StyledCardCounter.d.ts +2 -0
  137. package/components/domainSpecific/Card/CardCounter/constants.d.ts +1 -0
  138. package/components/domainSpecific/Card/CardCounter/index.d.ts +1 -0
  139. package/components/domainSpecific/Card/{CardDescription.d.ts → CardDescription/CardDescription.d.ts} +1 -1
  140. package/components/domainSpecific/Card/CardDescription/StyledCardDescription.d.ts +12 -0
  141. package/components/domainSpecific/Card/CardDescription/constants.d.ts +6 -0
  142. package/components/domainSpecific/Card/CardDescription/index.d.ts +1 -0
  143. package/components/domainSpecific/Card/{CardImage.d.ts → CardImage/CardImage.d.ts} +1 -1
  144. package/components/domainSpecific/Card/CardImage/StyledCardImage.d.ts +2 -0
  145. package/components/domainSpecific/Card/CardImage/constants.d.ts +1 -0
  146. package/components/domainSpecific/Card/CardImage/index.d.ts +1 -0
  147. package/components/domainSpecific/Card/{CardPrice.d.ts → CardPrice/CardPrice.d.ts} +1 -1
  148. package/components/domainSpecific/Card/CardPrice/StyledCardPrice.d.ts +2 -0
  149. package/components/domainSpecific/Card/CardPrice/constants.d.ts +1 -0
  150. package/components/domainSpecific/Card/CardPrice/index.d.ts +1 -0
  151. package/components/domainSpecific/Card/{CardRating.d.ts → CardRating/CardRating.d.ts} +1 -1
  152. package/components/domainSpecific/Card/CardRating/StyledCardRating.d.ts +2 -0
  153. package/components/domainSpecific/Card/CardRating/constants.d.ts +3 -0
  154. package/components/domainSpecific/Card/CardRating/index.d.ts +1 -0
  155. package/components/domainSpecific/Card/{CardTitle.d.ts → CardTitle/CardTitle.d.ts} +1 -1
  156. package/components/domainSpecific/Card/CardTitle/StyledCardTitle.d.ts +12 -0
  157. package/components/domainSpecific/Card/CardTitle/constants.d.ts +6 -0
  158. package/components/domainSpecific/Card/CardTitle/index.d.ts +1 -0
  159. package/components/domainSpecific/Card/StyledCard.d.ts +1 -29
  160. package/components/domainSpecific/Card/constants.d.ts +0 -18
  161. package/components/domainSpecific/Carousel/Carousel.d.ts +12 -0
  162. package/components/domainSpecific/Carousel/Carousel.types.d.ts +43 -0
  163. package/components/domainSpecific/Carousel/StyledCarousel.d.ts +42 -0
  164. package/components/domainSpecific/Carousel/constants.d.ts +1 -0
  165. package/components/domainSpecific/Carousel/index.d.ts +4 -0
  166. package/components/domainSpecific/Carousel/utils.d.ts +2 -0
  167. package/components/domainSpecific/ContentCarousel/ContentCarousel.d.ts +2 -0
  168. package/components/domainSpecific/ContentCarousel/ContentCarousel.types.d.ts +16 -0
  169. package/components/domainSpecific/ContentCarousel/StyledContentCarousel.d.ts +4 -0
  170. package/components/domainSpecific/ContentCarousel/constants.d.ts +1 -0
  171. package/components/domainSpecific/ContentCarousel/index.d.ts +1 -0
  172. package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.d.ts +54 -0
  173. package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.types.d.ts +20 -0
  174. package/components/domainSpecific/DragAndDropFiles/StyledDragAndDropFiles.d.ts +1 -0
  175. package/components/domainSpecific/DragAndDropFiles/constants.d.ts +1 -0
  176. package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/index.d.ts +1 -0
  177. package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.d.ts +19 -0
  178. package/components/domainSpecific/DragAndDropFiles/index.d.ts +2 -0
  179. package/components/domainSpecific/Header/Header.d.ts +1 -3
  180. package/components/domainSpecific/Header/Header.types.d.ts +3 -5
  181. package/components/domainSpecific/Header/{StyledHeader.d.ts → HeaderStyled.d.ts} +5 -25
  182. package/components/domainSpecific/ProgressBar/ProgressBar.d.ts +4 -0
  183. package/components/domainSpecific/ProgressBar/ProgressBar.types.d.ts +20 -0
  184. package/components/domainSpecific/ProgressBar/StyledProgressBar.d.ts +18 -0
  185. package/components/domainSpecific/ProgressBar/constants.d.ts +4 -0
  186. package/components/domainSpecific/ProgressBar/index.d.ts +2 -0
  187. package/components/domainSpecific/RadioGroup/RadioGroup.d.ts +4 -0
  188. package/components/domainSpecific/RadioGroup/RadioGroup.types.d.ts +69 -0
  189. package/components/domainSpecific/RadioGroup/RadioGroupItem/RadioGroupItem.d.ts +5 -0
  190. package/components/domainSpecific/RadioGroup/RadioGroupItem/index.d.ts +1 -0
  191. package/components/domainSpecific/RadioGroup/StyledRadioGroup.d.ts +8 -0
  192. package/components/domainSpecific/RadioGroup/constants.d.ts +2 -0
  193. package/components/domainSpecific/RadioGroup/index.d.ts +2 -0
  194. package/components/domainSpecific/Search/StyledSearch.d.ts +28 -3
  195. package/components/domainSpecific/Search/constants.d.ts +0 -2
  196. package/components/domainSpecific/Search/renderers.d.ts +2 -2
  197. package/components/domainSpecific/SearchModal/SearchInput/SearchInput.d.ts +5 -0
  198. package/components/domainSpecific/SearchModal/SearchInput/StyledSearchInput.d.ts +27 -0
  199. package/components/domainSpecific/SearchModal/SearchInput/constants.d.ts +3 -0
  200. package/components/domainSpecific/SearchModal/SearchInput/index.d.ts +1 -0
  201. package/components/domainSpecific/SearchModal/SearchItems/SearchItems.d.ts +5 -0
  202. package/components/domainSpecific/SearchModal/SearchItems/StyledSearchItems.d.ts +42 -0
  203. package/components/domainSpecific/SearchModal/SearchItems/constants.d.ts +7 -0
  204. package/components/domainSpecific/SearchModal/SearchItems/index.d.ts +1 -0
  205. package/components/domainSpecific/SearchModal/SearchItems/utils.d.ts +2 -0
  206. package/components/domainSpecific/SearchModal/SearchLoader/SearchLoader.d.ts +5 -0
  207. package/components/domainSpecific/SearchModal/SearchLoader/StyledSearchLoader.d.ts +2 -0
  208. package/components/domainSpecific/SearchModal/SearchLoader/constants.d.ts +1 -0
  209. package/components/domainSpecific/SearchModal/SearchLoader/index.d.ts +1 -0
  210. package/components/domainSpecific/SearchModal/SearchModal.d.ts +4 -0
  211. package/components/domainSpecific/SearchModal/SearchModal.types.d.ts +45 -0
  212. package/components/domainSpecific/SearchModal/SearchNoHistory/SearchInput.d.ts +2 -0
  213. package/components/domainSpecific/SearchModal/SearchNoHistory/StyledSearchInput.d.ts +27 -0
  214. package/components/domainSpecific/SearchModal/SearchNoHistory/constants.d.ts +2 -0
  215. package/components/domainSpecific/SearchModal/SearchNoHistory/index.d.ts +1 -0
  216. package/components/domainSpecific/SearchModal/SearchNoResults/SearchInput.d.ts +2 -0
  217. package/components/domainSpecific/SearchModal/SearchNoResults/StyledSearchInput.d.ts +27 -0
  218. package/components/domainSpecific/SearchModal/SearchNoResults/constants.d.ts +2 -0
  219. package/components/domainSpecific/SearchModal/SearchNoResults/index.d.ts +1 -0
  220. package/components/domainSpecific/SearchModal/StyledSearchModal.d.ts +14 -0
  221. package/components/domainSpecific/SearchModal/constants.d.ts +5 -0
  222. package/components/domainSpecific/SearchModal/index.d.ts +2 -0
  223. package/components/domainSpecific/Stepper/utils.d.ts +1 -1
  224. package/components/domainSpecific/Tabs/StyledTabs.d.ts +1 -1
  225. package/components/domainSpecific/Tabs/Tabs.types.d.ts +1 -0
  226. package/components/domainSpecific/Templates/Cards/Skeleton/SkeletonSearch/{StyledSkeletonSearch.d.ts → SkeletonSearchStyled.d.ts} +12 -18
  227. package/components/domainSpecific/index.d.ts +7 -0
  228. package/components/index.d.ts +1 -1
  229. package/components/index.types.d.ts +78 -3
  230. package/components/layout/ChatContainer/ChatContainer.d.ts +25 -0
  231. package/components/layout/ChatContainer/StyledChatContainer.d.ts +34 -0
  232. package/components/layout/ChatContainer/constants.d.ts +1 -0
  233. package/components/layout/ChatContainer/index.d.ts +2 -0
  234. package/components/layout/ChatContainer/types.d.ts +18 -0
  235. package/components/layout/Column/Column.types.d.ts +3 -3
  236. package/components/layout/FlexContainer/FlexContainer.d.ts +1 -3
  237. package/components/layout/FlexContainer/FlexContainer.types.d.ts +7 -8
  238. package/components/layout/FlexContainer/FlexContainerStyled.d.ts +2 -0
  239. package/components/layout/Row/Row.types.d.ts +3 -3
  240. package/components/layout/index.d.ts +1 -0
  241. package/components/layout/index.types.d.ts +0 -1
  242. package/components/layout/utils.d.ts +4 -2
  243. package/constants/index.d.ts +1 -1
  244. package/constants/positioning.d.ts +3 -0
  245. package/hooks/index.d.ts +2 -0
  246. package/hooks/useCarousel/index.d.ts +1 -0
  247. package/hooks/useCarousel/useCarousel.d.ts +23 -0
  248. package/hooks/useKeyControls/index.d.ts +1 -0
  249. package/hooks/useKeyControls/useKeyControls.d.ts +2 -0
  250. package/hooks/useTheme/useTheme.d.ts +1 -1
  251. package/index.cjs.js +238 -0
  252. package/index.d.ts +1 -0
  253. package/index.es.js +12076 -0
  254. package/package.json +6 -13
  255. package/test-utils.d.ts +9 -0
  256. package/tokens/accordion.d.ts +62 -0
  257. package/tokens/animations.d.ts +11 -0
  258. package/tokens/borders.d.ts +3 -2
  259. package/tokens/breadcrumbs.d.ts +17 -10
  260. package/tokens/button.d.ts +42 -34
  261. package/tokens/card.d.ts +39 -89
  262. package/tokens/carousel.d.ts +195 -0
  263. package/tokens/chat.d.ts +108 -0
  264. package/tokens/colors.d.ts +1 -0
  265. package/tokens/column.d.ts +1 -0
  266. package/tokens/constants.d.ts +2 -0
  267. package/tokens/cursors.d.ts +1 -0
  268. package/tokens/defaultTheme.d.ts +1865 -899
  269. package/tokens/draganddropfiles.d.ts +3 -0
  270. package/tokens/flexContainer.d.ts +2 -1
  271. package/tokens/header.d.ts +8 -8
  272. package/tokens/index.d.ts +1297 -472
  273. package/tokens/inlineNotification.d.ts +55 -0
  274. package/tokens/input.d.ts +193 -60
  275. package/tokens/inputfile.d.ts +8 -0
  276. package/tokens/internal/index.d.ts +1 -0
  277. package/tokens/internal/switch.d.ts +13 -0
  278. package/tokens/label.d.ts +2 -19
  279. package/tokens/link.d.ts +9 -9
  280. package/tokens/list.d.ts +11 -8
  281. package/tokens/menu.d.ts +15 -0
  282. package/tokens/modal.d.ts +59 -42
  283. package/tokens/price.d.ts +12 -8
  284. package/tokens/progressbar.d.ts +51 -0
  285. package/tokens/radiogroup.d.ts +81 -0
  286. package/tokens/rating.d.ts +17 -9
  287. package/tokens/scroll.d.ts +91 -0
  288. package/tokens/search.d.ts +6 -4
  289. package/tokens/searchModal.d.ts +139 -0
  290. package/tokens/select.d.ts +15 -14
  291. package/tokens/shadow.d.ts +3 -0
  292. package/tokens/skeleton.d.ts +3 -3
  293. package/tokens/slider.d.ts +38 -0
  294. package/tokens/snackbar.d.ts +43 -102
  295. package/tokens/spacing.d.ts +1 -1
  296. package/tokens/stepper.d.ts +18 -28
  297. package/tokens/switch.d.ts +52 -4
  298. package/tokens/tabs.d.ts +33 -27
  299. package/tokens/textarea.d.ts +32 -45
  300. package/tokens/toggle.d.ts +8 -0
  301. package/tokens/tooltip.d.ts +4 -2
  302. package/tokens/types/index.types.d.ts +5 -0
  303. package/tokens/utils.d.ts +21 -3
  304. package/tokens/values.d.ts +15 -0
  305. package/types/carousel.d.ts +1 -0
  306. package/types/index.d.ts +3 -1
  307. package/types/keys.d.ts +8 -0
  308. package/types/styles.d.ts +3 -0
  309. package/utils/animationFrame.d.ts +15 -0
  310. package/utils/common.d.ts +2 -0
  311. package/utils/date.d.ts +9 -0
  312. package/utils/helpers.d.ts +13 -0
  313. package/utils/index.d.ts +5 -0
  314. package/utils/setInRange.d.ts +5 -0
  315. package/components/core/Label/StyledLabel.d.ts +0 -2
  316. package/components/core/List/StyledList.d.ts +0 -3
  317. package/components/domainSpecific/Card/utils.d.ts +0 -0
  318. package/components/layout/FlexContainer/StyledFlexContainer.d.ts +0 -2
  319. package/constants/events.d.ts +0 -5
  320. package/index.mjs +0 -7043
  321. /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
- # GD Design System
1
+ # GridKit – Grid Dynamics Design System
2
2
 
3
- Welcome to the GD Design System project!
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
+ ![](./gridKit_logo.png)
5
4
 
6
- ## Project Structure
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
- The project structure is as follows:
9
- gd-design-system/
8
+ ---
10
9
 
11
- ```
12
- ├── dist
13
- ├── [src](src)
14
- ├── App.css
15
- ├── App.tsx
16
- ├── assets
17
- └── index.ts
18
- ├── [components](src/components)
19
- ├── [core](src/components/core)
20
- │ │ │ ├── [types](src/components/core/types)
21
- │ │ │ │ ├── common.ts
22
- │ │ │ │ ├── cursors.ts
23
- │ │ └── index.ts
24
- │ │ │ ├── [Button](src/components/core/Button)
25
- │ │ │ │ ├── index.ts
26
- │ │ ├── constants.ts
27
- │ │ │ ├── Button.stories.tsx
28
- │ │ ├── Button.test.tsx
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
- ## Getting Started
30
+ Note: Since this package is private, you need to configure your `.npmrc` with a valid auth token:
101
31
 
102
- ### Prerequisites
32
+ ```bash
33
+ //registry.npmjs.org/:_authToken=<npm_token>
34
+ ```
103
35
 
104
- Make sure you have the following installed:
36
+ ---
105
37
 
106
- - Node.js (version 18 or higher)
107
- - npm (version 6 or higher) or yarn
38
+ ## 🧑‍💻 Getting Started
108
39
 
109
- ### Installation
40
+ ### Prerequisites
110
41
 
111
- Clone the repository and install the dependencies:
42
+ - Node.js (v18 or higher)
43
+ - Yarn or npm
112
44
 
113
- ```sh
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
- ### Development
53
+ ---
54
+
55
+ ## 🚀 Development
120
56
 
121
- To start the development server, run:
57
+ Start the local dev server with Vite:
122
58
 
123
- ```sh
124
- yarn run dev
59
+ ```bash
60
+ yarn dev
125
61
  ```
126
62
 
127
- This will start the Vite development server and open the project in your default web browser.
63
+ Open [http://localhost:5173](http://localhost:5173) in your browser.
128
64
 
129
- ### Building
65
+ ### Run Storybook
130
66
 
131
- To build the project for production, run:
67
+ ```bash
68
+ yarn storybook
69
+ ```
70
+
71
+ ---
72
+
73
+ ## 🏗️ Project Structure
132
74
 
133
- ```sh
134
- yarn run build
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
- The output will be generated in the dist directory.
90
+ ---
138
91
 
139
- ### Linting & Prettier
92
+ ## 🧪 Testing & Linting
140
93
 
141
- To lint the project, run:
94
+ ### Run Tests
142
95
 
143
- ```sh
144
- yarn run lint
96
+ ```bash
97
+ yarn test
145
98
  ```
146
99
 
147
- ### Code Formatting with Prettier
100
+ ### Lint Code
148
101
 
149
- To lint the project, run:
102
+ ```bash
103
+ yarn lint
104
+ ```
105
+
106
+ ### Format Code
150
107
 
151
- ```sh
108
+ ```bash
152
109
  yarn format
153
110
  ```
154
111
 
155
- Check for formatting issues:
112
+ ### Check Formatting
156
113
 
157
- ```sh
114
+ ```bash
158
115
  yarn format:check
159
116
  ```
160
117
 
161
- ## Expanding the ESLint configuration
118
+ ---
119
+
120
+ ## 🧰 Component Generator
162
121
 
163
- If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
122
+ Use our CLI script to quickly scaffold new components:
164
123
 
165
- - Configure the top-level `parserOptions` property like this:
124
+ ### Add Execution Permission (first time)
166
125
 
167
- ```js
168
- export default tseslint.config({
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
- - Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
180
- - Optionally add `...tseslint.configs.stylisticTypeChecked`
181
- - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
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;
@@ -3,4 +3,4 @@ export declare const ArrowDownIcon: ({ width, height, fillSvg, fill, }: {
3
3
  height?: number | undefined;
4
4
  fillSvg?: string | undefined;
5
5
  fill?: string | undefined;
6
- }) => import("react/jsx-runtime").JSX.Element;
6
+ }) => 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;
@@ -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;
@@ -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;
@@ -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
- }) => import("react/jsx-runtime").JSX.Element;
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;
@@ -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;
@@ -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;
@@ -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;