@mailstep/design-system 0.8.27 → 0.8.28

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 (552) hide show
  1. package/package.json +4 -4
  2. package/ui/Blocks/CommonGrid/CommonGrid.js +104 -152
  3. package/ui/Blocks/CommonGrid/CommonGridContainer.js +187 -368
  4. package/ui/Blocks/CommonGrid/HoC/withProps.js +9 -37
  5. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +29 -46
  6. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +105 -196
  7. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +37 -49
  8. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +76 -162
  9. package/ui/Blocks/CommonGrid/components/ActionHead/index.js +3 -1
  10. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +43 -124
  11. package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +3 -1
  12. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +50 -112
  13. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +130 -251
  14. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +3 -1
  15. package/ui/Blocks/CommonGrid/components/ColumnTitle.js +36 -104
  16. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +156 -252
  17. package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +3 -1
  18. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +40 -53
  19. package/ui/Blocks/CommonGrid/components/DataCell.js +34 -97
  20. package/ui/Blocks/CommonGrid/components/DataRow.js +60 -74
  21. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +67 -154
  22. package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +3 -1
  23. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +57 -149
  24. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +3 -1
  25. package/ui/Blocks/CommonGrid/components/FilterDropdown.js +30 -48
  26. package/ui/Blocks/CommonGrid/components/FilterRow.js +28 -36
  27. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +32 -83
  28. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +3 -1
  29. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +34 -90
  30. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +4 -2
  31. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +149 -373
  32. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +3 -1
  33. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +7 -12
  34. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +13 -25
  35. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +3 -3
  36. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +92 -376
  37. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +4 -8
  38. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +4 -2
  39. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +142 -293
  40. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +3 -1
  41. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.js +1 -0
  42. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +160 -320
  43. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +3 -1
  44. package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.js +1 -0
  45. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +79 -156
  46. package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +3 -1
  47. package/ui/Blocks/CommonGrid/components/GridInfo/index.js +30 -41
  48. package/ui/Blocks/CommonGrid/components/GridModals/index.js +132 -134
  49. package/ui/Blocks/CommonGrid/components/GridStatus/index.js +23 -25
  50. package/ui/Blocks/CommonGrid/components/GroupRow.js +26 -87
  51. package/ui/Blocks/CommonGrid/components/HeadCell.js +33 -89
  52. package/ui/Blocks/CommonGrid/components/HeadRow.js +69 -192
  53. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +61 -99
  54. package/ui/Blocks/CommonGrid/components/IconList/index.js +3 -1
  55. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +52 -114
  56. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +66 -171
  57. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +3 -1
  58. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +16 -34
  59. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +7 -9
  60. package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +110 -228
  61. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +13 -21
  62. package/ui/Blocks/CommonGrid/components/MobileSortModal.js +64 -88
  63. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +34 -86
  64. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +17 -20
  65. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +88 -201
  66. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +29 -54
  67. package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +3 -1
  68. package/ui/Blocks/CommonGrid/components/Resize.js +46 -53
  69. package/ui/Blocks/CommonGrid/components/Table.js +40 -94
  70. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +63 -113
  71. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +3 -1
  72. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +16 -32
  73. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +10 -58
  74. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +7 -7
  75. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +9 -12
  76. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +27 -100
  77. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +48 -48
  78. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +31 -33
  79. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +28 -50
  80. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +8 -22
  81. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +37 -63
  82. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +75 -113
  83. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +7 -7
  84. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +9 -57
  85. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +30 -82
  86. package/ui/Blocks/CommonGrid/components/gridCells/index.js +14 -14
  87. package/ui/Blocks/CommonGrid/components/icons/Edit.js +13 -65
  88. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +13 -65
  89. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +19 -72
  90. package/ui/Blocks/CommonGrid/components/utils.js +18 -67
  91. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +14 -14
  92. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +85 -119
  93. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +29 -77
  94. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +21 -32
  95. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +56 -91
  96. package/ui/Blocks/CommonGrid/hooks/useEvent.js +10 -14
  97. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +14 -15
  98. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +25 -42
  99. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +10 -20
  100. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +97 -220
  101. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +54 -124
  102. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +13 -57
  103. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +76 -149
  104. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +19 -23
  105. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +18 -80
  106. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +17 -28
  107. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +12 -63
  108. package/ui/Blocks/CommonGrid/index.js +26 -10
  109. package/ui/Blocks/CommonGrid/store/index.js +286 -430
  110. package/ui/Blocks/CommonGrid/store/migrateState.js +10 -10
  111. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +16 -20
  112. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +17 -22
  113. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +9 -15
  114. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +121 -156
  115. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +106 -145
  116. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +11 -14
  117. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +5 -7
  118. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -5
  119. package/ui/Blocks/CommonGrid/styles.js +252 -97
  120. package/ui/Blocks/CommonGrid/types.js +22 -14
  121. package/ui/Blocks/CommonGrid/utils/constants.js +24 -22
  122. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +15 -44
  123. package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +8 -9
  124. package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +8 -9
  125. package/ui/Blocks/CommonGrid/utils/index.js +69 -107
  126. package/ui/Blocks/CornerDialog/CornerDialog.js +40 -94
  127. package/ui/Blocks/CornerDialog/index.js +3 -1
  128. package/ui/Blocks/CornerDialog/styles.js +56 -83
  129. package/ui/Blocks/CornerDialog/types.js +1 -0
  130. package/ui/Blocks/CornerDialog/utils.js +28 -26
  131. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +12 -11
  132. package/ui/Blocks/Header/components/MenuItems/index.js +6 -11
  133. package/ui/Blocks/Header/components/MenuItems/styles.js +21 -35
  134. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +20 -28
  135. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +13 -31
  136. package/ui/Blocks/Header/components/UserMenu/hooks/index.js +1 -1
  137. package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +8 -9
  138. package/ui/Blocks/Header/components/UserMenu/index.js +45 -99
  139. package/ui/Blocks/Header/components/UserMenu/styles.js +24 -44
  140. package/ui/Blocks/Header/hooks/useChangeLanguage.js +7 -8
  141. package/ui/Blocks/Header/index.js +41 -57
  142. package/ui/Blocks/Header/styles.js +33 -54
  143. package/ui/Blocks/Header/types.js +1 -0
  144. package/ui/Blocks/Header/utils/constants.js +3 -1
  145. package/ui/Blocks/Header/utils/languageItems.js +13 -18
  146. package/ui/Blocks/HidePrint/HidePrint.js +11 -28
  147. package/ui/Blocks/ImageList/ImageList.js +76 -131
  148. package/ui/Blocks/ImageList/components/AddPhoto/index.js +33 -182
  149. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +29 -42
  150. package/ui/Blocks/ImageList/components/CloseButton/index.js +15 -13
  151. package/ui/Blocks/ImageList/components/CloseButton/styles.js +17 -25
  152. package/ui/Blocks/ImageList/components/ImageElement/index.js +26 -27
  153. package/ui/Blocks/ImageList/components/ImageElement/styles.js +21 -63
  154. package/ui/Blocks/ImageList/components/ImageTag/index.js +12 -15
  155. package/ui/Blocks/ImageList/components/ImageTag/styles.js +8 -21
  156. package/ui/Blocks/ImageList/hooks/useControls.js +12 -66
  157. package/ui/Blocks/ImageList/hooks/useOnElementClick.js +12 -70
  158. package/ui/Blocks/ImageList/index.js +3 -1
  159. package/ui/Blocks/ImageList/styles.js +28 -47
  160. package/ui/Blocks/ImageList/types.js +1 -0
  161. package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +50 -136
  162. package/ui/Blocks/LanguageSwitch/index.js +3 -1
  163. package/ui/Blocks/LanguageSwitch/styles.js +31 -49
  164. package/ui/Blocks/LanguageSwitch/types.js +1 -0
  165. package/ui/Blocks/LightBox/LightBox.js +37 -46
  166. package/ui/Blocks/LightBox/hooks/useLightBox.js +14 -19
  167. package/ui/Blocks/LightBox/index.js +4 -2
  168. package/ui/Blocks/LightBox/styles.js +27 -51
  169. package/ui/Blocks/LightBox/types.js +1 -0
  170. package/ui/Blocks/LoginPage/LoginPage.js +60 -77
  171. package/ui/Blocks/LoginPage/assets/mailship.js +4 -0
  172. package/ui/Blocks/LoginPage/components/LoginForm.js +165 -220
  173. package/ui/Blocks/LoginPage/components/SocialLinks.js +78 -98
  174. package/ui/Blocks/LoginPage/index.js +4 -2
  175. package/ui/Blocks/LoginPage/styles.js +74 -94
  176. package/ui/Blocks/LoginPage/types.js +1 -0
  177. package/ui/Blocks/LoginPage/utils/links.js +9 -7
  178. package/ui/Blocks/Modal/Modal.js +122 -148
  179. package/ui/Blocks/Modal/hooks/useClickOutside.js +25 -35
  180. package/ui/Blocks/Modal/hooks/useModal.js +17 -64
  181. package/ui/Blocks/Modal/index.js +5 -3
  182. package/ui/Blocks/Modal/styles.js +181 -255
  183. package/ui/Blocks/Modal/types.js +1 -0
  184. package/ui/Blocks/Modal/utils.js +8 -6
  185. package/ui/Blocks/Popover/index.js +29 -50
  186. package/ui/Blocks/Scheduler/Scheduler.js +40 -104
  187. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +35 -123
  188. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +34 -53
  189. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +14 -61
  190. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +11 -15
  191. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +29 -51
  192. package/ui/Blocks/Scheduler/components/DateChanger/index.js +46 -50
  193. package/ui/Blocks/Scheduler/components/DateChanger/styles.js +22 -35
  194. package/ui/Blocks/Scheduler/components/Groups/index.js +8 -14
  195. package/ui/Blocks/Scheduler/components/Groups/styles.js +31 -53
  196. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +43 -114
  197. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +13 -17
  198. package/ui/Blocks/Scheduler/components/TimeSlots/index.js +45 -53
  199. package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +51 -75
  200. package/ui/Blocks/Scheduler/hooks/useChangeDate.js +32 -83
  201. package/ui/Blocks/Scheduler/index.js +1 -1
  202. package/ui/Blocks/Scheduler/styles.js +21 -32
  203. package/ui/Blocks/Scheduler/types.js +1 -0
  204. package/ui/Blocks/Scheduler/utils/constants.js +8 -6
  205. package/ui/Blocks/Scheduler/utils/convertDateToTime.js +4 -4
  206. package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +9 -7
  207. package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +8 -10
  208. package/ui/Blocks/Scheduler/utils/formatDate.js +7 -8
  209. package/ui/Blocks/Scheduler/utils/generateTimeArray.js +17 -15
  210. package/ui/Blocks/Scheduler/utils/getClosestStep.js +10 -8
  211. package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +5 -5
  212. package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +5 -49
  213. package/ui/Blocks/Scheduler/utils/isActiveTime.js +9 -8
  214. package/ui/Blocks/Scheduler/utils/isToday.js +5 -3
  215. package/ui/Blocks/SideMenu/MenuItem.js +98 -191
  216. package/ui/Blocks/SideMenu/SideMenu.js +35 -80
  217. package/ui/Blocks/SideMenu/components/Footer.js +61 -95
  218. package/ui/Blocks/SideMenu/components/HamburgerMenu.js +49 -68
  219. package/ui/Blocks/SideMenu/components/SubitemTooltip.js +49 -133
  220. package/ui/Blocks/SideMenu/context/LeftMenuContext.js +17 -67
  221. package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +7 -5
  222. package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +23 -76
  223. package/ui/Blocks/SideMenu/index.js +5 -3
  224. package/ui/Blocks/SideMenu/stories/menuItems.js +106 -100
  225. package/ui/Blocks/SideMenu/styles.js +308 -415
  226. package/ui/Blocks/SideMenu/types.js +1 -0
  227. package/ui/Blocks/SideMenu/utils/constants.js +4 -2
  228. package/ui/Blocks/Stepper/Stepper.js +31 -50
  229. package/ui/Blocks/Stepper/components/StepCircle/index.js +14 -13
  230. package/ui/Blocks/Stepper/components/StepCircle/styles.js +22 -47
  231. package/ui/Blocks/Stepper/components/StepItem/index.js +48 -58
  232. package/ui/Blocks/Stepper/components/StepItem/styles.js +77 -86
  233. package/ui/Blocks/Stepper/hooks/useStepper.js +30 -78
  234. package/ui/Blocks/Stepper/index.js +3 -3
  235. package/ui/Blocks/Stepper/styles.js +24 -39
  236. package/ui/Blocks/Stepper/types.js +1 -0
  237. package/ui/Blocks/Table/Table.js +10 -31
  238. package/ui/Blocks/Table/index.js +1 -1
  239. package/ui/Blocks/Table/types.js +1 -0
  240. package/ui/Blocks/Tabs/TabContent.js +7 -8
  241. package/ui/Blocks/Tabs/Tabs.js +42 -53
  242. package/ui/Blocks/Tabs/hooks/useTabs.js +11 -59
  243. package/ui/Blocks/Tabs/index.js +5 -3
  244. package/ui/Blocks/Tabs/styles.js +94 -109
  245. package/ui/Blocks/Tabs/types.js +1 -0
  246. package/ui/Elements/Alert/Alert.js +71 -95
  247. package/ui/Elements/Alert/index.js +3 -1
  248. package/ui/Elements/Alert/styles.js +81 -126
  249. package/ui/Elements/Alert/types.js +1 -0
  250. package/ui/Elements/AsyncSelect/AsyncSelect.js +31 -157
  251. package/ui/Elements/AsyncSelect/index.js +3 -1
  252. package/ui/Elements/Avatar/Avatar.js +35 -150
  253. package/ui/Elements/Avatar/index.js +4 -3
  254. package/ui/Elements/Avatar/types.js +1 -0
  255. package/ui/Elements/Badge/Badge.js +50 -105
  256. package/ui/Elements/Badge/index.js +3 -1
  257. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +19 -22
  258. package/ui/Elements/BarChartSymbol/index.js +1 -1
  259. package/ui/Elements/BarChartSymbol/styles.js +8 -32
  260. package/ui/Elements/BorderedBox/BorderedBox.js +20 -124
  261. package/ui/Elements/BorderedBox/index.js +3 -1
  262. package/ui/Elements/BorderedBox/types.js +1 -0
  263. package/ui/Elements/Button/Button.js +43 -153
  264. package/ui/Elements/Button/index.js +3 -1
  265. package/ui/Elements/Button/styles.js +224 -95
  266. package/ui/Elements/Button/types.js +1 -0
  267. package/ui/Elements/Card/Card.js +13 -13
  268. package/ui/Elements/Card/index.js +3 -1
  269. package/ui/Elements/Card/styles.js +21 -49
  270. package/ui/Elements/Card/types.js +1 -0
  271. package/ui/Elements/CheckedCircle/index.js +12 -11
  272. package/ui/Elements/CheckedCircle/styles.js +14 -29
  273. package/ui/Elements/DatePicker/DatePicker.js +84 -206
  274. package/ui/Elements/DatePicker/Datetime/DateTime.js +422 -724
  275. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +62 -126
  276. package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +10 -24
  277. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +14 -20
  278. package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +15 -21
  279. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +160 -254
  280. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +28 -84
  281. package/ui/Elements/DatePicker/Datetime/types.js +13 -11
  282. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +134 -334
  283. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +71 -265
  284. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +81 -276
  285. package/ui/Elements/DatePicker/index.js +5 -3
  286. package/ui/Elements/DatePicker/styles.js +233 -35
  287. package/ui/Elements/DatePicker/utils/constants.js +27 -33
  288. package/ui/Elements/Dropdown/Dropdown.js +53 -88
  289. package/ui/Elements/Dropdown/index.js +3 -1
  290. package/ui/Elements/Dropdown/types.js +1 -0
  291. package/ui/Elements/DropdownMenu/DropdownMenu.js +32 -134
  292. package/ui/Elements/DropdownMenu/components/DefaultItem.js +30 -56
  293. package/ui/Elements/DropdownMenu/components/MenuItem.js +56 -103
  294. package/ui/Elements/DropdownMenu/components/MenuList.js +13 -14
  295. package/ui/Elements/DropdownMenu/index.js +1 -1
  296. package/ui/Elements/DropdownMenu/types.js +1 -0
  297. package/ui/Elements/DropdownSelect/DropdownSelect.js +126 -205
  298. package/ui/Elements/DropdownSelect/index.js +3 -2
  299. package/ui/Elements/ErrorMessage/ErrorMessage.js +62 -56
  300. package/ui/Elements/ErrorMessage/index.js +3 -1
  301. package/ui/Elements/ErrorMessage/types.js +1 -0
  302. package/ui/Elements/HighlightBox/HighlightBox.js +97 -99
  303. package/ui/Elements/HighlightBox/index.js +3 -1
  304. package/ui/Elements/Icon/BadgeIcon.js +26 -121
  305. package/ui/Elements/Icon/Icon.js +182 -255
  306. package/ui/Elements/Icon/icons/Add.js +31 -91
  307. package/ui/Elements/Icon/icons/AddPhoto.js +32 -84
  308. package/ui/Elements/Icon/icons/Admin.js +24 -79
  309. package/ui/Elements/Icon/icons/ArrowDown.js +16 -68
  310. package/ui/Elements/Icon/icons/ArrowForward.js +10 -64
  311. package/ui/Elements/Icon/icons/ArrowUp.js +16 -68
  312. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +19 -77
  313. package/ui/Elements/Icon/icons/ArrowsLeftRight.js +10 -64
  314. package/ui/Elements/Icon/icons/ArrowsUpDown.js +10 -64
  315. package/ui/Elements/Icon/icons/BarcodeScan.js +11 -65
  316. package/ui/Elements/Icon/icons/Box.js +15 -67
  317. package/ui/Elements/Icon/icons/Calendar.js +37 -89
  318. package/ui/Elements/Icon/icons/Cancel.js +16 -68
  319. package/ui/Elements/Icon/icons/CheckedBox.js +21 -76
  320. package/ui/Elements/Icon/icons/CircleHalfStroke.js +10 -64
  321. package/ui/Elements/Icon/icons/Company.js +80 -137
  322. package/ui/Elements/Icon/icons/Complaint.js +57 -114
  323. package/ui/Elements/Icon/icons/Consolidation.js +11 -65
  324. package/ui/Elements/Icon/icons/Container.js +11 -65
  325. package/ui/Elements/Icon/icons/Dashboard.js +34 -86
  326. package/ui/Elements/Icon/icons/Desktop.js +61 -118
  327. package/ui/Elements/Icon/icons/Dispatch.js +11 -65
  328. package/ui/Elements/Icon/icons/EmptyRack.js +32 -32
  329. package/ui/Elements/Icon/icons/Expeditions.js +60 -112
  330. package/ui/Elements/Icon/icons/Filter.js +15 -67
  331. package/ui/Elements/Icon/icons/FlagCZ.js +53 -108
  332. package/ui/Elements/Icon/icons/FlagEL.js +48 -100
  333. package/ui/Elements/Icon/icons/FlagESP.js +91 -143
  334. package/ui/Elements/Icon/icons/FlagHU.js +25 -77
  335. package/ui/Elements/Icon/icons/FlagITA.js +53 -108
  336. package/ui/Elements/Icon/icons/FlagNL.js +25 -77
  337. package/ui/Elements/Icon/icons/FlagRUS.js +53 -108
  338. package/ui/Elements/Icon/icons/FlagSVK.js +90 -145
  339. package/ui/Elements/Icon/icons/FlagUK.js +18 -73
  340. package/ui/Elements/Icon/icons/FlagUSA.js +104 -168
  341. package/ui/Elements/Icon/icons/Foldable.js +32 -84
  342. package/ui/Elements/Icon/icons/Fragile.js +40 -92
  343. package/ui/Elements/Icon/icons/Gift.js +39 -91
  344. package/ui/Elements/Icon/icons/Group.js +15 -67
  345. package/ui/Elements/Icon/icons/HamburgerMenu.js +39 -91
  346. package/ui/Elements/Icon/icons/HelpCircle1.js +30 -82
  347. package/ui/Elements/Icon/icons/HorizontalLines.js +34 -86
  348. package/ui/Elements/Icon/icons/ImagePlaceholder.js +15 -67
  349. package/ui/Elements/Icon/icons/Income.js +20 -75
  350. package/ui/Elements/Icon/icons/Info.js +31 -83
  351. package/ui/Elements/Icon/icons/Integrations.js +15 -67
  352. package/ui/Elements/Icon/icons/Inventory.js +43 -100
  353. package/ui/Elements/Icon/icons/Inventory2.js +64 -121
  354. package/ui/Elements/Icon/icons/Layout.js +41 -91
  355. package/ui/Elements/Icon/icons/Link.js +18 -73
  356. package/ui/Elements/Icon/icons/Liquid.js +20 -75
  357. package/ui/Elements/Icon/icons/Location.js +11 -65
  358. package/ui/Elements/Icon/icons/Logout1.js +30 -82
  359. package/ui/Elements/Icon/icons/MachinePackingForbidden.js +68 -120
  360. package/ui/Elements/Icon/icons/MakePhoto.js +33 -85
  361. package/ui/Elements/Icon/icons/MenuItems.js +37 -91
  362. package/ui/Elements/Icon/icons/Message.js +36 -96
  363. package/ui/Elements/Icon/icons/MobileCancel.js +20 -75
  364. package/ui/Elements/Icon/icons/MobilePhone.js +45 -97
  365. package/ui/Elements/Icon/icons/Moon.js +10 -64
  366. package/ui/Elements/Icon/icons/Notification2.js +23 -78
  367. package/ui/Elements/Icon/icons/OpenBox.js +35 -87
  368. package/ui/Elements/Icon/icons/Pallet.js +34 -93
  369. package/ui/Elements/Icon/icons/Plus1.js +15 -67
  370. package/ui/Elements/Icon/icons/Print.js +39 -91
  371. package/ui/Elements/Icon/icons/Product.js +15 -67
  372. package/ui/Elements/Icon/icons/Products.js +14 -66
  373. package/ui/Elements/Icon/icons/Profile.js +23 -78
  374. package/ui/Elements/Icon/icons/Puzzle1.js +16 -68
  375. package/ui/Elements/Icon/icons/QRCode.js +17 -69
  376. package/ui/Elements/Icon/icons/Rack.js +63 -115
  377. package/ui/Elements/Icon/icons/Reload.js +11 -65
  378. package/ui/Elements/Icon/icons/Return.js +17 -72
  379. package/ui/Elements/Icon/icons/Rows.js +37 -89
  380. package/ui/Elements/Icon/icons/Settings2.js +31 -91
  381. package/ui/Elements/Icon/icons/ShieldUser.js +7 -61
  382. package/ui/Elements/Icon/icons/ShoppingBag.js +16 -67
  383. package/ui/Elements/Icon/icons/Sort.js +21 -76
  384. package/ui/Elements/Icon/icons/Sun.js +10 -64
  385. package/ui/Elements/Icon/icons/ThreeDots.js +37 -89
  386. package/ui/Elements/Icon/icons/ToastError.js +25 -82
  387. package/ui/Elements/Icon/icons/ToastSuccess.js +25 -82
  388. package/ui/Elements/Icon/icons/Transfer.js +19 -74
  389. package/ui/Elements/Icon/icons/TrashBin.js +31 -83
  390. package/ui/Elements/Icon/icons/Truck.js +71 -127
  391. package/ui/Elements/Icon/icons/TwoBoxes.js +18 -73
  392. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +27 -27
  393. package/ui/Elements/Icon/icons/TwoUsers.js +40 -91
  394. package/ui/Elements/Icon/icons/UserCowboy.js +7 -61
  395. package/ui/Elements/Icon/icons/Valuable.js +32 -83
  396. package/ui/Elements/Icon/icons/Weight.js +10 -64
  397. package/ui/Elements/Icon/icons/index.js +188 -92
  398. package/ui/Elements/Icon/index.js +96 -4
  399. package/ui/Elements/Icon/types.js +1 -0
  400. package/ui/Elements/Image/Image.js +13 -154
  401. package/ui/Elements/Image/index.js +3 -1
  402. package/ui/Elements/Image/types.js +1 -0
  403. package/ui/Elements/Label/Label.js +22 -61
  404. package/ui/Elements/Label/index.js +4 -3
  405. package/ui/Elements/Line/Line.js +20 -44
  406. package/ui/Elements/Line/index.js +3 -1
  407. package/ui/Elements/Line/types.js +1 -0
  408. package/ui/Elements/Link/Link.js +42 -126
  409. package/ui/Elements/Link/index.js +3 -1
  410. package/ui/Elements/Logo/Logo.js +65 -162
  411. package/ui/Elements/Logo/assets/mailship/logo_black.js +4 -0
  412. package/ui/Elements/Logo/assets/mailship/logo_m.js +4 -0
  413. package/ui/Elements/Logo/assets/mailship/logo_white.js +4 -0
  414. package/ui/Elements/Logo/assets/mailship/mailship-logo.js +4 -0
  415. package/ui/Elements/Logo/assets/mailstep/mailstep_black.js +4 -0
  416. package/ui/Elements/Logo/assets/mailstep/mailstep_white.js +4 -0
  417. package/ui/Elements/Logo/assets/mailstock/mailstock.js +4 -0
  418. package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.js +4 -0
  419. package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.js +4 -0
  420. package/ui/Elements/Logo/assets/mailwrap/mailwrapLogo.js +4 -0
  421. package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.js +4 -0
  422. package/ui/Elements/Logo/assets/warehouse/manager.js +4 -0
  423. package/ui/Elements/Logo/assets/warehouse/manager2.js +4 -0
  424. package/ui/Elements/Logo/assets/warehouse/manager3.js +4 -0
  425. package/ui/Elements/Logo/index.js +3 -1
  426. package/ui/Elements/Logo/types.js +1 -0
  427. package/ui/Elements/Pagination/Pagination.js +61 -85
  428. package/ui/Elements/Pagination/index.js +3 -1
  429. package/ui/Elements/Pagination/styled.js +62 -89
  430. package/ui/Elements/Portal/index.js +20 -68
  431. package/ui/Elements/ProgressBar/ProgressBar.js +15 -19
  432. package/ui/Elements/ProgressBar/index.js +3 -1
  433. package/ui/Elements/ProgressBar/styles.js +69 -114
  434. package/ui/Elements/Select/Select.js +94 -442
  435. package/ui/Elements/Select/components/ChevronOption.js +29 -87
  436. package/ui/Elements/Select/components/ConnectedMenu.js +24 -85
  437. package/ui/Elements/Select/components/CountMultiValue.js +40 -132
  438. package/ui/Elements/Select/components/CustomInput.js +11 -61
  439. package/ui/Elements/Select/components/DropdownIndicator.js +28 -94
  440. package/ui/Elements/Select/components/IconValueContainer.js +27 -139
  441. package/ui/Elements/Select/components/SelectAll.js +87 -164
  442. package/ui/Elements/Select/components/SelectedIndicator.js +7 -23
  443. package/ui/Elements/Select/components/SimplifiedOption.js +15 -23
  444. package/ui/Elements/Select/index.js +3 -1
  445. package/ui/Elements/Select/styles.js +16 -44
  446. package/ui/Elements/Select/themes/index.js +37 -44
  447. package/ui/Elements/Select/themes/selectStyles.js +194 -302
  448. package/ui/Elements/Select/types.js +1 -0
  449. package/ui/Elements/SimpleLink/SimpleLink.js +35 -64
  450. package/ui/Elements/SimpleLink/index.js +5 -3
  451. package/ui/Elements/SingleSelect/SingleSelect.js +145 -509
  452. package/ui/Elements/SingleSelect/index.js +3 -1
  453. package/ui/Elements/SpaceAround/SpaceAround.js +31 -166
  454. package/ui/Elements/SpaceAround/index.js +3 -1
  455. package/ui/Elements/SpaceAround/types.js +1 -0
  456. package/ui/Elements/Spinner/Spinner.js +35 -36
  457. package/ui/Elements/Spinner/index.js +3 -1
  458. package/ui/Elements/Spinner/styles.js +35 -65
  459. package/ui/Elements/Spinner/types.js +1 -0
  460. package/ui/Elements/Table/Table.js +44 -77
  461. package/ui/Elements/Table/index.js +1 -1
  462. package/ui/Elements/Tag/Tag.js +47 -82
  463. package/ui/Elements/Tag/index.js +4 -2
  464. package/ui/Elements/Tag/palettes.js +50 -45
  465. package/ui/Elements/Tag/stories/components/predefinedTags.js +17 -18
  466. package/ui/Elements/Tag/types.js +1 -0
  467. package/ui/Elements/Text/Text.js +9 -75
  468. package/ui/Elements/Text/index.js +1 -1
  469. package/ui/Elements/Text/types.js +1 -0
  470. package/ui/Elements/Toast/Toast.js +33 -55
  471. package/ui/Elements/Toast/constants.js +17 -15
  472. package/ui/Elements/Toast/index.js +3 -1
  473. package/ui/Elements/Toast/styles.js +74 -104
  474. package/ui/Elements/Toggle/Toggle.js +120 -258
  475. package/ui/Elements/Toggle/index.js +3 -1
  476. package/ui/Elements/Toggle/types.js +1 -0
  477. package/ui/Elements/Tooltip/Tooltip.js +49 -119
  478. package/ui/Elements/Tooltip/index.js +3 -1
  479. package/ui/Elements/Typography/Typography.js +73 -158
  480. package/ui/Elements/Typography/index.js +4 -3
  481. package/ui/Forms/Checkbox/Checkbox.js +39 -40
  482. package/ui/Forms/Checkbox/index.js +5 -3
  483. package/ui/Forms/Checkbox/styles.js +92 -74
  484. package/ui/Forms/Checkbox/types.js +1 -0
  485. package/ui/Forms/Input/Input.js +125 -258
  486. package/ui/Forms/Input/index.js +3 -1
  487. package/ui/Forms/Input/styles.js +217 -201
  488. package/ui/Forms/Input/types.js +1 -0
  489. package/ui/Forms/RadioButton/RadioButton.js +22 -101
  490. package/ui/Forms/RadioButton/index.js +3 -1
  491. package/ui/Forms/RadioButton/styles.js +85 -75
  492. package/ui/Forms/RadioButton/types.js +1 -0
  493. package/ui/Forms/TextArea/TextArea.js +33 -153
  494. package/ui/Forms/TextArea/index.js +3 -1
  495. package/ui/Forms/TextArea/styles.js +75 -99
  496. package/ui/System/Fonts/index.js +52 -15
  497. package/ui/ThemeProvider/ThemeProvider.js +15 -18
  498. package/ui/ThemeProvider/index.js +5 -4
  499. package/ui/ThemeProvider/themes/default.js +185 -193
  500. package/ui/ThemeProvider/themes/index.js +10 -9
  501. package/ui/ThemeProvider/themes/light.js +7 -8
  502. package/ui/ThemeProvider/themes/mailwise.js +229 -236
  503. package/ui/ThemeProvider/types.js +1 -0
  504. package/ui/_virtual/_rolldown/runtime.js +13 -0
  505. package/ui/hooks/useToggleAndClose.js +15 -62
  506. package/ui/index.js +179 -94
  507. package/ui/packages/assets/fonts/Inter-Bold_mailstep.js +4 -0
  508. package/ui/packages/assets/fonts/Inter-Light_mailstep.js +4 -0
  509. package/ui/packages/assets/fonts/Inter-Medium_mailstep.js +4 -0
  510. package/ui/packages/assets/fonts/Inter-Regular_mailstep.js +4 -0
  511. package/ui/packages/assets/fonts/Inter-SemiBold_mailstep.js +4 -0
  512. package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +14 -63
  513. package/ui/utils/CreateRgba/createRgba.js +11 -16
  514. package/ui/utils/CreateRgba/types.js +1 -0
  515. package/ui/utils/KeyPress/KeyPress.js +15 -22
  516. package/ui/utils/KeyPress/index.js +4 -2
  517. package/ui/utils/KeyPress/types.js +1 -0
  518. package/ui/utils/LinguiContainer/index.js +7 -6
  519. package/ui/utils/index.js +7 -5
  520. package/ui/utils/translations.js +334 -333
  521. package/ui/Blocks/CommonGrid/store/store.d.js +0 -0
  522. package/ui/Blocks/CornerDialog/index.d.js +0 -2
  523. package/ui/Blocks/ImageList/index.d.js +0 -2
  524. package/ui/Blocks/LightBox/index.d.js +0 -3
  525. package/ui/Blocks/Modal/index.d.js +0 -3
  526. package/ui/Blocks/Tabs/index.d.js +0 -3
  527. package/ui/Elements/Alert/index.d.js +0 -3
  528. package/ui/Elements/Avatar/index.d.js +0 -2
  529. package/ui/Elements/Badge/index.d.js +0 -2
  530. package/ui/Elements/BorderedBox/index.d.js +0 -3
  531. package/ui/Elements/Button/Button.d.js +0 -2
  532. package/ui/Elements/Button/index.d.js +0 -3
  533. package/ui/Elements/Card/index.d.js +0 -2
  534. package/ui/Elements/ErrorMessage/index.d.js +0 -3
  535. package/ui/Elements/Line/index.d.js +0 -3
  536. package/ui/Elements/Logo/default.d.js +0 -0
  537. package/ui/Elements/Logo/index.d.js +0 -2
  538. package/ui/Elements/Pagination/index.d.js +0 -3
  539. package/ui/Elements/Spinner/index.d.js +0 -2
  540. package/ui/Elements/Tag/index.d.js +0 -3
  541. package/ui/Elements/Text/index.d.js +0 -2
  542. package/ui/Elements/Toast/index.d.js +0 -3
  543. package/ui/Elements/Toggle/index.d.js +0 -2
  544. package/ui/Elements/Tooltip/index.d.js +0 -2
  545. package/ui/Elements/Typography/index.d.js +0 -2
  546. package/ui/Forms/Checkbox/index.d.js +0 -2
  547. package/ui/Forms/Input/index.d.js +0 -3
  548. package/ui/Forms/RadioButton/index.d.js +0 -2
  549. package/ui/System/Fonts/font.d.js +0 -0
  550. package/ui/ThemeProvider/ThemeProvider.d.js +0 -2
  551. package/ui/ThemeProvider/index.d.js +0 -3
  552. package/ui/utils/index.d.js +0 -3
