@mailstep/design-system 0.8.31-beta.4 → 0.8.32-beta.1

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 (1012) hide show
  1. package/package.json +18 -25
  2. package/ui/Blocks/CommonGrid/CommonGrid.d.ts +4 -4
  3. package/ui/Blocks/CommonGrid/CommonGrid.js +107 -63
  4. package/ui/Blocks/CommonGrid/CommonGridContainer.d.ts +2 -3
  5. package/ui/Blocks/CommonGrid/CommonGridContainer.js +200 -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 +37 -50
  38. package/ui/Blocks/CommonGrid/components/DataRow.d.ts +3 -3
  39. package/ui/Blocks/CommonGrid/components/DataRow.js +64 -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/GridAggregation/GridAggregation.d.ts +9 -0
  89. package/ui/Blocks/CommonGrid/components/GridAggregation/GridAggregation.js +34 -0
  90. package/ui/Blocks/CommonGrid/components/GridAggregation/hooks/useGridAggregation.d.ts +20 -0
  91. package/ui/Blocks/CommonGrid/components/GridAggregation/hooks/useGridAggregation.js +52 -0
  92. package/ui/Blocks/CommonGrid/components/GridAggregation/index.d.ts +1 -0
  93. package/ui/Blocks/CommonGrid/components/GridAggregation/index.js +2 -0
  94. package/ui/Blocks/CommonGrid/components/GridAggregation/styles.d.ts +3 -0
  95. package/ui/Blocks/CommonGrid/components/GridAggregation/styles.js +28 -0
  96. package/ui/Blocks/CommonGrid/components/GridAggregation/utils/aggregate.d.ts +4 -0
  97. package/ui/Blocks/CommonGrid/components/GridAggregation/utils/aggregate.js +11 -0
  98. package/ui/Blocks/CommonGrid/components/GridInfo/index.d.ts +1 -2
  99. package/ui/Blocks/CommonGrid/components/GridInfo/index.js +33 -9
  100. package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +3 -4
  101. package/ui/Blocks/CommonGrid/components/GridModals/index.js +135 -27
  102. package/ui/Blocks/CommonGrid/components/GridStatus/index.d.ts +1 -2
  103. package/ui/Blocks/CommonGrid/components/GridStatus/index.js +26 -8
  104. package/ui/Blocks/CommonGrid/components/GroupRow.d.ts +2 -3
  105. package/ui/Blocks/CommonGrid/components/GroupRow.js +27 -23
  106. package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +2 -3
  107. package/ui/Blocks/CommonGrid/components/HeadCell.js +36 -28
  108. package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +3 -4
  109. package/ui/Blocks/CommonGrid/components/HeadRow.js +71 -53
  110. package/ui/Blocks/CommonGrid/components/IconList/IconList.d.ts +6 -7
  111. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +62 -30
  112. package/ui/Blocks/CommonGrid/components/IconList/index.d.ts +1 -2
  113. package/ui/Blocks/CommonGrid/components/IconList/index.js +5 -2
  114. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -4
  115. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +54 -25
  116. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +3 -3
  117. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +69 -40
  118. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.d.ts +1 -2
  119. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +5 -2
  120. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +3 -3
  121. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +17 -16
  122. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.d.ts +2 -3
  123. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +9 -10
  124. package/ui/Blocks/CommonGrid/components/MobileFilterModal.d.ts +3 -4
  125. package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +112 -68
  126. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.d.ts +1 -1
  127. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +14 -7
  128. package/ui/Blocks/CommonGrid/components/MobileSortModal.d.ts +2 -3
  129. package/ui/Blocks/CommonGrid/components/MobileSortModal.js +68 -32
  130. package/ui/Blocks/CommonGrid/components/OversizedScroll.d.ts +2 -3
  131. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +35 -18
  132. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.d.ts +1 -1
  133. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +19 -7
  134. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +2 -3
  135. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +91 -31
  136. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.d.ts +1 -2
  137. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +30 -20
  138. package/ui/Blocks/CommonGrid/components/QuickFilter/index.d.ts +1 -2
  139. package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +5 -2
  140. package/ui/Blocks/CommonGrid/components/Resize.d.ts +1 -2
  141. package/ui/Blocks/CommonGrid/components/Resize.js +47 -32
  142. package/ui/Blocks/CommonGrid/components/Table.d.ts +36 -36
  143. package/ui/Blocks/CommonGrid/components/Table.js +41 -15
  144. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.d.ts +2 -3
  145. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +64 -40
  146. package/ui/Blocks/CommonGrid/components/TablePagination/index.d.ts +1 -2
  147. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +5 -2
  148. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.d.ts +2 -3
  149. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +18 -17
  150. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.d.ts +2 -3
  151. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +12 -15
  152. package/ui/Blocks/CommonGrid/components/gridCells/Date.d.ts +2 -3
  153. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +10 -7
  154. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.d.ts +2 -3
  155. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +12 -12
  156. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.d.ts +2 -3
  157. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +29 -32
  158. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.d.ts +2 -3
  159. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +50 -16
  160. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.d.ts +1 -2
  161. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +33 -8
  162. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.d.ts +2 -3
  163. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +30 -22
  164. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.d.ts +1 -1
  165. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +9 -8
  166. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.d.ts +4 -5
  167. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +40 -22
  168. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.d.ts +2 -3
  169. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +78 -54
  170. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.d.ts +2 -3
  171. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +9 -6
  172. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.d.ts +2 -3
  173. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +11 -15
  174. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.d.ts +2 -3
  175. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +32 -31
  176. package/ui/Blocks/CommonGrid/components/gridCells/index.js +15 -14
  177. package/ui/Blocks/CommonGrid/components/icons/Edit.d.ts +1 -2
  178. package/ui/Blocks/CommonGrid/components/icons/Edit.js +14 -14
  179. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.d.ts +1 -2
  180. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +14 -14
  181. package/ui/Blocks/CommonGrid/components/icons/Sorting.d.ts +1 -2
  182. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +21 -14
  183. package/ui/Blocks/CommonGrid/components/utils.d.ts +0 -1
  184. package/ui/Blocks/CommonGrid/components/utils.js +20 -21
  185. package/ui/Blocks/CommonGrid/hooks/useAddFilter.d.ts +2 -3
  186. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +16 -13
  187. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.d.ts +2 -3
  188. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +86 -82
  189. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +0 -1
  190. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +31 -33
  191. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +0 -1
  192. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +23 -28
  193. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.d.ts +1 -2
  194. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +57 -71
  195. package/ui/Blocks/CommonGrid/hooks/useEvent.d.ts +1 -1
  196. package/ui/Blocks/CommonGrid/hooks/useEvent.js +12 -16
  197. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.d.ts +0 -1
  198. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +15 -12
  199. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.d.ts +1 -2
  200. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +26 -24
  201. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.d.ts +0 -1
  202. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +12 -16
  203. package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +2 -3
  204. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +98 -109
  205. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +2 -3
  206. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +56 -75
  207. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +15 -12
  208. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.d.ts +2 -3
  209. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +77 -82
  210. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.d.ts +2 -3
  211. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +20 -21
  212. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +0 -1
  213. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +20 -28
  214. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.d.ts +2 -3
  215. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +18 -14
  216. package/ui/Blocks/CommonGrid/hooks/useUxReset.d.ts +1 -2
  217. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +13 -14
  218. package/ui/Blocks/CommonGrid/index.d.ts +6 -7
  219. package/ui/Blocks/CommonGrid/index.js +26 -10
  220. package/ui/Blocks/CommonGrid/store/index.d.ts +15 -16
  221. package/ui/Blocks/CommonGrid/store/index.js +288 -260
  222. package/ui/Blocks/CommonGrid/store/migrateState.d.ts +0 -1
  223. package/ui/Blocks/CommonGrid/store/migrateState.js +12 -13
  224. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.d.ts +2 -3
  225. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +18 -12
  226. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.d.ts +2 -3
  227. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +19 -13
  228. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.d.ts +0 -1
  229. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +9 -6
  230. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.d.ts +1 -2
  231. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +122 -125
  232. package/ui/Blocks/CommonGrid/storybook/utils/utils.d.ts +2 -3
  233. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +108 -87
  234. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +13 -13
  235. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +7 -4
  236. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -2
  237. package/ui/Blocks/CommonGrid/styles.d.ts +11 -11
  238. package/ui/Blocks/CommonGrid/styles.js +257 -35
  239. package/ui/Blocks/CommonGrid/types.d.ts +2 -2
  240. package/ui/Blocks/CommonGrid/types.js +22 -13
  241. package/ui/Blocks/CommonGrid/utils/constants.d.ts +1 -1
  242. package/ui/Blocks/CommonGrid/utils/constants.js +33 -10
  243. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.d.ts +1 -2
  244. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +17 -23
  245. package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +9 -9
  246. package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +9 -9
  247. package/ui/Blocks/CommonGrid/utils/index.d.ts +2 -3
  248. package/ui/Blocks/CommonGrid/utils/index.js +69 -96
  249. package/ui/Blocks/CornerDialog/CornerDialog.d.ts +2 -3
  250. package/ui/Blocks/CornerDialog/CornerDialog.js +42 -17
  251. package/ui/Blocks/CornerDialog/index.d.ts +0 -1
  252. package/ui/Blocks/CornerDialog/index.js +5 -2
  253. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.d.ts +1 -2
  254. package/ui/Blocks/CornerDialog/styles.d.ts +6 -6
  255. package/ui/Blocks/CornerDialog/styles.js +57 -21
  256. package/ui/Blocks/CornerDialog/types.d.ts +1 -2
  257. package/ui/Blocks/CornerDialog/utils.d.ts +0 -1
  258. package/ui/Blocks/CornerDialog/utils.js +29 -10
  259. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.d.ts +2 -3
  260. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +15 -6
  261. package/ui/Blocks/Header/components/MenuItems/index.d.ts +2 -3
  262. package/ui/Blocks/Header/components/MenuItems/index.js +8 -6
  263. package/ui/Blocks/Header/components/MenuItems/styles.d.ts +3 -3
  264. package/ui/Blocks/Header/components/MenuItems/styles.js +22 -11
  265. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.d.ts +1 -2
  266. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +22 -7
  267. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.d.ts +2 -2
  268. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +14 -8
  269. package/ui/Blocks/Header/components/UserMenu/hooks/index.js +2 -1
  270. package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +9 -9
  271. package/ui/Blocks/Header/components/UserMenu/index.d.ts +2 -3
  272. package/ui/Blocks/Header/components/UserMenu/index.js +48 -17
  273. package/ui/Blocks/Header/components/UserMenu/styles.d.ts +3 -3
  274. package/ui/Blocks/Header/components/UserMenu/styles.js +25 -9
  275. package/ui/Blocks/Header/hooks/useChangeLanguage.js +8 -8
  276. package/ui/Blocks/Header/index.d.ts +5 -6
  277. package/ui/Blocks/Header/index.js +44 -14
  278. package/ui/Blocks/Header/stories/Header.stories.d.ts +17 -18
  279. package/ui/Blocks/Header/styles.d.ts +4 -4
  280. package/ui/Blocks/Header/styles.js +34 -11
  281. package/ui/Blocks/Header/utils/constants.js +4 -1
  282. package/ui/Blocks/Header/utils/languageItems.d.ts +1 -2
  283. package/ui/Blocks/Header/utils/languageItems.js +15 -15
  284. package/ui/Blocks/HidePrint/HidePrint.d.ts +1 -2
  285. package/ui/Blocks/HidePrint/HidePrint.js +13 -13
  286. package/ui/Blocks/ImageList/ImageList.d.ts +2 -3
  287. package/ui/Blocks/ImageList/ImageList.js +79 -33
  288. package/ui/Blocks/ImageList/components/AddPhoto/index.d.ts +2 -3
  289. package/ui/Blocks/ImageList/components/AddPhoto/index.js +35 -67
  290. package/ui/Blocks/ImageList/components/AddPhoto/styles.d.ts +4 -4
  291. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +30 -14
  292. package/ui/Blocks/ImageList/components/CloseButton/index.d.ts +1 -2
  293. package/ui/Blocks/ImageList/components/CloseButton/index.js +17 -6
  294. package/ui/Blocks/ImageList/components/CloseButton/styles.d.ts +2 -2
  295. package/ui/Blocks/ImageList/components/CloseButton/styles.js +18 -10
  296. package/ui/Blocks/ImageList/components/ImageElement/index.d.ts +1 -2
  297. package/ui/Blocks/ImageList/components/ImageElement/index.js +28 -9
  298. package/ui/Blocks/ImageList/components/ImageElement/styles.d.ts +4 -4
  299. package/ui/Blocks/ImageList/components/ImageElement/styles.js +22 -25
  300. package/ui/Blocks/ImageList/components/ImageTag/index.d.ts +1 -2
  301. package/ui/Blocks/ImageList/components/ImageTag/index.js +14 -8
  302. package/ui/Blocks/ImageList/components/ImageTag/styles.d.ts +1 -1
  303. package/ui/Blocks/ImageList/components/ImageTag/styles.js +9 -7
  304. package/ui/Blocks/ImageList/hooks/useControls.js +13 -14
  305. package/ui/Blocks/ImageList/hooks/useOnElementClick.d.ts +1 -2
  306. package/ui/Blocks/ImageList/hooks/useOnElementClick.js +14 -19
  307. package/ui/Blocks/ImageList/index.d.ts +1 -2
  308. package/ui/Blocks/ImageList/index.js +5 -2
  309. package/ui/Blocks/ImageList/stories/ImageList.stories.d.ts +1 -2
  310. package/ui/Blocks/ImageList/styles.d.ts +4 -4
  311. package/ui/Blocks/ImageList/styles.js +29 -20
  312. package/ui/Blocks/ImageList/types.d.ts +1 -2
  313. package/ui/Blocks/LanguageSwitch/LanguageSwitch.d.ts +2 -3
  314. package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +51 -38
  315. package/ui/Blocks/LanguageSwitch/index.d.ts +1 -2
  316. package/ui/Blocks/LanguageSwitch/index.js +5 -2
  317. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.d.ts +1 -2
  318. package/ui/Blocks/LanguageSwitch/styles.d.ts +5 -5
  319. package/ui/Blocks/LanguageSwitch/styles.js +32 -15
  320. package/ui/Blocks/LanguageSwitch/types.d.ts +0 -1
  321. package/ui/Blocks/LightBox/LightBox.d.ts +2 -3
  322. package/ui/Blocks/LightBox/LightBox.js +40 -13
  323. package/ui/Blocks/LightBox/hooks/useLightBox.d.ts +1 -2
  324. package/ui/Blocks/LightBox/hooks/useLightBox.js +16 -16
  325. package/ui/Blocks/LightBox/index.d.ts +0 -1
  326. package/ui/Blocks/LightBox/index.js +6 -3
  327. package/ui/Blocks/LightBox/stories/LightBox.stories.d.ts +1 -2
  328. package/ui/Blocks/LightBox/styles.d.ts +4 -4
  329. package/ui/Blocks/LightBox/styles.js +28 -10
  330. package/ui/Blocks/LoginPage/LoginPage.d.ts +2 -3
  331. package/ui/Blocks/LoginPage/LoginPage.js +62 -14
  332. package/ui/Blocks/LoginPage/components/LoginForm.d.ts +0 -1
  333. package/ui/Blocks/LoginPage/components/LoginForm.js +169 -62
  334. package/ui/Blocks/LoginPage/components/SocialLinks.d.ts +4 -5
  335. package/ui/Blocks/LoginPage/components/SocialLinks.js +81 -16
  336. package/ui/Blocks/LoginPage/index.d.ts +1 -2
  337. package/ui/Blocks/LoginPage/index.js +5 -2
  338. package/ui/Blocks/LoginPage/styles.d.ts +9 -9
  339. package/ui/Blocks/LoginPage/styles.js +75 -21
  340. package/ui/Blocks/LoginPage/types.d.ts +4 -5
  341. package/ui/Blocks/LoginPage/utils/links.js +10 -7
  342. package/ui/Blocks/Modal/Modal.d.ts +2 -3
  343. package/ui/Blocks/Modal/Modal.js +124 -35
  344. package/ui/Blocks/Modal/hooks/useClickOutside.d.ts +2 -3
  345. package/ui/Blocks/Modal/hooks/useClickOutside.js +27 -29
  346. package/ui/Blocks/Modal/hooks/useModal.d.ts +0 -1
  347. package/ui/Blocks/Modal/hooks/useModal.js +19 -14
  348. package/ui/Blocks/Modal/index.d.ts +0 -1
  349. package/ui/Blocks/Modal/index.js +7 -4
  350. package/ui/Blocks/Modal/stories/Modal.stories.d.ts +1 -2
  351. package/ui/Blocks/Modal/styles.d.ts +16 -17
  352. package/ui/Blocks/Modal/styles.js +183 -82
  353. package/ui/Blocks/Modal/types.d.ts +1 -2
  354. package/ui/Blocks/Modal/utils.d.ts +0 -1
  355. package/ui/Blocks/Modal/utils.js +9 -6
  356. package/ui/Blocks/Popover/index.d.ts +3 -4
  357. package/ui/Blocks/Popover/index.js +31 -20
  358. package/ui/Blocks/Scheduler/Scheduler.d.ts +2 -3
  359. package/ui/Blocks/Scheduler/Scheduler.js +43 -26
  360. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.d.ts +2 -3
  361. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +37 -45
  362. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.d.ts +3 -3
  363. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +35 -16
  364. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +16 -16
  365. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.d.ts +1 -2
  366. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +13 -8
  367. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.d.ts +3 -3
  368. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +30 -13
  369. package/ui/Blocks/Scheduler/components/DateChanger/index.d.ts +2 -3
  370. package/ui/Blocks/Scheduler/components/DateChanger/index.js +49 -18
  371. package/ui/Blocks/Scheduler/components/DateChanger/styles.d.ts +2 -2
  372. package/ui/Blocks/Scheduler/components/DateChanger/styles.js +23 -11
  373. package/ui/Blocks/Scheduler/components/Groups/index.d.ts +2 -3
  374. package/ui/Blocks/Scheduler/components/Groups/index.js +10 -5
  375. package/ui/Blocks/Scheduler/components/Groups/styles.d.ts +4 -4
  376. package/ui/Blocks/Scheduler/components/Groups/styles.js +32 -13
  377. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.d.ts +1 -2
  378. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +45 -46
  379. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.d.ts +0 -1
  380. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +15 -15
  381. package/ui/Blocks/Scheduler/components/TimeSlots/index.d.ts +2 -3
  382. package/ui/Blocks/Scheduler/components/TimeSlots/index.js +47 -20
  383. package/ui/Blocks/Scheduler/components/TimeSlots/styles.d.ts +5 -5
  384. package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +52 -23
  385. package/ui/Blocks/Scheduler/hooks/useChangeDate.d.ts +2 -3
  386. package/ui/Blocks/Scheduler/hooks/useChangeDate.js +34 -33
  387. package/ui/Blocks/Scheduler/index.js +2 -1
  388. package/ui/Blocks/Scheduler/stories/Scheduler.stories.d.ts +1 -2
  389. package/ui/Blocks/Scheduler/styles.d.ts +2 -2
  390. package/ui/Blocks/Scheduler/styles.js +23 -8
  391. package/ui/Blocks/Scheduler/types.d.ts +1 -2
  392. package/ui/Blocks/Scheduler/utils/constants.js +9 -6
  393. package/ui/Blocks/Scheduler/utils/convertDateToTime.js +5 -4
  394. package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +10 -7
  395. package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +9 -10
  396. package/ui/Blocks/Scheduler/utils/formatDate.js +8 -4
  397. package/ui/Blocks/Scheduler/utils/generateTimeArray.js +18 -15
  398. package/ui/Blocks/Scheduler/utils/getClosestStep.js +11 -8
  399. package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +6 -3
  400. package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +6 -3
  401. package/ui/Blocks/Scheduler/utils/isActiveTime.d.ts +0 -1
  402. package/ui/Blocks/Scheduler/utils/isActiveTime.js +10 -9
  403. package/ui/Blocks/Scheduler/utils/isToday.js +6 -3
  404. package/ui/Blocks/SideMenu/MenuItem.d.ts +2 -3
  405. package/ui/Blocks/SideMenu/MenuItem.js +102 -53
  406. package/ui/Blocks/SideMenu/SideMenu.d.ts +2 -3
  407. package/ui/Blocks/SideMenu/SideMenu.js +36 -26
  408. package/ui/Blocks/SideMenu/components/Footer.d.ts +4 -5
  409. package/ui/Blocks/SideMenu/components/Footer.js +63 -27
  410. package/ui/Blocks/SideMenu/components/HamburgerMenu.js +51 -22
  411. package/ui/Blocks/SideMenu/components/SubitemTooltip.d.ts +2 -3
  412. package/ui/Blocks/SideMenu/components/SubitemTooltip.js +51 -40
  413. package/ui/Blocks/SideMenu/context/LeftMenuContext.d.ts +1 -2
  414. package/ui/Blocks/SideMenu/context/LeftMenuContext.js +19 -14
  415. package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +9 -7
  416. package/ui/Blocks/SideMenu/hooks/useOutsideHover.d.ts +0 -1
  417. package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +24 -22
  418. package/ui/Blocks/SideMenu/index.d.ts +1 -2
  419. package/ui/Blocks/SideMenu/index.js +7 -5
  420. package/ui/Blocks/SideMenu/stories/SideMenu.stories.d.ts +1 -2
  421. package/ui/Blocks/SideMenu/stories/menuItems.js +108 -101
  422. package/ui/Blocks/SideMenu/styles.d.ts +37 -38
  423. package/ui/Blocks/SideMenu/styles.js +310 -162
  424. package/ui/Blocks/SideMenu/types.d.ts +1 -2
  425. package/ui/Blocks/SideMenu/utils/constants.js +5 -2
  426. package/ui/Blocks/Stepper/Stepper.d.ts +2 -3
  427. package/ui/Blocks/Stepper/Stepper.js +33 -20
  428. package/ui/Blocks/Stepper/components/StepCircle/index.d.ts +1 -2
  429. package/ui/Blocks/Stepper/components/StepCircle/index.js +16 -6
  430. package/ui/Blocks/Stepper/components/StepCircle/styles.d.ts +3 -3
  431. package/ui/Blocks/Stepper/components/StepCircle/styles.js +23 -19
  432. package/ui/Blocks/Stepper/components/StepItem/index.d.ts +1 -2
  433. package/ui/Blocks/Stepper/components/StepItem/index.js +51 -12
  434. package/ui/Blocks/Stepper/components/StepItem/styles.d.ts +6 -6
  435. package/ui/Blocks/Stepper/components/StepItem/styles.js +79 -36
  436. package/ui/Blocks/Stepper/hooks/useStepper.js +32 -21
  437. package/ui/Blocks/Stepper/index.js +4 -3
  438. package/ui/Blocks/Stepper/stories/Stepper.stories.d.ts +1 -2
  439. package/ui/Blocks/Stepper/styles.d.ts +2 -2
  440. package/ui/Blocks/Stepper/styles.js +25 -14
  441. package/ui/Blocks/Stepper/types.d.ts +1 -2
  442. package/ui/Blocks/Table/Table.d.ts +0 -1
  443. package/ui/Blocks/Table/Table.js +12 -5
  444. package/ui/Blocks/Table/index.js +2 -1
  445. package/ui/Blocks/Table/stories/Table.stories.d.ts +4 -5
  446. package/ui/Blocks/Tabs/TabContent.d.ts +2 -3
  447. package/ui/Blocks/Tabs/TabContent.js +9 -6
  448. package/ui/Blocks/Tabs/Tabs.d.ts +2 -3
  449. package/ui/Blocks/Tabs/Tabs.js +44 -18
  450. package/ui/Blocks/Tabs/hooks/useTabs.d.ts +0 -1
  451. package/ui/Blocks/Tabs/hooks/useTabs.js +13 -9
  452. package/ui/Blocks/Tabs/index.d.ts +0 -1
  453. package/ui/Blocks/Tabs/index.js +7 -4
  454. package/ui/Blocks/Tabs/stories/Tabs.stories.d.ts +1 -2
  455. package/ui/Blocks/Tabs/styles.d.ts +9 -10
  456. package/ui/Blocks/Tabs/styles.js +95 -36
  457. package/ui/Blocks/Tabs/types.d.ts +1 -2
  458. package/ui/Elements/Alert/Alert.d.ts +0 -1
  459. package/ui/Elements/Alert/Alert.js +72 -28
  460. package/ui/Elements/Alert/index.d.ts +1 -2
  461. package/ui/Elements/Alert/index.js +5 -3
  462. package/ui/Elements/Alert/stories/Alert.stories.d.ts +2 -3
  463. package/ui/Elements/Alert/styles.d.ts +23 -24
  464. package/ui/Elements/Alert/styles.js +82 -32
  465. package/ui/Elements/Alert/types.d.ts +1 -2
  466. package/ui/Elements/AsyncSelect/AsyncSelect.d.ts +4 -5
  467. package/ui/Elements/AsyncSelect/AsyncSelect.js +34 -33
  468. package/ui/Elements/AsyncSelect/index.d.ts +1 -2
  469. package/ui/Elements/AsyncSelect/index.js +5 -2
  470. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.d.ts +1 -2
  471. package/ui/Elements/Avatar/Avatar.d.ts +2 -3
  472. package/ui/Elements/Avatar/Avatar.js +37 -35
  473. package/ui/Elements/Avatar/index.d.ts +0 -1
  474. package/ui/Elements/Avatar/index.js +5 -3
  475. package/ui/Elements/Avatar/stories/Avatar.stories.d.ts +2 -3
  476. package/ui/Elements/Badge/Badge.d.ts +1 -2
  477. package/ui/Elements/Badge/Badge.js +51 -44
  478. package/ui/Elements/Badge/index.d.ts +1 -2
  479. package/ui/Elements/Badge/index.js +5 -3
  480. package/ui/Elements/Badge/stories/Badge.stories.d.ts +2 -3
  481. package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +0 -1
  482. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +21 -6
  483. package/ui/Elements/BarChartSymbol/index.js +2 -1
  484. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +2 -3
  485. package/ui/Elements/BarChartSymbol/styles.d.ts +3 -3
  486. package/ui/Elements/BarChartSymbol/styles.js +10 -16
  487. package/ui/Elements/BorderedBox/BorderedBox.d.ts +2 -3
  488. package/ui/Elements/BorderedBox/BorderedBox.js +21 -35
  489. package/ui/Elements/BorderedBox/index.d.ts +1 -2
  490. package/ui/Elements/BorderedBox/index.js +5 -3
  491. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.d.ts +2 -3
  492. package/ui/Elements/BorderedBox/types.d.ts +0 -1
  493. package/ui/Elements/Button/Button.d.ts +2 -3
  494. package/ui/Elements/Button/Button.js +44 -30
  495. package/ui/Elements/Button/index.d.ts +1 -2
  496. package/ui/Elements/Button/index.js +5 -3
  497. package/ui/Elements/Button/stories/Button.stories.d.ts +2 -3
  498. package/ui/Elements/Button/styles.d.ts +9 -10
  499. package/ui/Elements/Button/styles.js +227 -44
  500. package/ui/Elements/Button/types.d.ts +1 -2
  501. package/ui/Elements/Card/Card.d.ts +0 -1
  502. package/ui/Elements/Card/Card.js +14 -6
  503. package/ui/Elements/Card/index.d.ts +1 -2
  504. package/ui/Elements/Card/index.js +5 -2
  505. package/ui/Elements/Card/stories/Card.stories.d.ts +2 -3
  506. package/ui/Elements/Card/styles.d.ts +3 -4
  507. package/ui/Elements/Card/styles.js +22 -20
  508. package/ui/Elements/Card/types.d.ts +0 -1
  509. package/ui/Elements/CheckedCircle/index.d.ts +1 -2
  510. package/ui/Elements/CheckedCircle/index.js +14 -6
  511. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +4 -5
  512. package/ui/Elements/CheckedCircle/styles.d.ts +1 -1
  513. package/ui/Elements/CheckedCircle/styles.js +15 -13
  514. package/ui/Elements/DatePicker/DatePicker.d.ts +8 -4
  515. package/ui/Elements/DatePicker/DatePicker.js +88 -65
  516. package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +3 -4
  517. package/ui/Elements/DatePicker/Datetime/DateTime.js +426 -521
  518. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.d.ts +2 -3
  519. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +66 -30
  520. package/ui/Elements/DatePicker/Datetime/components/FooterRow.d.ts +2 -2
  521. package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +12 -10
  522. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.d.ts +1 -1
  523. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +16 -7
  524. package/ui/Elements/DatePicker/Datetime/components/TimeInput.d.ts +1 -1
  525. package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +16 -7
  526. package/ui/Elements/DatePicker/Datetime/components/Timepicker.d.ts +1 -2
  527. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +167 -66
  528. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +30 -15
  529. package/ui/Elements/DatePicker/Datetime/types.d.ts +2 -3
  530. package/ui/Elements/DatePicker/Datetime/types.js +14 -11
  531. package/ui/Elements/DatePicker/Datetime/views/DaysView.d.ts +1 -2
  532. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +134 -145
  533. package/ui/Elements/DatePicker/Datetime/views/MonthsView.d.ts +1 -2
  534. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +72 -106
  535. package/ui/Elements/DatePicker/Datetime/views/YearsView.d.ts +1 -2
  536. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +83 -114
  537. package/ui/Elements/DatePicker/index.d.ts +1 -2
  538. package/ui/Elements/DatePicker/index.js +6 -3
  539. package/ui/Elements/DatePicker/styles.d.ts +1 -2
  540. package/ui/Elements/DatePicker/styles.js +234 -8
  541. package/ui/Elements/DatePicker/utils/constants.d.ts +0 -1
  542. package/ui/Elements/DatePicker/utils/constants.js +29 -12
  543. package/ui/Elements/Dropdown/Dropdown.d.ts +2 -3
  544. package/ui/Elements/Dropdown/Dropdown.js +54 -25
  545. package/ui/Elements/Dropdown/index.d.ts +1 -2
  546. package/ui/Elements/Dropdown/index.js +5 -3
  547. package/ui/Elements/Dropdown/stories/Dropdown.stories.d.ts +2 -3
  548. package/ui/Elements/Dropdown/types.d.ts +0 -1
  549. package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +2 -3
  550. package/ui/Elements/DropdownMenu/DropdownMenu.js +34 -35
  551. package/ui/Elements/DropdownMenu/components/DefaultItem.d.ts +2 -3
  552. package/ui/Elements/DropdownMenu/components/DefaultItem.js +31 -15
  553. package/ui/Elements/DropdownMenu/components/MenuItem.d.ts +2 -3
  554. package/ui/Elements/DropdownMenu/components/MenuItem.js +58 -49
  555. package/ui/Elements/DropdownMenu/components/MenuList.d.ts +2 -3
  556. package/ui/Elements/DropdownMenu/components/MenuList.js +14 -8
  557. package/ui/Elements/DropdownMenu/index.js +2 -1
  558. package/ui/Elements/DropdownMenu/types.d.ts +1 -2
  559. package/ui/Elements/DropdownSelect/DropdownSelect.d.ts +3 -4
  560. package/ui/Elements/DropdownSelect/DropdownSelect.js +127 -50
  561. package/ui/Elements/DropdownSelect/index.d.ts +1 -2
  562. package/ui/Elements/DropdownSelect/index.js +5 -3
  563. package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +2 -3
  564. package/ui/Elements/ErrorMessage/ErrorMessage.js +63 -14
  565. package/ui/Elements/ErrorMessage/index.d.ts +1 -2
  566. package/ui/Elements/ErrorMessage/index.js +5 -3
  567. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.d.ts +2 -3
  568. package/ui/Elements/ErrorMessage/types.d.ts +0 -1
  569. package/ui/Elements/HighlightBox/HighlightBox.d.ts +1 -2
  570. package/ui/Elements/HighlightBox/HighlightBox.js +98 -62
  571. package/ui/Elements/HighlightBox/index.d.ts +1 -2
  572. package/ui/Elements/HighlightBox/index.js +5 -2
  573. package/ui/Elements/Icon/BadgeIcon.d.ts +2 -3
  574. package/ui/Elements/Icon/BadgeIcon.js +27 -47
  575. package/ui/Elements/Icon/Icon.d.ts +4 -5
  576. package/ui/Elements/Icon/Icon.js +280 -279
  577. package/ui/Elements/Icon/icons/Add.d.ts +2 -3
  578. package/ui/Elements/Icon/icons/Add.js +33 -13
  579. package/ui/Elements/Icon/icons/AddPhoto.d.ts +0 -1
  580. package/ui/Elements/Icon/icons/AddPhoto.js +34 -13
  581. package/ui/Elements/Icon/icons/Admin.d.ts +0 -1
  582. package/ui/Elements/Icon/icons/Admin.js +26 -13
  583. package/ui/Elements/Icon/icons/ArrowDown.d.ts +1 -2
  584. package/ui/Elements/Icon/icons/ArrowDown.js +18 -13
  585. package/ui/Elements/Icon/icons/ArrowForward.d.ts +1 -2
  586. package/ui/Elements/Icon/icons/ArrowForward.js +12 -13
  587. package/ui/Elements/Icon/icons/ArrowUp.d.ts +1 -2
  588. package/ui/Elements/Icon/icons/ArrowUp.js +18 -13
  589. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.d.ts +1 -2
  590. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +21 -13
  591. package/ui/Elements/Icon/icons/ArrowsLeftRight.d.ts +1 -2
  592. package/ui/Elements/Icon/icons/ArrowsLeftRight.js +12 -13
  593. package/ui/Elements/Icon/icons/ArrowsUpDown.d.ts +1 -2
  594. package/ui/Elements/Icon/icons/ArrowsUpDown.js +12 -13
  595. package/ui/Elements/Icon/icons/BarcodeScan.d.ts +0 -1
  596. package/ui/Elements/Icon/icons/BarcodeScan.js +13 -13
  597. package/ui/Elements/Icon/icons/Box.d.ts +0 -1
  598. package/ui/Elements/Icon/icons/Box.js +17 -13
  599. package/ui/Elements/Icon/icons/Calendar.d.ts +0 -1
  600. package/ui/Elements/Icon/icons/Calendar.js +39 -13
  601. package/ui/Elements/Icon/icons/Cancel.d.ts +0 -1
  602. package/ui/Elements/Icon/icons/Cancel.js +18 -13
  603. package/ui/Elements/Icon/icons/CheckedBox.d.ts +1 -2
  604. package/ui/Elements/Icon/icons/CheckedBox.js +23 -13
  605. package/ui/Elements/Icon/icons/CircleHalfStroke.d.ts +1 -2
  606. package/ui/Elements/Icon/icons/CircleHalfStroke.js +12 -13
  607. package/ui/Elements/Icon/icons/Company.d.ts +0 -1
  608. package/ui/Elements/Icon/icons/Company.js +82 -13
  609. package/ui/Elements/Icon/icons/Complaint.d.ts +1 -2
  610. package/ui/Elements/Icon/icons/Complaint.js +59 -13
  611. package/ui/Elements/Icon/icons/Consolidation.d.ts +1 -2
  612. package/ui/Elements/Icon/icons/Consolidation.js +13 -13
  613. package/ui/Elements/Icon/icons/Container.d.ts +1 -2
  614. package/ui/Elements/Icon/icons/Container.js +13 -13
  615. package/ui/Elements/Icon/icons/Dashboard.d.ts +1 -2
  616. package/ui/Elements/Icon/icons/Dashboard.js +36 -13
  617. package/ui/Elements/Icon/icons/Desktop.d.ts +1 -2
  618. package/ui/Elements/Icon/icons/Desktop.js +63 -13
  619. package/ui/Elements/Icon/icons/Dispatch.d.ts +1 -2
  620. package/ui/Elements/Icon/icons/Dispatch.js +13 -13
  621. package/ui/Elements/Icon/icons/EmptyRack.d.ts +0 -1
  622. package/ui/Elements/Icon/icons/EmptyRack.js +34 -2
  623. package/ui/Elements/Icon/icons/Expeditions.d.ts +1 -2
  624. package/ui/Elements/Icon/icons/Expeditions.js +62 -13
  625. package/ui/Elements/Icon/icons/Filter.d.ts +2 -3
  626. package/ui/Elements/Icon/icons/Filter.js +17 -13
  627. package/ui/Elements/Icon/icons/FlagCZ.d.ts +1 -2
  628. package/ui/Elements/Icon/icons/FlagCZ.js +55 -13
  629. package/ui/Elements/Icon/icons/FlagEL.d.ts +1 -2
  630. package/ui/Elements/Icon/icons/FlagEL.js +50 -13
  631. package/ui/Elements/Icon/icons/FlagESP.d.ts +1 -2
  632. package/ui/Elements/Icon/icons/FlagESP.js +93 -13
  633. package/ui/Elements/Icon/icons/FlagHU.d.ts +2 -3
  634. package/ui/Elements/Icon/icons/FlagHU.js +27 -13
  635. package/ui/Elements/Icon/icons/FlagITA.d.ts +1 -2
  636. package/ui/Elements/Icon/icons/FlagITA.js +55 -13
  637. package/ui/Elements/Icon/icons/FlagNL.d.ts +2 -3
  638. package/ui/Elements/Icon/icons/FlagNL.js +27 -13
  639. package/ui/Elements/Icon/icons/FlagRUS.d.ts +1 -2
  640. package/ui/Elements/Icon/icons/FlagRUS.js +55 -13
  641. package/ui/Elements/Icon/icons/FlagSVK.d.ts +1 -2
  642. package/ui/Elements/Icon/icons/FlagSVK.js +92 -13
  643. package/ui/Elements/Icon/icons/FlagUK.d.ts +1 -2
  644. package/ui/Elements/Icon/icons/FlagUK.js +20 -13
  645. package/ui/Elements/Icon/icons/FlagUSA.d.ts +1 -2
  646. package/ui/Elements/Icon/icons/FlagUSA.js +106 -13
  647. package/ui/Elements/Icon/icons/Foldable.d.ts +2 -3
  648. package/ui/Elements/Icon/icons/Foldable.js +34 -13
  649. package/ui/Elements/Icon/icons/Fragile.d.ts +1 -2
  650. package/ui/Elements/Icon/icons/Fragile.js +42 -13
  651. package/ui/Elements/Icon/icons/Gift.d.ts +1 -2
  652. package/ui/Elements/Icon/icons/Gift.js +41 -13
  653. package/ui/Elements/Icon/icons/Group.d.ts +0 -1
  654. package/ui/Elements/Icon/icons/Group.js +17 -13
  655. package/ui/Elements/Icon/icons/HamburgerMenu.d.ts +1 -2
  656. package/ui/Elements/Icon/icons/HamburgerMenu.js +41 -13
  657. package/ui/Elements/Icon/icons/HelpCircle1.d.ts +1 -2
  658. package/ui/Elements/Icon/icons/HelpCircle1.js +32 -13
  659. package/ui/Elements/Icon/icons/HorizontalLines.d.ts +0 -1
  660. package/ui/Elements/Icon/icons/HorizontalLines.js +36 -13
  661. package/ui/Elements/Icon/icons/ImagePlaceholder.d.ts +0 -1
  662. package/ui/Elements/Icon/icons/ImagePlaceholder.js +17 -13
  663. package/ui/Elements/Icon/icons/Income.d.ts +1 -2
  664. package/ui/Elements/Icon/icons/Income.js +22 -13
  665. package/ui/Elements/Icon/icons/Info.d.ts +1 -2
  666. package/ui/Elements/Icon/icons/Info.js +33 -13
  667. package/ui/Elements/Icon/icons/Integrations.d.ts +0 -1
  668. package/ui/Elements/Icon/icons/Integrations.js +17 -13
  669. package/ui/Elements/Icon/icons/Inventory.d.ts +1 -2
  670. package/ui/Elements/Icon/icons/Inventory.js +45 -13
  671. package/ui/Elements/Icon/icons/Inventory2.d.ts +1 -2
  672. package/ui/Elements/Icon/icons/Inventory2.js +66 -13
  673. package/ui/Elements/Icon/icons/Layout.d.ts +2 -3
  674. package/ui/Elements/Icon/icons/Layout.js +43 -14
  675. package/ui/Elements/Icon/icons/Link.d.ts +0 -1
  676. package/ui/Elements/Icon/icons/Link.js +20 -13
  677. package/ui/Elements/Icon/icons/Liquid.d.ts +2 -3
  678. package/ui/Elements/Icon/icons/Liquid.js +22 -13
  679. package/ui/Elements/Icon/icons/Location.d.ts +1 -2
  680. package/ui/Elements/Icon/icons/Location.js +13 -13
  681. package/ui/Elements/Icon/icons/Logout1.d.ts +1 -2
  682. package/ui/Elements/Icon/icons/Logout1.js +32 -13
  683. package/ui/Elements/Icon/icons/MachinePackingForbidden.d.ts +2 -3
  684. package/ui/Elements/Icon/icons/MachinePackingForbidden.js +70 -13
  685. package/ui/Elements/Icon/icons/MakePhoto.d.ts +1 -2
  686. package/ui/Elements/Icon/icons/MakePhoto.js +35 -13
  687. package/ui/Elements/Icon/icons/MenuItems.d.ts +1 -2
  688. package/ui/Elements/Icon/icons/MenuItems.js +39 -13
  689. package/ui/Elements/Icon/icons/Message.d.ts +1 -2
  690. package/ui/Elements/Icon/icons/Message.js +38 -13
  691. package/ui/Elements/Icon/icons/MobileCancel.d.ts +1 -2
  692. package/ui/Elements/Icon/icons/MobileCancel.js +22 -13
  693. package/ui/Elements/Icon/icons/MobilePhone.d.ts +2 -3
  694. package/ui/Elements/Icon/icons/MobilePhone.js +47 -13
  695. package/ui/Elements/Icon/icons/Moon.d.ts +1 -2
  696. package/ui/Elements/Icon/icons/Moon.js +12 -13
  697. package/ui/Elements/Icon/icons/Notification2.d.ts +1 -2
  698. package/ui/Elements/Icon/icons/Notification2.js +25 -13
  699. package/ui/Elements/Icon/icons/OpenBox.d.ts +0 -1
  700. package/ui/Elements/Icon/icons/OpenBox.js +37 -13
  701. package/ui/Elements/Icon/icons/Pallet.d.ts +1 -2
  702. package/ui/Elements/Icon/icons/Pallet.js +36 -13
  703. package/ui/Elements/Icon/icons/Plus1.d.ts +1 -2
  704. package/ui/Elements/Icon/icons/Plus1.js +17 -13
  705. package/ui/Elements/Icon/icons/Print.d.ts +1 -2
  706. package/ui/Elements/Icon/icons/Print.js +41 -13
  707. package/ui/Elements/Icon/icons/Product.d.ts +0 -1
  708. package/ui/Elements/Icon/icons/Product.js +17 -13
  709. package/ui/Elements/Icon/icons/Products.d.ts +1 -2
  710. package/ui/Elements/Icon/icons/Products.js +16 -13
  711. package/ui/Elements/Icon/icons/Profile.d.ts +1 -2
  712. package/ui/Elements/Icon/icons/Profile.js +25 -13
  713. package/ui/Elements/Icon/icons/Puzzle1.d.ts +1 -2
  714. package/ui/Elements/Icon/icons/Puzzle1.js +18 -13
  715. package/ui/Elements/Icon/icons/QRCode.d.ts +1 -2
  716. package/ui/Elements/Icon/icons/QRCode.js +19 -13
  717. package/ui/Elements/Icon/icons/Rack.d.ts +0 -1
  718. package/ui/Elements/Icon/icons/Rack.js +65 -13
  719. package/ui/Elements/Icon/icons/Reload.d.ts +2 -3
  720. package/ui/Elements/Icon/icons/Reload.js +13 -13
  721. package/ui/Elements/Icon/icons/Return.d.ts +1 -2
  722. package/ui/Elements/Icon/icons/Return.js +19 -13
  723. package/ui/Elements/Icon/icons/Rows.d.ts +0 -1
  724. package/ui/Elements/Icon/icons/Rows.js +39 -13
  725. package/ui/Elements/Icon/icons/Settings2.d.ts +1 -2
  726. package/ui/Elements/Icon/icons/Settings2.js +33 -13
  727. package/ui/Elements/Icon/icons/ShieldUser.d.ts +2 -3
  728. package/ui/Elements/Icon/icons/ShieldUser.js +9 -13
  729. package/ui/Elements/Icon/icons/ShoppingBag.d.ts +1 -2
  730. package/ui/Elements/Icon/icons/ShoppingBag.js +18 -13
  731. package/ui/Elements/Icon/icons/Sort.d.ts +2 -3
  732. package/ui/Elements/Icon/icons/Sort.js +23 -13
  733. package/ui/Elements/Icon/icons/Sun.d.ts +1 -2
  734. package/ui/Elements/Icon/icons/Sun.js +12 -13
  735. package/ui/Elements/Icon/icons/ThreeDots.d.ts +0 -1
  736. package/ui/Elements/Icon/icons/ThreeDots.js +39 -13
  737. package/ui/Elements/Icon/icons/ToastError.d.ts +0 -1
  738. package/ui/Elements/Icon/icons/ToastError.js +27 -13
  739. package/ui/Elements/Icon/icons/ToastSuccess.d.ts +0 -1
  740. package/ui/Elements/Icon/icons/ToastSuccess.js +27 -13
  741. package/ui/Elements/Icon/icons/Transfer.d.ts +1 -2
  742. package/ui/Elements/Icon/icons/Transfer.js +21 -13
  743. package/ui/Elements/Icon/icons/TrashBin.d.ts +0 -1
  744. package/ui/Elements/Icon/icons/TrashBin.js +33 -13
  745. package/ui/Elements/Icon/icons/Truck.d.ts +1 -2
  746. package/ui/Elements/Icon/icons/Truck.js +73 -13
  747. package/ui/Elements/Icon/icons/TwoBoxes.d.ts +1 -2
  748. package/ui/Elements/Icon/icons/TwoBoxes.js +20 -13
  749. package/ui/Elements/Icon/icons/TwoCheckedBoxes.d.ts +1 -2
  750. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +29 -2
  751. package/ui/Elements/Icon/icons/TwoUsers.d.ts +1 -2
  752. package/ui/Elements/Icon/icons/TwoUsers.js +42 -13
  753. package/ui/Elements/Icon/icons/UserCowboy.d.ts +2 -3
  754. package/ui/Elements/Icon/icons/UserCowboy.js +9 -13
  755. package/ui/Elements/Icon/icons/Valuable.d.ts +2 -3
  756. package/ui/Elements/Icon/icons/Valuable.js +34 -13
  757. package/ui/Elements/Icon/icons/Weight.d.ts +1 -2
  758. package/ui/Elements/Icon/icons/Weight.js +12 -13
  759. package/ui/Elements/Icon/icons/index.js +188 -91
  760. package/ui/Elements/Icon/index.d.ts +1 -2
  761. package/ui/Elements/Icon/index.js +97 -5
  762. package/ui/Elements/Icon/stories/BadgeIcon.stories.d.ts +5 -6
  763. package/ui/Elements/Icon/stories/Icon.stories.d.ts +2 -3
  764. package/ui/Elements/Icon/types.d.ts +1 -2
  765. package/ui/Elements/Image/Image.d.ts +2 -3
  766. package/ui/Elements/Image/Image.js +15 -37
  767. package/ui/Elements/Image/index.d.ts +1 -2
  768. package/ui/Elements/Image/index.js +5 -3
  769. package/ui/Elements/Image/stories/Image.stories.d.ts +2 -3
  770. package/ui/Elements/Image/types.d.ts +1 -2
  771. package/ui/Elements/Label/Label.d.ts +3 -3
  772. package/ui/Elements/Label/Label.js +23 -14
  773. package/ui/Elements/Label/index.d.ts +0 -1
  774. package/ui/Elements/Label/index.js +5 -3
  775. package/ui/Elements/Label/stories/Label.stories.d.ts +3 -4
  776. package/ui/Elements/Line/Line.d.ts +0 -1
  777. package/ui/Elements/Line/Line.js +21 -23
  778. package/ui/Elements/Line/index.d.ts +1 -2
  779. package/ui/Elements/Line/index.js +5 -3
  780. package/ui/Elements/Line/stories/Line.stories.d.ts +2 -3
  781. package/ui/Elements/Line/types.d.ts +1 -2
  782. package/ui/Elements/Link/Link.d.ts +1 -2
  783. package/ui/Elements/Link/Link.js +43 -47
  784. package/ui/Elements/Link/index.d.ts +1 -2
  785. package/ui/Elements/Link/index.js +5 -3
  786. package/ui/Elements/Link/stories/Link.stories.d.ts +14 -15
  787. package/ui/Elements/Logo/Logo.d.ts +2 -3
  788. package/ui/Elements/Logo/Logo.js +66 -91
  789. package/ui/Elements/Logo/index.d.ts +1 -2
  790. package/ui/Elements/Logo/index.js +5 -3
  791. package/ui/Elements/Logo/stories/Logo.stories.d.ts +2 -3
  792. package/ui/Elements/Pagination/Pagination.d.ts +1 -2
  793. package/ui/Elements/Pagination/Pagination.js +62 -38
  794. package/ui/Elements/Pagination/index.d.ts +1 -2
  795. package/ui/Elements/Pagination/index.js +5 -3
  796. package/ui/Elements/Pagination/stories/Pagination.stories.d.ts +2 -3
  797. package/ui/Elements/Pagination/styled.d.ts +6 -7
  798. package/ui/Elements/Pagination/styled.js +64 -26
  799. package/ui/Elements/Portal/index.d.ts +1 -2
  800. package/ui/Elements/Portal/index.js +22 -23
  801. package/ui/Elements/ProgressBar/ProgressBar.d.ts +1 -2
  802. package/ui/Elements/ProgressBar/ProgressBar.js +16 -8
  803. package/ui/Elements/ProgressBar/index.d.ts +1 -2
  804. package/ui/Elements/ProgressBar/index.js +5 -3
  805. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.d.ts +7 -8
  806. package/ui/Elements/ProgressBar/styles.d.ts +4 -4
  807. package/ui/Elements/ProgressBar/styles.js +72 -19
  808. package/ui/Elements/Select/Select.d.ts +2 -3
  809. package/ui/Elements/Select/Select.js +97 -110
  810. package/ui/Elements/Select/components/ChevronOption.js +30 -22
  811. package/ui/Elements/Select/components/ConnectedMenu.js +25 -26
  812. package/ui/Elements/Select/components/CountMultiValue.d.ts +1 -2
  813. package/ui/Elements/Select/components/CountMultiValue.js +41 -45
  814. package/ui/Elements/Select/components/CustomInput.js +12 -18
  815. package/ui/Elements/Select/components/DropdownIndicator.d.ts +1 -2
  816. package/ui/Elements/Select/components/DropdownIndicator.js +29 -28
  817. package/ui/Elements/Select/components/IconValueContainer.js +32 -45
  818. package/ui/Elements/Select/components/SelectAll.d.ts +2 -2
  819. package/ui/Elements/Select/components/SelectAll.js +89 -58
  820. package/ui/Elements/Select/components/SelectedIndicator.d.ts +1 -1
  821. package/ui/Elements/Select/components/SelectedIndicator.js +7 -8
  822. package/ui/Elements/Select/components/SimplifiedOption.d.ts +1 -2
  823. package/ui/Elements/Select/components/SimplifiedOption.js +16 -10
  824. package/ui/Elements/Select/index.d.ts +1 -2
  825. package/ui/Elements/Select/index.js +5 -2
  826. package/ui/Elements/Select/stories/Select.stories.d.ts +2 -3
  827. package/ui/Elements/Select/styles.d.ts +5 -6
  828. package/ui/Elements/Select/styles.js +19 -12
  829. package/ui/Elements/Select/themes/index.d.ts +3 -4
  830. package/ui/Elements/Select/themes/index.js +40 -41
  831. package/ui/Elements/Select/themes/selectStyles.d.ts +2 -3
  832. package/ui/Elements/Select/themes/selectStyles.js +198 -148
  833. package/ui/Elements/Select/types.d.ts +4 -4
  834. package/ui/Elements/SimpleLink/SimpleLink.d.ts +2 -3
  835. package/ui/Elements/SimpleLink/SimpleLink.js +35 -21
  836. package/ui/Elements/SimpleLink/index.d.ts +1 -2
  837. package/ui/Elements/SimpleLink/index.js +5 -3
  838. package/ui/Elements/SingleSelect/SingleSelect.d.ts +2 -3
  839. package/ui/Elements/SingleSelect/SingleSelect.js +147 -197
  840. package/ui/Elements/SingleSelect/index.d.ts +1 -2
  841. package/ui/Elements/SingleSelect/index.js +5 -2
  842. package/ui/Elements/SpaceAround/SpaceAround.d.ts +2 -3
  843. package/ui/Elements/SpaceAround/SpaceAround.js +32 -52
  844. package/ui/Elements/SpaceAround/index.d.ts +1 -2
  845. package/ui/Elements/SpaceAround/index.js +5 -3
  846. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.d.ts +2 -3
  847. package/ui/Elements/SpaceAround/types.d.ts +1 -1
  848. package/ui/Elements/Spinner/Spinner.d.ts +2 -3
  849. package/ui/Elements/Spinner/Spinner.js +36 -25
  850. package/ui/Elements/Spinner/index.d.ts +1 -2
  851. package/ui/Elements/Spinner/index.js +5 -3
  852. package/ui/Elements/Spinner/stories/Spinner.stories.d.ts +2 -3
  853. package/ui/Elements/Spinner/styles.d.ts +3 -3
  854. package/ui/Elements/Spinner/styles.js +36 -19
  855. package/ui/Elements/Table/Table.d.ts +6 -6
  856. package/ui/Elements/Table/Table.js +45 -12
  857. package/ui/Elements/Table/index.js +2 -1
  858. package/ui/Elements/Table/stories/Table.stories.d.ts +1 -1
  859. package/ui/Elements/Tag/Tag.d.ts +2 -3
  860. package/ui/Elements/Tag/Tag.js +47 -57
  861. package/ui/Elements/Tag/index.d.ts +1 -2
  862. package/ui/Elements/Tag/index.js +6 -3
  863. package/ui/Elements/Tag/palettes.d.ts +1 -2
  864. package/ui/Elements/Tag/palettes.js +50 -14
  865. package/ui/Elements/Tag/stories/Tag.stories.d.ts +2 -3
  866. package/ui/Elements/Tag/stories/components/predefinedTags.js +18 -7
  867. package/ui/Elements/Tag/types.d.ts +0 -1
  868. package/ui/Elements/Text/Text.d.ts +2 -3
  869. package/ui/Elements/Text/Text.js +10 -29
  870. package/ui/Elements/Text/index.d.ts +1 -2
  871. package/ui/Elements/Text/index.js +1 -1
  872. package/ui/Elements/Text/stories/Text.stories.d.ts +2 -3
  873. package/ui/Elements/Text/types.d.ts +0 -1
  874. package/ui/Elements/Toast/Toast.d.ts +1 -2
  875. package/ui/Elements/Toast/Toast.js +35 -20
  876. package/ui/Elements/Toast/constants.d.ts +1 -2
  877. package/ui/Elements/Toast/constants.js +18 -15
  878. package/ui/Elements/Toast/index.d.ts +1 -2
  879. package/ui/Elements/Toast/index.js +5 -3
  880. package/ui/Elements/Toast/stories/Toast.stories.d.ts +2 -3
  881. package/ui/Elements/Toast/styles.d.ts +6 -6
  882. package/ui/Elements/Toast/styles.js +76 -22
  883. package/ui/Elements/Toggle/Toggle.d.ts +2 -3
  884. package/ui/Elements/Toggle/Toggle.js +123 -61
  885. package/ui/Elements/Toggle/index.d.ts +1 -2
  886. package/ui/Elements/Toggle/index.js +5 -3
  887. package/ui/Elements/Toggle/stories/Toggle.stories.d.ts +2 -3
  888. package/ui/Elements/Toggle/types.d.ts +0 -1
  889. package/ui/Elements/Tooltip/Tooltip.d.ts +2 -3
  890. package/ui/Elements/Tooltip/Tooltip.js +50 -24
  891. package/ui/Elements/Tooltip/index.d.ts +1 -2
  892. package/ui/Elements/Tooltip/index.js +5 -3
  893. package/ui/Elements/Tooltip/stories/Tooltip.stories.d.ts +2 -3
  894. package/ui/Elements/Typography/Typography.d.ts +2 -3
  895. package/ui/Elements/Typography/Typography.js +75 -46
  896. package/ui/Elements/Typography/index.d.ts +0 -1
  897. package/ui/Elements/Typography/index.js +5 -3
  898. package/ui/Elements/Typography/stories/Typography.stories.d.ts +1 -2
  899. package/ui/Forms/Checkbox/Checkbox.d.ts +2 -3
  900. package/ui/Forms/Checkbox/Checkbox.js +43 -11
  901. package/ui/Forms/Checkbox/index.d.ts +1 -2
  902. package/ui/Forms/Checkbox/index.js +5 -3
  903. package/ui/Forms/Checkbox/stories/Checkbox.stories.d.ts +1 -2
  904. package/ui/Forms/Checkbox/styles.d.ts +4 -5
  905. package/ui/Forms/Checkbox/styles.js +94 -26
  906. package/ui/Forms/Checkbox/types.d.ts +1 -2
  907. package/ui/Forms/Input/Input.d.ts +2 -3
  908. package/ui/Forms/Input/Input.js +128 -65
  909. package/ui/Forms/Input/index.d.ts +0 -1
  910. package/ui/Forms/Input/index.js +5 -3
  911. package/ui/Forms/Input/stories/Input.stories.d.ts +2 -3
  912. package/ui/Forms/Input/styles.d.ts +12 -12
  913. package/ui/Forms/Input/styles.js +219 -66
  914. package/ui/Forms/Input/types.d.ts +1 -2
  915. package/ui/Forms/RadioButton/RadioButton.d.ts +2 -3
  916. package/ui/Forms/RadioButton/RadioButton.js +23 -31
  917. package/ui/Forms/RadioButton/index.d.ts +1 -2
  918. package/ui/Forms/RadioButton/index.js +5 -3
  919. package/ui/Forms/RadioButton/stories/RadioButton.stories.d.ts +2 -3
  920. package/ui/Forms/RadioButton/styles.d.ts +6 -6
  921. package/ui/Forms/RadioButton/styles.js +86 -15
  922. package/ui/Forms/RadioButton/types.d.ts +0 -1
  923. package/ui/Forms/TextArea/TextArea.d.ts +2 -3
  924. package/ui/Forms/TextArea/TextArea.js +34 -33
  925. package/ui/Forms/TextArea/index.d.ts +1 -2
  926. package/ui/Forms/TextArea/index.js +5 -2
  927. package/ui/Forms/TextArea/styles.d.ts +10 -10
  928. package/ui/Forms/TextArea/styles.js +76 -31
  929. package/ui/System/Fonts/index.js +54 -9
  930. package/ui/ThemeProvider/ThemeProvider.d.ts +3 -4
  931. package/ui/ThemeProvider/ThemeProvider.js +16 -9
  932. package/ui/ThemeProvider/index.d.ts +2 -3
  933. package/ui/ThemeProvider/index.js +6 -5
  934. package/ui/ThemeProvider/themes/dark.js +44 -13
  935. package/ui/ThemeProvider/themes/default.js +202 -171
  936. package/ui/ThemeProvider/themes/index.js +10 -8
  937. package/ui/ThemeProvider/themes/mailwise.js +110 -82
  938. package/ui/ThemeProvider/types.d.ts +1 -2
  939. package/ui/_virtual/_rolldown/runtime.js +13 -0
  940. package/ui/hooks/useToggleAndClose.js +17 -11
  941. package/ui/index.d.ts +47 -48
  942. package/ui/index.js +179 -94
  943. package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +16 -16
  944. package/ui/utils/CreateRgba/createRgba.d.ts +0 -1
  945. package/ui/utils/CreateRgba/createRgba.js +11 -15
  946. package/ui/utils/KeyPress/KeyPress.d.ts +0 -1
  947. package/ui/utils/KeyPress/KeyPress.js +15 -16
  948. package/ui/utils/KeyPress/KeyPress.stories.d.ts +1 -2
  949. package/ui/utils/KeyPress/index.d.ts +1 -2
  950. package/ui/utils/KeyPress/index.js +5 -2
  951. package/ui/utils/LinguiContainer/index.js +12 -7
  952. package/ui/utils/index.d.ts +4 -5
  953. package/ui/utils/index.js +8 -6
  954. package/ui/utils/translations.d.ts +1 -2
  955. package/ui/utils/translations.js +336 -4
  956. package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +0 -103
  957. package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +0 -15
  958. package/ui/Blocks/CommonGrid/storybook/stories/gridStates.stories.js +0 -12
  959. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +0 -12
  960. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +0 -12
  961. package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +0 -15
  962. package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +0 -15
  963. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +0 -25
  964. package/ui/Blocks/CommonGrid/storybook/stories/withQuickFilter.stories.js +0 -18
  965. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +0 -54
  966. package/ui/Blocks/Header/stories/Header.stories.js +0 -44
  967. package/ui/Blocks/ImageList/stories/ImageList.stories.js +0 -63
  968. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.js +0 -31
  969. package/ui/Blocks/LightBox/stories/LightBox.stories.js +0 -21
  970. package/ui/Blocks/LoginPage/stories/LoginPage.stories.js +0 -113
  971. package/ui/Blocks/Modal/stories/Modal.stories.js +0 -168
  972. package/ui/Blocks/Scheduler/stories/Scheduler.stories.js +0 -114
  973. package/ui/Blocks/SideMenu/stories/SideMenu.stories.js +0 -23
  974. package/ui/Blocks/Stepper/stories/Stepper.stories.js +0 -86
  975. package/ui/Blocks/Table/stories/Table.stories.js +0 -20
  976. package/ui/Blocks/Tabs/stories/Tabs.stories.js +0 -44
  977. package/ui/Elements/Alert/stories/Alert.stories.js +0 -73
  978. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.js +0 -89
  979. package/ui/Elements/Avatar/stories/Avatar.stories.js +0 -20
  980. package/ui/Elements/Badge/stories/Badge.stories.js +0 -34
  981. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +0 -26
  982. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +0 -13
  983. package/ui/Elements/Button/stories/Button.stories.js +0 -120
  984. package/ui/Elements/Card/stories/Card.stories.js +0 -34
  985. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.js +0 -27
  986. package/ui/Elements/Dropdown/stories/Dropdown.stories.js +0 -14
  987. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +0 -19
  988. package/ui/Elements/Icon/stories/BadgeIcon.stories.js +0 -18
  989. package/ui/Elements/Icon/stories/Icon.stories.js +0 -48
  990. package/ui/Elements/Image/stories/Image.stories.js +0 -36
  991. package/ui/Elements/Label/stories/Label.stories.js +0 -20
  992. package/ui/Elements/Line/stories/Line.stories.js +0 -41
  993. package/ui/Elements/Link/stories/Link.stories.js +0 -63
  994. package/ui/Elements/Logo/stories/Logo.stories.js +0 -136
  995. package/ui/Elements/Pagination/stories/Pagination.stories.js +0 -48
  996. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +0 -27
  997. package/ui/Elements/Select/stories/Select.stories.js +0 -16
  998. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +0 -22
  999. package/ui/Elements/Spinner/stories/Spinner.stories.js +0 -56
  1000. package/ui/Elements/Table/stories/Table.stories.js +0 -10
  1001. package/ui/Elements/Tag/stories/Tag.stories.js +0 -72
  1002. package/ui/Elements/Text/stories/Text.stories.js +0 -43
  1003. package/ui/Elements/Toast/stories/Toast.stories.js +0 -36
  1004. package/ui/Elements/Toggle/stories/Toggle.stories.js +0 -64
  1005. package/ui/Elements/Tooltip/stories/Tooltip.stories.js +0 -15
  1006. package/ui/Elements/Typography/stories/Typography.stories.js +0 -20
  1007. package/ui/Forms/Checkbox/stories/Checkbox.stories.js +0 -35
  1008. package/ui/Forms/Input/stories/Input.stories.js +0 -77
  1009. package/ui/Forms/RadioButton/stories/RadioButton.stories.js +0 -38
  1010. package/ui/index.es.js +0 -50437
  1011. package/ui/index.umd.js +0 -4325
  1012. package/ui/utils/KeyPress/KeyPress.stories.js +0 -18
