@mailstep/design-system 0.8.30 → 0.8.31-beta.2

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 (1007) hide show
  1. package/package.json +25 -18
  2. package/ui/Blocks/CommonGrid/CommonGrid.d.ts +4 -3
  3. package/ui/Blocks/CommonGrid/CommonGrid.js +63 -106
  4. package/ui/Blocks/CommonGrid/CommonGridContainer.d.ts +3 -2
  5. package/ui/Blocks/CommonGrid/CommonGridContainer.js +84 -188
  6. package/ui/Blocks/CommonGrid/HoC/withProps.d.ts +2 -1
  7. package/ui/Blocks/CommonGrid/HoC/withProps.js +20 -10
  8. package/ui/Blocks/CommonGrid/HoC/withReduxActions.d.ts +1 -1
  9. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +40 -31
  10. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.d.ts +3 -2
  11. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +49 -108
  12. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.d.ts +2 -1
  13. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +17 -38
  14. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.d.ts +2 -1
  15. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +50 -80
  16. package/ui/Blocks/CommonGrid/components/ActionHead/index.d.ts +2 -1
  17. package/ui/Blocks/CommonGrid/components/ActionHead/index.js +2 -5
  18. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.d.ts +2 -2
  19. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +31 -44
  20. package/ui/Blocks/CommonGrid/components/ButtonMore/index.d.ts +2 -1
  21. package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +2 -5
  22. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.d.ts +3 -2
  23. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +39 -52
  24. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.d.ts +3 -2
  25. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +57 -131
  26. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.d.ts +2 -1
  27. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +2 -5
  28. package/ui/Blocks/CommonGrid/components/ColumnTitle.d.ts +3 -2
  29. package/ui/Blocks/CommonGrid/components/ColumnTitle.js +30 -39
  30. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.d.ts +3 -3
  31. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +53 -159
  32. package/ui/Blocks/CommonGrid/components/ControlButtons/index.d.ts +2 -1
  33. package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +2 -5
  34. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.d.ts +5 -4
  35. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +12 -42
  36. package/ui/Blocks/CommonGrid/components/DataCell.d.ts +3 -2
  37. package/ui/Blocks/CommonGrid/components/DataCell.js +50 -35
  38. package/ui/Blocks/CommonGrid/components/DataRow.d.ts +3 -2
  39. package/ui/Blocks/CommonGrid/components/DataRow.js +51 -61
  40. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.d.ts +4 -3
  41. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +33 -68
  42. package/ui/Blocks/CommonGrid/components/DropdownButton/index.d.ts +2 -1
  43. package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +2 -5
  44. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.d.ts +4 -3
  45. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +65 -58
  46. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.d.ts +2 -1
  47. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +2 -5
  48. package/ui/Blocks/CommonGrid/components/FilterDropdown.d.ts +2 -1
  49. package/ui/Blocks/CommonGrid/components/FilterDropdown.js +35 -31
  50. package/ui/Blocks/CommonGrid/components/FilterRow.d.ts +3 -2
  51. package/ui/Blocks/CommonGrid/components/FilterRow.js +11 -29
  52. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.d.ts +3 -2
  53. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +13 -33
  54. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.d.ts +2 -1
  55. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +2 -5
  56. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.d.ts +2 -1
  57. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +24 -36
  58. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.d.ts +2 -1
  59. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +2 -5
  60. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.d.ts +4 -3
  61. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +110 -151
  62. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.d.ts +2 -1
  63. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +2 -5
  64. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +9 -8
  65. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.d.ts +2 -1
  66. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +31 -15
  67. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +3 -4
  68. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.d.ts +4 -3
  69. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +113 -94
  70. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.d.ts +2 -1
  71. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +2 -5
  72. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.d.ts +2 -1
  73. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +2 -5
  74. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.d.ts +3 -2
  75. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +108 -144
  76. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.d.ts +2 -1
  77. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +2 -5
  78. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.d.ts +1 -0
  79. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.d.ts +3 -2
  80. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +95 -163
  81. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.d.ts +2 -1
  82. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +2 -5
  83. package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.d.ts +1 -0
  84. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.d.ts +5 -4
  85. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +35 -80
  86. package/ui/Blocks/CommonGrid/components/FloatingButton/index.d.ts +2 -1
  87. package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +2 -5
  88. package/ui/Blocks/CommonGrid/components/GridInfo/index.d.ts +2 -1
  89. package/ui/Blocks/CommonGrid/components/GridInfo/index.js +9 -33
  90. package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +4 -3
  91. package/ui/Blocks/CommonGrid/components/GridModals/index.js +27 -135
  92. package/ui/Blocks/CommonGrid/components/GridStatus/index.d.ts +2 -1
  93. package/ui/Blocks/CommonGrid/components/GridStatus/index.js +8 -26
  94. package/ui/Blocks/CommonGrid/components/GroupRow.d.ts +3 -2
  95. package/ui/Blocks/CommonGrid/components/GroupRow.js +23 -27
  96. package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +3 -2
  97. package/ui/Blocks/CommonGrid/components/HeadCell.js +28 -36
  98. package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +4 -3
  99. package/ui/Blocks/CommonGrid/components/HeadRow.js +53 -71
  100. package/ui/Blocks/CommonGrid/components/IconList/IconList.d.ts +7 -6
  101. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +30 -62
  102. package/ui/Blocks/CommonGrid/components/IconList/index.d.ts +2 -1
  103. package/ui/Blocks/CommonGrid/components/IconList/index.js +2 -5
  104. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -4
  105. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +25 -54
  106. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +3 -3
  107. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +40 -69
  108. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.d.ts +2 -1
  109. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +2 -5
  110. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +3 -3
  111. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +16 -17
  112. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.d.ts +3 -2
  113. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +10 -9
  114. package/ui/Blocks/CommonGrid/components/MobileFilterModal.d.ts +3 -2
  115. package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +68 -112
  116. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.d.ts +1 -1
  117. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +7 -14
  118. package/ui/Blocks/CommonGrid/components/MobileSortModal.d.ts +3 -2
  119. package/ui/Blocks/CommonGrid/components/MobileSortModal.js +32 -68
  120. package/ui/Blocks/CommonGrid/components/OversizedScroll.d.ts +3 -2
  121. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +18 -35
  122. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.d.ts +1 -1
  123. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +7 -19
  124. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.d.ts +3 -2
  125. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +31 -91
  126. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.d.ts +2 -1
  127. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +20 -30
  128. package/ui/Blocks/CommonGrid/components/QuickFilter/index.d.ts +2 -1
  129. package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +2 -5
  130. package/ui/Blocks/CommonGrid/components/Resize.d.ts +2 -1
  131. package/ui/Blocks/CommonGrid/components/Resize.js +32 -47
  132. package/ui/Blocks/CommonGrid/components/Table.d.ts +36 -36
  133. package/ui/Blocks/CommonGrid/components/Table.js +15 -41
  134. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.d.ts +3 -2
  135. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +40 -64
  136. package/ui/Blocks/CommonGrid/components/TablePagination/index.d.ts +2 -1
  137. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +2 -5
  138. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.d.ts +3 -2
  139. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +17 -18
  140. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.d.ts +3 -2
  141. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +15 -12
  142. package/ui/Blocks/CommonGrid/components/gridCells/Date.d.ts +3 -2
  143. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +7 -10
  144. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.d.ts +3 -2
  145. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +12 -12
  146. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.d.ts +3 -2
  147. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +32 -29
  148. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.d.ts +3 -2
  149. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +16 -50
  150. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.d.ts +2 -1
  151. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +8 -33
  152. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.d.ts +3 -2
  153. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +22 -30
  154. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.d.ts +1 -1
  155. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +8 -9
  156. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.d.ts +5 -4
  157. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +22 -40
  158. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.d.ts +3 -2
  159. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +54 -78
  160. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.d.ts +3 -2
  161. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +6 -9
  162. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.d.ts +3 -2
  163. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +15 -11
  164. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.d.ts +3 -2
  165. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +31 -32
  166. package/ui/Blocks/CommonGrid/components/gridCells/index.js +14 -15
  167. package/ui/Blocks/CommonGrid/components/icons/Edit.d.ts +2 -1
  168. package/ui/Blocks/CommonGrid/components/icons/Edit.js +14 -14
  169. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.d.ts +2 -1
  170. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +14 -14
  171. package/ui/Blocks/CommonGrid/components/icons/Sorting.d.ts +2 -1
  172. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +14 -21
  173. package/ui/Blocks/CommonGrid/components/utils.d.ts +1 -0
  174. package/ui/Blocks/CommonGrid/components/utils.js +21 -20
  175. package/ui/Blocks/CommonGrid/hooks/useAddFilter.d.ts +3 -2
  176. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +13 -16
  177. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.d.ts +3 -2
  178. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +82 -86
  179. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.d.ts +1 -0
  180. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +33 -31
  181. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.d.ts +1 -0
  182. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +28 -23
  183. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.d.ts +2 -1
  184. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +71 -57
  185. package/ui/Blocks/CommonGrid/hooks/useEvent.d.ts +1 -1
  186. package/ui/Blocks/CommonGrid/hooks/useEvent.js +16 -12
  187. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.d.ts +1 -0
  188. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +12 -15
  189. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.d.ts +2 -1
  190. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +24 -26
  191. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.d.ts +1 -0
  192. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +16 -12
  193. package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +3 -2
  194. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +109 -98
  195. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.d.ts +3 -2
  196. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +75 -56
  197. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +12 -15
  198. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.d.ts +3 -2
  199. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +82 -77
  200. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.d.ts +3 -2
  201. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +21 -20
  202. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.d.ts +1 -0
  203. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +28 -20
  204. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.d.ts +3 -2
  205. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +14 -18
  206. package/ui/Blocks/CommonGrid/hooks/useUxReset.d.ts +2 -1
  207. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +14 -13
  208. package/ui/Blocks/CommonGrid/index.d.ts +7 -6
  209. package/ui/Blocks/CommonGrid/index.js +10 -26
  210. package/ui/Blocks/CommonGrid/store/index.d.ts +16 -15
  211. package/ui/Blocks/CommonGrid/store/index.js +260 -288
  212. package/ui/Blocks/CommonGrid/store/migrateState.d.ts +1 -0
  213. package/ui/Blocks/CommonGrid/store/migrateState.js +13 -12
  214. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.d.ts +3 -2
  215. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +12 -18
  216. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.d.ts +3 -2
  217. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +13 -19
  218. package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +103 -0
  219. package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +15 -0
  220. package/ui/Blocks/CommonGrid/storybook/stories/gridStates.stories.js +12 -0
  221. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +12 -0
  222. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +12 -0
  223. package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +15 -0
  224. package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +15 -0
  225. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.d.ts +1 -0
  226. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +25 -0
  227. package/ui/Blocks/CommonGrid/storybook/stories/withQuickFilter.stories.js +18 -0
  228. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +6 -9
  229. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.d.ts +2 -1
  230. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +125 -122
  231. package/ui/Blocks/CommonGrid/storybook/utils/utils.d.ts +3 -2
  232. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +87 -108
  233. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +13 -13
  234. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +4 -7
  235. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +2 -4
  236. package/ui/Blocks/CommonGrid/styles.d.ts +10 -9
  237. package/ui/Blocks/CommonGrid/styles.js +35 -253
  238. package/ui/Blocks/CommonGrid/types.d.ts +2 -1
  239. package/ui/Blocks/CommonGrid/types.js +13 -22
  240. package/ui/Blocks/CommonGrid/utils/constants.js +10 -25
  241. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.d.ts +2 -1
  242. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +23 -17
  243. package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +9 -9
  244. package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +9 -9
  245. package/ui/Blocks/CommonGrid/utils/index.d.ts +3 -2
  246. package/ui/Blocks/CommonGrid/utils/index.js +96 -69
  247. package/ui/Blocks/CornerDialog/CornerDialog.d.ts +3 -2
  248. package/ui/Blocks/CornerDialog/CornerDialog.js +17 -42
  249. package/ui/Blocks/CornerDialog/index.d.ts +1 -0
  250. package/ui/Blocks/CornerDialog/index.js +2 -5
  251. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.d.ts +2 -1
  252. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +54 -0
  253. package/ui/Blocks/CornerDialog/styles.d.ts +6 -6
  254. package/ui/Blocks/CornerDialog/styles.js +21 -57
  255. package/ui/Blocks/CornerDialog/types.d.ts +2 -1
  256. package/ui/Blocks/CornerDialog/utils.d.ts +1 -0
  257. package/ui/Blocks/CornerDialog/utils.js +10 -29
  258. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.d.ts +3 -2
  259. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +6 -15
  260. package/ui/Blocks/Header/components/MenuItems/index.d.ts +3 -2
  261. package/ui/Blocks/Header/components/MenuItems/index.js +6 -8
  262. package/ui/Blocks/Header/components/MenuItems/styles.d.ts +3 -3
  263. package/ui/Blocks/Header/components/MenuItems/styles.js +11 -22
  264. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.d.ts +2 -1
  265. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +7 -22
  266. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.d.ts +2 -2
  267. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +8 -14
  268. package/ui/Blocks/Header/components/UserMenu/hooks/index.js +1 -2
  269. package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +9 -9
  270. package/ui/Blocks/Header/components/UserMenu/index.d.ts +3 -2
  271. package/ui/Blocks/Header/components/UserMenu/index.js +17 -48
  272. package/ui/Blocks/Header/components/UserMenu/styles.d.ts +3 -3
  273. package/ui/Blocks/Header/components/UserMenu/styles.js +9 -25
  274. package/ui/Blocks/Header/hooks/useChangeLanguage.js +8 -8
  275. package/ui/Blocks/Header/index.d.ts +6 -5
  276. package/ui/Blocks/Header/index.js +14 -44
  277. package/ui/Blocks/Header/stories/Header.stories.d.ts +18 -17
  278. package/ui/Blocks/Header/stories/Header.stories.js +44 -0
  279. package/ui/Blocks/Header/styles.d.ts +4 -4
  280. package/ui/Blocks/Header/styles.js +11 -34
  281. package/ui/Blocks/Header/utils/constants.js +1 -4
  282. package/ui/Blocks/Header/utils/languageItems.d.ts +2 -1
  283. package/ui/Blocks/Header/utils/languageItems.js +15 -15
  284. package/ui/Blocks/HidePrint/HidePrint.d.ts +2 -1
  285. package/ui/Blocks/HidePrint/HidePrint.js +13 -13
  286. package/ui/Blocks/ImageList/ImageList.d.ts +3 -2
  287. package/ui/Blocks/ImageList/ImageList.js +33 -79
  288. package/ui/Blocks/ImageList/components/AddPhoto/index.d.ts +3 -2
  289. package/ui/Blocks/ImageList/components/AddPhoto/index.js +67 -35
  290. package/ui/Blocks/ImageList/components/AddPhoto/styles.d.ts +4 -4
  291. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +14 -30
  292. package/ui/Blocks/ImageList/components/CloseButton/index.d.ts +2 -1
  293. package/ui/Blocks/ImageList/components/CloseButton/index.js +6 -17
  294. package/ui/Blocks/ImageList/components/CloseButton/styles.d.ts +2 -2
  295. package/ui/Blocks/ImageList/components/CloseButton/styles.js +10 -18
  296. package/ui/Blocks/ImageList/components/ImageElement/index.d.ts +2 -1
  297. package/ui/Blocks/ImageList/components/ImageElement/index.js +9 -28
  298. package/ui/Blocks/ImageList/components/ImageElement/styles.d.ts +4 -4
  299. package/ui/Blocks/ImageList/components/ImageElement/styles.js +25 -22
  300. package/ui/Blocks/ImageList/components/ImageTag/index.d.ts +2 -1
  301. package/ui/Blocks/ImageList/components/ImageTag/index.js +8 -14
  302. package/ui/Blocks/ImageList/components/ImageTag/styles.d.ts +1 -1
  303. package/ui/Blocks/ImageList/components/ImageTag/styles.js +7 -9
  304. package/ui/Blocks/ImageList/hooks/useControls.js +14 -13
  305. package/ui/Blocks/ImageList/hooks/useOnElementClick.d.ts +2 -1
  306. package/ui/Blocks/ImageList/hooks/useOnElementClick.js +19 -14
  307. package/ui/Blocks/ImageList/index.d.ts +2 -1
  308. package/ui/Blocks/ImageList/index.js +2 -5
  309. package/ui/Blocks/ImageList/stories/ImageList.stories.d.ts +2 -1
  310. package/ui/Blocks/ImageList/stories/ImageList.stories.js +63 -0
  311. package/ui/Blocks/ImageList/styles.d.ts +4 -4
  312. package/ui/Blocks/ImageList/styles.js +20 -29
  313. package/ui/Blocks/ImageList/types.d.ts +2 -1
  314. package/ui/Blocks/LanguageSwitch/LanguageSwitch.d.ts +3 -2
  315. package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +38 -51
  316. package/ui/Blocks/LanguageSwitch/index.d.ts +2 -1
  317. package/ui/Blocks/LanguageSwitch/index.js +2 -5
  318. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.d.ts +2 -1
  319. package/ui/Blocks/LanguageSwitch/stories/LanguageSwith.stories.js +31 -0
  320. package/ui/Blocks/LanguageSwitch/styles.d.ts +5 -5
  321. package/ui/Blocks/LanguageSwitch/styles.js +15 -32
  322. package/ui/Blocks/LanguageSwitch/types.d.ts +1 -0
  323. package/ui/Blocks/LightBox/LightBox.d.ts +3 -2
  324. package/ui/Blocks/LightBox/LightBox.js +13 -40
  325. package/ui/Blocks/LightBox/hooks/useLightBox.d.ts +2 -1
  326. package/ui/Blocks/LightBox/hooks/useLightBox.js +16 -16
  327. package/ui/Blocks/LightBox/index.d.ts +1 -0
  328. package/ui/Blocks/LightBox/index.js +3 -6
  329. package/ui/Blocks/LightBox/stories/LightBox.stories.d.ts +2 -1
  330. package/ui/Blocks/LightBox/stories/LightBox.stories.js +21 -0
  331. package/ui/Blocks/LightBox/styles.d.ts +4 -4
  332. package/ui/Blocks/LightBox/styles.js +10 -28
  333. package/ui/Blocks/LoginPage/LoginPage.d.ts +3 -2
  334. package/ui/Blocks/LoginPage/LoginPage.js +14 -62
  335. package/ui/Blocks/LoginPage/components/LoginForm.d.ts +1 -0
  336. package/ui/Blocks/LoginPage/components/LoginForm.js +62 -169
  337. package/ui/Blocks/LoginPage/components/SocialLinks.d.ts +5 -4
  338. package/ui/Blocks/LoginPage/components/SocialLinks.js +16 -81
  339. package/ui/Blocks/LoginPage/index.d.ts +2 -1
  340. package/ui/Blocks/LoginPage/index.js +2 -5
  341. package/ui/Blocks/LoginPage/stories/LoginPage.stories.js +113 -0
  342. package/ui/Blocks/LoginPage/styles.d.ts +9 -9
  343. package/ui/Blocks/LoginPage/styles.js +21 -75
  344. package/ui/Blocks/LoginPage/types.d.ts +5 -4
  345. package/ui/Blocks/LoginPage/utils/links.js +7 -10
  346. package/ui/Blocks/Modal/Modal.d.ts +3 -2
  347. package/ui/Blocks/Modal/Modal.js +35 -124
  348. package/ui/Blocks/Modal/hooks/useClickOutside.d.ts +3 -2
  349. package/ui/Blocks/Modal/hooks/useClickOutside.js +29 -27
  350. package/ui/Blocks/Modal/hooks/useModal.d.ts +1 -0
  351. package/ui/Blocks/Modal/hooks/useModal.js +14 -19
  352. package/ui/Blocks/Modal/index.d.ts +1 -0
  353. package/ui/Blocks/Modal/index.js +4 -7
  354. package/ui/Blocks/Modal/stories/Modal.stories.d.ts +2 -1
  355. package/ui/Blocks/Modal/stories/Modal.stories.js +168 -0
  356. package/ui/Blocks/Modal/styles.d.ts +16 -15
  357. package/ui/Blocks/Modal/styles.js +82 -183
  358. package/ui/Blocks/Modal/types.d.ts +2 -1
  359. package/ui/Blocks/Modal/utils.d.ts +1 -0
  360. package/ui/Blocks/Modal/utils.js +6 -9
  361. package/ui/Blocks/Popover/index.d.ts +4 -3
  362. package/ui/Blocks/Popover/index.js +20 -31
  363. package/ui/Blocks/Scheduler/Scheduler.d.ts +3 -2
  364. package/ui/Blocks/Scheduler/Scheduler.js +26 -43
  365. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.d.ts +3 -2
  366. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +45 -37
  367. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.d.ts +3 -3
  368. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +16 -35
  369. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +16 -16
  370. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.d.ts +2 -1
  371. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +8 -13
  372. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.d.ts +3 -3
  373. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +13 -30
  374. package/ui/Blocks/Scheduler/components/DateChanger/index.d.ts +3 -2
  375. package/ui/Blocks/Scheduler/components/DateChanger/index.js +18 -49
  376. package/ui/Blocks/Scheduler/components/DateChanger/styles.d.ts +2 -2
  377. package/ui/Blocks/Scheduler/components/DateChanger/styles.js +11 -23
  378. package/ui/Blocks/Scheduler/components/Groups/index.d.ts +3 -2
  379. package/ui/Blocks/Scheduler/components/Groups/index.js +5 -10
  380. package/ui/Blocks/Scheduler/components/Groups/styles.d.ts +4 -4
  381. package/ui/Blocks/Scheduler/components/Groups/styles.js +13 -32
  382. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.d.ts +2 -1
  383. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +46 -45
  384. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.d.ts +1 -0
  385. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +15 -15
  386. package/ui/Blocks/Scheduler/components/TimeSlots/index.d.ts +3 -2
  387. package/ui/Blocks/Scheduler/components/TimeSlots/index.js +20 -47
  388. package/ui/Blocks/Scheduler/components/TimeSlots/styles.d.ts +5 -5
  389. package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +23 -52
  390. package/ui/Blocks/Scheduler/hooks/useChangeDate.d.ts +3 -2
  391. package/ui/Blocks/Scheduler/hooks/useChangeDate.js +33 -34
  392. package/ui/Blocks/Scheduler/index.js +1 -2
  393. package/ui/Blocks/Scheduler/stories/Scheduler.stories.d.ts +2 -1
  394. package/ui/Blocks/Scheduler/stories/Scheduler.stories.js +114 -0
  395. package/ui/Blocks/Scheduler/styles.d.ts +2 -2
  396. package/ui/Blocks/Scheduler/styles.js +8 -23
  397. package/ui/Blocks/Scheduler/types.d.ts +2 -1
  398. package/ui/Blocks/Scheduler/utils/constants.js +6 -9
  399. package/ui/Blocks/Scheduler/utils/convertDateToTime.js +4 -5
  400. package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +7 -10
  401. package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +10 -9
  402. package/ui/Blocks/Scheduler/utils/formatDate.js +4 -8
  403. package/ui/Blocks/Scheduler/utils/generateTimeArray.js +15 -18
  404. package/ui/Blocks/Scheduler/utils/getClosestStep.js +8 -11
  405. package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +3 -6
  406. package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +3 -6
  407. package/ui/Blocks/Scheduler/utils/isActiveTime.d.ts +1 -0
  408. package/ui/Blocks/Scheduler/utils/isActiveTime.js +9 -10
  409. package/ui/Blocks/Scheduler/utils/isToday.js +3 -6
  410. package/ui/Blocks/SideMenu/MenuItem.d.ts +3 -2
  411. package/ui/Blocks/SideMenu/MenuItem.js +53 -102
  412. package/ui/Blocks/SideMenu/SideMenu.d.ts +3 -2
  413. package/ui/Blocks/SideMenu/SideMenu.js +26 -36
  414. package/ui/Blocks/SideMenu/components/Footer.d.ts +5 -4
  415. package/ui/Blocks/SideMenu/components/Footer.js +27 -63
  416. package/ui/Blocks/SideMenu/components/HamburgerMenu.js +22 -51
  417. package/ui/Blocks/SideMenu/components/SubitemTooltip.d.ts +3 -2
  418. package/ui/Blocks/SideMenu/components/SubitemTooltip.js +40 -51
  419. package/ui/Blocks/SideMenu/context/LeftMenuContext.d.ts +2 -1
  420. package/ui/Blocks/SideMenu/context/LeftMenuContext.js +14 -19
  421. package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +7 -9
  422. package/ui/Blocks/SideMenu/hooks/useOutsideHover.d.ts +1 -0
  423. package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +22 -24
  424. package/ui/Blocks/SideMenu/index.d.ts +2 -1
  425. package/ui/Blocks/SideMenu/index.js +5 -7
  426. package/ui/Blocks/SideMenu/stories/SideMenu.stories.d.ts +2 -1
  427. package/ui/Blocks/SideMenu/stories/SideMenu.stories.js +23 -0
  428. package/ui/Blocks/SideMenu/stories/menuItems.js +101 -108
  429. package/ui/Blocks/SideMenu/styles.d.ts +38 -37
  430. package/ui/Blocks/SideMenu/styles.js +162 -310
  431. package/ui/Blocks/SideMenu/types.d.ts +2 -1
  432. package/ui/Blocks/SideMenu/utils/constants.js +2 -5
  433. package/ui/Blocks/Stepper/Stepper.d.ts +3 -2
  434. package/ui/Blocks/Stepper/Stepper.js +20 -33
  435. package/ui/Blocks/Stepper/components/StepCircle/index.d.ts +2 -1
  436. package/ui/Blocks/Stepper/components/StepCircle/index.js +6 -16
  437. package/ui/Blocks/Stepper/components/StepCircle/styles.d.ts +3 -3
  438. package/ui/Blocks/Stepper/components/StepCircle/styles.js +19 -23
  439. package/ui/Blocks/Stepper/components/StepItem/index.d.ts +2 -1
  440. package/ui/Blocks/Stepper/components/StepItem/index.js +12 -51
  441. package/ui/Blocks/Stepper/components/StepItem/styles.d.ts +6 -6
  442. package/ui/Blocks/Stepper/components/StepItem/styles.js +36 -79
  443. package/ui/Blocks/Stepper/hooks/useStepper.js +21 -32
  444. package/ui/Blocks/Stepper/index.js +3 -4
  445. package/ui/Blocks/Stepper/stories/Stepper.stories.d.ts +2 -1
  446. package/ui/Blocks/Stepper/stories/Stepper.stories.js +86 -0
  447. package/ui/Blocks/Stepper/styles.d.ts +2 -2
  448. package/ui/Blocks/Stepper/styles.js +14 -25
  449. package/ui/Blocks/Stepper/types.d.ts +2 -1
  450. package/ui/Blocks/Table/Table.d.ts +1 -0
  451. package/ui/Blocks/Table/Table.js +5 -12
  452. package/ui/Blocks/Table/index.js +1 -2
  453. package/ui/Blocks/Table/stories/Table.stories.d.ts +5 -4
  454. package/ui/Blocks/Table/stories/Table.stories.js +20 -0
  455. package/ui/Blocks/Tabs/TabContent.d.ts +3 -2
  456. package/ui/Blocks/Tabs/TabContent.js +6 -9
  457. package/ui/Blocks/Tabs/Tabs.d.ts +3 -2
  458. package/ui/Blocks/Tabs/Tabs.js +18 -44
  459. package/ui/Blocks/Tabs/hooks/useTabs.d.ts +1 -0
  460. package/ui/Blocks/Tabs/hooks/useTabs.js +9 -13
  461. package/ui/Blocks/Tabs/index.d.ts +1 -0
  462. package/ui/Blocks/Tabs/index.js +4 -7
  463. package/ui/Blocks/Tabs/stories/Tabs.stories.d.ts +2 -1
  464. package/ui/Blocks/Tabs/stories/Tabs.stories.js +44 -0
  465. package/ui/Blocks/Tabs/styles.d.ts +10 -9
  466. package/ui/Blocks/Tabs/styles.js +36 -95
  467. package/ui/Blocks/Tabs/types.d.ts +2 -1
  468. package/ui/Elements/Alert/Alert.d.ts +1 -0
  469. package/ui/Elements/Alert/Alert.js +28 -72
  470. package/ui/Elements/Alert/index.d.ts +2 -1
  471. package/ui/Elements/Alert/index.js +3 -5
  472. package/ui/Elements/Alert/stories/Alert.stories.d.ts +3 -2
  473. package/ui/Elements/Alert/stories/Alert.stories.js +73 -0
  474. package/ui/Elements/Alert/styles.d.ts +24 -23
  475. package/ui/Elements/Alert/styles.js +32 -82
  476. package/ui/Elements/Alert/types.d.ts +2 -1
  477. package/ui/Elements/AsyncSelect/AsyncSelect.d.ts +5 -4
  478. package/ui/Elements/AsyncSelect/AsyncSelect.js +33 -34
  479. package/ui/Elements/AsyncSelect/index.d.ts +2 -1
  480. package/ui/Elements/AsyncSelect/index.js +2 -5
  481. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.d.ts +2 -1
  482. package/ui/Elements/AsyncSelect/stories/AsyncSelect.stories.js +89 -0
  483. package/ui/Elements/Avatar/Avatar.d.ts +3 -2
  484. package/ui/Elements/Avatar/Avatar.js +35 -37
  485. package/ui/Elements/Avatar/index.d.ts +1 -0
  486. package/ui/Elements/Avatar/index.js +3 -5
  487. package/ui/Elements/Avatar/stories/Avatar.stories.d.ts +3 -2
  488. package/ui/Elements/Avatar/stories/Avatar.stories.js +20 -0
  489. package/ui/Elements/Badge/Badge.d.ts +2 -1
  490. package/ui/Elements/Badge/Badge.js +44 -51
  491. package/ui/Elements/Badge/index.d.ts +2 -1
  492. package/ui/Elements/Badge/index.js +3 -5
  493. package/ui/Elements/Badge/stories/Badge.stories.d.ts +3 -2
  494. package/ui/Elements/Badge/stories/Badge.stories.js +34 -0
  495. package/ui/Elements/BarChartSymbol/BarChartSymbol.d.ts +1 -0
  496. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +6 -21
  497. package/ui/Elements/BarChartSymbol/index.js +1 -2
  498. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.d.ts +3 -2
  499. package/ui/Elements/BarChartSymbol/stories/BarChartSymbol.stories.js +26 -0
  500. package/ui/Elements/BarChartSymbol/styles.d.ts +3 -3
  501. package/ui/Elements/BarChartSymbol/styles.js +16 -10
  502. package/ui/Elements/BorderedBox/BorderedBox.d.ts +3 -2
  503. package/ui/Elements/BorderedBox/BorderedBox.js +35 -21
  504. package/ui/Elements/BorderedBox/index.d.ts +2 -1
  505. package/ui/Elements/BorderedBox/index.js +3 -5
  506. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.d.ts +3 -2
  507. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +13 -0
  508. package/ui/Elements/BorderedBox/types.d.ts +1 -0
  509. package/ui/Elements/Button/Button.d.ts +3 -2
  510. package/ui/Elements/Button/Button.js +30 -44
  511. package/ui/Elements/Button/index.d.ts +2 -1
  512. package/ui/Elements/Button/index.js +3 -5
  513. package/ui/Elements/Button/stories/Button.stories.d.ts +3 -2
  514. package/ui/Elements/Button/stories/Button.stories.js +120 -0
  515. package/ui/Elements/Button/styles.d.ts +10 -9
  516. package/ui/Elements/Button/styles.js +44 -227
  517. package/ui/Elements/Button/types.d.ts +2 -1
  518. package/ui/Elements/Card/Card.d.ts +1 -0
  519. package/ui/Elements/Card/Card.js +6 -14
  520. package/ui/Elements/Card/index.d.ts +2 -1
  521. package/ui/Elements/Card/index.js +2 -5
  522. package/ui/Elements/Card/stories/Card.stories.d.ts +3 -2
  523. package/ui/Elements/Card/stories/Card.stories.js +34 -0
  524. package/ui/Elements/Card/styles.d.ts +4 -3
  525. package/ui/Elements/Card/styles.js +20 -22
  526. package/ui/Elements/Card/types.d.ts +1 -0
  527. package/ui/Elements/CheckedCircle/index.d.ts +2 -1
  528. package/ui/Elements/CheckedCircle/index.js +6 -14
  529. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +5 -4
  530. package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.js +27 -0
  531. package/ui/Elements/CheckedCircle/styles.d.ts +1 -1
  532. package/ui/Elements/CheckedCircle/styles.js +13 -15
  533. package/ui/Elements/DatePicker/DatePicker.d.ts +4 -8
  534. package/ui/Elements/DatePicker/DatePicker.js +65 -88
  535. package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +4 -3
  536. package/ui/Elements/DatePicker/Datetime/DateTime.js +521 -426
  537. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.d.ts +3 -2
  538. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +30 -65
  539. package/ui/Elements/DatePicker/Datetime/components/FooterRow.d.ts +2 -2
  540. package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +10 -12
  541. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.d.ts +1 -1
  542. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +7 -16
  543. package/ui/Elements/DatePicker/Datetime/components/TimeInput.d.ts +1 -1
  544. package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +7 -16
  545. package/ui/Elements/DatePicker/Datetime/components/Timepicker.d.ts +2 -1
  546. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +66 -163
  547. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +15 -30
  548. package/ui/Elements/DatePicker/Datetime/types.d.ts +3 -2
  549. package/ui/Elements/DatePicker/Datetime/types.js +11 -14
  550. package/ui/Elements/DatePicker/Datetime/views/DaysView.d.ts +2 -1
  551. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +145 -134
  552. package/ui/Elements/DatePicker/Datetime/views/MonthsView.d.ts +2 -1
  553. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +106 -72
  554. package/ui/Elements/DatePicker/Datetime/views/YearsView.d.ts +2 -1
  555. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +114 -83
  556. package/ui/Elements/DatePicker/index.d.ts +2 -1
  557. package/ui/Elements/DatePicker/index.js +3 -6
  558. package/ui/Elements/DatePicker/styles.d.ts +2 -1
  559. package/ui/Elements/DatePicker/styles.js +8 -234
  560. package/ui/Elements/DatePicker/utils/constants.d.ts +1 -0
  561. package/ui/Elements/DatePicker/utils/constants.js +12 -29
  562. package/ui/Elements/Dropdown/Dropdown.d.ts +3 -2
  563. package/ui/Elements/Dropdown/Dropdown.js +25 -54
  564. package/ui/Elements/Dropdown/index.d.ts +2 -1
  565. package/ui/Elements/Dropdown/index.js +3 -5
  566. package/ui/Elements/Dropdown/stories/Dropdown.stories.d.ts +3 -2
  567. package/ui/Elements/Dropdown/stories/Dropdown.stories.js +14 -0
  568. package/ui/Elements/Dropdown/types.d.ts +1 -0
  569. package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +3 -2
  570. package/ui/Elements/DropdownMenu/DropdownMenu.js +35 -34
  571. package/ui/Elements/DropdownMenu/components/DefaultItem.d.ts +3 -2
  572. package/ui/Elements/DropdownMenu/components/DefaultItem.js +15 -31
  573. package/ui/Elements/DropdownMenu/components/MenuItem.d.ts +3 -2
  574. package/ui/Elements/DropdownMenu/components/MenuItem.js +49 -58
  575. package/ui/Elements/DropdownMenu/components/MenuList.d.ts +3 -2
  576. package/ui/Elements/DropdownMenu/components/MenuList.js +8 -14
  577. package/ui/Elements/DropdownMenu/index.js +1 -2
  578. package/ui/Elements/DropdownMenu/types.d.ts +2 -1
  579. package/ui/Elements/DropdownSelect/DropdownSelect.d.ts +4 -3
  580. package/ui/Elements/DropdownSelect/DropdownSelect.js +50 -127
  581. package/ui/Elements/DropdownSelect/index.d.ts +2 -1
  582. package/ui/Elements/DropdownSelect/index.js +3 -5
  583. package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +3 -2
  584. package/ui/Elements/ErrorMessage/ErrorMessage.js +14 -63
  585. package/ui/Elements/ErrorMessage/index.d.ts +2 -1
  586. package/ui/Elements/ErrorMessage/index.js +3 -5
  587. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.d.ts +3 -2
  588. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +19 -0
  589. package/ui/Elements/ErrorMessage/types.d.ts +1 -0
  590. package/ui/Elements/HighlightBox/HighlightBox.d.ts +2 -1
  591. package/ui/Elements/HighlightBox/HighlightBox.js +62 -98
  592. package/ui/Elements/HighlightBox/index.d.ts +2 -1
  593. package/ui/Elements/HighlightBox/index.js +2 -5
  594. package/ui/Elements/Icon/BadgeIcon.d.ts +3 -2
  595. package/ui/Elements/Icon/BadgeIcon.js +47 -27
  596. package/ui/Elements/Icon/Icon.d.ts +5 -4
  597. package/ui/Elements/Icon/Icon.js +279 -280
  598. package/ui/Elements/Icon/icons/Add.d.ts +2 -1
  599. package/ui/Elements/Icon/icons/Add.js +13 -33
  600. package/ui/Elements/Icon/icons/AddPhoto.d.ts +1 -0
  601. package/ui/Elements/Icon/icons/AddPhoto.js +13 -34
  602. package/ui/Elements/Icon/icons/Admin.d.ts +1 -0
  603. package/ui/Elements/Icon/icons/Admin.js +13 -26
  604. package/ui/Elements/Icon/icons/ArrowDown.d.ts +2 -1
  605. package/ui/Elements/Icon/icons/ArrowDown.js +13 -18
  606. package/ui/Elements/Icon/icons/ArrowForward.d.ts +2 -1
  607. package/ui/Elements/Icon/icons/ArrowForward.js +13 -12
  608. package/ui/Elements/Icon/icons/ArrowUp.d.ts +2 -1
  609. package/ui/Elements/Icon/icons/ArrowUp.js +13 -18
  610. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.d.ts +2 -1
  611. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +13 -21
  612. package/ui/Elements/Icon/icons/ArrowsLeftRight.d.ts +2 -1
  613. package/ui/Elements/Icon/icons/ArrowsLeftRight.js +13 -12
  614. package/ui/Elements/Icon/icons/ArrowsUpDown.d.ts +2 -1
  615. package/ui/Elements/Icon/icons/ArrowsUpDown.js +13 -12
  616. package/ui/Elements/Icon/icons/BarcodeScan.d.ts +1 -0
  617. package/ui/Elements/Icon/icons/BarcodeScan.js +13 -13
  618. package/ui/Elements/Icon/icons/Box.d.ts +1 -0
  619. package/ui/Elements/Icon/icons/Box.js +13 -17
  620. package/ui/Elements/Icon/icons/Calendar.d.ts +1 -0
  621. package/ui/Elements/Icon/icons/Calendar.js +13 -39
  622. package/ui/Elements/Icon/icons/Cancel.d.ts +1 -0
  623. package/ui/Elements/Icon/icons/Cancel.js +13 -18
  624. package/ui/Elements/Icon/icons/CheckedBox.d.ts +2 -1
  625. package/ui/Elements/Icon/icons/CheckedBox.js +13 -23
  626. package/ui/Elements/Icon/icons/CircleHalfStroke.d.ts +2 -1
  627. package/ui/Elements/Icon/icons/CircleHalfStroke.js +13 -12
  628. package/ui/Elements/Icon/icons/Company.d.ts +1 -0
  629. package/ui/Elements/Icon/icons/Company.js +13 -82
  630. package/ui/Elements/Icon/icons/Complaint.d.ts +2 -1
  631. package/ui/Elements/Icon/icons/Complaint.js +13 -59
  632. package/ui/Elements/Icon/icons/Consolidation.d.ts +2 -1
  633. package/ui/Elements/Icon/icons/Consolidation.js +13 -13
  634. package/ui/Elements/Icon/icons/Container.d.ts +2 -1
  635. package/ui/Elements/Icon/icons/Container.js +13 -13
  636. package/ui/Elements/Icon/icons/Dashboard.d.ts +2 -1
  637. package/ui/Elements/Icon/icons/Dashboard.js +13 -36
  638. package/ui/Elements/Icon/icons/Desktop.d.ts +2 -1
  639. package/ui/Elements/Icon/icons/Desktop.js +13 -63
  640. package/ui/Elements/Icon/icons/Dispatch.d.ts +2 -1
  641. package/ui/Elements/Icon/icons/Dispatch.js +13 -13
  642. package/ui/Elements/Icon/icons/EmptyRack.d.ts +1 -0
  643. package/ui/Elements/Icon/icons/EmptyRack.js +2 -34
  644. package/ui/Elements/Icon/icons/Expeditions.d.ts +2 -1
  645. package/ui/Elements/Icon/icons/Expeditions.js +13 -62
  646. package/ui/Elements/Icon/icons/Filter.d.ts +3 -2
  647. package/ui/Elements/Icon/icons/Filter.js +13 -17
  648. package/ui/Elements/Icon/icons/FlagCZ.d.ts +2 -1
  649. package/ui/Elements/Icon/icons/FlagCZ.js +13 -55
  650. package/ui/Elements/Icon/icons/FlagEL.d.ts +2 -1
  651. package/ui/Elements/Icon/icons/FlagEL.js +13 -50
  652. package/ui/Elements/Icon/icons/FlagESP.d.ts +2 -1
  653. package/ui/Elements/Icon/icons/FlagESP.js +13 -93
  654. package/ui/Elements/Icon/icons/FlagHU.d.ts +3 -2
  655. package/ui/Elements/Icon/icons/FlagHU.js +13 -27
  656. package/ui/Elements/Icon/icons/FlagITA.d.ts +2 -1
  657. package/ui/Elements/Icon/icons/FlagITA.js +13 -55
  658. package/ui/Elements/Icon/icons/FlagNL.d.ts +3 -2
  659. package/ui/Elements/Icon/icons/FlagNL.js +13 -27
  660. package/ui/Elements/Icon/icons/FlagRUS.d.ts +2 -1
  661. package/ui/Elements/Icon/icons/FlagRUS.js +13 -55
  662. package/ui/Elements/Icon/icons/FlagSVK.d.ts +2 -1
  663. package/ui/Elements/Icon/icons/FlagSVK.js +13 -92
  664. package/ui/Elements/Icon/icons/FlagUK.d.ts +2 -1
  665. package/ui/Elements/Icon/icons/FlagUK.js +13 -20
  666. package/ui/Elements/Icon/icons/FlagUSA.d.ts +2 -1
  667. package/ui/Elements/Icon/icons/FlagUSA.js +13 -106
  668. package/ui/Elements/Icon/icons/Foldable.d.ts +3 -2
  669. package/ui/Elements/Icon/icons/Foldable.js +13 -34
  670. package/ui/Elements/Icon/icons/Fragile.d.ts +2 -1
  671. package/ui/Elements/Icon/icons/Fragile.js +13 -42
  672. package/ui/Elements/Icon/icons/Gift.d.ts +2 -1
  673. package/ui/Elements/Icon/icons/Gift.js +13 -41
  674. package/ui/Elements/Icon/icons/Group.d.ts +1 -0
  675. package/ui/Elements/Icon/icons/Group.js +13 -17
  676. package/ui/Elements/Icon/icons/HamburgerMenu.d.ts +2 -1
  677. package/ui/Elements/Icon/icons/HamburgerMenu.js +13 -41
  678. package/ui/Elements/Icon/icons/HelpCircle1.d.ts +2 -1
  679. package/ui/Elements/Icon/icons/HelpCircle1.js +13 -32
  680. package/ui/Elements/Icon/icons/HorizontalLines.d.ts +1 -0
  681. package/ui/Elements/Icon/icons/HorizontalLines.js +13 -36
  682. package/ui/Elements/Icon/icons/ImagePlaceholder.d.ts +1 -0
  683. package/ui/Elements/Icon/icons/ImagePlaceholder.js +13 -17
  684. package/ui/Elements/Icon/icons/Income.d.ts +2 -1
  685. package/ui/Elements/Icon/icons/Income.js +13 -22
  686. package/ui/Elements/Icon/icons/Info.d.ts +2 -1
  687. package/ui/Elements/Icon/icons/Info.js +13 -33
  688. package/ui/Elements/Icon/icons/Integrations.d.ts +1 -0
  689. package/ui/Elements/Icon/icons/Integrations.js +13 -17
  690. package/ui/Elements/Icon/icons/Inventory.d.ts +2 -1
  691. package/ui/Elements/Icon/icons/Inventory.js +13 -45
  692. package/ui/Elements/Icon/icons/Inventory2.d.ts +2 -1
  693. package/ui/Elements/Icon/icons/Inventory2.js +13 -66
  694. package/ui/Elements/Icon/icons/Layout.d.ts +3 -2
  695. package/ui/Elements/Icon/icons/Layout.js +14 -43
  696. package/ui/Elements/Icon/icons/Link.d.ts +1 -0
  697. package/ui/Elements/Icon/icons/Link.js +13 -20
  698. package/ui/Elements/Icon/icons/Liquid.d.ts +3 -2
  699. package/ui/Elements/Icon/icons/Liquid.js +13 -22
  700. package/ui/Elements/Icon/icons/Location.d.ts +2 -1
  701. package/ui/Elements/Icon/icons/Location.js +13 -13
  702. package/ui/Elements/Icon/icons/Logout1.d.ts +2 -1
  703. package/ui/Elements/Icon/icons/Logout1.js +13 -32
  704. package/ui/Elements/Icon/icons/MachinePackingForbidden.d.ts +3 -2
  705. package/ui/Elements/Icon/icons/MachinePackingForbidden.js +13 -70
  706. package/ui/Elements/Icon/icons/MakePhoto.d.ts +2 -1
  707. package/ui/Elements/Icon/icons/MakePhoto.js +13 -35
  708. package/ui/Elements/Icon/icons/MenuItems.d.ts +2 -1
  709. package/ui/Elements/Icon/icons/MenuItems.js +13 -39
  710. package/ui/Elements/Icon/icons/Message.d.ts +2 -1
  711. package/ui/Elements/Icon/icons/Message.js +13 -38
  712. package/ui/Elements/Icon/icons/MobileCancel.d.ts +2 -1
  713. package/ui/Elements/Icon/icons/MobileCancel.js +13 -22
  714. package/ui/Elements/Icon/icons/MobilePhone.d.ts +3 -2
  715. package/ui/Elements/Icon/icons/MobilePhone.js +13 -47
  716. package/ui/Elements/Icon/icons/Moon.d.ts +2 -1
  717. package/ui/Elements/Icon/icons/Moon.js +13 -12
  718. package/ui/Elements/Icon/icons/Notification2.d.ts +2 -1
  719. package/ui/Elements/Icon/icons/Notification2.js +13 -25
  720. package/ui/Elements/Icon/icons/OpenBox.d.ts +1 -0
  721. package/ui/Elements/Icon/icons/OpenBox.js +13 -37
  722. package/ui/Elements/Icon/icons/Pallet.d.ts +2 -1
  723. package/ui/Elements/Icon/icons/Pallet.js +13 -36
  724. package/ui/Elements/Icon/icons/Plus1.d.ts +2 -1
  725. package/ui/Elements/Icon/icons/Plus1.js +13 -17
  726. package/ui/Elements/Icon/icons/Print.d.ts +2 -1
  727. package/ui/Elements/Icon/icons/Print.js +13 -41
  728. package/ui/Elements/Icon/icons/Product.d.ts +1 -0
  729. package/ui/Elements/Icon/icons/Product.js +13 -17
  730. package/ui/Elements/Icon/icons/Products.d.ts +2 -1
  731. package/ui/Elements/Icon/icons/Products.js +13 -16
  732. package/ui/Elements/Icon/icons/Profile.d.ts +2 -1
  733. package/ui/Elements/Icon/icons/Profile.js +13 -25
  734. package/ui/Elements/Icon/icons/Puzzle1.d.ts +2 -1
  735. package/ui/Elements/Icon/icons/Puzzle1.js +13 -18
  736. package/ui/Elements/Icon/icons/QRCode.d.ts +2 -1
  737. package/ui/Elements/Icon/icons/QRCode.js +13 -19
  738. package/ui/Elements/Icon/icons/Rack.d.ts +1 -0
  739. package/ui/Elements/Icon/icons/Rack.js +13 -65
  740. package/ui/Elements/Icon/icons/Reload.d.ts +3 -2
  741. package/ui/Elements/Icon/icons/Reload.js +13 -13
  742. package/ui/Elements/Icon/icons/Return.d.ts +2 -1
  743. package/ui/Elements/Icon/icons/Return.js +13 -19
  744. package/ui/Elements/Icon/icons/Rows.d.ts +1 -0
  745. package/ui/Elements/Icon/icons/Rows.js +13 -39
  746. package/ui/Elements/Icon/icons/Settings2.d.ts +2 -1
  747. package/ui/Elements/Icon/icons/Settings2.js +13 -33
  748. package/ui/Elements/Icon/icons/ShieldUser.d.ts +3 -2
  749. package/ui/Elements/Icon/icons/ShieldUser.js +13 -9
  750. package/ui/Elements/Icon/icons/ShoppingBag.d.ts +2 -1
  751. package/ui/Elements/Icon/icons/ShoppingBag.js +13 -18
  752. package/ui/Elements/Icon/icons/Sort.d.ts +3 -2
  753. package/ui/Elements/Icon/icons/Sort.js +13 -23
  754. package/ui/Elements/Icon/icons/Sun.d.ts +2 -1
  755. package/ui/Elements/Icon/icons/Sun.js +13 -12
  756. package/ui/Elements/Icon/icons/ThreeDots.d.ts +1 -0
  757. package/ui/Elements/Icon/icons/ThreeDots.js +13 -39
  758. package/ui/Elements/Icon/icons/ToastError.d.ts +1 -0
  759. package/ui/Elements/Icon/icons/ToastError.js +13 -27
  760. package/ui/Elements/Icon/icons/ToastSuccess.d.ts +1 -0
  761. package/ui/Elements/Icon/icons/ToastSuccess.js +13 -27
  762. package/ui/Elements/Icon/icons/Transfer.d.ts +2 -1
  763. package/ui/Elements/Icon/icons/Transfer.js +13 -21
  764. package/ui/Elements/Icon/icons/TrashBin.d.ts +1 -0
  765. package/ui/Elements/Icon/icons/TrashBin.js +13 -33
  766. package/ui/Elements/Icon/icons/Truck.d.ts +2 -1
  767. package/ui/Elements/Icon/icons/Truck.js +13 -73
  768. package/ui/Elements/Icon/icons/TwoBoxes.d.ts +2 -1
  769. package/ui/Elements/Icon/icons/TwoBoxes.js +13 -20
  770. package/ui/Elements/Icon/icons/TwoCheckedBoxes.d.ts +2 -1
  771. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +2 -29
  772. package/ui/Elements/Icon/icons/TwoUsers.d.ts +2 -1
  773. package/ui/Elements/Icon/icons/TwoUsers.js +13 -42
  774. package/ui/Elements/Icon/icons/UserCowboy.d.ts +3 -2
  775. package/ui/Elements/Icon/icons/UserCowboy.js +13 -9
  776. package/ui/Elements/Icon/icons/Valuable.d.ts +3 -2
  777. package/ui/Elements/Icon/icons/Valuable.js +13 -34
  778. package/ui/Elements/Icon/icons/Weight.d.ts +2 -1
  779. package/ui/Elements/Icon/icons/Weight.js +13 -12
  780. package/ui/Elements/Icon/icons/index.js +91 -188
  781. package/ui/Elements/Icon/index.d.ts +2 -1
  782. package/ui/Elements/Icon/index.js +5 -97
  783. package/ui/Elements/Icon/stories/BadgeIcon.stories.d.ts +6 -5
  784. package/ui/Elements/Icon/stories/BadgeIcon.stories.js +18 -0
  785. package/ui/Elements/Icon/stories/Icon.stories.d.ts +3 -2
  786. package/ui/Elements/Icon/stories/Icon.stories.js +48 -0
  787. package/ui/Elements/Icon/types.d.ts +2 -1
  788. package/ui/Elements/Image/Image.d.ts +3 -2
  789. package/ui/Elements/Image/Image.js +37 -15
  790. package/ui/Elements/Image/index.d.ts +2 -1
  791. package/ui/Elements/Image/index.js +3 -5
  792. package/ui/Elements/Image/stories/Image.stories.d.ts +3 -2
  793. package/ui/Elements/Image/stories/Image.stories.js +36 -0
  794. package/ui/Elements/Image/types.d.ts +2 -1
  795. package/ui/Elements/Label/Label.d.ts +3 -3
  796. package/ui/Elements/Label/Label.js +14 -23
  797. package/ui/Elements/Label/index.d.ts +1 -0
  798. package/ui/Elements/Label/index.js +3 -5
  799. package/ui/Elements/Label/stories/Label.stories.d.ts +4 -3
  800. package/ui/Elements/Label/stories/Label.stories.js +20 -0
  801. package/ui/Elements/Line/Line.d.ts +1 -0
  802. package/ui/Elements/Line/Line.js +23 -21
  803. package/ui/Elements/Line/index.d.ts +2 -1
  804. package/ui/Elements/Line/index.js +3 -5
  805. package/ui/Elements/Line/stories/Line.stories.d.ts +3 -2
  806. package/ui/Elements/Line/stories/Line.stories.js +41 -0
  807. package/ui/Elements/Line/types.d.ts +2 -1
  808. package/ui/Elements/Link/Link.d.ts +2 -1
  809. package/ui/Elements/Link/Link.js +47 -43
  810. package/ui/Elements/Link/index.d.ts +2 -1
  811. package/ui/Elements/Link/index.js +3 -5
  812. package/ui/Elements/Link/stories/Link.stories.d.ts +15 -14
  813. package/ui/Elements/Link/stories/Link.stories.js +63 -0
  814. package/ui/Elements/Logo/Logo.d.ts +3 -2
  815. package/ui/Elements/Logo/Logo.js +91 -66
  816. package/ui/Elements/Logo/index.d.ts +2 -1
  817. package/ui/Elements/Logo/index.js +3 -5
  818. package/ui/Elements/Logo/stories/Logo.stories.d.ts +3 -2
  819. package/ui/Elements/Logo/stories/Logo.stories.js +136 -0
  820. package/ui/Elements/Pagination/Pagination.d.ts +2 -1
  821. package/ui/Elements/Pagination/Pagination.js +38 -62
  822. package/ui/Elements/Pagination/index.d.ts +2 -1
  823. package/ui/Elements/Pagination/index.js +3 -5
  824. package/ui/Elements/Pagination/stories/Pagination.stories.d.ts +3 -2
  825. package/ui/Elements/Pagination/stories/Pagination.stories.js +48 -0
  826. package/ui/Elements/Pagination/styled.d.ts +7 -6
  827. package/ui/Elements/Pagination/styled.js +26 -64
  828. package/ui/Elements/Portal/index.d.ts +2 -1
  829. package/ui/Elements/Portal/index.js +23 -22
  830. package/ui/Elements/ProgressBar/ProgressBar.d.ts +2 -1
  831. package/ui/Elements/ProgressBar/ProgressBar.js +8 -16
  832. package/ui/Elements/ProgressBar/index.d.ts +2 -1
  833. package/ui/Elements/ProgressBar/index.js +3 -5
  834. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.d.ts +8 -7
  835. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +27 -0
  836. package/ui/Elements/ProgressBar/styles.d.ts +4 -4
  837. package/ui/Elements/ProgressBar/styles.js +19 -72
  838. package/ui/Elements/Select/Select.d.ts +3 -2
  839. package/ui/Elements/Select/Select.js +110 -96
  840. package/ui/Elements/Select/components/ChevronOption.js +22 -30
  841. package/ui/Elements/Select/components/ConnectedMenu.js +26 -25
  842. package/ui/Elements/Select/components/CountMultiValue.d.ts +2 -1
  843. package/ui/Elements/Select/components/CountMultiValue.js +45 -41
  844. package/ui/Elements/Select/components/CustomInput.js +18 -12
  845. package/ui/Elements/Select/components/DropdownIndicator.d.ts +2 -1
  846. package/ui/Elements/Select/components/DropdownIndicator.js +28 -29
  847. package/ui/Elements/Select/components/IconValueContainer.js +45 -29
  848. package/ui/Elements/Select/components/SelectAll.d.ts +2 -2
  849. package/ui/Elements/Select/components/SelectAll.js +58 -89
  850. package/ui/Elements/Select/components/SelectedIndicator.d.ts +1 -1
  851. package/ui/Elements/Select/components/SelectedIndicator.js +8 -7
  852. package/ui/Elements/Select/components/SimplifiedOption.d.ts +2 -1
  853. package/ui/Elements/Select/components/SimplifiedOption.js +10 -16
  854. package/ui/Elements/Select/index.d.ts +2 -1
  855. package/ui/Elements/Select/index.js +2 -5
  856. package/ui/Elements/Select/stories/Select.stories.d.ts +10 -0
  857. package/ui/Elements/Select/stories/Select.stories.js +16 -0
  858. package/ui/Elements/Select/styles.d.ts +6 -5
  859. package/ui/Elements/Select/styles.js +12 -19
  860. package/ui/Elements/Select/themes/index.d.ts +4 -3
  861. package/ui/Elements/Select/themes/index.js +41 -40
  862. package/ui/Elements/Select/themes/selectStyles.d.ts +3 -2
  863. package/ui/Elements/Select/themes/selectStyles.js +148 -195
  864. package/ui/Elements/Select/types.d.ts +8 -4
  865. package/ui/Elements/SimpleLink/SimpleLink.d.ts +3 -2
  866. package/ui/Elements/SimpleLink/SimpleLink.js +21 -35
  867. package/ui/Elements/SimpleLink/index.d.ts +2 -1
  868. package/ui/Elements/SimpleLink/index.js +3 -5
  869. package/ui/Elements/SingleSelect/SingleSelect.d.ts +3 -2
  870. package/ui/Elements/SingleSelect/SingleSelect.js +197 -147
  871. package/ui/Elements/SingleSelect/index.d.ts +2 -1
  872. package/ui/Elements/SingleSelect/index.js +2 -5
  873. package/ui/Elements/SpaceAround/SpaceAround.d.ts +3 -2
  874. package/ui/Elements/SpaceAround/SpaceAround.js +52 -32
  875. package/ui/Elements/SpaceAround/index.d.ts +2 -1
  876. package/ui/Elements/SpaceAround/index.js +3 -5
  877. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.d.ts +3 -2
  878. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +22 -0
  879. package/ui/Elements/SpaceAround/types.d.ts +1 -0
  880. package/ui/Elements/Spinner/Spinner.d.ts +3 -2
  881. package/ui/Elements/Spinner/Spinner.js +25 -36
  882. package/ui/Elements/Spinner/index.d.ts +2 -1
  883. package/ui/Elements/Spinner/index.js +3 -5
  884. package/ui/Elements/Spinner/stories/Spinner.stories.d.ts +3 -2
  885. package/ui/Elements/Spinner/stories/Spinner.stories.js +56 -0
  886. package/ui/Elements/Spinner/styles.d.ts +3 -3
  887. package/ui/Elements/Spinner/styles.js +19 -36
  888. package/ui/Elements/Table/Table.d.ts +6 -6
  889. package/ui/Elements/Table/Table.js +12 -45
  890. package/ui/Elements/Table/index.js +1 -2
  891. package/ui/Elements/Table/stories/Table.stories.d.ts +1 -1
  892. package/ui/Elements/Table/stories/Table.stories.js +10 -0
  893. package/ui/Elements/Tag/Tag.d.ts +3 -2
  894. package/ui/Elements/Tag/Tag.js +57 -47
  895. package/ui/Elements/Tag/index.d.ts +2 -1
  896. package/ui/Elements/Tag/index.js +3 -6
  897. package/ui/Elements/Tag/palettes.d.ts +2 -1
  898. package/ui/Elements/Tag/palettes.js +14 -50
  899. package/ui/Elements/Tag/stories/Tag.stories.d.ts +3 -2
  900. package/ui/Elements/Tag/stories/Tag.stories.js +72 -0
  901. package/ui/Elements/Tag/stories/components/predefinedTags.js +7 -18
  902. package/ui/Elements/Tag/types.d.ts +1 -0
  903. package/ui/Elements/Text/Text.d.ts +3 -2
  904. package/ui/Elements/Text/Text.js +29 -10
  905. package/ui/Elements/Text/index.d.ts +2 -1
  906. package/ui/Elements/Text/index.js +1 -1
  907. package/ui/Elements/Text/stories/Text.stories.d.ts +3 -2
  908. package/ui/Elements/Text/stories/Text.stories.js +43 -0
  909. package/ui/Elements/Text/types.d.ts +1 -0
  910. package/ui/Elements/Toast/Toast.d.ts +2 -1
  911. package/ui/Elements/Toast/Toast.js +20 -35
  912. package/ui/Elements/Toast/constants.d.ts +2 -1
  913. package/ui/Elements/Toast/constants.js +15 -18
  914. package/ui/Elements/Toast/index.d.ts +2 -1
  915. package/ui/Elements/Toast/index.js +3 -5
  916. package/ui/Elements/Toast/stories/Toast.stories.d.ts +3 -2
  917. package/ui/Elements/Toast/stories/Toast.stories.js +36 -0
  918. package/ui/Elements/Toast/styles.d.ts +6 -6
  919. package/ui/Elements/Toast/styles.js +22 -76
  920. package/ui/Elements/Toggle/Toggle.d.ts +3 -2
  921. package/ui/Elements/Toggle/Toggle.js +61 -123
  922. package/ui/Elements/Toggle/index.d.ts +2 -1
  923. package/ui/Elements/Toggle/index.js +3 -5
  924. package/ui/Elements/Toggle/stories/Toggle.stories.d.ts +3 -2
  925. package/ui/Elements/Toggle/stories/Toggle.stories.js +64 -0
  926. package/ui/Elements/Toggle/types.d.ts +1 -0
  927. package/ui/Elements/Tooltip/Tooltip.d.ts +3 -2
  928. package/ui/Elements/Tooltip/Tooltip.js +24 -50
  929. package/ui/Elements/Tooltip/index.d.ts +2 -1
  930. package/ui/Elements/Tooltip/index.js +3 -5
  931. package/ui/Elements/Tooltip/stories/Tooltip.stories.d.ts +3 -2
  932. package/ui/Elements/Tooltip/stories/Tooltip.stories.js +15 -0
  933. package/ui/Elements/Typography/Typography.d.ts +3 -2
  934. package/ui/Elements/Typography/Typography.js +46 -75
  935. package/ui/Elements/Typography/index.d.ts +1 -0
  936. package/ui/Elements/Typography/index.js +3 -5
  937. package/ui/Elements/Typography/stories/Typography.stories.d.ts +2 -1
  938. package/ui/Elements/Typography/stories/Typography.stories.js +20 -0
  939. package/ui/Forms/Checkbox/Checkbox.d.ts +3 -2
  940. package/ui/Forms/Checkbox/Checkbox.js +11 -43
  941. package/ui/Forms/Checkbox/index.d.ts +2 -1
  942. package/ui/Forms/Checkbox/index.js +3 -5
  943. package/ui/Forms/Checkbox/stories/Checkbox.stories.d.ts +2 -1
  944. package/ui/Forms/Checkbox/stories/Checkbox.stories.js +35 -0
  945. package/ui/Forms/Checkbox/styles.d.ts +5 -4
  946. package/ui/Forms/Checkbox/styles.js +26 -94
  947. package/ui/Forms/Checkbox/types.d.ts +2 -1
  948. package/ui/Forms/Input/Input.d.ts +3 -2
  949. package/ui/Forms/Input/Input.js +65 -128
  950. package/ui/Forms/Input/index.d.ts +1 -0
  951. package/ui/Forms/Input/index.js +3 -5
  952. package/ui/Forms/Input/stories/Input.stories.d.ts +3 -2
  953. package/ui/Forms/Input/stories/Input.stories.js +77 -0
  954. package/ui/Forms/Input/styles.d.ts +12 -12
  955. package/ui/Forms/Input/styles.js +66 -218
  956. package/ui/Forms/Input/types.d.ts +2 -1
  957. package/ui/Forms/RadioButton/RadioButton.d.ts +3 -2
  958. package/ui/Forms/RadioButton/RadioButton.js +31 -23
  959. package/ui/Forms/RadioButton/index.d.ts +2 -1
  960. package/ui/Forms/RadioButton/index.js +3 -5
  961. package/ui/Forms/RadioButton/stories/RadioButton.stories.d.ts +3 -2
  962. package/ui/Forms/RadioButton/stories/RadioButton.stories.js +38 -0
  963. package/ui/Forms/RadioButton/styles.d.ts +6 -6
  964. package/ui/Forms/RadioButton/styles.js +15 -86
  965. package/ui/Forms/RadioButton/types.d.ts +1 -0
  966. package/ui/Forms/TextArea/TextArea.d.ts +3 -2
  967. package/ui/Forms/TextArea/TextArea.js +33 -34
  968. package/ui/Forms/TextArea/index.d.ts +2 -1
  969. package/ui/Forms/TextArea/index.js +2 -5
  970. package/ui/Forms/TextArea/styles.d.ts +10 -10
  971. package/ui/Forms/TextArea/styles.js +31 -76
  972. package/ui/System/Fonts/index.js +9 -54
  973. package/ui/ThemeProvider/ThemeProvider.d.ts +4 -3
  974. package/ui/ThemeProvider/ThemeProvider.js +9 -16
  975. package/ui/ThemeProvider/index.d.ts +3 -2
  976. package/ui/ThemeProvider/index.js +5 -6
  977. package/ui/ThemeProvider/themes/dark.d.ts +169 -0
  978. package/ui/ThemeProvider/themes/dark.js +14 -0
  979. package/ui/ThemeProvider/themes/default.d.ts +17 -0
  980. package/ui/ThemeProvider/themes/default.js +170 -185
  981. package/ui/ThemeProvider/themes/index.d.ts +279 -78
  982. package/ui/ThemeProvider/themes/index.js +8 -10
  983. package/ui/ThemeProvider/themes/mailwise.d.ts +115 -98
  984. package/ui/ThemeProvider/themes/mailwise.js +82 -229
  985. package/ui/ThemeProvider/types.d.ts +3 -2
  986. package/ui/hooks/useToggleAndClose.js +11 -17
  987. package/ui/index.d.ts +48 -47
  988. package/ui/index.es.js +50429 -0
  989. package/ui/index.js +94 -179
  990. package/ui/index.umd.js +4323 -0
  991. package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +16 -16
  992. package/ui/utils/CreateRgba/createRgba.d.ts +1 -0
  993. package/ui/utils/CreateRgba/createRgba.js +15 -11
  994. package/ui/utils/KeyPress/KeyPress.d.ts +1 -0
  995. package/ui/utils/KeyPress/KeyPress.js +16 -15
  996. package/ui/utils/KeyPress/KeyPress.stories.d.ts +2 -1
  997. package/ui/utils/KeyPress/KeyPress.stories.js +18 -0
  998. package/ui/utils/KeyPress/index.d.ts +2 -1
  999. package/ui/utils/KeyPress/index.js +2 -5
  1000. package/ui/utils/LinguiContainer/index.js +7 -12
  1001. package/ui/utils/index.d.ts +5 -4
  1002. package/ui/utils/index.js +6 -8
  1003. package/ui/utils/translations.d.ts +2 -1
  1004. package/ui/utils/translations.js +4 -336
  1005. package/ui/ThemeProvider/themes/light.d.ts +0 -3
  1006. package/ui/ThemeProvider/themes/light.js +0 -7
  1007. package/ui/_virtual/_rolldown/runtime.js +0 -13