@@ -1,67 +1,13 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
53
1
  import { jsx } from "react/jsx-runtime";
54
- var Reload = function Reload(props) {
55
- return /* @__PURE__ */ jsx("svg", _object_spread_props(_object_spread({
56
- baseProfile: "tiny",
57
- height: "1em",
58
- viewBox: "0 0 32 32",
59
- transform: "scale(1.5)",
60
- width: "1em"
61
- }, props), {
62
- children: /* @__PURE__ */ jsx("path", {
63
- d: "M24 13V7.369L21.899 9.47a8.454 8.454 0 00-6.005-2.495 8.5 8.5 0 000 17 8.49 8.49 0 007.375-4.286l-1.737-.993a6.5 6.5 0 01-5.638 3.278 6.508 6.508 0 01-6.5-6.5c0-3.584 2.916-6.5 6.5-6.5 1.792 0 3.414.732 4.59 1.91L18.369 13H24z"
64
- })
65
- }));
66
- };
2
+ //#region packages/ui/Elements/Icon/icons/Reload.tsx
3
+ const Reload = (props) => /* @__PURE__ */ jsx("svg", {
4
+ baseProfile: "tiny",
5
+ height: "1em",
6
+ viewBox: "0 0 32 32",
7
+ transform: "scale(1.5)",
8
+ width: "1em",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", { d: "M24 13V7.369L21.899 9.47a8.454 8.454 0 00-6.005-2.495 8.5 8.5 0 000 17 8.49 8.49 0 007.375-4.286l-1.737-.993a6.5 6.5 0 01-5.638 3.278 6.508 6.508 0 01-6.5-6.5c0-3.584 2.916-6.5 6.5-6.5 1.792 0 3.414.732 4.59 1.91L18.369 13H24z" })
11
+ });
12
+ //#endregion
67
13
  export { Reload };
