@mailstep/design-system 0.8.31-beta.3 → 0.8.31

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 (1001) hide show
  1. package/package.json +18 -25
  2. package/ui/Blocks/CommonGrid/CommonGrid.d.ts +3 -4
  3. package/ui/Blocks/CommonGrid/CommonGrid.js +106 -63
  4. package/ui/Blocks/CommonGrid/CommonGridContainer.d.ts +2 -3
  5. package/ui/Blocks/CommonGrid/CommonGridContainer.js +188 -84
  6. package/ui/Blocks/CommonGrid/HoC/withProps.d.ts +1 -2
  7. package/ui/Blocks/CommonGrid/HoC/withProps.js +10 -20
  8. package/ui/Blocks/CommonGrid/HoC/withReduxActions.d.ts +1 -1
  9. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +31 -40
  10. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.d.ts +2 -3
  11. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +108 -49
  12. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.d.ts +1 -2
  13. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +38 -17
  14. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.d.ts +1 -2
  15. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +80 -50
  16. package/ui/Blocks/CommonGrid/components/ActionHead/index.d.ts +1 -2
  17. package/ui/Blocks/CommonGrid/components/ActionHead/index.js +5 -2
  18. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.d.ts +2 -2
  19. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +44 -31
  20. package/ui/Blocks/CommonGrid/components/ButtonMore/index.d.ts +1 -2
  21. package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +5 -2
  22. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.d.ts +2 -3
  23. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +52 -39
  24. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.d.ts +2 -3
  25. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +131 -57
  26. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.d.ts +1 -2
  27. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +5 -2
  28. package/ui/Blocks/CommonGrid/components/ColumnTitle.d.ts +2 -3
  29. package/ui/Blocks/CommonGrid/components/ColumnTitle.js +47 -30
  30. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +3 -3
  31. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +159 -53
  32. package/ui/Blocks/CommonGrid/components/ControlButtons/index.d.ts +1 -2
  33. package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +5 -2
  34. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.d.ts +4 -5
  35. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +42 -12
  36. package/ui/Blocks/CommonGrid/components/DataCell.d.ts +2 -3
  37. package/ui/Blocks/CommonGrid/components/DataCell.js +35 -50
  38. package/ui/Blocks/CommonGrid/components/DataRow.d.ts +2 -3
  39. package/ui/Blocks/CommonGrid/components/DataRow.js +61 -51
  40. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.d.ts +3 -4
  41. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +68 -33
  42. package/ui/Blocks/CommonGrid/components/DropdownButton/index.d.ts +1 -2
  43. package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +5 -2
  44. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.d.ts +3 -4
  45. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +58 -65
  46. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.d.ts +1 -2
  47. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +5 -2
  48. package/ui/Blocks/CommonGrid/components/FilterDropdown.d.ts +1 -2
  49. package/ui/Blocks/CommonGrid/components/FilterDropdown.js +31 -35
  50. package/ui/Blocks/CommonGrid/components/FilterRow.d.ts +2 -3
  51. package/ui/Blocks/CommonGrid/components/FilterRow.js +29 -11
  52. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.d.ts +2 -3
  53. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +33 -13
  54. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.d.ts +1 -2
  55. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +5 -2
  56. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.d.ts +1 -2
  57. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +36 -24
  58. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.d.ts +1 -2
  59. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +5 -2
  60. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.d.ts +3 -4
  61. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +151 -110
  62. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.d.ts +1 -2
  63. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +5 -2
  64. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +8 -9
  65. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.d.ts +1 -2
  66. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +15 -31
  67. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +4 -3
  68. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.d.ts +3 -4
  69. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +94 -113
  70. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.d.ts +1 -2
  71. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +5 -2
  72. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.d.ts +1 -2
  73. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +5 -2
  74. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.d.ts +2 -3
  75. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +144 -108
  76. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.d.ts +1 -2
  77. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +5 -2
  78. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.d.ts +0 -1
  79. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.d.ts +2 -3
  80. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +163 -95
  81. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.d.ts +1 -2
  82. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +5 -2
  83. package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.d.ts +0 -1
  84. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.d.ts +4 -5
  85. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +80 -35
  86. package/ui/Blocks/CommonGrid/components/FloatingButton/index.d.ts +1 -2
  87. package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +5 -2
  88. package/ui/Blocks/CommonGrid/components/GridInfo/index.d.ts +1 -2
  89. package/ui/Blocks/CommonGrid/components/GridInfo/index.js +33 -9
  90. package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +3 -4
  91. package/ui/Blocks/CommonGrid/components/GridModals/index.js +135 -27
  92. package/ui/Blocks/CommonGrid/components/GridStatus/index.d.ts +1 -2
  93. package/ui/Blocks/CommonGrid/components/GridStatus/index.js +26 -8
  94. package/ui/Blocks/CommonGrid/components/GroupRow.d.ts +2 -3
  95. package/ui/Blocks/CommonGrid/components/GroupRow.js +27 -23
  96. package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +2 -3
  97. package/ui/Blocks/CommonGrid/components/HeadCell.js +36 -28
  98. package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +3 -4
  99. package/ui/Blocks/CommonGrid/components/HeadRow.js +71 -53
  100. package/ui/Blocks/CommonGrid/components/IconList/IconList.d.ts +6 -7
  101. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +62 -30
  102. package/ui/Blocks/CommonGrid/components/IconList/index.d.ts +1 -2
  103. package/ui/Blocks/CommonGrid/components/IconList/index.js +5 -2
  104. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -4
  105. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +54 -25
  106. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +3 -3
  107. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +69 -40
  108. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.d.ts +1 -2
  109. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +5 -2
  110. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +3 -3
  111. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +17 -16
  112. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.d.ts +2 -3
  113. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +9 -10
  114. package/ui/Blocks/CommonGrid/components/MobileFilterModal.d.ts +2 -3
  115. package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +112 -68
  116. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.d.ts +1 -1
  117. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +14 -7
  118. package/ui/Blocks/CommonGrid/components/MobileSortModal.d.ts +2 -3
  119. package/ui/Blocks/CommonGrid/components/MobileSortModal.js +68 -32
  120. package/ui/Blocks/CommonGrid/components/OversizedScroll.d.ts +2 -3
  121. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +35 -18
  122. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.d.ts +1 -1
  123. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +19 -7
  124. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +2 -3
  125. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +91 -31
  126. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.d.ts +1 -2
  127. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +30 -20
  128. package/ui/Blocks/CommonGrid/components/QuickFilter/index.d.ts +1 -2
  129. package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +5 -2
  130. package/ui/Blocks/CommonGrid/components/Resize.d.ts +1 -2
  131. package/ui/Blocks/CommonGrid/components/Resize.js +47 -32
  132. package/ui/Blocks/CommonGrid/components/Table.d.ts +36 -36
  133. package/ui/Blocks/CommonGrid/components/Table.js +41 -15
  134. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.d.ts +2 -3
  135. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +64 -40
  136. package/ui/Blocks/CommonGrid/components/TablePagination/index.d.ts +1 -2
  137. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +5 -2
  138. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.d.ts +2 -3
  139. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +18 -17
  140. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.d.ts +2 -3
  141. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +12 -15
  142. package/ui/Blocks/CommonGrid/components/gridCells/Date.d.ts +2 -3
  143. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +10 -7
  144. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.d.ts +2 -3
  145. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +12 -12
  146. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.d.ts +2 -3
  147. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +29 -32
  148. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.d.ts +2 -3
  149. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +50 -16
  150. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.d.ts +1 -2
  151. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +33 -8
  152. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.d.ts +2 -3
  153. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +30 -22
  154. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.d.ts +1 -1
  155. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +9 -8
  156. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.d.ts +4 -5
  157. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +40 -22
  158. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.d.ts +2 -3
  159. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +78 -54
  160. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.d.ts +2 -3
  161. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +9 -6
  162. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.d.ts +2 -3
  163. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +11 -15
  164. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.d.ts +2 -3
  165. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +32 -31
  166. package/ui/Blocks/CommonGrid/components/gridCells/index.js +15 -14
  167. package/ui/Blocks/CommonGrid/components/icons/Edit.d.ts +1 -2
  168. package/ui/Blocks/CommonGrid/components/icons/Edit.js +14 -14
  169. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.d.ts +1 -2
  170. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +14 -14
  171. package/ui/Blocks/CommonGrid/components/icons/Sorting.d.ts +1 -2
  172. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +21 -14
  173. package/ui/Blocks/CommonGrid/components/utils.d.ts +0 -1
  174. package/ui/Blocks/CommonGrid/components/utils.js +20 -21
  175. package/ui/Blocks/CommonGrid/hooks/useAddFilter.d.ts +2 -3
  176. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +16 -13
  177. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.d.ts +2 -3
  178. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +86 -82
  179. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +0 -1
  180. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +31 -33
  181. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +0 -1
  182. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +23 -28
  183. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.d.ts +1 -2
  184. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +57 -71
  185. package/ui/Blocks/CommonGrid/hooks/useEvent.d.ts +1 -1
  186. package/ui/Blocks/CommonGrid/hooks/useEvent.js +12 -16
  187. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.d.ts +0 -1
  188. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +15 -12
  189. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.d.ts +1 -2
  190. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +26 -24
  191. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.d.ts +0 -1
  192. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +12 -16
  193. package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +2 -3
  194. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +98 -109
  195. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +2 -3
  196. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +56 -75
  197. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +15 -12
  198. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.d.ts +2 -3
  199. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +77 -82
  200. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.d.ts +2 -3
  201. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +20 -21
  202. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +0 -1
  203. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +20 -28
  204. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.d.ts +2 -3
  205. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +18 -14
  206. package/ui/Blocks/CommonGrid/hooks/useUxReset.d.ts +1 -2
  207. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +13 -14
  208. package/ui/Blocks/CommonGrid/index.d.ts +6 -7
  209. package/ui/Blocks/CommonGrid/index.js +26 -10
  210. package/ui/Blocks/CommonGrid/store/index.d.ts +15 -16
  211. package/ui/Blocks/CommonGrid/store/index.js +288 -260
  212. package/ui/Blocks/CommonGrid/store/migrateState.d.ts +0 -1
  213. package/ui/Blocks/CommonGrid/store/migrateState.js +12 -13
  214. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.d.ts +2 -3
  215. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +18 -12
  216. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.d.ts +2 -3
  217. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +19 -13
  218. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.d.ts +0 -1
  219. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +9 -6
  220. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.d.ts +1 -2
  221. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +122 -125
  222. package/ui/Blocks/CommonGrid/storybook/utils/utils.d.ts +2 -3
  223. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +108 -87
  224. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +13 -13
  225. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +7 -4
  226. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -2
  227. package/ui/Blocks/CommonGrid/styles.d.ts +9 -10
  228. package/ui/Blocks/CommonGrid/styles.js +257 -35
  229. package/ui/Blocks/CommonGrid/types.d.ts +1 -2
  230. package/ui/Blocks/CommonGrid/types.js +22 -13
  231. package/ui/Blocks/CommonGrid/utils/constants.js +25 -10
  232. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.d.ts +1 -2
  233. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +17 -23
  234. package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +9 -9
  235. package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +9 -9
  236. package/ui/Blocks/CommonGrid/utils/index.d.ts +2 -3
  237. package/ui/Blocks/CommonGrid/utils/index.js +69 -96
  238. package/ui/Blocks/CornerDialog/CornerDialog.d.ts +2 -3
  239. package/ui/Blocks/CornerDialog/CornerDialog.js +42 -17
  240. package/ui/Blocks/CornerDialog/index.d.ts +0 -1
  241. package/ui/Blocks/CornerDialog/index.js +5 -2
  242. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.d.ts +1 -2
  243. package/ui/Blocks/CornerDialog/styles.d.ts +6 -6
  244. package/ui/Blocks/CornerDialog/styles.js +57 -21
  245. package/ui/Blocks/CornerDialog/types.d.ts +1 -2
  246. package/ui/Blocks/CornerDialog/utils.d.ts +0 -1
  247. package/ui/Blocks/CornerDialog/utils.js +29 -10
  248. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.d.ts +2 -3
  249. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +15 -6
  250. package/ui/Blocks/Header/components/MenuItems/index.d.ts +2 -3
  251. package/ui/Blocks/Header/components/MenuItems/index.js +8 -6
  252. package/ui/Blocks/Header/components/MenuItems/styles.d.ts +3 -3
  253. package/ui/Blocks/Header/components/MenuItems/styles.js +22 -11
  254. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.d.ts +1 -2
  255. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +22 -7
  256. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.d.ts +2 -2
  257. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +14 -8
  258. package/ui/Blocks/Header/components/UserMenu/hooks/index.js +2 -1
  259. package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +9 -9
  260. package/ui/Blocks/Header/components/UserMenu/index.d.ts +2 -3
  261. package/ui/Blocks/Header/components/UserMenu/index.js +48 -17
  262. package/ui/Blocks/Header/components/UserMenu/styles.d.ts +3 -3
  263. package/ui/Blocks/Header/components/UserMenu/styles.js +25 -9
  264. package/ui/Blocks/Header/hooks/useChangeLanguage.js +8 -8
  265. package/ui/Blocks/Header/index.d.ts +5 -6
  266. package/ui/Blocks/Header/index.js +44 -14
  267. package/ui/Blocks/Header/stories/Header.stories.d.ts +17 -18
  268. package/ui/Blocks/Header/styles.d.ts +4 -4
  269. package/ui/Blocks/Header/styles.js +34 -11
  270. package/ui/Blocks/Header/utils/constants.js +4 -1
  271. package/ui/Blocks/Header/utils/languageItems.d.ts +1 -2
  272. package/ui/Blocks/Header/utils/languageItems.js +15 -15
  273. package/ui/Blocks/HidePrint/HidePrint.d.ts +1 -2
  274. package/ui/Blocks/HidePrint/HidePrint.js +13 -13
  275. package/ui/Blocks/ImageList/ImageList.d.ts +2 -3
  276. package/ui/Blocks/ImageList/ImageList.js +79 -33
  277. package/ui/Blocks/ImageList/components/AddPhoto/index.d.ts +2 -3
  278. package/ui/Blocks/ImageList/components/AddPhoto/index.js +35 -67
  279. package/ui/Blocks/ImageList/components/AddPhoto/styles.d.ts +4 -4
  280. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +30 -14
  281. package/ui/Blocks/ImageList/components/CloseButton/index.d.ts +1 -2
  282. package/ui/Blocks/ImageList/components/CloseButton/index.js +17 -6
  283. package/ui/Blocks/ImageList/components/CloseButton/styles.d.ts +2 -2
  284. package/ui/Blocks/ImageList/components/CloseButton/styles.js +18 -10
  285. package/ui/Blocks/ImageList/components/ImageElement/index.d.ts +1 -2
  286. package/ui/Blocks/ImageList/components/ImageElement/index.js +28 -9
  287. package/ui/Blocks/ImageList/components/ImageElement/styles.d.ts +4 -4
  288. package/ui/Blocks/ImageList/components/ImageElement/styles.js +22 -25
  289. package/ui/Blocks/ImageList/components/ImageTag/index.d.ts +1 -2
  290. package/ui/Blocks/ImageList/components/ImageTag/index.js +14 -8
  291. package/ui/Blocks/ImageList/components/ImageTag/styles.d.ts +1 -1
  292. package/ui/Blocks/ImageList/components/ImageTag/styles.js +9 -7
  293. package/ui/Blocks/ImageList/hooks/useControls.js +13 -14
  294. package/ui/Blocks/ImageList/hooks/useOnElementClick.d.ts +1 -2
  295. package/ui/Blocks/ImageList/hooks/useOnElementClick.js +14 -19
  296. package/ui/Blocks/ImageList/index.d.ts +1 -2
  297. package/ui/Blocks/ImageList/index.js +5 -2
  298. package/ui/Blocks/ImageList/stories/ImageList.stories.d.ts +1 -2
  299. package/ui/Blocks/ImageList/styles.d.ts +4 -4
  300. package/ui/Blocks/ImageList/styles.js +29 -20
  301. package/ui/Blocks/ImageList/types.d.ts +1 -2
  302. package/ui/Blocks/LanguageSwitch/LanguageSwitch.d.ts +2 -3
  303. package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +51 -38
  304. package/ui/Blocks/LanguageSwitch/index.d.ts +1 -2
  305. package/ui/Blocks/LanguageSwitch/index.js +5 -2
  306. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.d.ts +1 -2
  307. package/ui/Blocks/LanguageSwitch/styles.d.ts +5 -5
  308. package/ui/Blocks/LanguageSwitch/styles.js +32 -15
  309. package/ui/Blocks/LanguageSwitch/types.d.ts +0 -1
  310. package/ui/Blocks/LightBox/LightBox.d.ts +2 -3
  311. package/ui/Blocks/LightBox/LightBox.js +40 -13
  312. package/ui/Blocks/LightBox/hooks/useLightBox.d.ts +1 -2
  313. package/ui/Blocks/LightBox/hooks/useLightBox.js +16 -16
  314. package/ui/Blocks/LightBox/index.d.ts +0 -1
  315. package/ui/Blocks/LightBox/index.js +6 -3
  316. package/ui/Blocks/LightBox/stories/LightBox.stories.d.ts +1 -2
  317. package/ui/Blocks/LightBox/styles.d.ts +4 -4
  318. package/ui/Blocks/LightBox/styles.js +28 -10
  319. package/ui/Blocks/LoginPage/LoginPage.d.ts +2 -3
  320. package/ui/Blocks/LoginPage/LoginPage.js +62 -14
  321. package/ui/Blocks/LoginPage/components/LoginForm.d.ts +0 -1
  322. package/ui/Blocks/LoginPage/components/LoginForm.js +169 -62
  323. package/ui/Blocks/LoginPage/components/SocialLinks.d.ts +4 -5
  324. package/ui/Blocks/LoginPage/components/SocialLinks.js +81 -16
  325. package/ui/Blocks/LoginPage/index.d.ts +1 -2
  326. package/ui/Blocks/LoginPage/index.js +5 -2
  327. package/ui/Blocks/LoginPage/styles.d.ts +9 -9
  328. package/ui/Blocks/LoginPage/styles.js +75 -21
  329. package/ui/Blocks/LoginPage/types.d.ts +4 -5
  330. package/ui/Blocks/LoginPage/utils/links.js +10 -7
  331. package/ui/Blocks/Modal/Modal.d.ts +2 -3
  332. package/ui/Blocks/Modal/Modal.js +124 -35
  333. package/ui/Blocks/Modal/hooks/useClickOutside.d.ts +2 -3
  334. package/ui/Blocks/Modal/hooks/useClickOutside.js +27 -29
  335. package/ui/Blocks/Modal/hooks/useModal.d.ts +0 -1
  336. package/ui/Blocks/Modal/hooks/useModal.js +19 -14
  337. package/ui/Blocks/Modal/index.d.ts +0 -1
  338. package/ui/Blocks/Modal/index.js +7 -4
  339. package/ui/Blocks/Modal/stories/Modal.stories.d.ts +1 -2
  340. package/ui/Blocks/Modal/styles.d.ts +16 -17
  341. package/ui/Blocks/Modal/styles.js +183 -82
  342. package/ui/Blocks/Modal/types.d.ts +1 -2
  343. package/ui/Blocks/Modal/utils.d.ts +0 -1
  344. package/ui/Blocks/Modal/utils.js +9 -6
  345. package/ui/Blocks/Popover/index.d.ts +3 -4
  346. package/ui/Blocks/Popover/index.js +31 -20
  347. package/ui/Blocks/Scheduler/Scheduler.d.ts +2 -3
  348. package/ui/Blocks/Scheduler/Scheduler.js +43 -26
  349. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.d.ts +2 -3
  350. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +37 -45
  351. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.d.ts +3 -3
  352. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +35 -16
  353. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +16 -16
  354. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.d.ts +1 -2
  355. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +13 -8
  356. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.d.ts +3 -3
  357. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +30 -13
  358. package/ui/Blocks/Scheduler/components/DateChanger/index.d.ts +2 -3
  359. package/ui/Blocks/Scheduler/components/DateChanger/index.js +49 -18
  360. package/ui/Blocks/Scheduler/components/DateChanger/styles.d.ts +2 -2
  361. package/ui/Blocks/Scheduler/components/DateChanger/styles.js +23 -11
  362. package/ui/Blocks/Scheduler/components/Groups/index.d.ts +2 -3
  363. package/ui/Blocks/Scheduler/components/Groups/index.js +10 -5
  364. package/ui/Blocks/Scheduler/components/Groups/styles.d.ts +4 -4
  365. package/ui/Blocks/Scheduler/components/Groups/styles.js +32 -13
  366. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.d.ts +1 -2
  367. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +45 -46
  368. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.d.ts +0 -1
  369. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +15 -15
  370. package/ui/Blocks/Scheduler/components/TimeSlots/index.d.ts +2 -3
  371. package/ui/Blocks/Scheduler/components/TimeSlots/index.js +47 -20
  372. package/ui/Blocks/Scheduler/components/TimeSlots/styles.d.ts +5 -5
  373. package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +52 -23
  374. package/ui/Blocks/Scheduler/hooks/useChangeDate.d.ts +2 -3
  375. package/ui/Blocks/Scheduler/hooks/useChangeDate.js +34 -33
  376. package/ui/Blocks/Scheduler/index.js +2 -1
  377. package/ui/Blocks/Scheduler/stories/Scheduler.stories.d.ts +1 -2
  378. package/ui/Blocks/Scheduler/styles.d.ts +2 -2
  379. package/ui/Blocks/Scheduler/styles.js +23 -8
  380. package/ui/Blocks/Scheduler/types.d.ts +1 -2
  381. package/ui/Blocks/Scheduler/utils/constants.js +9 -6
  382. package/ui/Blocks/Scheduler/utils/convertDateToTime.js +5 -4
  383. package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +10 -7
  384. package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +9 -10
  385. package/ui/Blocks/Scheduler/utils/formatDate.js +8 -4
  386. package/ui/Blocks/Scheduler/utils/generateTimeArray.js +18 -15
  387. package/ui/Blocks/Scheduler/utils/getClosestStep.js +11 -8
  388. package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +6 -3
  389. package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +6 -3
  390. package/ui/Blocks/Scheduler/utils/isActiveTime.d.ts +0 -1
  391. package/ui/Blocks/Scheduler/utils/isActiveTime.js +10 -9
  392. package/ui/Blocks/Scheduler/utils/isToday.js +6 -3
  393. package/ui/Blocks/SideMenu/MenuItem.d.ts +2 -3
  394. package/ui/Blocks/SideMenu/MenuItem.js +102 -53
  395. package/ui/Blocks/SideMenu/SideMenu.d.ts +2 -3
  396. package/ui/Blocks/SideMenu/SideMenu.js +36 -26
  397. package/ui/Blocks/SideMenu/components/Footer.d.ts +4 -5
  398. package/ui/Blocks/SideMenu/components/Footer.js +63 -27
  399. package/ui/Blocks/SideMenu/components/HamburgerMenu.js +51 -22
  400. package/ui/Blocks/SideMenu/components/SubitemTooltip.d.ts +2 -3
  401. package/ui/Blocks/SideMenu/components/SubitemTooltip.js +51 -40
  402. package/ui/Blocks/SideMenu/context/LeftMenuContext.d.ts +1 -2
  403. package/ui/Blocks/SideMenu/context/LeftMenuContext.js +19 -14
  404. package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +9 -7
  405. package/ui/Blocks/SideMenu/hooks/useOutsideHover.d.ts +0 -1
  406. package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +24 -22
  407. package/ui/Blocks/SideMenu/index.d.ts +1 -2
  408. package/ui/Blocks/SideMenu/index.js +7 -5
  409. package/ui/Blocks/SideMenu/stories/SideMenu.stories.d.ts +1 -2
  410. package/ui/Blocks/SideMenu/stories/menuItems.js +108 -101
  411. package/ui/Blocks/SideMenu/styles.d.ts +37 -38
  412. package/ui/Blocks/SideMenu/styles.js +310 -162
  413. package/ui/Blocks/SideMenu/types.d.ts +1 -2
  414. package/ui/Blocks/SideMenu/utils/constants.js +5 -2
  415. package/ui/Blocks/Stepper/Stepper.d.ts +2 -3
  416. package/ui/Blocks/Stepper/Stepper.js +33 -20
  417. package/ui/Blocks/Stepper/components/StepCircle/index.d.ts +1 -2
  418. package/ui/Blocks/Stepper/components/StepCircle/index.js +16 -6
  419. package/ui/Blocks/Stepper/components/StepCircle/styles.d.ts +3 -3
  420. package/ui/Blocks/Stepper/components/StepCircle/styles.js +23 -19
  421. package/ui/Blocks/Stepper/components/StepItem/index.d.ts +1 -2
  422. package/ui/Blocks/Stepper/components/StepItem/index.js +51 -12
  423. package/ui/Blocks/Stepper/components/StepItem/styles.d.ts +6 -6
  424. package/ui/Blocks/Stepper/components/StepItem/styles.js +79 -36
  425. package/ui/Blocks/Stepper/hooks/useStepper.js +32 -21
  426. package/ui/Blocks/Stepper/index.js +4 -3
  427. package/ui/Blocks/Stepper/stories/Stepper.stories.d.ts +1 -2
  428. package/ui/Blocks/Stepper/styles.d.ts +2 -2
  429. package/ui/Blocks/Stepper/styles.js +25 -14
  430. package/ui/Blocks/Stepper/types.d.ts +1 -2
  431. package/ui/Blocks/Table/Table.d.ts +0 -1
  432. package/ui/Blocks/Table/Table.js +12 -5
  433. package/ui/Blocks/Table/index.js +2 -1
  434. package/ui/Blocks/Table/stories/Table.stories.d.ts +4 -5
  435. package/ui/Blocks/Tabs/TabContent.d.ts +2 -3
  436. package/ui/Blocks/Tabs/TabContent.js +9 -6
  437. package/ui/Blocks/Tabs/Tabs.d.ts +2 -3
  438. package/ui/Blocks/Tabs/Tabs.js +44 -18
  439. package/ui/Blocks/Tabs/hooks/useTabs.d.ts +0 -1
  440. package/ui/Blocks/Tabs/hooks/useTabs.js +13 -9
  441. package/ui/Blocks/Tabs/index.d.ts +0 -1
  442. package/ui/Blocks/Tabs/index.js +7 -4
  443. package/ui/Blocks/Tabs/stories/Tabs.stories.d.ts +1 -2
  444. package/ui/Blocks/Tabs/styles.d.ts +9 -10
  445. package/ui/Blocks/Tabs/styles.js +95 -36
  446. package/ui/Blocks/Tabs/types.d.ts +1 -2
  447. package/ui/Elements/Alert/Alert.d.ts +0 -1
  448. package/ui/Elements/Alert/Alert.js +72 -28
  449. package/ui/Elements/Alert/index.d.ts +1 -2
  450. package/ui/Elements/Alert/index.js +5 -3
  451. package/ui/Elements/Alert/stories/Alert.stories.d.ts +2 -3
  452. package/ui/Elements/Alert/styles.d.ts +23 -24
  453. package/ui/Elements/Alert/styles.js +82 -32
  454. package/ui/Elements/Alert/types.d.ts +1 -2
  455. package/ui/Elements/AsyncSelect/AsyncSelect.d.ts +4 -5
  456. package/ui/Elements/AsyncSelect/AsyncSelect.js +34 -33
  457. package/ui/Elements/AsyncSelect/index.d.ts +1 -2
  458. package/ui/Elements/AsyncSelect/index.js +5 -2
  459. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.d.ts +1 -2
  460. package/ui/Elements/Avatar/Avatar.d.ts +2 -3
  461. package/ui/Elements/Avatar/Avatar.js +37 -35
  462. package/ui/Elements/Avatar/index.d.ts +0 -1
  463. package/ui/Elements/Avatar/index.js +5 -3
  464. package/ui/Elements/Avatar/stories/Avatar.stories.d.ts +2 -3
  465. package/ui/Elements/Badge/Badge.d.ts +1 -2
  466. package/ui/Elements/Badge/Badge.js +51 -44
  467. package/ui/Elements/Badge/index.d.ts +1 -2
  468. package/ui/Elements/Badge/index.js +5 -3
  469. package/ui/Elements/Badge/stories/Badge.stories.d.ts +2 -3
  470. package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +0 -1
  471. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +21 -6
  472. package/ui/Elements/BarChartSymbol/index.js +2 -1
  473. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +2 -3
  474. package/ui/Elements/BarChartSymbol/styles.d.ts +3 -3
  475. package/ui/Elements/BarChartSymbol/styles.js +10 -16
  476. package/ui/Elements/BorderedBox/BorderedBox.d.ts +2 -3
  477. package/ui/Elements/BorderedBox/BorderedBox.js +21 -35
  478. package/ui/Elements/BorderedBox/index.d.ts +1 -2
  479. package/ui/Elements/BorderedBox/index.js +5 -3
  480. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.d.ts +2 -3
  481. package/ui/Elements/BorderedBox/types.d.ts +0 -1
  482. package/ui/Elements/Button/Button.d.ts +2 -3
  483. package/ui/Elements/Button/Button.js +44 -30
  484. package/ui/Elements/Button/index.d.ts +1 -2
  485. package/ui/Elements/Button/index.js +5 -3
  486. package/ui/Elements/Button/stories/Button.stories.d.ts +2 -3
  487. package/ui/Elements/Button/styles.d.ts +9 -10
  488. package/ui/Elements/Button/styles.js +227 -44
  489. package/ui/Elements/Button/types.d.ts +1 -2
  490. package/ui/Elements/Card/Card.d.ts +0 -1
  491. package/ui/Elements/Card/Card.js +14 -6
  492. package/ui/Elements/Card/index.d.ts +1 -2
  493. package/ui/Elements/Card/index.js +5 -2
  494. package/ui/Elements/Card/stories/Card.stories.d.ts +2 -3
  495. package/ui/Elements/Card/styles.d.ts +3 -4
  496. package/ui/Elements/Card/styles.js +22 -20
  497. package/ui/Elements/Card/types.d.ts +0 -1
  498. package/ui/Elements/CheckedCircle/index.d.ts +1 -2
  499. package/ui/Elements/CheckedCircle/index.js +14 -6
  500. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +4 -5
  501. package/ui/Elements/CheckedCircle/styles.d.ts +1 -1
  502. package/ui/Elements/CheckedCircle/styles.js +15 -13
  503. package/ui/Elements/DatePicker/DatePicker.d.ts +8 -4
  504. package/ui/Elements/DatePicker/DatePicker.js +88 -65
  505. package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +3 -4
  506. package/ui/Elements/DatePicker/Datetime/DateTime.js +426 -521
  507. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.d.ts +2 -3
  508. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +66 -30
  509. package/ui/Elements/DatePicker/Datetime/components/FooterRow.d.ts +2 -2
  510. package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +12 -10
  511. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.d.ts +1 -1
  512. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +16 -7
  513. package/ui/Elements/DatePicker/Datetime/components/TimeInput.d.ts +1 -1
  514. package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +16 -7
  515. package/ui/Elements/DatePicker/Datetime/components/Timepicker.d.ts +1 -2
  516. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +167 -66
  517. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +30 -15
  518. package/ui/Elements/DatePicker/Datetime/types.d.ts +2 -3
  519. package/ui/Elements/DatePicker/Datetime/types.js +14 -11
  520. package/ui/Elements/DatePicker/Datetime/views/DaysView.d.ts +1 -2
  521. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +134 -145
  522. package/ui/Elements/DatePicker/Datetime/views/MonthsView.d.ts +1 -2
  523. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +72 -106
  524. package/ui/Elements/DatePicker/Datetime/views/YearsView.d.ts +1 -2
  525. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +83 -114
  526. package/ui/Elements/DatePicker/index.d.ts +1 -2
  527. package/ui/Elements/DatePicker/index.js +6 -3
  528. package/ui/Elements/DatePicker/styles.d.ts +1 -2
  529. package/ui/Elements/DatePicker/styles.js +234 -8
  530. package/ui/Elements/DatePicker/utils/constants.d.ts +0 -1
  531. package/ui/Elements/DatePicker/utils/constants.js +29 -12
  532. package/ui/Elements/Dropdown/Dropdown.d.ts +2 -3
  533. package/ui/Elements/Dropdown/Dropdown.js +54 -25
  534. package/ui/Elements/Dropdown/index.d.ts +1 -2
  535. package/ui/Elements/Dropdown/index.js +5 -3
  536. package/ui/Elements/Dropdown/stories/Dropdown.stories.d.ts +2 -3
  537. package/ui/Elements/Dropdown/types.d.ts +0 -1
  538. package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +2 -3
  539. package/ui/Elements/DropdownMenu/DropdownMenu.js +34 -35
  540. package/ui/Elements/DropdownMenu/components/DefaultItem.d.ts +2 -3
  541. package/ui/Elements/DropdownMenu/components/DefaultItem.js +31 -15
  542. package/ui/Elements/DropdownMenu/components/MenuItem.d.ts +2 -3
  543. package/ui/Elements/DropdownMenu/components/MenuItem.js +58 -49
  544. package/ui/Elements/DropdownMenu/components/MenuList.d.ts +2 -3
  545. package/ui/Elements/DropdownMenu/components/MenuList.js +14 -8
  546. package/ui/Elements/DropdownMenu/index.js +2 -1
  547. package/ui/Elements/DropdownMenu/types.d.ts +1 -2
  548. package/ui/Elements/DropdownSelect/DropdownSelect.d.ts +3 -4
  549. package/ui/Elements/DropdownSelect/DropdownSelect.js +127 -50
  550. package/ui/Elements/DropdownSelect/index.d.ts +1 -2
  551. package/ui/Elements/DropdownSelect/index.js +5 -3
  552. package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +2 -3
  553. package/ui/Elements/ErrorMessage/ErrorMessage.js +63 -14
  554. package/ui/Elements/ErrorMessage/index.d.ts +1 -2
  555. package/ui/Elements/ErrorMessage/index.js +5 -3
  556. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.d.ts +2 -3
  557. package/ui/Elements/ErrorMessage/types.d.ts +0 -1
  558. package/ui/Elements/HighlightBox/HighlightBox.d.ts +1 -2
  559. package/ui/Elements/HighlightBox/HighlightBox.js +98 -62
  560. package/ui/Elements/HighlightBox/index.d.ts +1 -2
  561. package/ui/Elements/HighlightBox/index.js +5 -2
  562. package/ui/Elements/Icon/BadgeIcon.d.ts +2 -3
  563. package/ui/Elements/Icon/BadgeIcon.js +27 -47
  564. package/ui/Elements/Icon/Icon.d.ts +4 -5
  565. package/ui/Elements/Icon/Icon.js +280 -279
  566. package/ui/Elements/Icon/icons/Add.d.ts +2 -3
  567. package/ui/Elements/Icon/icons/Add.js +33 -13
  568. package/ui/Elements/Icon/icons/AddPhoto.d.ts +0 -1
  569. package/ui/Elements/Icon/icons/AddPhoto.js +34 -13
  570. package/ui/Elements/Icon/icons/Admin.d.ts +0 -1
  571. package/ui/Elements/Icon/icons/Admin.js +26 -13
  572. package/ui/Elements/Icon/icons/ArrowDown.d.ts +1 -2
  573. package/ui/Elements/Icon/icons/ArrowDown.js +18 -13
  574. package/ui/Elements/Icon/icons/ArrowForward.d.ts +1 -2
  575. package/ui/Elements/Icon/icons/ArrowForward.js +12 -13
  576. package/ui/Elements/Icon/icons/ArrowUp.d.ts +1 -2
  577. package/ui/Elements/Icon/icons/ArrowUp.js +18 -13
  578. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.d.ts +1 -2
  579. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +21 -13
  580. package/ui/Elements/Icon/icons/ArrowsLeftRight.d.ts +1 -2
  581. package/ui/Elements/Icon/icons/ArrowsLeftRight.js +12 -13
  582. package/ui/Elements/Icon/icons/ArrowsUpDown.d.ts +1 -2
  583. package/ui/Elements/Icon/icons/ArrowsUpDown.js +12 -13
  584. package/ui/Elements/Icon/icons/BarcodeScan.d.ts +0 -1
  585. package/ui/Elements/Icon/icons/BarcodeScan.js +13 -13
  586. package/ui/Elements/Icon/icons/Box.d.ts +0 -1
  587. package/ui/Elements/Icon/icons/Box.js +17 -13
  588. package/ui/Elements/Icon/icons/Calendar.d.ts +0 -1
  589. package/ui/Elements/Icon/icons/Calendar.js +39 -13
  590. package/ui/Elements/Icon/icons/Cancel.d.ts +0 -1
  591. package/ui/Elements/Icon/icons/Cancel.js +18 -13
  592. package/ui/Elements/Icon/icons/CheckedBox.d.ts +1 -2
  593. package/ui/Elements/Icon/icons/CheckedBox.js +23 -13
  594. package/ui/Elements/Icon/icons/CircleHalfStroke.d.ts +1 -2
  595. package/ui/Elements/Icon/icons/CircleHalfStroke.js +12 -13
  596. package/ui/Elements/Icon/icons/Company.d.ts +0 -1
  597. package/ui/Elements/Icon/icons/Company.js +82 -13
  598. package/ui/Elements/Icon/icons/Complaint.d.ts +1 -2
  599. package/ui/Elements/Icon/icons/Complaint.js +59 -13
  600. package/ui/Elements/Icon/icons/Consolidation.d.ts +1 -2
  601. package/ui/Elements/Icon/icons/Consolidation.js +13 -13
  602. package/ui/Elements/Icon/icons/Container.d.ts +1 -2
  603. package/ui/Elements/Icon/icons/Container.js +13 -13
  604. package/ui/Elements/Icon/icons/Dashboard.d.ts +1 -2
  605. package/ui/Elements/Icon/icons/Dashboard.js +36 -13
  606. package/ui/Elements/Icon/icons/Desktop.d.ts +1 -2
  607. package/ui/Elements/Icon/icons/Desktop.js +63 -13
  608. package/ui/Elements/Icon/icons/Dispatch.d.ts +1 -2
  609. package/ui/Elements/Icon/icons/Dispatch.js +13 -13
  610. package/ui/Elements/Icon/icons/EmptyRack.d.ts +0 -1
  611. package/ui/Elements/Icon/icons/EmptyRack.js +34 -2
  612. package/ui/Elements/Icon/icons/Expeditions.d.ts +1 -2
  613. package/ui/Elements/Icon/icons/Expeditions.js +62 -13
  614. package/ui/Elements/Icon/icons/Filter.d.ts +2 -3
  615. package/ui/Elements/Icon/icons/Filter.js +17 -13
  616. package/ui/Elements/Icon/icons/FlagCZ.d.ts +1 -2
  617. package/ui/Elements/Icon/icons/FlagCZ.js +55 -13
  618. package/ui/Elements/Icon/icons/FlagEL.d.ts +1 -2
  619. package/ui/Elements/Icon/icons/FlagEL.js +50 -13
  620. package/ui/Elements/Icon/icons/FlagESP.d.ts +1 -2
  621. package/ui/Elements/Icon/icons/FlagESP.js +93 -13
  622. package/ui/Elements/Icon/icons/FlagHU.d.ts +2 -3
  623. package/ui/Elements/Icon/icons/FlagHU.js +27 -13
  624. package/ui/Elements/Icon/icons/FlagITA.d.ts +1 -2
  625. package/ui/Elements/Icon/icons/FlagITA.js +55 -13
  626. package/ui/Elements/Icon/icons/FlagNL.d.ts +2 -3
  627. package/ui/Elements/Icon/icons/FlagNL.js +27 -13
  628. package/ui/Elements/Icon/icons/FlagRUS.d.ts +1 -2
  629. package/ui/Elements/Icon/icons/FlagRUS.js +55 -13
  630. package/ui/Elements/Icon/icons/FlagSVK.d.ts +1 -2
  631. package/ui/Elements/Icon/icons/FlagSVK.js +92 -13
  632. package/ui/Elements/Icon/icons/FlagUK.d.ts +1 -2
  633. package/ui/Elements/Icon/icons/FlagUK.js +20 -13
  634. package/ui/Elements/Icon/icons/FlagUSA.d.ts +1 -2
  635. package/ui/Elements/Icon/icons/FlagUSA.js +106 -13
  636. package/ui/Elements/Icon/icons/Foldable.d.ts +2 -3
  637. package/ui/Elements/Icon/icons/Foldable.js +34 -13
  638. package/ui/Elements/Icon/icons/Fragile.d.ts +1 -2
  639. package/ui/Elements/Icon/icons/Fragile.js +42 -13
  640. package/ui/Elements/Icon/icons/Gift.d.ts +1 -2
  641. package/ui/Elements/Icon/icons/Gift.js +41 -13
  642. package/ui/Elements/Icon/icons/Group.d.ts +0 -1
  643. package/ui/Elements/Icon/icons/Group.js +17 -13
  644. package/ui/Elements/Icon/icons/HamburgerMenu.d.ts +1 -2
  645. package/ui/Elements/Icon/icons/HamburgerMenu.js +41 -13
  646. package/ui/Elements/Icon/icons/HelpCircle1.d.ts +1 -2
  647. package/ui/Elements/Icon/icons/HelpCircle1.js +32 -13
  648. package/ui/Elements/Icon/icons/HorizontalLines.d.ts +0 -1
  649. package/ui/Elements/Icon/icons/HorizontalLines.js +36 -13
  650. package/ui/Elements/Icon/icons/ImagePlaceholder.d.ts +0 -1
  651. package/ui/Elements/Icon/icons/ImagePlaceholder.js +17 -13
  652. package/ui/Elements/Icon/icons/Income.d.ts +1 -2
  653. package/ui/Elements/Icon/icons/Income.js +22 -13
  654. package/ui/Elements/Icon/icons/Info.d.ts +1 -2
  655. package/ui/Elements/Icon/icons/Info.js +33 -13
  656. package/ui/Elements/Icon/icons/Integrations.d.ts +0 -1
  657. package/ui/Elements/Icon/icons/Integrations.js +17 -13
  658. package/ui/Elements/Icon/icons/Inventory.d.ts +1 -2
  659. package/ui/Elements/Icon/icons/Inventory.js +45 -13
  660. package/ui/Elements/Icon/icons/Inventory2.d.ts +1 -2
  661. package/ui/Elements/Icon/icons/Inventory2.js +66 -13
  662. package/ui/Elements/Icon/icons/Layout.d.ts +2 -3
  663. package/ui/Elements/Icon/icons/Layout.js +43 -14
  664. package/ui/Elements/Icon/icons/Link.d.ts +0 -1
  665. package/ui/Elements/Icon/icons/Link.js +20 -13
  666. package/ui/Elements/Icon/icons/Liquid.d.ts +2 -3
  667. package/ui/Elements/Icon/icons/Liquid.js +22 -13
  668. package/ui/Elements/Icon/icons/Location.d.ts +1 -2
  669. package/ui/Elements/Icon/icons/Location.js +13 -13
  670. package/ui/Elements/Icon/icons/Logout1.d.ts +1 -2
  671. package/ui/Elements/Icon/icons/Logout1.js +32 -13
  672. package/ui/Elements/Icon/icons/MachinePackingForbidden.d.ts +2 -3
  673. package/ui/Elements/Icon/icons/MachinePackingForbidden.js +70 -13
  674. package/ui/Elements/Icon/icons/MakePhoto.d.ts +1 -2
  675. package/ui/Elements/Icon/icons/MakePhoto.js +35 -13
  676. package/ui/Elements/Icon/icons/MenuItems.d.ts +1 -2
  677. package/ui/Elements/Icon/icons/MenuItems.js +39 -13
  678. package/ui/Elements/Icon/icons/Message.d.ts +1 -2
  679. package/ui/Elements/Icon/icons/Message.js +38 -13
  680. package/ui/Elements/Icon/icons/MobileCancel.d.ts +1 -2
  681. package/ui/Elements/Icon/icons/MobileCancel.js +22 -13
  682. package/ui/Elements/Icon/icons/MobilePhone.d.ts +2 -3
  683. package/ui/Elements/Icon/icons/MobilePhone.js +47 -13
  684. package/ui/Elements/Icon/icons/Moon.d.ts +1 -2
  685. package/ui/Elements/Icon/icons/Moon.js +12 -13
  686. package/ui/Elements/Icon/icons/Notification2.d.ts +1 -2
  687. package/ui/Elements/Icon/icons/Notification2.js +25 -13
  688. package/ui/Elements/Icon/icons/OpenBox.d.ts +0 -1
  689. package/ui/Elements/Icon/icons/OpenBox.js +37 -13
  690. package/ui/Elements/Icon/icons/Pallet.d.ts +1 -2
  691. package/ui/Elements/Icon/icons/Pallet.js +36 -13
  692. package/ui/Elements/Icon/icons/Plus1.d.ts +1 -2
  693. package/ui/Elements/Icon/icons/Plus1.js +17 -13
  694. package/ui/Elements/Icon/icons/Print.d.ts +1 -2
  695. package/ui/Elements/Icon/icons/Print.js +41 -13
  696. package/ui/Elements/Icon/icons/Product.d.ts +0 -1
  697. package/ui/Elements/Icon/icons/Product.js +17 -13
  698. package/ui/Elements/Icon/icons/Products.d.ts +1 -2
  699. package/ui/Elements/Icon/icons/Products.js +16 -13
  700. package/ui/Elements/Icon/icons/Profile.d.ts +1 -2
  701. package/ui/Elements/Icon/icons/Profile.js +25 -13
  702. package/ui/Elements/Icon/icons/Puzzle1.d.ts +1 -2
  703. package/ui/Elements/Icon/icons/Puzzle1.js +18 -13
  704. package/ui/Elements/Icon/icons/QRCode.d.ts +1 -2
  705. package/ui/Elements/Icon/icons/QRCode.js +19 -13
  706. package/ui/Elements/Icon/icons/Rack.d.ts +0 -1
  707. package/ui/Elements/Icon/icons/Rack.js +65 -13
  708. package/ui/Elements/Icon/icons/Reload.d.ts +2 -3
  709. package/ui/Elements/Icon/icons/Reload.js +13 -13
  710. package/ui/Elements/Icon/icons/Return.d.ts +1 -2
  711. package/ui/Elements/Icon/icons/Return.js +19 -13
  712. package/ui/Elements/Icon/icons/Rows.d.ts +0 -1
  713. package/ui/Elements/Icon/icons/Rows.js +39 -13
  714. package/ui/Elements/Icon/icons/Settings2.d.ts +1 -2
  715. package/ui/Elements/Icon/icons/Settings2.js +33 -13
  716. package/ui/Elements/Icon/icons/ShieldUser.d.ts +2 -3
  717. package/ui/Elements/Icon/icons/ShieldUser.js +9 -13
  718. package/ui/Elements/Icon/icons/ShoppingBag.d.ts +1 -2
  719. package/ui/Elements/Icon/icons/ShoppingBag.js +18 -13
  720. package/ui/Elements/Icon/icons/Sort.d.ts +2 -3
  721. package/ui/Elements/Icon/icons/Sort.js +23 -13
  722. package/ui/Elements/Icon/icons/Sun.d.ts +1 -2
  723. package/ui/Elements/Icon/icons/Sun.js +12 -13
  724. package/ui/Elements/Icon/icons/ThreeDots.d.ts +0 -1
  725. package/ui/Elements/Icon/icons/ThreeDots.js +39 -13
  726. package/ui/Elements/Icon/icons/ToastError.d.ts +0 -1
  727. package/ui/Elements/Icon/icons/ToastError.js +27 -13
  728. package/ui/Elements/Icon/icons/ToastSuccess.d.ts +0 -1
  729. package/ui/Elements/Icon/icons/ToastSuccess.js +27 -13
  730. package/ui/Elements/Icon/icons/Transfer.d.ts +1 -2
  731. package/ui/Elements/Icon/icons/Transfer.js +21 -13
  732. package/ui/Elements/Icon/icons/TrashBin.d.ts +0 -1
  733. package/ui/Elements/Icon/icons/TrashBin.js +33 -13
  734. package/ui/Elements/Icon/icons/Truck.d.ts +1 -2
  735. package/ui/Elements/Icon/icons/Truck.js +73 -13
  736. package/ui/Elements/Icon/icons/TwoBoxes.d.ts +1 -2
  737. package/ui/Elements/Icon/icons/TwoBoxes.js +20 -13
  738. package/ui/Elements/Icon/icons/TwoCheckedBoxes.d.ts +1 -2
  739. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +29 -2
  740. package/ui/Elements/Icon/icons/TwoUsers.d.ts +1 -2
  741. package/ui/Elements/Icon/icons/TwoUsers.js +42 -13
  742. package/ui/Elements/Icon/icons/UserCowboy.d.ts +2 -3
  743. package/ui/Elements/Icon/icons/UserCowboy.js +9 -13
  744. package/ui/Elements/Icon/icons/Valuable.d.ts +2 -3
  745. package/ui/Elements/Icon/icons/Valuable.js +34 -13
  746. package/ui/Elements/Icon/icons/Weight.d.ts +1 -2
  747. package/ui/Elements/Icon/icons/Weight.js +12 -13
  748. package/ui/Elements/Icon/icons/index.js +188 -91
  749. package/ui/Elements/Icon/index.d.ts +1 -2
  750. package/ui/Elements/Icon/index.js +97 -5
  751. package/ui/Elements/Icon/stories/BadgeIcon.stories.d.ts +5 -6
  752. package/ui/Elements/Icon/stories/Icon.stories.d.ts +2 -3
  753. package/ui/Elements/Icon/types.d.ts +1 -2
  754. package/ui/Elements/Image/Image.d.ts +2 -3
  755. package/ui/Elements/Image/Image.js +15 -37
  756. package/ui/Elements/Image/index.d.ts +1 -2
  757. package/ui/Elements/Image/index.js +5 -3
  758. package/ui/Elements/Image/stories/Image.stories.d.ts +2 -3
  759. package/ui/Elements/Image/types.d.ts +1 -2
  760. package/ui/Elements/Label/Label.d.ts +3 -3
  761. package/ui/Elements/Label/Label.js +23 -14
  762. package/ui/Elements/Label/index.d.ts +0 -1
  763. package/ui/Elements/Label/index.js +5 -3
  764. package/ui/Elements/Label/stories/Label.stories.d.ts +3 -4
  765. package/ui/Elements/Line/Line.d.ts +0 -1
  766. package/ui/Elements/Line/Line.js +21 -23
  767. package/ui/Elements/Line/index.d.ts +1 -2
  768. package/ui/Elements/Line/index.js +5 -3
  769. package/ui/Elements/Line/stories/Line.stories.d.ts +2 -3
  770. package/ui/Elements/Line/types.d.ts +1 -2
  771. package/ui/Elements/Link/Link.d.ts +1 -2
  772. package/ui/Elements/Link/Link.js +43 -47
  773. package/ui/Elements/Link/index.d.ts +1 -2
  774. package/ui/Elements/Link/index.js +5 -3
  775. package/ui/Elements/Link/stories/Link.stories.d.ts +14 -15
  776. package/ui/Elements/Logo/Logo.d.ts +2 -3
  777. package/ui/Elements/Logo/Logo.js +66 -91
  778. package/ui/Elements/Logo/index.d.ts +1 -2
  779. package/ui/Elements/Logo/index.js +5 -3
  780. package/ui/Elements/Logo/stories/Logo.stories.d.ts +2 -3
  781. package/ui/Elements/Pagination/Pagination.d.ts +1 -2
  782. package/ui/Elements/Pagination/Pagination.js +62 -38
  783. package/ui/Elements/Pagination/index.d.ts +1 -2
  784. package/ui/Elements/Pagination/index.js +5 -3
  785. package/ui/Elements/Pagination/stories/Pagination.stories.d.ts +2 -3
  786. package/ui/Elements/Pagination/styled.d.ts +6 -7
  787. package/ui/Elements/Pagination/styled.js +64 -26
  788. package/ui/Elements/Portal/index.d.ts +1 -2
  789. package/ui/Elements/Portal/index.js +22 -23
  790. package/ui/Elements/ProgressBar/ProgressBar.d.ts +1 -2
  791. package/ui/Elements/ProgressBar/ProgressBar.js +16 -8
  792. package/ui/Elements/ProgressBar/index.d.ts +1 -2
  793. package/ui/Elements/ProgressBar/index.js +5 -3
  794. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.d.ts +7 -8
  795. package/ui/Elements/ProgressBar/styles.d.ts +4 -4
  796. package/ui/Elements/ProgressBar/styles.js +72 -19
  797. package/ui/Elements/Select/Select.d.ts +2 -3
  798. package/ui/Elements/Select/Select.js +96 -110
  799. package/ui/Elements/Select/components/ChevronOption.js +30 -22
  800. package/ui/Elements/Select/components/ConnectedMenu.js +25 -26
  801. package/ui/Elements/Select/components/CountMultiValue.d.ts +1 -2
  802. package/ui/Elements/Select/components/CountMultiValue.js +41 -45
  803. package/ui/Elements/Select/components/CustomInput.js +12 -18
  804. package/ui/Elements/Select/components/DropdownIndicator.d.ts +1 -2
  805. package/ui/Elements/Select/components/DropdownIndicator.js +29 -28
  806. package/ui/Elements/Select/components/IconValueContainer.js +32 -45
  807. package/ui/Elements/Select/components/SelectAll.d.ts +2 -2
  808. package/ui/Elements/Select/components/SelectAll.js +89 -58
  809. package/ui/Elements/Select/components/SelectedIndicator.d.ts +1 -1
  810. package/ui/Elements/Select/components/SelectedIndicator.js +7 -8
  811. package/ui/Elements/Select/components/SimplifiedOption.d.ts +1 -2
  812. package/ui/Elements/Select/components/SimplifiedOption.js +16 -10
  813. package/ui/Elements/Select/index.d.ts +1 -2
  814. package/ui/Elements/Select/index.js +5 -2
  815. package/ui/Elements/Select/stories/Select.stories.d.ts +2 -3
  816. package/ui/Elements/Select/styles.d.ts +5 -6
  817. package/ui/Elements/Select/styles.js +19 -12
  818. package/ui/Elements/Select/themes/index.d.ts +3 -4
  819. package/ui/Elements/Select/themes/index.js +40 -41
  820. package/ui/Elements/Select/themes/selectStyles.d.ts +2 -3
  821. package/ui/Elements/Select/themes/selectStyles.js +198 -148
  822. package/ui/Elements/Select/types.d.ts +3 -4
  823. package/ui/Elements/SimpleLink/SimpleLink.d.ts +2 -3
  824. package/ui/Elements/SimpleLink/SimpleLink.js +35 -21
  825. package/ui/Elements/SimpleLink/index.d.ts +1 -2
  826. package/ui/Elements/SimpleLink/index.js +5 -3
  827. package/ui/Elements/SingleSelect/SingleSelect.d.ts +2 -3
  828. package/ui/Elements/SingleSelect/SingleSelect.js +147 -197
  829. package/ui/Elements/SingleSelect/index.d.ts +1 -2
  830. package/ui/Elements/SingleSelect/index.js +5 -2
  831. package/ui/Elements/SpaceAround/SpaceAround.d.ts +2 -3
  832. package/ui/Elements/SpaceAround/SpaceAround.js +32 -52
  833. package/ui/Elements/SpaceAround/index.d.ts +1 -2
  834. package/ui/Elements/SpaceAround/index.js +5 -3
  835. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.d.ts +2 -3
  836. package/ui/Elements/SpaceAround/types.d.ts +0 -1
  837. package/ui/Elements/Spinner/Spinner.d.ts +2 -3
  838. package/ui/Elements/Spinner/Spinner.js +36 -25
  839. package/ui/Elements/Spinner/index.d.ts +1 -2
  840. package/ui/Elements/Spinner/index.js +5 -3
  841. package/ui/Elements/Spinner/stories/Spinner.stories.d.ts +2 -3
  842. package/ui/Elements/Spinner/styles.d.ts +3 -3
  843. package/ui/Elements/Spinner/styles.js +36 -19
  844. package/ui/Elements/Table/Table.d.ts +6 -6
  845. package/ui/Elements/Table/Table.js +45 -12
  846. package/ui/Elements/Table/index.js +2 -1
  847. package/ui/Elements/Table/stories/Table.stories.d.ts +1 -1
  848. package/ui/Elements/Tag/Tag.d.ts +2 -3
  849. package/ui/Elements/Tag/Tag.js +47 -57
  850. package/ui/Elements/Tag/index.d.ts +1 -2
  851. package/ui/Elements/Tag/index.js +6 -3
  852. package/ui/Elements/Tag/palettes.d.ts +1 -2
  853. package/ui/Elements/Tag/palettes.js +50 -14
  854. package/ui/Elements/Tag/stories/Tag.stories.d.ts +2 -3
  855. package/ui/Elements/Tag/stories/components/predefinedTags.js +18 -7
  856. package/ui/Elements/Tag/types.d.ts +0 -1
  857. package/ui/Elements/Text/Text.d.ts +2 -3
  858. package/ui/Elements/Text/Text.js +10 -29
  859. package/ui/Elements/Text/index.d.ts +1 -2
  860. package/ui/Elements/Text/index.js +1 -1
  861. package/ui/Elements/Text/stories/Text.stories.d.ts +2 -3
  862. package/ui/Elements/Text/types.d.ts +0 -1
  863. package/ui/Elements/Toast/Toast.d.ts +1 -2
  864. package/ui/Elements/Toast/Toast.js +35 -20
  865. package/ui/Elements/Toast/constants.d.ts +1 -2
  866. package/ui/Elements/Toast/constants.js +18 -15
  867. package/ui/Elements/Toast/index.d.ts +1 -2
  868. package/ui/Elements/Toast/index.js +5 -3
  869. package/ui/Elements/Toast/stories/Toast.stories.d.ts +2 -3
  870. package/ui/Elements/Toast/styles.d.ts +6 -6
  871. package/ui/Elements/Toast/styles.js +76 -22
  872. package/ui/Elements/Toggle/Toggle.d.ts +2 -3
  873. package/ui/Elements/Toggle/Toggle.js +123 -61
  874. package/ui/Elements/Toggle/index.d.ts +1 -2
  875. package/ui/Elements/Toggle/index.js +5 -3
  876. package/ui/Elements/Toggle/stories/Toggle.stories.d.ts +2 -3
  877. package/ui/Elements/Toggle/types.d.ts +0 -1
  878. package/ui/Elements/Tooltip/Tooltip.d.ts +2 -3
  879. package/ui/Elements/Tooltip/Tooltip.js +50 -24
  880. package/ui/Elements/Tooltip/index.d.ts +1 -2
  881. package/ui/Elements/Tooltip/index.js +5 -3
  882. package/ui/Elements/Tooltip/stories/Tooltip.stories.d.ts +2 -3
  883. package/ui/Elements/Typography/Typography.d.ts +2 -3
  884. package/ui/Elements/Typography/Typography.js +75 -46
  885. package/ui/Elements/Typography/index.d.ts +0 -1
  886. package/ui/Elements/Typography/index.js +5 -3
  887. package/ui/Elements/Typography/stories/Typography.stories.d.ts +1 -2
  888. package/ui/Forms/Checkbox/Checkbox.d.ts +2 -3
  889. package/ui/Forms/Checkbox/Checkbox.js +43 -11
  890. package/ui/Forms/Checkbox/index.d.ts +1 -2
  891. package/ui/Forms/Checkbox/index.js +5 -3
  892. package/ui/Forms/Checkbox/stories/Checkbox.stories.d.ts +1 -2
  893. package/ui/Forms/Checkbox/styles.d.ts +4 -5
  894. package/ui/Forms/Checkbox/styles.js +94 -26
  895. package/ui/Forms/Checkbox/types.d.ts +1 -2
  896. package/ui/Forms/Input/Input.d.ts +2 -3
  897. package/ui/Forms/Input/Input.js +128 -65
  898. package/ui/Forms/Input/index.d.ts +0 -1
  899. package/ui/Forms/Input/index.js +5 -3
  900. package/ui/Forms/Input/stories/Input.stories.d.ts +2 -3
  901. package/ui/Forms/Input/styles.d.ts +12 -12
  902. package/ui/Forms/Input/styles.js +219 -66
  903. package/ui/Forms/Input/types.d.ts +1 -2
  904. package/ui/Forms/RadioButton/RadioButton.d.ts +2 -3
  905. package/ui/Forms/RadioButton/RadioButton.js +23 -31
  906. package/ui/Forms/RadioButton/index.d.ts +1 -2
  907. package/ui/Forms/RadioButton/index.js +5 -3
  908. package/ui/Forms/RadioButton/stories/RadioButton.stories.d.ts +2 -3
  909. package/ui/Forms/RadioButton/styles.d.ts +6 -6
  910. package/ui/Forms/RadioButton/styles.js +86 -15
  911. package/ui/Forms/RadioButton/types.d.ts +0 -1
  912. package/ui/Forms/TextArea/TextArea.d.ts +2 -3
  913. package/ui/Forms/TextArea/TextArea.js +34 -33
  914. package/ui/Forms/TextArea/index.d.ts +1 -2
  915. package/ui/Forms/TextArea/index.js +5 -2
  916. package/ui/Forms/TextArea/styles.d.ts +10 -10
  917. package/ui/Forms/TextArea/styles.js +76 -31
  918. package/ui/System/Fonts/index.js +54 -9
  919. package/ui/ThemeProvider/ThemeProvider.d.ts +3 -4
  920. package/ui/ThemeProvider/ThemeProvider.js +16 -9
  921. package/ui/ThemeProvider/index.d.ts +2 -3
  922. package/ui/ThemeProvider/index.js +6 -5
  923. package/ui/ThemeProvider/themes/dark.js +44 -13
  924. package/ui/ThemeProvider/themes/default.js +202 -171
  925. package/ui/ThemeProvider/themes/index.js +10 -8
  926. package/ui/ThemeProvider/themes/mailwise.js +110 -82
  927. package/ui/ThemeProvider/types.d.ts +1 -2
  928. package/ui/_virtual/_rolldown/runtime.js +13 -0
  929. package/ui/hooks/useToggleAndClose.js +17 -11
  930. package/ui/index.d.ts +47 -48
  931. package/ui/index.js +179 -94
  932. package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +16 -16
  933. package/ui/utils/CreateRgba/createRgba.d.ts +0 -1
  934. package/ui/utils/CreateRgba/createRgba.js +11 -15
  935. package/ui/utils/KeyPress/KeyPress.d.ts +0 -1
  936. package/ui/utils/KeyPress/KeyPress.js +15 -16
  937. package/ui/utils/KeyPress/KeyPress.stories.d.ts +1 -2
  938. package/ui/utils/KeyPress/index.d.ts +1 -2
  939. package/ui/utils/KeyPress/index.js +5 -2
  940. package/ui/utils/LinguiContainer/index.js +12 -7
  941. package/ui/utils/index.d.ts +4 -5
  942. package/ui/utils/index.js +8 -6
  943. package/ui/utils/translations.d.ts +1 -2
  944. package/ui/utils/translations.js +336 -4
  945. package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +0 -103
  946. package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +0 -15
  947. package/ui/Blocks/CommonGrid/storybook/stories/gridStates.stories.js +0 -12
  948. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +0 -12
  949. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +0 -12
  950. package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +0 -15
  951. package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +0 -15
  952. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +0 -25
  953. package/ui/Blocks/CommonGrid/storybook/stories/withQuickFilter.stories.js +0 -18
  954. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +0 -54
  955. package/ui/Blocks/Header/stories/Header.stories.js +0 -44
  956. package/ui/Blocks/ImageList/stories/ImageList.stories.js +0 -63
  957. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.js +0 -31
  958. package/ui/Blocks/LightBox/stories/LightBox.stories.js +0 -21
  959. package/ui/Blocks/LoginPage/stories/LoginPage.stories.js +0 -113
  960. package/ui/Blocks/Modal/stories/Modal.stories.js +0 -168
  961. package/ui/Blocks/Scheduler/stories/Scheduler.stories.js +0 -114
  962. package/ui/Blocks/SideMenu/stories/SideMenu.stories.js +0 -23
  963. package/ui/Blocks/Stepper/stories/Stepper.stories.js +0 -86
  964. package/ui/Blocks/Table/stories/Table.stories.js +0 -20
  965. package/ui/Blocks/Tabs/stories/Tabs.stories.js +0 -44
  966. package/ui/Elements/Alert/stories/Alert.stories.js +0 -73
  967. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.js +0 -89
  968. package/ui/Elements/Avatar/stories/Avatar.stories.js +0 -20
  969. package/ui/Elements/Badge/stories/Badge.stories.js +0 -34
  970. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +0 -26
  971. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +0 -13
  972. package/ui/Elements/Button/stories/Button.stories.js +0 -120
  973. package/ui/Elements/Card/stories/Card.stories.js +0 -34
  974. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.js +0 -27
  975. package/ui/Elements/Dropdown/stories/Dropdown.stories.js +0 -14
  976. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +0 -19
  977. package/ui/Elements/Icon/stories/BadgeIcon.stories.js +0 -18
  978. package/ui/Elements/Icon/stories/Icon.stories.js +0 -48
  979. package/ui/Elements/Image/stories/Image.stories.js +0 -36
  980. package/ui/Elements/Label/stories/Label.stories.js +0 -20
  981. package/ui/Elements/Line/stories/Line.stories.js +0 -41
  982. package/ui/Elements/Link/stories/Link.stories.js +0 -63
  983. package/ui/Elements/Logo/stories/Logo.stories.js +0 -136
  984. package/ui/Elements/Pagination/stories/Pagination.stories.js +0 -48
  985. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +0 -27
  986. package/ui/Elements/Select/stories/Select.stories.js +0 -16
  987. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +0 -22
  988. package/ui/Elements/Spinner/stories/Spinner.stories.js +0 -56
  989. package/ui/Elements/Table/stories/Table.stories.js +0 -10
  990. package/ui/Elements/Tag/stories/Tag.stories.js +0 -72
  991. package/ui/Elements/Text/stories/Text.stories.js +0 -43
  992. package/ui/Elements/Toast/stories/Toast.stories.js +0 -36
  993. package/ui/Elements/Toggle/stories/Toggle.stories.js +0 -64
  994. package/ui/Elements/Tooltip/stories/Tooltip.stories.js +0 -15
  995. package/ui/Elements/Typography/stories/Typography.stories.js +0 -20
  996. package/ui/Forms/Checkbox/stories/Checkbox.stories.js +0 -35
  997. package/ui/Forms/Input/stories/Input.stories.js +0 -77
  998. package/ui/Forms/RadioButton/stories/RadioButton.stories.js +0 -38
  999. package/ui/index.es.js +0 -50429
  1000. package/ui/index.umd.js +0 -4323
  1001. package/ui/utils/KeyPress/KeyPress.stories.js +0 -18