@@ -1,13 +1,13 @@
1
- import { jsx } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/Location.tsx
3
- const Location = (props) => /* @__PURE__ */ jsx("svg", {
4
- width: "14",
5
- height: "18",
6
- viewBox: "0 0 14 18",
7
- fill: "#FAFBFC",
8
- xmlns: "http://www.w3.org/2000/svg",
9
- ...props,
10
- children: /* @__PURE__ */ jsx("path", { d: "M11.8125 6.75C11.8125 3.95508 9.54492 1.6875 6.75 1.6875C3.95508 1.6875 1.6875 3.95508 1.6875 6.75C1.6875 7.18594 1.8457 7.86094 2.22539 8.76094C2.59453 9.63281 3.11836 10.5961 3.71953 11.5699C4.72148 13.1941 5.88164 14.7621 6.75 15.8801C7.62187 14.7621 8.78203 13.1941 9.78047 11.5699C10.3816 10.5961 10.9055 9.63281 11.2746 8.76094C11.6543 7.86094 11.8125 7.18594 11.8125 6.75ZM13.5 6.75C13.5 9.82266 9.38672 15.293 7.5832 17.55C7.15078 18.0879 6.34922 18.0879 5.9168 17.55C4.11328 15.293 0 9.82266 0 6.75C0 3.02344 3.02344 0 6.75 0C10.4766 0 13.5 3.02344 13.5 6.75ZM7.875 6.75C7.875 6.45163 7.75647 6.16548 7.5455 5.95451C7.33452 5.74353 7.04837 5.625 6.75 5.625C6.45163 5.625 6.16548 5.74353 5.9545 5.95451C5.74353 6.16548 5.625 6.45163 5.625 6.75C5.625 7.04837 5.74353 7.33452 5.9545 7.5455C6.16548 7.75647 6.45163 7.875 6.75 7.875C7.04837 7.875 7.33452 7.75647 7.5455 7.5455C7.75647 7.33452 7.875 7.04837 7.875 6.75ZM3.9375 6.75C3.9375 6.00408 4.23382 5.28871 4.76126 4.76126C5.28871 4.23382 6.00408 3.9375 6.75 3.9375C7.49592 3.9375 8.21129 4.23382 8.73874 4.76126C9.26618 5.28871 9.5625 6.00408 9.5625 6.75C9.5625 7.49592 9.26618 8.21129 8.73874 8.73874C8.21129 9.26618 7.49592 9.5625 6.75 9.5625C6.00408 9.5625 5.28871 9.26618 4.76126 8.73874C4.23382 8.21129 3.9375 7.49592 3.9375 6.75Z" })
11
- });
12
- //#endregion
13
- export { Location };
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 Location = function (props) { return (_jsx("svg", __assign({ width: "14", height: "18", viewBox: "0 0 14 18", fill: "#FAFBFC", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M11.8125 6.75C11.8125 3.95508 9.54492 1.6875 6.75 1.6875C3.95508 1.6875 1.6875 3.95508 1.6875 6.75C1.6875 7.18594 1.8457 7.86094 2.22539 8.76094C2.59453 9.63281 3.11836 10.5961 3.71953 11.5699C4.72148 13.1941 5.88164 14.7621 6.75 15.8801C7.62187 14.7621 8.78203 13.1941 9.78047 11.5699C10.3816 10.5961 10.9055 9.63281 11.2746 8.76094C11.6543 7.86094 11.8125 7.18594 11.8125 6.75ZM13.5 6.75C13.5 9.82266 9.38672 15.293 7.5832 17.55C7.15078 18.0879 6.34922 18.0879 5.9168 17.55C4.11328 15.293 0 9.82266 0 6.75C0 3.02344 3.02344 0 6.75 0C10.4766 0 13.5 3.02344 13.5 6.75ZM7.875 6.75C7.875 6.45163 7.75647 6.16548 7.5455 5.95451C7.33452 5.74353 7.04837 5.625 6.75 5.625C6.45163 5.625 6.16548 5.74353 5.9545 5.95451C5.74353 6.16548 5.625 6.45163 5.625 6.75C5.625 7.04837 5.74353 7.33452 5.9545 7.5455C6.16548 7.75647 6.45163 7.875 6.75 7.875C7.04837 7.875 7.33452 7.75647 7.5455 7.5455C7.75647 7.33452 7.875 7.04837 7.875 6.75ZM3.9375 6.75C3.9375 6.00408 4.23382 5.28871 4.76126 4.76126C5.28871 4.23382 6.00408 3.9375 6.75 3.9375C7.49592 3.9375 8.21129 4.23382 8.73874 4.76126C9.26618 5.28871 9.5625 6.00408 9.5625 6.75C9.5625 7.49592 9.26618 8.21129 8.73874 8.73874C8.21129 9.26618 7.49592 9.5625 6.75 9.5625C6.00408 9.5625 5.28871 9.26618 4.76126 8.73874C4.23382 8.21129 3.9375 7.49592 3.9375 6.75Z" }) }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const Logout1: FC<SvgProps>;
@@ -1,32 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/Logout1.tsx
3
- const Logout1 = (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: "M15.016 7.38951V6.45652C15.016 4.42151 13.366 2.77151 11.331 2.77151H6.45597C4.42197 2.77151 2.77197 4.42151 2.77197 6.45652V17.5865C2.77197 19.6215 4.42197 21.2715 6.45597 21.2715H11.341C13.37 21.2715 15.016 19.6265 15.016 17.5975V16.6545",
13
- strokeWidth: "1.5",
14
- strokeLinecap: "round",
15
- strokeLinejoin: "round"
16
- }),
17
- /* @__PURE__ */ jsx("path", {
18
- d: "M21.8095 12.0214H9.76849",
19
- strokeWidth: "1.5",
20
- strokeLinecap: "round",
21
- strokeLinejoin: "round"
22
- }),
23
- /* @__PURE__ */ jsx("path", {
24
- d: "M18.8812 9.10632L21.8092 12.0213L18.8812 14.9373",
25
- strokeWidth: "1.5",
26
- strokeLinecap: "round",
27
- strokeLinejoin: "round"
28
- })
29
- ]
30
- });
31
- //#endregion
32
- export { Logout1 };
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 Logout1 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: [_jsx("path", { d: "M15.016 7.38951V6.45652C15.016 4.42151 13.366 2.77151 11.331 2.77151H6.45597C4.42197 2.77151 2.77197 4.42151 2.77197 6.45652V17.5865C2.77197 19.6215 4.42197 21.2715 6.45597 21.2715H11.341C13.37 21.2715 15.016 19.6265 15.016 17.5975V16.6545", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M21.8095 12.0214H9.76849", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M18.8812 9.10632L21.8092 12.0213L18.8812 14.9373", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
2
- import { type SvgProps } from '../types';
1
+ import { FC } from 'react';
2
+ import { SvgProps } from '../types';
3
+
3
4
  export declare const MachinePackingForbidden: FC<SvgProps>;
@@ -1,70 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/MachinePackingForbidden.tsx
3
- const MachinePackingForbidden = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "36",
5
- height: "36",
6
- viewBox: "0 0 36 36",
7
- stroke: "#9E4800",
8
- fill: "none",
9
- xmlns: "http://www.w3.org/2000/svg",
10
- ...props,
11
- children: [
12
- /* @__PURE__ */ jsx("path", {
13
- d: "M22.2528 27.3712C21.4091 28.2149 19.9804 27.9422 19.5068 26.8471V26.8471C19.2314 26.2103 19.3731 25.47 19.8643 24.98L29.0757 15.7896C30.0129 14.8545 31.613 15.3182 31.905 16.6095V16.6095C32.0324 17.1728 31.862 17.762 31.4537 18.1703L22.2528 27.3712Z",
14
- strokeWidth: "1.10624"
15
- }),
16
- /* @__PURE__ */ jsx("path", {
17
- d: "M20.8705 28.0185L7.88937 28.0225C6.81307 28.0229 5.83955 27.3834 5.4123 26.3956V26.3956C4.96707 25.3661 5.20519 24.1686 6.01037 23.3878L10.3613 19.1687",
18
- strokeWidth: "1.10624"
19
- }),
20
- /* @__PURE__ */ jsx("path", {
21
- d: "M10.3612 21.3812L10.3612 13.6375L12.5737 11.425L20.8705 11.425L20.8705 18.6156L18.1049 21.3812L10.3612 21.3812Z",
22
- strokeWidth: "1.10624"
23
- }),
24
- /* @__PURE__ */ jsx("path", {
25
- d: "M12.0206 14.1907H18.1049L19.2111 13.0845",
26
- strokeWidth: "1.10624"
27
- }),
28
- /* @__PURE__ */ jsx("rect", {
29
- x: "12.8502",
30
- y: "19.4453",
31
- width: "0.553121",
32
- height: "0.553121",
33
- fill: "black",
34
- strokeWidth: "0.553121"
35
- }),
36
- /* @__PURE__ */ jsx("rect", {
37
- x: "15.0627",
38
- y: "19.4453",
39
- width: "0.553121",
40
- height: "0.553121",
41
- fill: "black",
42
- strokeWidth: "0.553121"
43
- }),
44
- /* @__PURE__ */ jsx("path", {
45
- d: "M20.8704 16.9562L23.636 16.9562L26.4016 14.1906L26.4016 7L18.1048 7L15.8923 9.21248L15.8923 11.425",
46
- strokeWidth: "1.10624"
47
- }),
48
- /* @__PURE__ */ jsx("path", {
49
- d: "M17.5517 9.76567H23.636L24.7423 8.65942",
50
- strokeWidth: "1.10624"
51
- }),
52
- /* @__PURE__ */ jsx("rect", {
53
- x: "20.5939",
54
- y: "15.0202",
55
- width: "0.553121",
56
- height: "0.553121",
57
- fill: "black",
58
- strokeWidth: "0.553121"
59
- }),
60
- /* @__PURE__ */ jsx("line", {
61
- x1: "29.7071",
62
- y1: "5.70711",
63
- x2: "4.70711",
64
- y2: "30.7071",
65
- strokeWidth: "2"
66
- })
67
- ]
68
- });
69
- //#endregion
70
- export { MachinePackingForbidden };
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 MachinePackingForbidden = function (props) { return (_jsxs("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", stroke: "#9E4800", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M22.2528 27.3712C21.4091 28.2149 19.9804 27.9422 19.5068 26.8471V26.8471C19.2314 26.2103 19.3731 25.47 19.8643 24.98L29.0757 15.7896C30.0129 14.8545 31.613 15.3182 31.905 16.6095V16.6095C32.0324 17.1728 31.862 17.762 31.4537 18.1703L22.2528 27.3712Z", strokeWidth: "1.10624" }), _jsx("path", { d: "M20.8705 28.0185L7.88937 28.0225C6.81307 28.0229 5.83955 27.3834 5.4123 26.3956V26.3956C4.96707 25.3661 5.20519 24.1686 6.01037 23.3878L10.3613 19.1687", strokeWidth: "1.10624" }), _jsx("path", { d: "M10.3612 21.3812L10.3612 13.6375L12.5737 11.425L20.8705 11.425L20.8705 18.6156L18.1049 21.3812L10.3612 21.3812Z", strokeWidth: "1.10624" }), _jsx("path", { d: "M12.0206 14.1907H18.1049L19.2111 13.0845", strokeWidth: "1.10624" }), _jsx("rect", { x: "12.8502", y: "19.4453", width: "0.553121", height: "0.553121", fill: "black", strokeWidth: "0.553121" }), _jsx("rect", { x: "15.0627", y: "19.4453", width: "0.553121", height: "0.553121", fill: "black", strokeWidth: "0.553121" }), _jsx("path", { d: "M20.8704 16.9562L23.636 16.9562L26.4016 14.1906L26.4016 7L18.1048 7L15.8923 9.21248L15.8923 11.425", strokeWidth: "1.10624" }), _jsx("path", { d: "M17.5517 9.76567H23.636L24.7423 8.65942", strokeWidth: "1.10624" }), _jsx("rect", { x: "20.5939", y: "15.0202", width: "0.553121", height: "0.553121", fill: "black", strokeWidth: "0.553121" }), _jsx("line", { x1: "29.7071", y1: "5.70711", x2: "4.70711", y2: "30.7071", strokeWidth: "2" })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const MakePhoto: FC<SvgProps>;
@@ -1,35 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/MakePhoto.tsx
3
- const MakePhoto = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "24",
5
- height: "24",
6
- viewBox: "0 0 24 24",
7
- fill: "none",
8
- stroke: "#22394E",
9
- xmlns: "http://www.w3.org/2000/svg",
10
- ...props,
11
- children: [
12
- /* @__PURE__ */ jsx("path", {
13
- fillRule: "evenodd",
14
- clipRule: "evenodd",
15
- d: "M17.6377 7.10987C17.2647 7.10987 16.9267 6.89487 16.7677 6.55887C16.4807 5.95087 16.1157 5.17387 15.8997 4.75087C15.5807 4.12187 15.0637 3.75587 14.3477 3.75087C14.3357 3.74987 9.66376 3.74987 9.65176 3.75087C8.93576 3.75587 8.41976 4.12187 8.09976 4.75087C7.88476 5.17387 7.51976 5.95087 7.23276 6.55887C7.07376 6.89487 6.73476 7.10987 6.36276 7.10987C4.36676 7.10987 2.74976 8.72687 2.74976 10.7219L2.74976 16.6579C2.74976 18.6519 4.36676 20.2699 6.36276 20.2699L17.6377 20.2699C19.6327 20.2699 21.2497 18.6519 21.2497 16.6579L21.2497 10.7219C21.2497 8.72687 19.6327 7.10987 17.6377 7.10987Z",
16
- strokeWidth: "1.5",
17
- strokeLinecap: "round",
18
- strokeLinejoin: "round"
19
- }),
20
- /* @__PURE__ */ jsx("path", {
21
- fillRule: "evenodd",
22
- clipRule: "evenodd",
23
- d: "M8.82139 13.3345C8.82039 15.0875 10.2514 16.5215 12.0014 16.5205C13.7484 16.5185 15.1754 15.0905 15.1784 13.3415C15.1814 11.5855 13.7554 10.1545 12.0034 10.1525C10.2414 10.1505 8.80739 11.6055 8.82139 13.3345Z",
24
- strokeWidth: "1.5",
25
- strokeLinecap: "round",
26
- strokeLinejoin: "round"
27
- }),
28
- /* @__PURE__ */ jsx("path", {
29
- d: "M16.5392 9.80995L16.5392 9.80995L16.54 9.80805C16.571 9.73747 16.5999 9.69016 16.6574 9.63231C16.7068 9.59037 16.7521 9.56032 16.8148 9.5318C17.0023 9.46148 17.2237 9.51198 17.3508 9.63902L17.3508 9.63903L17.3534 9.64159C17.3735 9.66141 17.3933 9.68463 17.4102 9.70806C17.4226 9.72528 17.4311 9.73931 17.4363 9.74872L17.4511 9.7867L17.4553 9.79744L17.46 9.80798C17.486 9.8665 17.5 9.9322 17.5 10.0005C17.5 10.1214 17.4561 10.2419 17.3488 10.3579C17.2703 10.4349 17.169 10.4834 17.06 10.4964L17.0002 10.4994L16.9431 10.4965C16.9056 10.4917 16.8609 10.4809 16.7989 10.4565C16.7374 10.4284 16.6907 10.3971 16.6427 10.3492C16.5483 10.2468 16.5 10.1205 16.5 10.0005C16.5 9.93165 16.5142 9.86606 16.5392 9.80995ZM16.0823 9.60681C16.1368 9.48285 16.2014 9.37829 16.3182 9.26456L16.0823 9.60681Z",
30
- fill: "#200E32"
31
- })
32
- ]
33
- });
34
- //#endregion
35
- export { MakePhoto };
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 MakePhoto = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.6377 7.10987C17.2647 7.10987 16.9267 6.89487 16.7677 6.55887C16.4807 5.95087 16.1157 5.17387 15.8997 4.75087C15.5807 4.12187 15.0637 3.75587 14.3477 3.75087C14.3357 3.74987 9.66376 3.74987 9.65176 3.75087C8.93576 3.75587 8.41976 4.12187 8.09976 4.75087C7.88476 5.17387 7.51976 5.95087 7.23276 6.55887C7.07376 6.89487 6.73476 7.10987 6.36276 7.10987C4.36676 7.10987 2.74976 8.72687 2.74976 10.7219L2.74976 16.6579C2.74976 18.6519 4.36676 20.2699 6.36276 20.2699L17.6377 20.2699C19.6327 20.2699 21.2497 18.6519 21.2497 16.6579L21.2497 10.7219C21.2497 8.72687 19.6327 7.10987 17.6377 7.10987Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.82139 13.3345C8.82039 15.0875 10.2514 16.5215 12.0014 16.5205C13.7484 16.5185 15.1754 15.0905 15.1784 13.3415C15.1814 11.5855 13.7554 10.1545 12.0034 10.1525C10.2414 10.1505 8.80739 11.6055 8.82139 13.3345Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M16.5392 9.80995L16.5392 9.80995L16.54 9.80805C16.571 9.73747 16.5999 9.69016 16.6574 9.63231C16.7068 9.59037 16.7521 9.56032 16.8148 9.5318C17.0023 9.46148 17.2237 9.51198 17.3508 9.63902L17.3508 9.63903L17.3534 9.64159C17.3735 9.66141 17.3933 9.68463 17.4102 9.70806C17.4226 9.72528 17.4311 9.73931 17.4363 9.74872L17.4511 9.7867L17.4553 9.79744L17.46 9.80798C17.486 9.8665 17.5 9.9322 17.5 10.0005C17.5 10.1214 17.4561 10.2419 17.3488 10.3579C17.2703 10.4349 17.169 10.4834 17.06 10.4964L17.0002 10.4994L16.9431 10.4965C16.9056 10.4917 16.8609 10.4809 16.7989 10.4565C16.7374 10.4284 16.6907 10.3971 16.6427 10.3492C16.5483 10.2468 16.5 10.1205 16.5 10.0005C16.5 9.93165 16.5142 9.86606 16.5392 9.80995ZM16.0823 9.60681C16.1368 9.48285 16.2014 9.37829 16.3182 9.26456L16.0823 9.60681Z", fill: "#200E32" })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const MenuItems: FC<SvgProps>;
@@ -1,39 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/MenuItems.tsx
3
- const MenuItems = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "24",
5
- height: "24",
6
- viewBox: "0 0 24 24",
7
- fill: "#42526E",
8
- ...props,
9
- children: [
10
- /* @__PURE__ */ jsx("rect", {
11
- x: "24",
12
- y: "24",
13
- width: "24",
14
- height: "24",
15
- rx: "5.4",
16
- transform: "rotate(180 24 24)"
17
- }),
18
- /* @__PURE__ */ jsx("g", {
19
- clipPath: "url(#clip0_334_574)",
20
- children: /* @__PURE__ */ jsx("path", {
21
- d: "M16.95 12.124L9.72446 12.124M9.72446 12.124L12.8211 9.59512M9.72446 12.124L12.8211 14.653",
22
- stroke: "#A3B3C1",
23
- strokeWidth: "0.9",
24
- strokeLinecap: "round"
25
- })
26
- }),
27
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
28
- id: "clip0_334_574",
29
- children: /* @__PURE__ */ jsx("rect", {
30
- width: "13.2",
31
- height: "13.2",
32
- fill: "white",
33
- transform: "matrix(-1 0 0 -1 18.6 18.6)"
34
- })
35
- }) })
36
- ]
37
- });
38
- //#endregion
39
- export { MenuItems };
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 MenuItems = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "#42526E" }, props, { children: [_jsx("rect", { x: "24", y: "24", width: "24", height: "24", rx: "5.4", transform: "rotate(180 24 24)" }), _jsx("g", { clipPath: "url(#clip0_334_574)", children: _jsx("path", { d: "M16.95 12.124L9.72446 12.124M9.72446 12.124L12.8211 9.59512M9.72446 12.124L12.8211 14.653", stroke: "#A3B3C1", strokeWidth: "0.9", strokeLinecap: "round" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_334_574", children: _jsx("rect", { width: "13.2", height: "13.2", fill: "white", transform: "matrix(-1 0 0 -1 18.6 18.6)" }) }) })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const Message: FC<SvgProps>;
@@ -1,38 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/Message.tsx
3
- const Message = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "18",
5
- height: "18",
6
- viewBox: "0 0 18 18",
7
- fill: "none",
8
- stroke: "black",
9
- ...props,
10
- children: [/* @__PURE__ */ jsxs("g", {
11
- "clip-path": "url(#clip0_1226_2769)",
12
- children: [/* @__PURE__ */ jsx("rect", {
13
- x: "0.75",
14
- y: "1.5",
15
- width: "16.5",
16
- height: "15",
17
- rx: "3",
18
- strokeWidth: "1.5",
19
- strokeMiterlimit: "10",
20
- strokeLinecap: "round",
21
- strokeLinejoin: "round"
22
- }), /* @__PURE__ */ jsx("path", {
23
- d: "M3.75 5.25L7.83752 8.16966C8.53292 8.66637 9.46708 8.66637 10.1625 8.16966L14.25 5.25",
24
- strokeWidth: "1.5",
25
- strokeMiterlimit: "10",
26
- strokeLinecap: "round",
27
- strokeLinejoin: "round"
28
- })]
29
- }), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
30
- id: "clip0_1226_2769",
31
- children: /* @__PURE__ */ jsx("rect", {
32
- width: "18",
33
- height: "18"
34
- })
35
- }) })]
36
- });
37
- //#endregion
38
- export { Message };
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 Message = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "black" }, props, { children: [_jsxs("g", { "clip-path": "url(#clip0_1226_2769)", children: [_jsx("rect", { x: "0.75", y: "1.5", width: "16.5", height: "15", rx: "3", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M3.75 5.25L7.83752 8.16966C8.53292 8.66637 9.46708 8.66637 10.1625 8.16966L14.25 5.25", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_1226_2769", children: _jsx("rect", { width: "18", height: "18" }) }) })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const MobileCancel: FC<SvgProps>;
@@ -1,22 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/MobileCancel.tsx
3
- const MobileCancel = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "36",
5
- height: "36",
6
- viewBox: "0 0 36 36",
7
- fill: "none",
8
- ...props,
9
- children: [/* @__PURE__ */ jsx("rect", {
10
- width: "36",
11
- height: "36",
12
- rx: "18",
13
- fill: "neutral20"
14
- }), /* @__PURE__ */ jsx("path", {
15
- fillRule: "evenodd",
16
- clipRule: "evenodd",
17
- d: "M23.5181 13.5128C23.811 13.2199 23.811 12.745 23.5181 12.4521C23.2252 12.1592 22.7503 12.1592 22.4574 12.4521L18.4851 16.4245L14.5127 12.4521C14.2198 12.1592 13.7449 12.1592 13.452 12.4521C13.1591 12.745 13.1591 13.2199 13.452 13.5128L17.4244 17.4851L13.452 21.4575C13.1591 21.7504 13.1591 22.2253 13.452 22.5182C13.7449 22.8111 14.2198 22.8111 14.5127 22.5182L18.4851 18.5458L22.4574 22.5182C22.7503 22.8111 23.2252 22.8111 23.5181 22.5182C23.811 22.2253 23.811 21.7504 23.5181 21.4575L19.5457 17.4851L23.5181 13.5128Z",
18
- fill: "#111D27"
19
- })]
20
- });
21
- //#endregion
22
- export { MobileCancel };
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 MobileCancel = function (props) { return (_jsxs("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", fill: "none" }, props, { children: [_jsx("rect", { width: "36", height: "36", rx: "18", fill: "neutral20" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M23.5181 13.5128C23.811 13.2199 23.811 12.745 23.5181 12.4521C23.2252 12.1592 22.7503 12.1592 22.4574 12.4521L18.4851 16.4245L14.5127 12.4521C14.2198 12.1592 13.7449 12.1592 13.452 12.4521C13.1591 12.745 13.1591 13.2199 13.452 13.5128L17.4244 17.4851L13.452 21.4575C13.1591 21.7504 13.1591 22.2253 13.452 22.5182C13.7449 22.8111 14.2198 22.8111 14.5127 22.5182L18.4851 18.5458L22.4574 22.5182C22.7503 22.8111 23.2252 22.8111 23.5181 22.5182C23.811 22.2253 23.811 21.7504 23.5181 21.4575L19.5457 17.4851L23.5181 13.5128Z", fill: "#111D27" })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
2
- import { type SvgProps } from '../types';
1
+ import { FC } from 'react';
2
+ import { SvgProps } from '../types';
3
+
3
4
  export declare const MobilePhone: FC<SvgProps>;
@@ -1,47 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/MobilePhone.tsx
3
- const MobilePhone = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- width: "24",
6
- height: "24",
7
- viewBox: "0 0 24 24",
8
- fill: "black",
9
- ...props,
10
- children: [
11
- /* @__PURE__ */ jsx("rect", {
12
- x: "6",
13
- y: "2",
14
- width: "12",
15
- height: "20",
16
- rx: "3",
17
- ry: "3"
18
- }),
19
- /* @__PURE__ */ jsx("rect", {
20
- x: "7.75",
21
- y: "5.25",
22
- width: "8.5",
23
- height: "13.5",
24
- rx: "1.25",
25
- ry: "1.25",
26
- fill: "white"
27
- }),
28
- /* @__PURE__ */ jsx("rect", {
29
- x: "10",
30
- y: "4.25",
31
- width: "4",
32
- height: "0.5",
33
- rx: "0.25",
34
- fill: "white"
35
- }),
36
- /* @__PURE__ */ jsx("rect", {
37
- x: "9.5",
38
- y: "19.25",
39
- width: "5",
40
- height: "0.5",
41
- rx: "0.25",
42
- fill: "white"
43
- })
44
- ]
45
- });
46
- //#endregion
47
- export { MobilePhone };
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 MobilePhone = function (props) { return (_jsxs("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "black" }, props, { children: [_jsx("rect", { x: "6", y: "2", width: "12", height: "20", rx: "3", ry: "3" }), _jsx("rect", { x: "7.75", y: "5.25", width: "8.5", height: "13.5", rx: "1.25", ry: "1.25", fill: "white" }), _jsx("rect", { x: "10", y: "4.25", width: "4", height: "0.5", rx: "0.25", fill: "white" }), _jsx("rect", { x: "9.5", y: "19.25", width: "5", height: "0.5", rx: "0.25", fill: "white" })] }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const Moon: FC<SvgProps>;
@@ -1,12 +1,13 @@
1
- import { jsx } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/Moon.tsx
3
- const Moon = (props) => /* @__PURE__ */ jsx("svg", {
4
- width: "18",
5
- height: "18",
6
- viewBox: "0 0 384 512",
7
- fill: "currentColor",
8
- ...props,
9
- children: /* @__PURE__ */ jsx("path", { d: "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" })
10
- });
11
- //#endregion
12
- export { Moon };
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 Moon = function (props) { return (_jsx("svg", __assign({ width: "18", height: "18", viewBox: "0 0 384 512", fill: "currentColor" }, props, { children: _jsx("path", { d: "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" }) }))); };
@@ -1,3 +1,4 @@
1
- import { type FC } from 'react';
1
+ import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const Notification2: FC<SvgProps>;
@@ -1,25 +1,13 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region packages/ui/Elements/Icon/icons/Notification2.tsx
3
- const Notification2 = (props) => /* @__PURE__ */ jsxs("svg", {
4
- width: "24",
5
- height: "24",
6
- viewBox: "0 0 24 24",
7
- fill: "none",
8
- stroke: "#22394E",
9
- ...props,
10
- children: [/* @__PURE__ */ jsx("path", {
11
- fillRule: "evenodd",
12
- clipRule: "evenodd",
13
- d: "M5.00068 13.701V13.5208C5.02713 12.9875 5.19814 12.4709 5.49606 12.0241C5.99194 11.4874 6.3314 10.8297 6.47882 10.12C6.47882 9.57143 6.47882 9.01507 6.52676 8.46655C6.77445 5.8258 9.38717 4 11.968 4H12.0319C14.6126 4 17.2253 5.8258 17.481 8.46655C17.5289 9.01507 17.481 9.57143 17.5209 10.12C17.6703 10.8313 18.0095 11.491 18.5037 12.0319C18.8038 12.4748 18.9751 12.9896 18.9991 13.5208V13.6932C19.017 14.4095 18.7701 15.1081 18.304 15.66C17.6881 16.3054 16.8523 16.7068 15.9549 16.7884C13.3234 17.0705 10.6684 17.0705 8.03686 16.7884C7.14047 16.7033 6.30592 16.3024 5.68782 15.66C5.22894 15.1077 4.98537 14.4133 5.00068 13.701Z",
14
- strokeWidth: "1.5",
15
- strokeLinecap: "round",
16
- strokeLinejoin: "round"
17
- }), /* @__PURE__ */ jsx("path", {
18
- d: "M10 19C10.415 19.5457 11.0244 19.899 11.6934 19.9815C12.3624 20.0639 13.0358 19.8689 13.5645 19.4395C13.7271 19.3125 13.8734 19.1648 14 19",
19
- strokeWidth: "1.5",
20
- strokeLinecap: "round",
21
- strokeLinejoin: "round"
22
- })]
23
- });
24
- //#endregion
25
- export { Notification2 };
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 Notification2 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#22394E" }, props, { children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.00068 13.701V13.5208C5.02713 12.9875 5.19814 12.4709 5.49606 12.0241C5.99194 11.4874 6.3314 10.8297 6.47882 10.12C6.47882 9.57143 6.47882 9.01507 6.52676 8.46655C6.77445 5.8258 9.38717 4 11.968 4H12.0319C14.6126 4 17.2253 5.8258 17.481 8.46655C17.5289 9.01507 17.481 9.57143 17.5209 10.12C17.6703 10.8313 18.0095 11.491 18.5037 12.0319C18.8038 12.4748 18.9751 12.9896 18.9991 13.5208V13.6932C19.017 14.4095 18.7701 15.1081 18.304 15.66C17.6881 16.3054 16.8523 16.7068 15.9549 16.7884C13.3234 17.0705 10.6684 17.0705 8.03686 16.7884C7.14047 16.7033 6.30592 16.3024 5.68782 15.66C5.22894 15.1077 4.98537 14.4133 5.00068 13.701Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M10 19C10.415 19.5457 11.0244 19.899 11.6934 19.9815C12.3624 20.0639 13.0358 19.8689 13.5645 19.4395C13.7271 19.3125 13.8734 19.1648 14 19", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
@@ -1,3 +1,4 @@
1
1
  import { FC } from 'react';
2
2
  import { SvgProps } from '../types';
3
+
3
4
  export declare const OpenBox: FC<SvgProps>;