@@ -1,74 +1,19 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
53
1
  import { jsx, jsxs } from "react/jsx-runtime";
54
- var Return = function Return(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "22",
57
- height: "22",
58
- viewBox: "0 0 22 22",
59
- fill: "none",
60
- stroke: "#A3B3C1"
61
- }, props), {
62
- children: [
63
- /* @__PURE__ */ jsx("path", {
64
- d: "M6 8.78947V13.7105L11.1 15.5M6 8.78947L11.1 10.5789M6 8.78947L11.1 7L16.2 8.34211M11.1 15.5V10.5789M11.1 15.5L16.2 13.7105V8.34211M11.1 10.5789L16.2 8.34211",
65
- strokeWidth: "1.35"
66
- }),
67
- /* @__PURE__ */ jsx("path", {
68
- d: "M2 11C2 15.9706 6.02944 20 11 20C15.9706 20 20 15.9706 20 11C20 6.02944 15.9706 2 11 2C9.14985 2 6.5 3 5 4.5M5 4.5L5.5 1M5 4.5L8.5 5",
69
- strokeWidth: "1.35"
70
- })
71
- ]
72
- }));
73
- };
2
+ //#region packages/ui/Elements/Icon/icons/Return.tsx
3
+ const Return = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "22",
5
+ height: "22",
6
+ viewBox: "0 0 22 22",
7
+ fill: "none",
8
+ stroke: "#A3B3C1",
9
+ ...props,
10
+ children: [/* @__PURE__ */ jsx("path", {
11
+ d: "M6 8.78947V13.7105L11.1 15.5M6 8.78947L11.1 10.5789M6 8.78947L11.1 7L16.2 8.34211M11.1 15.5V10.5789M11.1 15.5L16.2 13.7105V8.34211M11.1 10.5789L16.2 8.34211",
12
+ strokeWidth: "1.35"
13
+ }), /* @__PURE__ */ jsx("path", {
14
+ d: "M2 11C2 15.9706 6.02944 20 11 20C15.9706 20 20 15.9706 20 11C20 6.02944 15.9706 2 11 2C9.14985 2 6.5 3 5 4.5M5 4.5L5.5 1M5 4.5L8.5 5",
15
+ strokeWidth: "1.35"
16
+ })]
17
+ });
18
+ //#endregion
74
19
  export { Return };