@@ -1,13 +1,37 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var OpenBox = function (props) { return (_jsxs("svg", __assign({ width: "47", height: "47", viewBox: "0 0 47 47", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("rect", { x: "7", y: "22", width: "33", height: "19", rx: "1.92557", strokeWidth: "2.88835" }), _jsx("rect", { width: "37", height: "9", rx: "1.92557", transform: "matrix(1 0 0 -1 5 18)", strokeWidth: "2.88835" }), _jsx("line", { x1: "15", y1: "29.5558", x2: "33", y2: "29.5558", strokeWidth: "2.88835" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/OpenBox.tsx
3
+ const OpenBox = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "47",
5
+ height: "47",
6
+ viewBox: "0 0 47 47",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("rect", {
13
+ x: "7",
14
+ y: "22",
15
+ width: "33",
16
+ height: "19",
17
+ rx: "1.92557",
18
+ strokeWidth: "2.88835"
19
+ }),
20
+ /* @__PURE__ */ jsx("rect", {
21
+ width: "37",
22
+ height: "9",
23
+ rx: "1.92557",
24
+ transform: "matrix(1 0 0 -1 5 18)",
25
+ strokeWidth: "2.88835"
26
+ }),
27
+ /* @__PURE__ */ jsx("line", {
28
+ x1: "15",
29
+ y1: "29.5558",
30
+ x2: "33",
31
+ y2: "29.5558",
32
+ strokeWidth: "2.88835"
33
+ })
34
+ ]
35
+ });
36
+ //#endregion
37
+ export { OpenBox };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Pallet: FC<SvgProps>;
@@ -1,13 +1,36 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Pallet = function (props) { return (_jsxs("svg", __assign({ width: "60", height: "47", viewBox: "0 0 60 47", fill: "#7A90A1", stroke: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsxs("mask", { id: "path-1-outside-1_4169_16824", maskUnits: "userSpaceOnUse", x: "-1", y: "-1", width: "62", height: "49", fill: "black", children: [_jsx("rect", { fill: "white", x: "-1", y: "-1", width: "62", height: "49" }), _jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" })] }), _jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" }), _jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z", mask: "url(#path-1-outside-1_4169_16824)" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Pallet.tsx
3
+ const Pallet = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "60",
5
+ height: "47",
6
+ viewBox: "0 0 60 47",
7
+ fill: "#7A90A1",
8
+ stroke: "#7A90A1",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsxs("mask", {
13
+ id: "path-1-outside-1_4169_16824",
14
+ maskUnits: "userSpaceOnUse",
15
+ x: "-1",
16
+ y: "-1",
17
+ width: "62",
18
+ height: "49",
19
+ fill: "black",
20
+ children: [/* @__PURE__ */ jsx("rect", {
21
+ fill: "white",
22
+ x: "-1",
23
+ y: "-1",
24
+ width: "62",
25
+ height: "49"
26
+ }), /* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" })]
27
+ }),
28
+ /* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z",
31
+ mask: "url(#path-1-outside-1_4169_16824)"
32
+ })
33
+ ]
34
+ });
35
+ //#endregion
36
+ export { Pallet };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Plus1: FC<SvgProps>;
@@ -1,13 +1,17 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Plus1 = function (props) { return (_jsx("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z", fill: "white" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Plus1.tsx
3
+ const Plus1 = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "20",
5
+ height: "20",
6
+ viewBox: "0 0 20 20",
7
+ fill: "none",
8
+ ...props,
9
+ children: /* @__PURE__ */ jsx("path", {
10
+ fillRule: "evenodd",
11
+ clipRule: "evenodd",
12
+ d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z",
13
+ fill: "white"
14
+ })
15
+ });
16
+ //#endregion
17
+ export { Plus1 };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Print: FC<SvgProps>;
@@ -1,13 +1,41 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Print = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", stroke: "#22394E", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("rect", { x: "17", y: "11", width: "2", height: "1" }), _jsx("rect", { x: "9.25", y: "15.25", width: "5.5", height: "0.5", strokeWidth: "0.5" }), _jsx("rect", { x: "9.25", y: "18.25", width: "5.5", height: "0.5", strokeWidth: "0.5" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Print.tsx
3
+ const Print = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ stroke: "#22394E",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z",
14
+ strokeWidth: "1.5",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /* @__PURE__ */ jsx("rect", {
19
+ x: "17",
20
+ y: "11",
21
+ width: "2",
22
+ height: "1"
23
+ }),
24
+ /* @__PURE__ */ jsx("rect", {
25
+ x: "9.25",
26
+ y: "15.25",
27
+ width: "5.5",
28
+ height: "0.5",
29
+ strokeWidth: "0.5"
30
+ }),
31
+ /* @__PURE__ */ jsx("rect", {
32
+ x: "9.25",
33
+ y: "18.25",
34
+ width: "5.5",
35
+ height: "0.5",
36
+ strokeWidth: "0.5"
37
+ })
38
+ ]
39
+ });
40
+ //#endregion
41
+ export { Print };
@@ -1,4 +1,3 @@
1
1
  import { SvgProps } from '../types';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const Product: FC<SvgProps>;
@@ -1,13 +1,17 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Product = function (props) { return (_jsx("svg", __assign({ width: "43", height: "32", viewBox: "0 0 43 32", stroke: "black", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M5.88054 9.67078V28.466C5.88054 29.5294 6.74264 30.3916 7.80611 30.3916H21.8425M37.2723 9.04288V9.67078V28.466C37.2723 29.5295 36.4102 30.3916 35.3468 30.3916H21.8425M37.2723 9.04288H39.1538C40.5328 9.04288 41.4648 7.63584 40.9268 6.36613L39.3661 2.68243C39.0645 1.97052 38.3663 1.50806 37.5931 1.50806H21.8425M37.2723 9.04288H26.3103C25.5371 9.04288 24.8389 8.58042 24.5373 7.86851L21.8425 1.50806M21.8425 1.50806L5.2093 1.50806C4.34742 1.50806 3.59051 2.08079 3.35623 2.91021L2.31575 6.59391C1.96867 7.82272 2.89193 9.04288 4.16882 9.04288H17.3747C18.1478 9.04288 18.846 8.58042 19.1477 7.86851L21.8425 1.50806ZM21.8425 1.50806V16.5777M21.8425 21.6009V30.3916M10.1371 25.3683H14.3936M10.1371 20.3451H16.7879", strokeWidth: "2.88835" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Product.tsx
3
+ const Product = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "43",
5
+ height: "32",
6
+ viewBox: "0 0 43 32",
7
+ stroke: "black",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx("path", {
12
+ d: "M5.88054 9.67078V28.466C5.88054 29.5294 6.74264 30.3916 7.80611 30.3916H21.8425M37.2723 9.04288V9.67078V28.466C37.2723 29.5295 36.4102 30.3916 35.3468 30.3916H21.8425M37.2723 9.04288H39.1538C40.5328 9.04288 41.4648 7.63584 40.9268 6.36613L39.3661 2.68243C39.0645 1.97052 38.3663 1.50806 37.5931 1.50806H21.8425M37.2723 9.04288H26.3103C25.5371 9.04288 24.8389 8.58042 24.5373 7.86851L21.8425 1.50806M21.8425 1.50806L5.2093 1.50806C4.34742 1.50806 3.59051 2.08079 3.35623 2.91021L2.31575 6.59391C1.96867 7.82272 2.89193 9.04288 4.16882 9.04288H17.3747C18.1478 9.04288 18.846 8.58042 19.1477 7.86851L21.8425 1.50806ZM21.8425 1.50806V16.5777M21.8425 21.6009V30.3916M10.1371 25.3683H14.3936M10.1371 20.3451H16.7879",
13
+ strokeWidth: "2.88835"
14
+ })
15
+ });
16
+ //#endregion
17
+ export { Product };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Products: FC<SvgProps>;
@@ -1,13 +1,16 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Products = function (props) { return (_jsx("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: _jsx("path", { d: "M3.08945 7.41522V16.2C3.08945 16.6971 3.49239 17.1 3.98945 17.1H10.55M17.7618 7.12174V7.41522V16.2C17.7618 16.6971 17.3589 17.1 16.8618 17.1H10.55M17.7618 7.12174H18.6412C19.2857 7.12174 19.7213 6.4641 19.4699 5.87064L18.7404 4.1489C18.5995 3.81616 18.2731 3.60001 17.9117 3.60001H10.55M17.7618 7.12174H12.6382C12.2768 7.12174 11.9505 6.90559 11.8095 6.57285L10.55 3.60001M10.55 3.60001L2.77571 3.60001C2.37288 3.60001 2.0191 3.8677 1.9096 4.25537L1.42329 5.97711C1.26106 6.55145 1.69259 7.12174 2.2894 7.12174H8.46174C8.82312 7.12174 9.14945 6.90559 9.29043 6.57285L10.55 3.60001ZM10.55 3.60001V10.6435M10.55 12.9913V17.1", strokeWidth: "1.35" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Products.tsx
3
+ const Products = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "22",
5
+ height: "22",
6
+ viewBox: "0 0 22 22",
7
+ fill: "none",
8
+ stroke: "#A3B3C1",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", {
11
+ d: "M3.08945 7.41522V16.2C3.08945 16.6971 3.49239 17.1 3.98945 17.1H10.55M17.7618 7.12174V7.41522V16.2C17.7618 16.6971 17.3589 17.1 16.8618 17.1H10.55M17.7618 7.12174H18.6412C19.2857 7.12174 19.7213 6.4641 19.4699 5.87064L18.7404 4.1489C18.5995 3.81616 18.2731 3.60001 17.9117 3.60001H10.55M17.7618 7.12174H12.6382C12.2768 7.12174 11.9505 6.90559 11.8095 6.57285L10.55 3.60001M10.55 3.60001L2.77571 3.60001C2.37288 3.60001 2.0191 3.8677 1.9096 4.25537L1.42329 5.97711C1.26106 6.55145 1.69259 7.12174 2.2894 7.12174H8.46174C8.82312 7.12174 9.14945 6.90559 9.29043 6.57285L10.55 3.60001ZM10.55 3.60001V10.6435M10.55 12.9913V17.1",
12
+ strokeWidth: "1.35"
13
+ })
14
+ });
15
+ //#endregion
16
+ export { Products };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Profile: FC<SvgProps>;
@@ -1,13 +1,25 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Profile = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#22394E" }, props, { children: [_jsx("path", { d: "M10.614 11.0514C13.0329 11.0514 14.9939 9.09045 14.9939 6.67152C14.9939 4.25259 13.0329 2.29166 10.614 2.29166C8.19506 2.29166 6.23413 4.25259 6.23413 6.67152C6.23413 9.09045 8.19506 11.0514 10.614 11.0514Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.66664 17.1429C3.66546 16.835 3.73432 16.5309 3.86801 16.2535C4.28754 15.4145 5.4706 14.9698 6.4523 14.7684C7.1603 14.6173 7.87807 14.5163 8.60028 14.4664C9.93736 14.3489 11.2822 14.3489 12.6193 14.4664C13.3415 14.517 14.0592 14.6179 14.7674 14.7684C15.749 14.9698 16.9321 15.3725 17.3516 16.2535C17.6205 16.8189 17.6205 17.4753 17.3516 18.0407C16.9321 18.9217 15.749 19.3244 14.7674 19.5175C14.0602 19.6748 13.3421 19.7785 12.6193 19.8279C11.5311 19.9202 10.4377 19.9369 9.34702 19.8783C9.09532 19.8783 8.85199 19.8783 8.60028 19.8279C7.8802 19.7792 7.16492 19.6754 6.46069 19.5175C5.4706 19.3244 4.29593 18.9217 3.86801 18.0407C3.73501 17.7601 3.66621 17.4534 3.66664 17.1429Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Profile.tsx
3
+ const Profile = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "22",
5
+ height: "22",
6
+ viewBox: "0 0 22 22",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ ...props,
10
+ children: [/* @__PURE__ */ jsx("path", {
11
+ d: "M10.614 11.0514C13.0329 11.0514 14.9939 9.09045 14.9939 6.67152C14.9939 4.25259 13.0329 2.29166 10.614 2.29166C8.19506 2.29166 6.23413 4.25259 6.23413 6.67152C6.23413 9.09045 8.19506 11.0514 10.614 11.0514Z",
12
+ strokeWidth: "1.5",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ }), /* @__PURE__ */ jsx("path", {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M3.66664 17.1429C3.66546 16.835 3.73432 16.5309 3.86801 16.2535C4.28754 15.4145 5.4706 14.9698 6.4523 14.7684C7.1603 14.6173 7.87807 14.5163 8.60028 14.4664C9.93736 14.3489 11.2822 14.3489 12.6193 14.4664C13.3415 14.517 14.0592 14.6179 14.7674 14.7684C15.749 14.9698 16.9321 15.3725 17.3516 16.2535C17.6205 16.8189 17.6205 17.4753 17.3516 18.0407C16.9321 18.9217 15.749 19.3244 14.7674 19.5175C14.0602 19.6748 13.3421 19.7785 12.6193 19.8279C11.5311 19.9202 10.4377 19.9369 9.34702 19.8783C9.09532 19.8783 8.85199 19.8783 8.60028 19.8279C7.8802 19.7792 7.16492 19.6754 6.46069 19.5175C5.4706 19.3244 4.29593 18.9217 3.86801 18.0407C3.73501 17.7601 3.66621 17.4534 3.66664 17.1429Z",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round"
22
+ })]
23
+ });
24
+ //#endregion
25
+ export { Profile };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Puzzle1: FC<SvgProps>;
@@ -1,13 +1,18 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Puzzle1 = function (props) { return (_jsx("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: _jsx("path", { d: "M11 4C11 2.89543 11.8954 2 13 2C14.1046 2 15 2.89543 15 4V5C15 5.55228 15.4477 6 16 6H19C19.5523 6 20 6.44772 20 7V10C20 10.5523 19.5523 11 19 11H18C16.8954 11 16 11.8954 16 13C16 14.1046 16.8954 15 18 15H19C19.5523 15 20 15.4477 20 16V19C20 19.5523 19.5523 20 19 20H16C15.4477 20 15 19.5523 15 19V18C15 16.8954 14.1046 16 13 16C11.8954 16 11 16.8954 11 18V19C11 19.5523 10.5523 20 10 20H7C6.44772 20 6 19.5523 6 19V16C6 15.4477 5.55228 15 5 15H4C2.89543 15 2 14.1046 2 13C2 11.8954 2.89543 11 4 11H5C5.55228 11 6 10.5523 6 10V7C6 6.44772 6.44772 6 7 6H10C10.5523 6 11 5.55228 11 5V4Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Puzzle1.tsx
3
+ const Puzzle1 = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ fill: "none",
8
+ stroke: "#374151",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", {
11
+ d: "M11 4C11 2.89543 11.8954 2 13 2C14.1046 2 15 2.89543 15 4V5C15 5.55228 15.4477 6 16 6H19C19.5523 6 20 6.44772 20 7V10C20 10.5523 19.5523 11 19 11H18C16.8954 11 16 11.8954 16 13C16 14.1046 16.8954 15 18 15H19C19.5523 15 20 15.4477 20 16V19C20 19.5523 19.5523 20 19 20H16C15.4477 20 15 19.5523 15 19V18C15 16.8954 14.1046 16 13 16C11.8954 16 11 16.8954 11 18V19C11 19.5523 10.5523 20 10 20H7C6.44772 20 6 19.5523 6 19V16C6 15.4477 5.55228 15 5 15H4C2.89543 15 2 14.1046 2 13C2 11.8954 2.89543 11 4 11H5C5.55228 11 6 10.5523 6 10V7C6 6.44772 6.44772 6 7 6H10C10.5523 6 11 5.55228 11 5V4Z",
12
+ strokeWidth: "1.5",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ })
16
+ });
17
+ //#endregion
18
+ export { Puzzle1 };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const QRCode: FC<SvgProps>;
@@ -1,13 +1,19 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var QRCode = function (props) { return (_jsx("svg", __assign({ width: "72", height: "72", viewBox: "0 0 72 72", fill: "none", stroke: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M36 12V15M54 48H60M42 48H36V60M36 27V36M36 36H36.03M36 36H48.03M48 60H60M12 36H24M60 36H60.03M15 24H21C22.6568 24 24 22.6568 24 21V15C24 13.3432 22.6568 12 21 12H15C13.3432 12 12 13.3432 12 15V21C12 22.6568 13.3432 24 15 24ZM51 24H57C58.6569 24 60 22.6568 60 21V15C60 13.3432 58.6569 12 57 12H51C49.3431 12 48 13.3432 48 15V21C48 22.6568 49.3431 24 51 24ZM15 60H21C22.6568 60 24 58.6569 24 57V51C24 49.3431 22.6568 48 21 48H15C13.3432 48 12 49.3431 12 51V57C12 58.6569 13.3432 60 15 60Z", strokeWidth: "5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/QRCode.tsx
3
+ const QRCode = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "72",
5
+ height: "72",
6
+ viewBox: "0 0 72 72",
7
+ fill: "none",
8
+ stroke: "#7A90A1",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: /* @__PURE__ */ jsx("path", {
12
+ d: "M36 12V15M54 48H60M42 48H36V60M36 27V36M36 36H36.03M36 36H48.03M48 60H60M12 36H24M60 36H60.03M15 24H21C22.6568 24 24 22.6568 24 21V15C24 13.3432 22.6568 12 21 12H15C13.3432 12 12 13.3432 12 15V21C12 22.6568 13.3432 24 15 24ZM51 24H57C58.6569 24 60 22.6568 60 21V15C60 13.3432 58.6569 12 57 12H51C49.3431 12 48 13.3432 48 15V21C48 22.6568 49.3431 24 51 24ZM15 60H21C22.6568 60 24 58.6569 24 57V51C24 49.3431 22.6568 48 21 48H15C13.3432 48 12 49.3431 12 51V57C12 58.6569 13.3432 60 15 60Z",
13
+ strokeWidth: "5",
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round"
16
+ })
17
+ });
18
+ //#endregion
19
+ export { QRCode };
@@ -1,4 +1,3 @@
1
1
  import { SvgProps } from '../types';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const Rack: FC<SvgProps>;
@@ -1,13 +1,65 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Rack = function (props) { return (_jsxs("svg", __assign({ width: "36", height: "34", viewBox: "0 0 36 34", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M1.5 2L1.5 32", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M34.5 29L2.5 29", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M34.5 17L2.5 17", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M11.5 25H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M11.5 21H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M30.5 13H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M30.5 9H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M30.5 25H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M11.5 12H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), _jsx("path", { d: "M34.5 7L34.5 32", strokeWidth: "2.88835", strokeLinecap: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Rack.tsx
3
+ const Rack = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "36",
5
+ height: "34",
6
+ viewBox: "0 0 36 34",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M1.5 2L1.5 32",
14
+ strokeWidth: "2.88835",
15
+ strokeLinecap: "round"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ d: "M34.5 29L2.5 29",
19
+ strokeWidth: "2.88835",
20
+ strokeLinecap: "round"
21
+ }),
22
+ /* @__PURE__ */ jsx("path", {
23
+ d: "M34.5 17L2.5 17",
24
+ strokeWidth: "2.88835",
25
+ strokeLinecap: "round"
26
+ }),
27
+ /* @__PURE__ */ jsx("path", {
28
+ d: "M11.5 25H5.5",
29
+ strokeWidth: "2.88835",
30
+ strokeLinecap: "round"
31
+ }),
32
+ /* @__PURE__ */ jsx("path", {
33
+ d: "M11.5 21H5.5",
34
+ strokeWidth: "2.88835",
35
+ strokeLinecap: "round"
36
+ }),
37
+ /* @__PURE__ */ jsx("path", {
38
+ d: "M30.5 13H24.5",
39
+ strokeWidth: "2.88835",
40
+ strokeLinecap: "round"
41
+ }),
42
+ /* @__PURE__ */ jsx("path", {
43
+ d: "M30.5 9H24.5",
44
+ strokeWidth: "2.88835",
45
+ strokeLinecap: "round"
46
+ }),
47
+ /* @__PURE__ */ jsx("path", {
48
+ d: "M30.5 25H24.5",
49
+ strokeWidth: "2.88835",
50
+ strokeLinecap: "round"
51
+ }),
52
+ /* @__PURE__ */ jsx("path", {
53
+ d: "M11.5 12H5.5",
54
+ strokeWidth: "2.88835",
55
+ strokeLinecap: "round"
56
+ }),
57
+ /* @__PURE__ */ jsx("path", {
58
+ d: "M34.5 7L34.5 32",
59
+ strokeWidth: "2.88835",
60
+ strokeLinecap: "round"
61
+ })
62
+ ]
63
+ });
64
+ //#endregion
65
+ export { Rack };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
2
- import { SvgProps } from '../types';
3
-
1
+ import { type FC } from 'react';
2
+ import { type SvgProps } from '../types';
4
3
  export declare const Reload: FC<SvgProps>;
@@ -1,13 +1,13 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Reload = function (props) { return (_jsx("svg", __assign({ baseProfile: "tiny", height: "1em", viewBox: "0 0 32 32", transform: "scale(1.5)", width: "1em" }, props, { children: _jsx("path", { d: "M24 13V7.369L21.899 9.47a8.454 8.454 0 00-6.005-2.495 8.5 8.5 0 000 17 8.49 8.49 0 007.375-4.286l-1.737-.993a6.5 6.5 0 01-5.638 3.278 6.508 6.508 0 01-6.5-6.5c0-3.584 2.916-6.5 6.5-6.5 1.792 0 3.414.732 4.59 1.91L18.369 13H24z" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Reload.tsx
3
+ const Reload = (props) => /* @__PURE__ */ jsx("svg", {
4
+ baseProfile: "tiny",
5
+ height: "1em",
6
+ viewBox: "0 0 32 32",
7
+ transform: "scale(1.5)",
8
+ width: "1em",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", { d: "M24 13V7.369L21.899 9.47a8.454 8.454 0 00-6.005-2.495 8.5 8.5 0 000 17 8.49 8.49 0 007.375-4.286l-1.737-.993a6.5 6.5 0 01-5.638 3.278 6.508 6.508 0 01-6.5-6.5c0-3.584 2.916-6.5 6.5-6.5 1.792 0 3.414.732 4.59 1.91L18.369 13H24z" })
11
+ });
12
+ //#endregion
13
+ export { Reload };
@@ -1,4 +1,3 @@
1
- import { FC } from 'react';
1
+ import { type FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const Return: FC<SvgProps>;