@@ -1,13 +1,32 @@
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 HelpCircle1 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: [_jsx("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.09003 9.00002C9.32513 8.33169 9.78918 7.76813 10.4 7.40915C11.0108 7.05018 11.7289 6.91896 12.4272 7.03873C13.1255 7.15851 13.7588 7.52154 14.2151 8.06355C14.6714 8.60555 14.9211 9.29154 14.92 10C14.92 12 11.92 13 11.92 13V14.5", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 17H12.01", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/HelpCircle1.tsx
3
+ const HelpCircle1 = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ fill: "none",
8
+ stroke: "#374151",
9
+ ...props,
10
+ children: [
11
+ /* @__PURE__ */ jsx("path", {
12
+ d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
13
+ strokeWidth: "1.5",
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ d: "M9.09003 9.00002C9.32513 8.33169 9.78918 7.76813 10.4 7.40915C11.0108 7.05018 11.7289 6.91896 12.4272 7.03873C13.1255 7.15851 13.7588 7.52154 14.2151 8.06355C14.6714 8.60555 14.9211 9.29154 14.92 10C14.92 12 11.92 13 11.92 13V14.5",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round"
22
+ }),
23
+ /* @__PURE__ */ jsx("path", {
24
+ d: "M12 17H12.01",
25
+ strokeWidth: "1.5",
26
+ strokeLinecap: "round",
27
+ strokeLinejoin: "round"
28
+ })
29
+ ]
30
+ });
31
+ //#endregion
32
+ export { HelpCircle1 };
@@ -1,4 +1,3 @@
1
1
  import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