@@ -1,91 +1,39 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
53
1
  import { jsx, jsxs } from "react/jsx-runtime";
54
- var Rows = function Rows(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "18",
57
- height: "18",
58
- viewBox: "0 0 18 18",
59
- fill: "none",
60
- stroke: "#22394E",
61
- xmlns: "http://www.w3.org/2000/svg"
62
- }, props), {
63
- children: [
64
- /* @__PURE__ */ jsx("path", {
65
- d: "M14.25 2.25H3.75C2.92157 2.25 2.25 2.47386 2.25 2.75V6.25C2.25 6.52614 2.92157 6.75 3.75 6.75H14.25C15.0784 6.75 15.75 6.52614 15.75 6.25V2.75C15.75 2.47386 15.0784 2.25 14.25 2.25Z",
66
- strokeWidth: "1.5",
67
- strokeLinecap: "round",
68
- strokeLinejoin: "round"
69
- }),
70
- /* @__PURE__ */ jsx("path", {
71
- d: "M5 15.2222L5 9.77778C5 9.34822 4.85076 9 4.66667 9L2.33333 9C2.14924 9 2 9.34822 2 9.77778L2 15.2222C2 15.6518 2.14924 16 2.33333 16L4.66667 16C4.85076 16 5 15.6518 5 15.2222Z",
72
- strokeWidth: "1.5",
73
- strokeLinecap: "round",
74
- strokeLinejoin: "round"
75
- }),
76
- /* @__PURE__ */ jsx("path", {
77
- d: "M10.5 15L10.5 9.75C10.5 9.33579 10.3508 9 10.1667 9L7.83333 9C7.64924 9 7.5 9.33579 7.5 9.75L7.5 15C7.5 15.4142 7.64924 15.75 7.83333 15.75L10.1667 15.75C10.3508 15.75 10.5 15.4142 10.5 15Z",
78
- strokeWidth: "1.5",
79
- strokeLinecap: "round",
80
- strokeLinejoin: "round"
81
- }),
82
- /* @__PURE__ */ jsx("path", {
83
- d: "M16 15.2222L16 9.77778C16 9.34822 15.8508 9 15.6667 9L13.3333 9C13.1492 9 13 9.34822 13 9.77778L13 15.2222C13 15.6518 13.1492 16 13.3333 16L15.6667 16C15.8508 16 16 15.6518 16 15.2222Z",
84
- strokeWidth: "1.5",
85
- strokeLinecap: "round",
86
- strokeLinejoin: "round"
87
- })
88
- ]
89
- }));
90
- };
2
+ //#region packages/ui/Elements/Icon/icons/Rows.tsx
3
+ const Rows = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "18",
5
+ height: "18",
6
+ viewBox: "0 0 18 18",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M14.25 2.25H3.75C2.92157 2.25 2.25 2.47386 2.25 2.75V6.25C2.25 6.52614 2.92157 6.75 3.75 6.75H14.25C15.0784 6.75 15.75 6.52614 15.75 6.25V2.75C15.75 2.47386 15.0784 2.25 14.25 2.25Z",
14
+ strokeWidth: "1.5",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ d: "M5 15.2222L5 9.77778C5 9.34822 4.85076 9 4.66667 9L2.33333 9C2.14924 9 2 9.34822 2 9.77778L2 15.2222C2 15.6518 2.14924 16 2.33333 16L4.66667 16C4.85076 16 5 15.6518 5 15.2222Z",
20
+ strokeWidth: "1.5",
21
+ strokeLinecap: "round",
22
+ strokeLinejoin: "round"
23
+ }),
24
+ /* @__PURE__ */ jsx("path", {
25
+ d: "M10.5 15L10.5 9.75C10.5 9.33579 10.3508 9 10.1667 9L7.83333 9C7.64924 9 7.5 9.33579 7.5 9.75L7.5 15C7.5 15.4142 7.64924 15.75 7.83333 15.75L10.1667 15.75C10.3508 15.75 10.5 15.4142 10.5 15Z",
26
+ strokeWidth: "1.5",
27
+ strokeLinecap: "round",
28
+ strokeLinejoin: "round"
29
+ }),
30
+ /* @__PURE__ */ jsx("path", {
31
+ d: "M16 15.2222L16 9.77778C16 9.34822 15.8508 9 15.6667 9L13.3333 9C13.1492 9 13 9.34822 13 9.77778L13 15.2222C13 15.6518 13.1492 16 13.3333 16L15.6667 16C15.8508 16 16 15.6518 16 15.2222Z",
32
+ strokeWidth: "1.5",
33
+ strokeLinecap: "round",
34
+ strokeLinejoin: "round"
35
+ })
36
+ ]
37
+ });
38
+ //#endregion
91
39
  export { Rows };
@@ -1,93 +1,33 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
53
1
  import { jsx, jsxs } from "react/jsx-runtime";
54
- var Settings2 = function Settings2(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "22",
57
- height: "22",
58
- viewBox: "0 0 22 22",
59
- fill: "none",
60
- stroke: "#A3B3C1"
61
- }, props), {
62
- children: [
63
- /* @__PURE__ */ jsxs("g", {
64
- clipPath: "url(#clip0_7_1622)",
65
- children: [
66
- /* @__PURE__ */ jsx("path", {
67
- d: "M11 13.75C12.5188 13.75 13.75 12.5188 13.75 11C13.75 9.48122 12.5188 8.25 11 8.25C9.48122 8.25 8.25 9.48122 8.25 11C8.25 12.5188 9.48122 13.75 11 13.75Z",
68
- strokeWidth: "1.35",
69
- strokeLinecap: "round",
70
- strokeLinejoin: "round"
71
- }),
72
- /* @__PURE__ */ jsx("path", {
73
- d: "M17.7833 13.75C17.6613 14.0265 17.6249 14.3332 17.6788 14.6305C17.7327 14.9279 17.8745 15.2023 18.0858 15.4183L18.1408 15.4733C18.3112 15.6436 18.4465 15.8458 18.5387 16.0684C18.631 16.2909 18.6785 16.5295 18.6785 16.7704C18.6785 17.0113 18.631 17.2499 18.5387 17.4725C18.4465 17.695 18.3112 17.8972 18.1408 18.0675C17.9705 18.238 17.7683 18.3732 17.5458 18.4654C17.3232 18.5577 17.0846 18.6052 16.8437 18.6052C16.6028 18.6052 16.3642 18.5577 16.1417 18.4654C15.9191 18.3732 15.7169 18.238 15.5466 18.0675L15.4916 18.0125C15.2756 17.8012 15.0012 17.6594 14.7038 17.6055C14.4065 17.5516 14.0998 17.588 13.8233 17.71C13.5522 17.8262 13.3209 18.0191 13.1581 18.2651C12.9952 18.511 12.9078 18.7992 12.9066 19.0942V19.25C12.9066 19.7362 12.7135 20.2025 12.3697 20.5464C12.0258 20.8902 11.5595 21.0833 11.0733 21.0833C10.5871 21.0833 10.1207 20.8902 9.77693 20.5464C9.43311 20.2025 9.23996 19.7362 9.23996 19.25V19.1675C9.23286 18.8641 9.13465 18.5698 8.95809 18.323C8.78154 18.0761 8.5348 17.8881 8.24996 17.7833C7.97348 17.6613 7.66678 17.6249 7.36942 17.6788C7.07206 17.7328 6.79766 17.8745 6.58163 18.0858L6.52663 18.1408C6.35636 18.3113 6.15416 18.4465 5.9316 18.5388C5.70904 18.631 5.47047 18.6785 5.22954 18.6785C4.98861 18.6785 4.75005 18.631 4.52749 18.5388C4.30492 18.4465 4.10273 18.3113 3.93246 18.1408C3.762 17.9706 3.62678 17.7684 3.53452 17.5458C3.44226 17.3232 3.39477 17.0847 3.39477 16.8438C3.39477 16.6028 3.44226 16.3643 3.53452 16.1417C3.62678 15.9191 3.762 15.7169 3.93246 15.5467L3.98746 15.4917C4.19878 15.2756 4.34055 15.0012 4.39446 14.7039C4.44838 14.4065 4.41198 14.0998 4.28996 13.8233C4.17376 13.5522 3.98082 13.321 3.73489 13.1581C3.48895 12.9953 3.20076 12.9078 2.90579 12.9067H2.74996C2.26373 12.9067 1.79741 12.7135 1.4536 12.3697C1.10978 12.0259 0.916626 11.5596 0.916626 11.0733C0.916626 10.5871 1.10978 10.1208 1.4536 9.77698C1.79741 9.43316 2.26373 9.24 2.74996 9.24H2.83246C3.13587 9.23291 3.43013 9.1347 3.67698 8.95814C3.92384 8.78158 4.11187 8.53485 4.21663 8.25C4.33865 7.97352 4.37505 7.66683 4.32113 7.36947C4.26721 7.0721 4.12545 6.79771 3.91413 6.58167L3.85913 6.52667C3.68867 6.3564 3.55344 6.15421 3.46118 5.93165C3.36892 5.70908 3.32143 5.47052 3.32143 5.22959C3.32143 4.98866 3.36892 4.75009 3.46118 4.52753C3.55344 4.30497 3.68867 4.10277 3.85913 3.9325C4.02939 3.76205 4.23159 3.62682 4.45415 3.53456C4.67672 3.4423 4.91528 3.39481 5.15621 3.39481C5.39714 3.39481 5.6357 3.4423 5.85827 3.53456C6.08083 3.62682 6.28303 3.76205 6.45329 3.9325L6.50829 3.9875C6.72433 4.19883 6.99872 4.34059 7.29609 4.39451C7.59345 4.44843 7.90014 4.41203 8.17663 4.29H8.24996C8.52108 4.17381 8.75231 3.98086 8.91518 3.73493C9.07805 3.489 9.16545 3.20081 9.16663 2.90584V2.75001C9.16663 2.26377 9.35978 1.79746 9.7036 1.45364C10.0474 1.10983 10.5137 0.916672 11 0.916672C11.4862 0.916672 11.9525 1.10983 12.2963 1.45364C12.6401 1.79746 12.8333 2.26377 12.8333 2.75001V2.8325C12.8345 3.12748 12.9219 3.41567 13.0847 3.6616C13.2476 3.90753 13.4788 4.10047 13.75 4.21667C14.0264 4.33869 14.3331 4.37509 14.6305 4.32118C14.9279 4.26726 15.2023 4.1255 15.4183 3.91417L15.4733 3.85917C15.6436 3.68871 15.8458 3.55349 16.0683 3.46123C16.2909 3.36897 16.5294 3.32148 16.7704 3.32148C17.0113 3.32148 17.2499 3.36897 17.4724 3.46123C17.695 3.55349 17.8972 3.68871 18.0675 3.85917C18.2379 4.02944 18.3731 4.23163 18.4654 4.4542C18.5577 4.67676 18.6052 4.91533 18.6052 5.15625C18.6052 5.39718 18.5577 5.63575 18.4654 5.85831C18.3731 6.08088 18.2379 6.28307 18.0675 6.45334L18.0125 6.50834C17.8011 6.72438 17.6594 6.99877 17.6055 7.29613C17.5515 7.59349 17.5879 7.90019 17.71 8.17667V8.25C17.8262 8.52113 18.0191 8.75235 18.265 8.91522C18.511 9.07809 18.7992 9.16549 19.0941 9.16667H19.25C19.7362 9.16667 20.2025 9.35983 20.5463 9.70364C20.8901 10.0475 21.0833 10.5138 21.0833 11C21.0833 11.4862 20.8901 11.9526 20.5463 12.2964C20.2025 12.6402 19.7362 12.8333 19.25 12.8333H19.1675C18.8725 12.8345 18.5843 12.9219 18.3384 13.0848C18.0924 13.2477 17.8995 13.4789 17.7833 13.75Z",
74
- strokeWidth: "1.35",
75
- strokeLinecap: "round",
76
- strokeLinejoin: "round"
77
- })
78
- ]
79
- }),
80
- /* @__PURE__ */ jsx("defs", {
81
- children: /* @__PURE__ */ jsx("clipPath", {
82
- id: "clip0_7_1622",
83
- children: /* @__PURE__ */ jsx("rect", {
84
- width: "22",
85
- height: "22",
86
- fill: "white"
87
- })
88
- })
89
- })
90
- ]
91
- }));
92
- };
2
+ //#region packages/ui/Elements/Icon/icons/Settings2.tsx
3
+ const Settings2 = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "22",
5
+ height: "22",
6
+ viewBox: "0 0 22 22",
7
+ fill: "none",
8
+ stroke: "#A3B3C1",
9
+ ...props,
10
+ children: [/* @__PURE__ */ jsxs("g", {
11
+ clipPath: "url(#clip0_7_1622)",
12
+ children: [/* @__PURE__ */ jsx("path", {
13
+ d: "M11 13.75C12.5188 13.75 13.75 12.5188 13.75 11C13.75 9.48122 12.5188 8.25 11 8.25C9.48122 8.25 8.25 9.48122 8.25 11C8.25 12.5188 9.48122 13.75 11 13.75Z",
14
+ strokeWidth: "1.35",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }), /* @__PURE__ */ jsx("path", {
18
+ d: "M17.7833 13.75C17.6613 14.0265 17.6249 14.3332 17.6788 14.6305C17.7327 14.9279 17.8745 15.2023 18.0858 15.4183L18.1408 15.4733C18.3112 15.6436 18.4465 15.8458 18.5387 16.0684C18.631 16.2909 18.6785 16.5295 18.6785 16.7704C18.6785 17.0113 18.631 17.2499 18.5387 17.4725C18.4465 17.695 18.3112 17.8972 18.1408 18.0675C17.9705 18.238 17.7683 18.3732 17.5458 18.4654C17.3232 18.5577 17.0846 18.6052 16.8437 18.6052C16.6028 18.6052 16.3642 18.5577 16.1417 18.4654C15.9191 18.3732 15.7169 18.238 15.5466 18.0675L15.4916 18.0125C15.2756 17.8012 15.0012 17.6594 14.7038 17.6055C14.4065 17.5516 14.0998 17.588 13.8233 17.71C13.5522 17.8262 13.3209 18.0191 13.1581 18.2651C12.9952 18.511 12.9078 18.7992 12.9066 19.0942V19.25C12.9066 19.7362 12.7135 20.2025 12.3697 20.5464C12.0258 20.8902 11.5595 21.0833 11.0733 21.0833C10.5871 21.0833 10.1207 20.8902 9.77693 20.5464C9.43311 20.2025 9.23996 19.7362 9.23996 19.25V19.1675C9.23286 18.8641 9.13465 18.5698 8.95809 18.323C8.78154 18.0761 8.5348 17.8881 8.24996 17.7833C7.97348 17.6613 7.66678 17.6249 7.36942 17.6788C7.07206 17.7328 6.79766 17.8745 6.58163 18.0858L6.52663 18.1408C6.35636 18.3113 6.15416 18.4465 5.9316 18.5388C5.70904 18.631 5.47047 18.6785 5.22954 18.6785C4.98861 18.6785 4.75005 18.631 4.52749 18.5388C4.30492 18.4465 4.10273 18.3113 3.93246 18.1408C3.762 17.9706 3.62678 17.7684 3.53452 17.5458C3.44226 17.3232 3.39477 17.0847 3.39477 16.8438C3.39477 16.6028 3.44226 16.3643 3.53452 16.1417C3.62678 15.9191 3.762 15.7169 3.93246 15.5467L3.98746 15.4917C4.19878 15.2756 4.34055 15.0012 4.39446 14.7039C4.44838 14.4065 4.41198 14.0998 4.28996 13.8233C4.17376 13.5522 3.98082 13.321 3.73489 13.1581C3.48895 12.9953 3.20076 12.9078 2.90579 12.9067H2.74996C2.26373 12.9067 1.79741 12.7135 1.4536 12.3697C1.10978 12.0259 0.916626 11.5596 0.916626 11.0733C0.916626 10.5871 1.10978 10.1208 1.4536 9.77698C1.79741 9.43316 2.26373 9.24 2.74996 9.24H2.83246C3.13587 9.23291 3.43013 9.1347 3.67698 8.95814C3.92384 8.78158 4.11187 8.53485 4.21663 8.25C4.33865 7.97352 4.37505 7.66683 4.32113 7.36947C4.26721 7.0721 4.12545 6.79771 3.91413 6.58167L3.85913 6.52667C3.68867 6.3564 3.55344 6.15421 3.46118 5.93165C3.36892 5.70908 3.32143 5.47052 3.32143 5.22959C3.32143 4.98866 3.36892 4.75009 3.46118 4.52753C3.55344 4.30497 3.68867 4.10277 3.85913 3.9325C4.02939 3.76205 4.23159 3.62682 4.45415 3.53456C4.67672 3.4423 4.91528 3.39481 5.15621 3.39481C5.39714 3.39481 5.6357 3.4423 5.85827 3.53456C6.08083 3.62682 6.28303 3.76205 6.45329 3.9325L6.50829 3.9875C6.72433 4.19883 6.99872 4.34059 7.29609 4.39451C7.59345 4.44843 7.90014 4.41203 8.17663 4.29H8.24996C8.52108 4.17381 8.75231 3.98086 8.91518 3.73493C9.07805 3.489 9.16545 3.20081 9.16663 2.90584V2.75001C9.16663 2.26377 9.35978 1.79746 9.7036 1.45364C10.0474 1.10983 10.5137 0.916672 11 0.916672C11.4862 0.916672 11.9525 1.10983 12.2963 1.45364C12.6401 1.79746 12.8333 2.26377 12.8333 2.75001V2.8325C12.8345 3.12748 12.9219 3.41567 13.0847 3.6616C13.2476 3.90753 13.4788 4.10047 13.75 4.21667C14.0264 4.33869 14.3331 4.37509 14.6305 4.32118C14.9279 4.26726 15.2023 4.1255 15.4183 3.91417L15.4733 3.85917C15.6436 3.68871 15.8458 3.55349 16.0683 3.46123C16.2909 3.36897 16.5294 3.32148 16.7704 3.32148C17.0113 3.32148 17.2499 3.36897 17.4724 3.46123C17.695 3.55349 17.8972 3.68871 18.0675 3.85917C18.2379 4.02944 18.3731 4.23163 18.4654 4.4542C18.5577 4.67676 18.6052 4.91533 18.6052 5.15625C18.6052 5.39718 18.5577 5.63575 18.4654 5.85831C18.3731 6.08088 18.2379 6.28307 18.0675 6.45334L18.0125 6.50834C17.8011 6.72438 17.6594 6.99877 17.6055 7.29613C17.5515 7.59349 17.5879 7.90019 17.71 8.17667V8.25C17.8262 8.52113 18.0191 8.75235 18.265 8.91522C18.511 9.07809 18.7992 9.16549 19.0941 9.16667H19.25C19.7362 9.16667 20.2025 9.35983 20.5463 9.70364C20.8901 10.0475 21.0833 10.5138 21.0833 11C21.0833 11.4862 20.8901 11.9526 20.5463 12.2964C20.2025 12.6402 19.7362 12.8333 19.25 12.8333H19.1675C18.8725 12.8345 18.5843 12.9219 18.3384 13.0848C18.0924 13.2477 17.8995 13.4789 17.7833 13.75Z",
19
+ strokeWidth: "1.35",
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round"
22
+ })]
23
+ }), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
24
+ id: "clip0_7_1622",
25
+ children: /* @__PURE__ */ jsx("rect", {
26
+ width: "22",
27
+ height: "22",
28
+ fill: "white"
29
+ })
30
+ }) })]
31
+ });
32
+ //#endregion
93
33
  export { Settings2 };