-
4
3
  export declare const HorizontalLines: 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 HorizontalLines = function (props) { return (_jsxs("svg", __assign({ width: "42", height: "42", viewBox: "0 0 42 42", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M8.75 14H35", strokeWidth: "2.625", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M8.75 21H35", strokeWidth: "2.625", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M8.75 28H28", strokeWidth: "2.625", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/HorizontalLines.tsx
3
+ const HorizontalLines = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "42",
5
+ height: "42",
6
+ viewBox: "0 0 42 42",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M8.75 14H35",
14
+ strokeWidth: "2.625",
15
+ strokeMiterlimit: "10",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round"
18
+ }),
19
+ /* @__PURE__ */ jsx("path", {
20
+ d: "M8.75 21H35",
21
+ strokeWidth: "2.625",
22
+ strokeMiterlimit: "10",
23
+ strokeLinecap: "round",
24
+ strokeLinejoin: "round"
25
+ }),
26
+ /* @__PURE__ */ jsx("path", {
27
+ d: "M8.75 28H28",
28
+ strokeWidth: "2.625",
29
+ strokeMiterlimit: "10",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round"
32
+ })
33
+ ]
34
+ });
35
+ //#endregion
36
+ export { HorizontalLines };
@@ -1,4 +1,3 @@
1
1
  import { SvgProps } from '../types';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const ImagePlaceholder: 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 ImagePlaceholder = function (props) { return (_jsx("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "#A3B3C1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 0C17.1 0 18 0.9 18 2V16C18 17.1 17.1 18 16 18H2C0.9 18 0 17.1 0 16V2C0 0.9 0.9 0 2 0H16ZM8 13.51L5.5 10.5L2 15H16L11.5 9L8 13.51Z" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/ImagePlaceholder.tsx
3
+ const ImagePlaceholder = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "18",
5
+ height: "18",
6
+ viewBox: "0 0 18 18",
7
+ fill: "#A3B3C1",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M16 0C17.1 0 18 0.9 18 2V16C18 17.1 17.1 18 16 18H2C0.9 18 0 17.1 0 16V2C0 0.9 0.9 0 2 0H16ZM8 13.51L5.5 10.5L2 15H16L11.5 9L8 13.51Z"
14
+ })
15
+ });
16
+ //#endregion
17
+ export { ImagePlaceholder };
@@ -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 Income: FC<SvgProps>;
@@ -1,13 +1,22 @@
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 Income = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsx("path", { d: "M2.75 2.75H4.58333L4.95 4.58333M4.95 4.58333L6.41667 11.9167M4.95 4.58333H7.33333M6.41667 11.9167H15.5833L19.25 4.58333H16.5M6.41667 11.9167L4.31485 14.0185C3.73738 14.596 4.14637 15.5833 4.96303 15.5833H15.5833M15.5833 15.5833C14.5708 15.5833 13.75 16.4041 13.75 17.4167C13.75 18.4292 14.5708 19.25 15.5833 19.25C16.5959 19.25 17.4167 18.4292 17.4167 17.4167C17.4167 16.4041 16.5959 15.5833 15.5833 15.5833ZM8.25 17.4167C8.25 18.4292 7.42919 19.25 6.41667 19.25C5.40414 19.25 4.58333 18.4292 4.58333 17.4167C4.58333 16.4041 5.40414 15.5833 6.41667 15.5833C7.42919 15.5833 8.25 16.4041 8.25 17.4167Z", strokeWidth: "1.35", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.9166 2.75V9.16667M11.9166 9.16667L9.16663 6.41667M11.9166 9.16667L14.6666 6.41667", strokeWidth: "1.35", strokeLinecap: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Income.tsx
3
+ const Income = (props) => /* @__PURE__ */ jsxs("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: "M2.75 2.75H4.58333L4.95 4.58333M4.95 4.58333L6.41667 11.9167M4.95 4.58333H7.33333M6.41667 11.9167H15.5833L19.25 4.58333H16.5M6.41667 11.9167L4.31485 14.0185C3.73738 14.596 4.14637 15.5833 4.96303 15.5833H15.5833M15.5833 15.5833C14.5708 15.5833 13.75 16.4041 13.75 17.4167C13.75 18.4292 14.5708 19.25 15.5833 19.25C16.5959 19.25 17.4167 18.4292 17.4167 17.4167C17.4167 16.4041 16.5959 15.5833 15.5833 15.5833ZM8.25 17.4167C8.25 18.4292 7.42919 19.25 6.41667 19.25C5.40414 19.25 4.58333 18.4292 4.58333 17.4167C4.58333 16.4041 5.40414 15.5833 6.41667 15.5833C7.42919 15.5833 8.25 16.4041 8.25 17.4167Z",
12
+ strokeWidth: "1.35",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ }), /* @__PURE__ */ jsx("path", {
16
+ d: "M11.9166 2.75V9.16667M11.9166 9.16667L9.16663 6.41667M11.9166 9.16667L14.6666 6.41667",
17
+ strokeWidth: "1.35",
18
+ strokeLinecap: "round"
19
+ })]
20
+ });
21
+ //#endregion
22
+ export { Income };
@@ -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 Info: FC<SvgProps>;
@@ -1,13 +1,33 @@
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 Info = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", stroke: "#374151", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 16V12", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 8H12.01", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Info.tsx
3
+ const Info = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ stroke: "#374151",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
14
+ strokeWidth: "1.5",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ d: "M12 16V12",
20
+ strokeWidth: "2",
21
+ strokeLinecap: "round",
22
+ strokeLinejoin: "round"
23
+ }),
24
+ /* @__PURE__ */ jsx("path", {
25
+ d: "M12 8H12.01",
26
+ strokeWidth: "2",
27
+ strokeLinecap: "round",
28
+ strokeLinejoin: "round"
29
+ })
30
+ ]
31
+ });
32
+ //#endregion
33
+ export { Info };
@@ -1,4 +1,3 @@
1
1
  import { SvgProps } from '../types';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const Integrations: 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 Integrations = function (props) { return (_jsx("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: _jsx("path", { d: "M7.33301 2.66683C7.33301 1.93045 7.92994 1.3335 8.66634 1.3335C9.40274 1.3335 9.99967 1.93045 9.99967 2.66683V3.3335C9.99967 3.70168 10.2981 4.00016 10.6663 4.00016H12.6663C13.0345 4.00016 13.333 4.29864 13.333 4.66683V6.66683C13.333 7.03503 13.0345 7.3335 12.6663 7.3335H11.9997C11.2633 7.3335 10.6663 7.93043 10.6663 8.66683C10.6663 9.40323 11.2633 10.0002 11.9997 10.0002H12.6663C13.0345 10.0002 13.333 10.2986 13.333 10.6668V12.6668C13.333 13.035 13.0345 13.3335 12.6663 13.3335H10.6663C10.2981 13.3335 9.99967 13.035 9.99967 12.6668V12.0002C9.99967 11.2638 9.40274 10.6668 8.66634 10.6668C7.92994 10.6668 7.33301 11.2638 7.33301 12.0002V12.6668C7.33301 13.035 7.03454 13.3335 6.66634 13.3335H4.66634C4.29815 13.3335 3.99967 13.035 3.99967 12.6668V10.6668C3.99967 10.2986 3.70119 10.0002 3.33301 10.0002H2.66634C1.92996 10.0002 1.33301 9.40323 1.33301 8.66683C1.33301 7.93043 1.92996 7.3335 2.66634 7.3335H3.33301C3.70119 7.3335 3.99967 7.03503 3.99967 6.66683V4.66683C3.99967 4.29864 4.29815 4.00016 4.66634 4.00016H6.66634C7.03454 4.00016 7.33301 3.70168 7.33301 3.3335V2.66683Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
1
+ import { jsx } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Integrations.tsx
3
+ const Integrations = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "16",
5
+ height: "16",
6
+ viewBox: "0 0 16 16",
7
+ fill: "none",
8
+ ...props,
9
+ children: /* @__PURE__ */ jsx("path", {
10
+ d: "M7.33301 2.66683C7.33301 1.93045 7.92994 1.3335 8.66634 1.3335C9.40274 1.3335 9.99967 1.93045 9.99967 2.66683V3.3335C9.99967 3.70168 10.2981 4.00016 10.6663 4.00016H12.6663C13.0345 4.00016 13.333 4.29864 13.333 4.66683V6.66683C13.333 7.03503 13.0345 7.3335 12.6663 7.3335H11.9997C11.2633 7.3335 10.6663 7.93043 10.6663 8.66683C10.6663 9.40323 11.2633 10.0002 11.9997 10.0002H12.6663C13.0345 10.0002 13.333 10.2986 13.333 10.6668V12.6668C13.333 13.035 13.0345 13.3335 12.6663 13.3335H10.6663C10.2981 13.3335 9.99967 13.035 9.99967 12.6668V12.0002C9.99967 11.2638 9.40274 10.6668 8.66634 10.6668C7.92994 10.6668 7.33301 11.2638 7.33301 12.0002V12.6668C7.33301 13.035 7.03454 13.3335 6.66634 13.3335H4.66634C4.29815 13.3335 3.99967 13.035 3.99967 12.6668V10.6668C3.99967 10.2986 3.70119 10.0002 3.33301 10.0002H2.66634C1.92996 10.0002 1.33301 9.40323 1.33301 8.66683C1.33301 7.93043 1.92996 7.3335 2.66634 7.3335H3.33301C3.70119 7.3335 3.99967 7.03503 3.99967 6.66683V4.66683C3.99967 4.29864 4.29815 4.00016 4.66634 4.00016H6.66634C7.03454 4.00016 7.33301 3.70168 7.33301 3.3335V2.66683Z",
11
+ strokeWidth: "1.5",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ })
15
+ });
16
+ //#endregion
17
+ export { Integrations };
@@ -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 Inventory: FC<SvgProps>;
@@ -1,13 +1,45 @@
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 Inventory = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_7_1616)", children: [_jsx("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53335C3.66675 3.04218 4.87558 1.83334 6.36675 1.83334H12.7404C13.3915 1.83334 14.0207 2.06865 14.512 2.49591L18.3218 5.80872C18.9115 6.32151 19.2501 7.06467 19.2501 7.84615V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.2917 2.29169V6.89169C13.2917 7.38874 13.6947 7.79169 14.1917 7.79169H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M14.6668 11L11.3337 14.8093C10.9751 15.2191 10.3376 15.219 9.97905 14.8093L8.25012 12.8333", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_7_1616", children: _jsx("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Inventory.tsx
3
+ const Inventory = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "22",
5
+ height: "22",
6
+ viewBox: "0 0 22 22",
7
+ fill: "none",
8
+ stroke: "#A3B3C1",
9
+ ...props,
10
+ children: [/* @__PURE__ */ jsxs("g", {
11
+ clipPath: "url(#clip0_7_1616)",
12
+ children: [
13
+ /* @__PURE__ */ jsx("path", {
14
+ d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53335C3.66675 3.04218 4.87558 1.83334 6.36675 1.83334H12.7404C13.3915 1.83334 14.0207 2.06865 14.512 2.49591L18.3218 5.80872C18.9115 6.32151 19.2501 7.06467 19.2501 7.84615V17.4667Z",
15
+ strokeWidth: "1.35",
16
+ strokeMiterlimit: "10",
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round"
19
+ }),
20
+ /* @__PURE__ */ jsx("path", {
21
+ d: "M13.2917 2.29169V6.89169C13.2917 7.38874 13.6947 7.79169 14.1917 7.79169H18.7917",
22
+ strokeWidth: "1.35",
23
+ strokeMiterlimit: "10",
24
+ strokeLinecap: "round",
25
+ strokeLinejoin: "round"
26
+ }),
27
+ /* @__PURE__ */ jsx("path", {
28
+ d: "M14.6668 11L11.3337 14.8093C10.9751 15.2191 10.3376 15.219 9.97905 14.8093L8.25012 12.8333",
29
+ strokeWidth: "1.35",
30
+ strokeMiterlimit: "10",
31
+ strokeLinecap: "round",
32
+ strokeLinejoin: "round"
33
+ })
34
+ ]
35
+ }), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
36
+ id: "clip0_7_1616",
37
+ children: /* @__PURE__ */ jsx("rect", {
38
+ width: "22",
39
+ height: "22",
40
+ fill: "white"
41
+ })
42
+ }) })]
43
+ });
44
+ //#endregion
45
+ export { Inventory };
@@ -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 Inventory2: FC<SvgProps>;
@@ -1,13 +1,66 @@
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 Inventory2 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "black" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_316_2925)", children: [_jsx("path", { d: "M21 19C21 20.6569 19.6569 22 18 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H13.8781C14.6016 2 15.3007 2.26145 15.8466 2.73618L19.9685 6.32047C20.6238 6.89024 21 7.71596 21 8.58428V19Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M14.5 2.5V7.5C14.5 8.05228 14.9477 8.5 15.5 8.5H20.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.5 12.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.5 17.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.5 10.5L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L7.5 11.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.5 15.5L9.70711 17.2929C9.31658 17.6834 8.68342 17.6834 8.29289 17.2929L7.5 16.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_316_2925", children: _jsx("rect", { width: "24", height: "24", fill: "white" }) }) })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Inventory2.tsx
3
+ const Inventory2 = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ fill: "none",
8
+ stroke: "black",
9
+ ...props,
10
+ children: [/* @__PURE__ */ jsxs("g", {
11
+ clipPath: "url(#clip0_316_2925)",
12
+ children: [
13
+ /* @__PURE__ */ jsx("path", {
14
+ d: "M21 19C21 20.6569 19.6569 22 18 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H13.8781C14.6016 2 15.3007 2.26145 15.8466 2.73618L19.9685 6.32047C20.6238 6.89024 21 7.71596 21 8.58428V19Z",
15
+ strokeWidth: "1.5",
16
+ strokeMiterlimit: "10",
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round"
19
+ }),
20
+ /* @__PURE__ */ jsx("path", {
21
+ d: "M14.5 2.5V7.5C14.5 8.05228 14.9477 8.5 15.5 8.5H20.5",
22
+ strokeWidth: "1.5",
23
+ strokeMiterlimit: "10",
24
+ strokeLinecap: "round",
25
+ strokeLinejoin: "round"
26
+ }),
27
+ /* @__PURE__ */ jsx("path", {
28
+ d: "M13.5 12.5H17.5",
29
+ strokeWidth: "1.5",
30
+ strokeMiterlimit: "10",
31
+ strokeLinecap: "round",
32
+ strokeLinejoin: "round"
33
+ }),
34
+ /* @__PURE__ */ jsx("path", {
35
+ d: "M13.5 17.5H17.5",
36
+ strokeWidth: "1.5",
37
+ strokeMiterlimit: "10",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round"
40
+ }),
41
+ /* @__PURE__ */ jsx("path", {
42
+ d: "M11.5 10.5L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L7.5 11.5",
43
+ strokeWidth: "1.5",
44
+ strokeMiterlimit: "10",
45
+ strokeLinecap: "round",
46
+ strokeLinejoin: "round"
47
+ }),
48
+ /* @__PURE__ */ jsx("path", {
49
+ d: "M11.5 15.5L9.70711 17.2929C9.31658 17.6834 8.68342 17.6834 8.29289 17.2929L7.5 16.5",
50
+ strokeWidth: "1.5",
51
+ strokeMiterlimit: "10",
52
+ strokeLinecap: "round",
53
+ strokeLinejoin: "round"
54
+ })
55
+ ]
56
+ }), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
57
+ id: "clip0_316_2925",
58
+ children: /* @__PURE__ */ jsx("rect", {
59
+ width: "24",
60
+ height: "24",
61
+ fill: "white"
62
+ })
63
+ }) })]
64
+ });
65
+ //#endregion
66
+ export { Inventory2 };
@@ -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 Layout: FC<SvgProps>;
@@ -1,15 +1,44 @@
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 Layout = function (props) {
14
- return (_jsxs("svg", __assign({ width: "23", height: "22", viewBox: "0 0 23 22", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M17.9167 2.75H5.08333C4.07081 2.75 3.25 3.0236 3.25 3.36111V7.63889C3.25 7.9764 4.07081 8.25 5.08333 8.25H17.9167C18.9292 8.25 19.75 7.9764 19.75 7.63889V3.36111C19.75 3.0236 18.9292 2.75 17.9167 2.75Z", stroke: props.stroke || 'black', strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M7.83398 18.3333L7.83398 11.9167C7.83398 11.4104 7.60598 11 7.32473 11L3.75991 11C3.47865 11 3.25065 11.4104 3.25065 11.9167L3.25065 18.3333C3.25065 18.8396 3.47865 19.25 3.75991 19.25L7.32472 19.25C7.60598 19.25 7.83398 18.8396 7.83398 18.3333Z", stroke: props.stroke || 'black', strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.334 18.3333L13.334 11.9167C13.334 11.4104 13.1516 11 12.9266 11L10.0747 11C9.84972 11 9.66732 11.4104 9.66732 11.9167L9.66732 18.3333C9.66732 18.8396 9.84972 19.25 10.0747 19.25L12.9266 19.25C13.1516 19.25 13.334 18.8396 13.334 18.3333Z", stroke: props.stroke || 'black', strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M19.75 18.3333L19.75 11.9167C19.75 11.4104 19.522 11 19.2407 11L15.6759 11C15.3947 11 15.1667 11.4104 15.1667 11.9167L15.1667 18.3333C15.1667 18.8396 15.3947 19.25 15.6759 19.25L19.2407 19.25C19.522 19.25 19.75 18.8396 19.75 18.3333Z", stroke: props.stroke || 'black', strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] })));
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Layout.tsx
3
+ const Layout = (props) => {
4
+ return /* @__PURE__ */ jsxs("svg", {
5
+ width: "23",
6
+ height: "22",
7
+ viewBox: "0 0 23 22",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M17.9167 2.75H5.08333C4.07081 2.75 3.25 3.0236 3.25 3.36111V7.63889C3.25 7.9764 4.07081 8.25 5.08333 8.25H17.9167C18.9292 8.25 19.75 7.9764 19.75 7.63889V3.36111C19.75 3.0236 18.9292 2.75 17.9167 2.75Z",
14
+ stroke: props.stroke || "black",
15
+ strokeWidth: "1.5",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round"
18
+ }),
19
+ /* @__PURE__ */ jsx("path", {
20
+ d: "M7.83398 18.3333L7.83398 11.9167C7.83398 11.4104 7.60598 11 7.32473 11L3.75991 11C3.47865 11 3.25065 11.4104 3.25065 11.9167L3.25065 18.3333C3.25065 18.8396 3.47865 19.25 3.75991 19.25L7.32472 19.25C7.60598 19.25 7.83398 18.8396 7.83398 18.3333Z",
21
+ stroke: props.stroke || "black",
22
+ strokeWidth: "1.5",
23
+ strokeLinecap: "round",
24
+ strokeLinejoin: "round"
25
+ }),
26
+ /* @__PURE__ */ jsx("path", {
27
+ d: "M13.334 18.3333L13.334 11.9167C13.334 11.4104 13.1516 11 12.9266 11L10.0747 11C9.84972 11 9.66732 11.4104 9.66732 11.9167L9.66732 18.3333C9.66732 18.8396 9.84972 19.25 10.0747 19.25L12.9266 19.25C13.1516 19.25 13.334 18.8396 13.334 18.3333Z",
28
+ stroke: props.stroke || "black",
29
+ strokeWidth: "1.5",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ d: "M19.75 18.3333L19.75 11.9167C19.75 11.4104 19.522 11 19.2407 11L15.6759 11C15.3947 11 15.1667 11.4104 15.1667 11.9167L15.1667 18.3333C15.1667 18.8396 15.3947 19.25 15.6759 19.25L19.2407 19.25C19.522 19.25 19.75 18.8396 19.75 18.3333Z",
35
+ stroke: props.stroke || "black",
36
+ strokeWidth: "1.5",
37
+ strokeLinecap: "round",
38
+ strokeLinejoin: "round"
39
+ })
40
+ ]
41
+ });
15
42
  };