@@ -1,63 +1,9 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
53
1
  import { jsx } from "react/jsx-runtime";
54
- var ShieldUser = function ShieldUser(props) {
55
- return /* @__PURE__ */ jsx("svg", _object_spread_props(_object_spread({
56
- viewBox: "0 0 640 640"
57
- }, props), {
58
- children: /* @__PURE__ */ jsx("path", {
59
- d: "M320.3 64C322.3 64 324.3 64.2 326.2 64.6C326.4 64.6 326.7 64.7 326.9 64.8C327.7 65 328.5 65.2 329.3 65.4C329.5 65.5 329.8 65.6 330 65.6C330.7 65.8 331.4 66.1 332.1 66.4L332.4 66.5L521.7 146.7L525.7 148.6C544.3 158.1 558.1 176.6 559.8 199L560 203.9C559.5 303.1 518.7 484.6 346.3 567.1C331.7 574.1 315 574.9 299.9 569.7L293.5 567.1C121.3 484.7 80.5 303.2 80 204C79.9 177.8 96.4 156.1 118.3 146.8L307.6 66.5C307.7 66.5 307.8 66.4 307.9 66.4C308.6 66.1 309.3 65.9 310 65.6C310.2 65.5 310.5 65.4 310.7 65.4C311.5 65.1 312.4 65 313.2 64.8C313.4 64.8 313.6 64.7 313.9 64.6C315.8 64.2 317.8 64 319.8 64L320.4 64zM288 336C243.8 336 208 371.8 208 416C208 424.8 215.2 432 224 432L416 432C424.8 432 432 424.8 432 416C432 371.8 396.2 336 352 336L288 336zM320 184C289.1 184 264 209.1 264 240C264 270.9 289.1 296 320 296C350.9 296 376 270.9 376 240C376 209.1 350.9 184 320 184z"
60
- })
61
- }));
62
- };
2
+ //#region packages/ui/Elements/Icon/icons/ShieldUser.tsx
3
+ const ShieldUser = (props) => /* @__PURE__ */ jsx("svg", {
4
+ viewBox: "0 0 640 640",
5
+ ...props,
6
+ children: /* @__PURE__ */ jsx("path", { d: "M320.3 64C322.3 64 324.3 64.2 326.2 64.6C326.4 64.6 326.7 64.7 326.9 64.8C327.7 65 328.5 65.2 329.3 65.4C329.5 65.5 329.8 65.6 330 65.6C330.7 65.8 331.4 66.1 332.1 66.4L332.4 66.5L521.7 146.7L525.7 148.6C544.3 158.1 558.1 176.6 559.8 199L560 203.9C559.5 303.1 518.7 484.6 346.3 567.1C331.7 574.1 315 574.9 299.9 569.7L293.5 567.1C121.3 484.7 80.5 303.2 80 204C79.9 177.8 96.4 156.1 118.3 146.8L307.6 66.5C307.7 66.5 307.8 66.4 307.9 66.4C308.6 66.1 309.3 65.9 310 65.6C310.2 65.5 310.5 65.4 310.7 65.4C311.5 65.1 312.4 65 313.2 64.8C313.4 64.8 313.6 64.7 313.9 64.6C315.8 64.2 317.8 64 319.8 64L320.4 64zM288 336C243.8 336 208 371.8 208 416C208 424.8 215.2 432 224 432L416 432C424.8 432 432 424.8 432 416C432 371.8 396.2 336 352 336L288 336zM320 184C289.1 184 264 209.1 264 240C264 270.9 289.1 296 320 296C350.9 296 376 270.9 376 240C376 209.1 350.9 184 320 184z" })
7
+ });
8
+ //#endregion
63
9
  export { ShieldUser };
@@ -1,69 +1,18 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function ownKeys(object, enumerableOnly) {
30
- var keys = Object.keys(object);
31
- if (Object.getOwnPropertySymbols) {
32
- var symbols = Object.getOwnPropertySymbols(object);
33
- if (enumerableOnly) {
34
- symbols = symbols.filter(function(sym) {
35
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
36
- });
37
- }
38
- keys.push.apply(keys, symbols);
39
- }
40
- return keys;
41
- }
42
- function _object_spread_props(target, source) {
43
- source = source != null ? source : {};
44
- if (Object.getOwnPropertyDescriptors) {
45
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46
- } else {
47
- ownKeys(Object(source)).forEach(function(key) {
48
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49
- });
50
- }
51
- return target;
52
- }
1
+ import "react";
53
2
  import { jsx } from "react/jsx-runtime";
54
- var ShoppingBag = function ShoppingBag(props) {
55
- return /* @__PURE__ */ jsx("svg", _object_spread_props(_object_spread({
56
- width: "16",
57
- height: "16",
58
- viewBox: "0 0 16 16",
59
- fill: "none"
60
- }, props), {
61
- children: /* @__PURE__ */ jsx("path", {
62
- d: "M10.667 7.33333V4.66667C10.667 3.19391 9.47306 2 8.00033 2C6.52757 2 5.33366 3.19391 5.33366 4.66667V7.33333M3.33366 6H12.667L13.3337 14H2.66699L3.33366 6Z",
63
- strokeWidth: "1.5",
64
- strokeLinecap: "round",
65
- strokeLinejoin: "round"
66
- })
67
- }));
68
- };
3
+ //#region packages/ui/Elements/Icon/icons/ShoppingBag.tsx
4
+ const ShoppingBag = (props) => /* @__PURE__ */ jsx("svg", {
5
+ width: "16",
6
+ height: "16",
7
+ viewBox: "0 0 16 16",
8
+ fill: "none",
9
+ ...props,
10
+ children: /* @__PURE__ */ jsx("path", {
11
+ d: "M10.667 7.33333V4.66667C10.667 3.19391 9.47306 2 8.00033 2C6.52757 2 5.33366 3.19391 5.33366 4.66667V7.33333M3.33366 6H12.667L13.3337 14H2.66699L3.33366 6Z",
12
+ strokeWidth: "1.5",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ })
16
+ });
17
+ //#endregion
69
18
  export { ShoppingBag };