43
+ //#endregion
44
+ export { Layout };
@@ -1,4 +1,3 @@
1
1
  import { SvgProps } from '../types';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const Link: FC<SvgProps>;
@@ -1,13 +1,20 @@
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 Link = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "13", viewBox: "0 0 18 13", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M6.78947 7.94736H9.10526C11.0237 7.94736 12.5789 6.39215 12.5789 4.47368V4.47368C12.5789 2.55522 11.0237 1 9.10526 1H4.47368C2.55522 1 1 2.55522 1 4.47368V5.05263C1 6.65135 2.29602 7.94736 3.89474 7.94736V7.94736", strokeWidth: "1.5" }), _jsx("path", { d: "M10.842 5.05264H8.52623C6.60777 5.05264 5.05255 6.60786 5.05255 8.52633V8.52633C5.05255 10.4448 6.60777 12 8.52623 12H13.1578C15.0763 12 16.6315 10.4448 16.6315 8.52633V7.94738C16.6315 6.34866 15.3355 5.05264 13.7368 5.05264V5.05264", strokeWidth: "1.5" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Link.tsx
3
+ const Link = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "18",
5
+ height: "13",
6
+ viewBox: "0 0 18 13",
7
+ fill: "none",
8
+ stroke: "#DB2B19",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [/* @__PURE__ */ jsx("path", {
12
+ d: "M6.78947 7.94736H9.10526C11.0237 7.94736 12.5789 6.39215 12.5789 4.47368V4.47368C12.5789 2.55522 11.0237 1 9.10526 1H4.47368C2.55522 1 1 2.55522 1 4.47368V5.05263C1 6.65135 2.29602 7.94736 3.89474 7.94736V7.94736",
13
+ strokeWidth: "1.5"
14
+ }), /* @__PURE__ */ jsx("path", {
15
+ d: "M10.842 5.05264H8.52623C6.60777 5.05264 5.05255 6.60786 5.05255 8.52633V8.52633C5.05255 10.4448 6.60777 12 8.52623 12H13.1578C15.0763 12 16.6315 10.4448 16.6315 8.52633V7.94738C16.6315 6.34866 15.3355 5.05264 13.7368 5.05264V5.05264",
16
+ strokeWidth: "1.5"
17
+ })]
18
+ });
19
+ //#endregion
20
+ export { Link };
@@ -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 Liquid: FC<SvgProps>;
@@ -1,13 +1,22 @@
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 Liquid = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "26", viewBox: "0 0 22 26", stroke: "#9E4800", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M11 2.91406L16.1883 9.04573C17.2144 10.2576 17.9133 11.8018 18.1967 13.4831C18.48 15.1644 18.3351 16.9073 17.7802 18.4913C17.2253 20.0752 16.2853 21.4291 15.0793 22.3817C13.8732 23.3342 12.4552 23.8427 11.0046 23.8427C9.55399 23.8427 8.13597 23.3342 6.9299 22.3817C5.72384 21.4291 4.78391 20.0752 4.22901 18.4913C3.67411 16.9073 3.52916 15.1644 3.81251 13.4831C4.09586 11.8018 4.79477 10.2576 5.82084 9.04573L11 2.91406Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinejoin: "round" }), _jsx("path", { d: "M6.32539 14.6204V14.6204C5.92271 18.4655 9.4446 21.5525 13.2038 20.6496L13.3254 20.6204", strokeWidth: "1.5" })] }))); };
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region packages/ui/Elements/Icon/icons/Liquid.tsx
3
+ const Liquid = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "22",
5
+ height: "26",
6
+ viewBox: "0 0 22 26",
7
+ stroke: "#9E4800",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [/* @__PURE__ */ jsx("path", {
12
+ d: "M11 2.91406L16.1883 9.04573C17.2144 10.2576 17.9133 11.8018 18.1967 13.4831C18.48 15.1644 18.3351 16.9073 17.7802 18.4913C17.2253 20.0752 16.2853 21.4291 15.0793 22.3817C13.8732 23.3342 12.4552 23.8427 11.0046 23.8427C9.55399 23.8427 8.13597 23.3342 6.9299 22.3817C5.72384 21.4291 4.78391 20.0752 4.22901 18.4913C3.67411 16.9073 3.52916 15.1644 3.81251 13.4831C4.09586 11.8018 4.79477 10.2576 5.82084 9.04573L11 2.91406Z",
13
+ strokeWidth: "1.5",
14
+ strokeMiterlimit: "10",
15
+ strokeLinejoin: "round"
16
+ }), /* @__PURE__ */ jsx("path", {
17
+ d: "M6.32539 14.6204V14.6204C5.92271 18.4655 9.4446 21.5525 13.2038 20.6496L13.3254 20.6204",
18
+ strokeWidth: "1.5"
19
+ })]
20
+ });
21
+ //#endregion
22
+ export { Liquid };
@@ -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 Location: FC<SvgProps>;