@mailstep/design-system 0.8.26-beta.7 → 0.8.27-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (563) hide show
  1. package/README.md +76 -76
  2. package/package.json +146 -146
  3. package/ui/Blocks/CommonGrid/CommonGrid.js +104 -152
  4. package/ui/Blocks/CommonGrid/CommonGridContainer.js +187 -368
  5. package/ui/Blocks/CommonGrid/HoC/withProps.js +9 -37
  6. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +29 -46
  7. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +105 -196
  8. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +37 -49
  9. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +76 -162
  10. package/ui/Blocks/CommonGrid/components/ActionHead/index.js +3 -1
  11. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +43 -124
  12. package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +3 -1
  13. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +50 -112
  14. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +130 -251
  15. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +3 -1
  16. package/ui/Blocks/CommonGrid/components/ColumnTitle.js +36 -104
  17. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +156 -252
  18. package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +3 -1
  19. package/ui/Blocks/CommonGrid/components/ControlButtons/styles.js +40 -53
  20. package/ui/Blocks/CommonGrid/components/DataCell.js +34 -97
  21. package/ui/Blocks/CommonGrid/components/DataRow.js +60 -74
  22. package/ui/Blocks/CommonGrid/components/DropdownButton/DropdownButton.js +67 -154
  23. package/ui/Blocks/CommonGrid/components/DropdownButton/index.js +3 -1
  24. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +57 -149
  25. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +3 -1
  26. package/ui/Blocks/CommonGrid/components/FilterDropdown.js +30 -48
  27. package/ui/Blocks/CommonGrid/components/FilterRow.js +28 -36
  28. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/ActionsFilter.js +32 -83
  29. package/ui/Blocks/CommonGrid/components/Filters/ActionsFilter/index.js +3 -1
  30. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/BooleanSelect.js +34 -90
  31. package/ui/Blocks/CommonGrid/components/Filters/BooleanSelect/index.js +4 -2
  32. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/DatePickerRange.js +149 -373
  33. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/index.js +3 -1
  34. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/getCleanValues.js +7 -12
  35. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/pickerRangeToString.js +13 -25
  36. package/ui/Blocks/CommonGrid/components/Filters/DatePickerRange/utils/sameDate.js +3 -3
  37. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/GridSelect.js +92 -376
  38. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/guards.js +4 -8
  39. package/ui/Blocks/CommonGrid/components/Filters/GridSelect/index.js +4 -2
  40. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +142 -293
  41. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/index.js +3 -1
  42. package/ui/Blocks/CommonGrid/components/Filters/NumberRange/types.js +1 -0
  43. package/ui/Blocks/CommonGrid/components/Filters/TextRange/TextRange.js +160 -320
  44. package/ui/Blocks/CommonGrid/components/Filters/TextRange/index.js +3 -1
  45. package/ui/Blocks/CommonGrid/components/Filters/TextRange/types.js +1 -0
  46. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +79 -156
  47. package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +3 -1
  48. package/ui/Blocks/CommonGrid/components/GridInfo/index.js +30 -41
  49. package/ui/Blocks/CommonGrid/components/GridModals/index.js +132 -134
  50. package/ui/Blocks/CommonGrid/components/GridStatus/index.js +23 -25
  51. package/ui/Blocks/CommonGrid/components/GroupRow.js +26 -87
  52. package/ui/Blocks/CommonGrid/components/HeadCell.js +33 -89
  53. package/ui/Blocks/CommonGrid/components/HeadRow.js +69 -192
  54. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +61 -99
  55. package/ui/Blocks/CommonGrid/components/IconList/index.js +3 -1
  56. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +52 -114
  57. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.js +66 -171
  58. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +3 -1
  59. package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +16 -34
  60. package/ui/Blocks/CommonGrid/components/ManageColumnForm/utils.js +7 -9
  61. package/ui/Blocks/CommonGrid/components/MobileFilterModal.js +110 -228
  62. package/ui/Blocks/CommonGrid/components/MobileOverlayWrapper.js +13 -21
  63. package/ui/Blocks/CommonGrid/components/MobileSortModal.js +64 -88
  64. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +34 -86
  65. package/ui/Blocks/CommonGrid/components/PresetsModalBody/components/TagRemove.js +17 -20
  66. package/ui/Blocks/CommonGrid/components/PresetsModalBody/index.js +88 -201
  67. package/ui/Blocks/CommonGrid/components/QuickFilter/QuickFilter.js +29 -54
  68. package/ui/Blocks/CommonGrid/components/QuickFilter/index.js +3 -1
  69. package/ui/Blocks/CommonGrid/components/Resize.js +46 -53
  70. package/ui/Blocks/CommonGrid/components/Table.js +40 -94
  71. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +63 -113
  72. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +3 -1
  73. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +16 -32
  74. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +10 -58
  75. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +7 -7
  76. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +9 -12
  77. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +27 -100
  78. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +48 -48
  79. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +31 -33
  80. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +28 -50
  81. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +8 -22
  82. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +37 -63
  83. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +75 -113
  84. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +7 -7
  85. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +9 -57
  86. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +30 -82
  87. package/ui/Blocks/CommonGrid/components/gridCells/index.js +14 -14
  88. package/ui/Blocks/CommonGrid/components/icons/Edit.js +13 -65
  89. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +13 -65
  90. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +19 -72
  91. package/ui/Blocks/CommonGrid/components/utils.js +18 -67
  92. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +14 -14
  93. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +85 -119
  94. package/ui/Blocks/CommonGrid/hooks/useCreatePreset.js +29 -77
  95. package/ui/Blocks/CommonGrid/hooks/useDeletePreset.js +21 -32
  96. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +56 -91
  97. package/ui/Blocks/CommonGrid/hooks/useEvent.js +10 -14
  98. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +14 -15
  99. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +25 -42
  100. package/ui/Blocks/CommonGrid/hooks/useGridAutoRowsPerPage.js +10 -20
  101. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +97 -220
  102. package/ui/Blocks/CommonGrid/hooks/usePresetFileHandlers.js +54 -124
  103. package/ui/Blocks/CommonGrid/hooks/usePresetsState.js +13 -57
  104. package/ui/Blocks/CommonGrid/hooks/useQuickFilter.js +76 -149
  105. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +19 -23
  106. package/ui/Blocks/CommonGrid/hooks/useSelectPreset.js +18 -80
  107. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +17 -28
  108. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +12 -63
  109. package/ui/Blocks/CommonGrid/index.js +26 -10
  110. package/ui/Blocks/CommonGrid/store/index.js +286 -430
  111. package/ui/Blocks/CommonGrid/store/migrateState.js +10 -10
  112. package/ui/Blocks/CommonGrid/store/store.d.js +1 -0
  113. package/ui/Blocks/CommonGrid/storybook/components/ComplexCell.js +16 -20
  114. package/ui/Blocks/CommonGrid/storybook/components/EnumCellExample.js +17 -22
  115. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +9 -15
  116. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +121 -156
  117. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +106 -145
  118. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +11 -14
  119. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +5 -7
  120. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +4 -5
  121. package/ui/Blocks/CommonGrid/styles.js +252 -97
  122. package/ui/Blocks/CommonGrid/types.js +22 -14
  123. package/ui/Blocks/CommonGrid/utils/constants.js +24 -22
  124. package/ui/Blocks/CommonGrid/utils/getExtendedExtraControlButtons.js +15 -44
  125. package/ui/Blocks/CommonGrid/utils/getRowsPerPage.js +8 -9
  126. package/ui/Blocks/CommonGrid/utils/hasSortTerminated.js +8 -9
  127. package/ui/Blocks/CommonGrid/utils/index.js +69 -107
  128. package/ui/Blocks/CornerDialog/CornerDialog.js +40 -94
  129. package/ui/Blocks/CornerDialog/index.d.js +1 -2
  130. package/ui/Blocks/CornerDialog/index.js +3 -1
  131. package/ui/Blocks/CornerDialog/styles.js +56 -83
  132. package/ui/Blocks/CornerDialog/types.js +1 -0
  133. package/ui/Blocks/CornerDialog/utils.js +28 -26
  134. package/ui/Blocks/Header/components/MenuItems/components/MenuItem/index.js +12 -11
  135. package/ui/Blocks/Header/components/MenuItems/index.js +6 -11
  136. package/ui/Blocks/Header/components/MenuItems/styles.js +21 -35
  137. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/index.js +20 -28
  138. package/ui/Blocks/Header/components/UserMenu/components/UserInfo/styles.js +13 -31
  139. package/ui/Blocks/Header/components/UserMenu/hooks/index.js +1 -1
  140. package/ui/Blocks/Header/components/UserMenu/hooks/useLogout.js +8 -9
  141. package/ui/Blocks/Header/components/UserMenu/index.js +45 -99
  142. package/ui/Blocks/Header/components/UserMenu/styles.js +24 -44
  143. package/ui/Blocks/Header/hooks/useChangeLanguage.js +7 -8
  144. package/ui/Blocks/Header/index.js +41 -57
  145. package/ui/Blocks/Header/styles.js +33 -54
  146. package/ui/Blocks/Header/types.js +1 -0
  147. package/ui/Blocks/Header/utils/constants.js +3 -1
  148. package/ui/Blocks/Header/utils/languageItems.js +13 -18
  149. package/ui/Blocks/HidePrint/HidePrint.js +11 -28
  150. package/ui/Blocks/ImageList/ImageList.js +76 -131
  151. package/ui/Blocks/ImageList/components/AddPhoto/index.js +33 -182
  152. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +29 -42
  153. package/ui/Blocks/ImageList/components/CloseButton/index.js +15 -13
  154. package/ui/Blocks/ImageList/components/CloseButton/styles.js +17 -25
  155. package/ui/Blocks/ImageList/components/ImageElement/index.js +26 -27
  156. package/ui/Blocks/ImageList/components/ImageElement/styles.js +21 -63
  157. package/ui/Blocks/ImageList/components/ImageTag/index.js +12 -15
  158. package/ui/Blocks/ImageList/components/ImageTag/styles.js +8 -21
  159. package/ui/Blocks/ImageList/hooks/useControls.js +12 -66
  160. package/ui/Blocks/ImageList/hooks/useOnElementClick.js +12 -70
  161. package/ui/Blocks/ImageList/index.d.js +1 -2
  162. package/ui/Blocks/ImageList/index.js +3 -1
  163. package/ui/Blocks/ImageList/styles.js +28 -47
  164. package/ui/Blocks/ImageList/types.js +1 -0
  165. package/ui/Blocks/LanguageSwitch/LanguageSwitch.js +50 -136
  166. package/ui/Blocks/LanguageSwitch/index.js +3 -1
  167. package/ui/Blocks/LanguageSwitch/styles.js +31 -49
  168. package/ui/Blocks/LanguageSwitch/types.js +1 -0
  169. package/ui/Blocks/LightBox/LightBox.js +37 -46
  170. package/ui/Blocks/LightBox/hooks/useLightBox.js +14 -19
  171. package/ui/Blocks/LightBox/index.d.js +1 -3
  172. package/ui/Blocks/LightBox/index.js +4 -2
  173. package/ui/Blocks/LightBox/styles.js +27 -51
  174. package/ui/Blocks/LightBox/types.js +1 -0
  175. package/ui/Blocks/LoginPage/LoginPage.js +60 -77
  176. package/ui/Blocks/LoginPage/assets/mailship.js +4 -0
  177. package/ui/Blocks/LoginPage/components/LoginForm.js +165 -220
  178. package/ui/Blocks/LoginPage/components/SocialLinks.js +78 -98
  179. package/ui/Blocks/LoginPage/index.js +4 -2
  180. package/ui/Blocks/LoginPage/styles.js +74 -94
  181. package/ui/Blocks/LoginPage/types.js +1 -0
  182. package/ui/Blocks/LoginPage/utils/links.js +9 -7
  183. package/ui/Blocks/Modal/Modal.js +122 -148
  184. package/ui/Blocks/Modal/hooks/useClickOutside.js +25 -35
  185. package/ui/Blocks/Modal/hooks/useModal.js +17 -64
  186. package/ui/Blocks/Modal/index.d.js +1 -3
  187. package/ui/Blocks/Modal/index.js +5 -3
  188. package/ui/Blocks/Modal/styles.js +181 -255
  189. package/ui/Blocks/Modal/types.js +1 -0
  190. package/ui/Blocks/Modal/utils.js +8 -6
  191. package/ui/Blocks/Popover/index.js +29 -50
  192. package/ui/Blocks/Scheduler/Scheduler.js +40 -104
  193. package/ui/Blocks/Scheduler/components/BookedTimeSlots/index.js +35 -123
  194. package/ui/Blocks/Scheduler/components/BookedTimeSlots/styles.js +34 -53
  195. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/hooks/useCurrentTime.js +14 -61
  196. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/index.js +11 -15
  197. package/ui/Blocks/Scheduler/components/CurrentTimeMarker/styles.js +29 -51
  198. package/ui/Blocks/Scheduler/components/DateChanger/index.js +46 -50
  199. package/ui/Blocks/Scheduler/components/DateChanger/styles.js +22 -35
  200. package/ui/Blocks/Scheduler/components/Groups/index.js +8 -14
  201. package/ui/Blocks/Scheduler/components/Groups/styles.js +31 -53
  202. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useRangeSelection.js +43 -114
  203. package/ui/Blocks/Scheduler/components/TimeSlots/hooks/useScroll.js +13 -17
  204. package/ui/Blocks/Scheduler/components/TimeSlots/index.js +45 -53
  205. package/ui/Blocks/Scheduler/components/TimeSlots/styles.js +51 -75
  206. package/ui/Blocks/Scheduler/hooks/useChangeDate.js +32 -83
  207. package/ui/Blocks/Scheduler/index.js +1 -1
  208. package/ui/Blocks/Scheduler/styles.js +21 -32
  209. package/ui/Blocks/Scheduler/types.js +1 -0
  210. package/ui/Blocks/Scheduler/utils/constants.js +8 -6
  211. package/ui/Blocks/Scheduler/utils/convertDateToTime.js +4 -4
  212. package/ui/Blocks/Scheduler/utils/convertIndexToISOString.js +9 -7
  213. package/ui/Blocks/Scheduler/utils/convertMinutesToDuration.js +8 -10
  214. package/ui/Blocks/Scheduler/utils/formatDate.js +7 -8
  215. package/ui/Blocks/Scheduler/utils/generateTimeArray.js +17 -15
  216. package/ui/Blocks/Scheduler/utils/getClosestStep.js +10 -8
  217. package/ui/Blocks/Scheduler/utils/getMinutesFromString.js +5 -5
  218. package/ui/Blocks/Scheduler/utils/getMinutesFromTime.js +5 -49
  219. package/ui/Blocks/Scheduler/utils/isActiveTime.js +9 -8
  220. package/ui/Blocks/Scheduler/utils/isToday.js +5 -3
  221. package/ui/Blocks/SideMenu/MenuItem.js +98 -191
  222. package/ui/Blocks/SideMenu/SideMenu.js +35 -80
  223. package/ui/Blocks/SideMenu/components/Footer.js +61 -95
  224. package/ui/Blocks/SideMenu/components/HamburgerMenu.js +49 -68
  225. package/ui/Blocks/SideMenu/components/SubitemTooltip.js +49 -133
  226. package/ui/Blocks/SideMenu/context/LeftMenuContext.js +17 -67
  227. package/ui/Blocks/SideMenu/context/useLeftMenuContext.js +7 -5
  228. package/ui/Blocks/SideMenu/hooks/useOutsideHover.js +23 -76
  229. package/ui/Blocks/SideMenu/index.js +5 -3
  230. package/ui/Blocks/SideMenu/stories/menuItems.js +106 -100
  231. package/ui/Blocks/SideMenu/styles.js +308 -415
  232. package/ui/Blocks/SideMenu/types.js +1 -0
  233. package/ui/Blocks/SideMenu/utils/constants.js +4 -2
  234. package/ui/Blocks/Stepper/Stepper.js +31 -50
  235. package/ui/Blocks/Stepper/components/StepCircle/index.js +14 -13
  236. package/ui/Blocks/Stepper/components/StepCircle/styles.js +22 -47
  237. package/ui/Blocks/Stepper/components/StepItem/index.js +48 -58
  238. package/ui/Blocks/Stepper/components/StepItem/styles.js +77 -86
  239. package/ui/Blocks/Stepper/hooks/useStepper.js +30 -78
  240. package/ui/Blocks/Stepper/index.js +3 -3
  241. package/ui/Blocks/Stepper/styles.js +24 -39
  242. package/ui/Blocks/Stepper/types.js +1 -0
  243. package/ui/Blocks/Table/Table.js +10 -31
  244. package/ui/Blocks/Table/index.js +1 -1
  245. package/ui/Blocks/Table/types.js +1 -0
  246. package/ui/Blocks/Tabs/TabContent.js +7 -8
  247. package/ui/Blocks/Tabs/Tabs.js +42 -53
  248. package/ui/Blocks/Tabs/hooks/useTabs.js +11 -59
  249. package/ui/Blocks/Tabs/index.d.js +1 -3
  250. package/ui/Blocks/Tabs/index.js +5 -3
  251. package/ui/Blocks/Tabs/styles.js +94 -109
  252. package/ui/Blocks/Tabs/types.js +1 -0
  253. package/ui/Elements/Alert/Alert.js +71 -95
  254. package/ui/Elements/Alert/index.d.js +1 -3
  255. package/ui/Elements/Alert/index.js +3 -1
  256. package/ui/Elements/Alert/styles.js +81 -126
  257. package/ui/Elements/Alert/types.js +1 -0
  258. package/ui/Elements/AsyncSelect/AsyncSelect.js +31 -157
  259. package/ui/Elements/AsyncSelect/index.js +3 -1
  260. package/ui/Elements/Avatar/Avatar.js +35 -150
  261. package/ui/Elements/Avatar/index.d.js +1 -2
  262. package/ui/Elements/Avatar/index.js +4 -3
  263. package/ui/Elements/Avatar/types.js +1 -0
  264. package/ui/Elements/Badge/Badge.js +50 -105
  265. package/ui/Elements/Badge/index.d.js +1 -2
  266. package/ui/Elements/Badge/index.js +3 -1
  267. package/ui/Elements/BarChartSymbol/BarChartSymbol.js +19 -22
  268. package/ui/Elements/BarChartSymbol/index.js +1 -1
  269. package/ui/Elements/BarChartSymbol/styles.js +8 -32
  270. package/ui/Elements/BorderedBox/BorderedBox.js +20 -124
  271. package/ui/Elements/BorderedBox/index.d.js +1 -3
  272. package/ui/Elements/BorderedBox/index.js +3 -1
  273. package/ui/Elements/BorderedBox/types.js +1 -0
  274. package/ui/Elements/Button/Button.d.js +1 -2
  275. package/ui/Elements/Button/Button.js +43 -153
  276. package/ui/Elements/Button/index.d.js +1 -3
  277. package/ui/Elements/Button/index.js +3 -1
  278. package/ui/Elements/Button/styles.js +224 -95
  279. package/ui/Elements/Button/types.js +1 -0
  280. package/ui/Elements/Card/Card.js +13 -13
  281. package/ui/Elements/Card/index.d.js +1 -2
  282. package/ui/Elements/Card/index.js +3 -1
  283. package/ui/Elements/Card/styles.js +21 -49
  284. package/ui/Elements/Card/types.js +1 -0
  285. package/ui/Elements/CheckedCircle/index.js +12 -11
  286. package/ui/Elements/CheckedCircle/styles.js +14 -29
  287. package/ui/Elements/DatePicker/DatePicker.js +84 -206
  288. package/ui/Elements/DatePicker/Datetime/DateTime.js +422 -724
  289. package/ui/Elements/DatePicker/Datetime/components/DateRepeater.js +62 -126
  290. package/ui/Elements/DatePicker/Datetime/components/FooterRow.js +10 -24
  291. package/ui/Elements/DatePicker/Datetime/components/FooterRowLabel.js +14 -20
  292. package/ui/Elements/DatePicker/Datetime/components/TimeInput.js +15 -21
  293. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +160 -254
  294. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +28 -84
  295. package/ui/Elements/DatePicker/Datetime/types.js +13 -11
  296. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +134 -334
  297. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +71 -265
  298. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +81 -276
  299. package/ui/Elements/DatePicker/index.js +5 -3
  300. package/ui/Elements/DatePicker/styles.js +233 -35
  301. package/ui/Elements/DatePicker/utils/constants.js +27 -33
  302. package/ui/Elements/Dropdown/Dropdown.js +53 -88
  303. package/ui/Elements/Dropdown/index.js +3 -1
  304. package/ui/Elements/Dropdown/types.js +1 -0
  305. package/ui/Elements/DropdownMenu/DropdownMenu.js +32 -134
  306. package/ui/Elements/DropdownMenu/components/DefaultItem.js +30 -56
  307. package/ui/Elements/DropdownMenu/components/MenuItem.js +56 -103
  308. package/ui/Elements/DropdownMenu/components/MenuList.js +13 -14
  309. package/ui/Elements/DropdownMenu/index.js +1 -1
  310. package/ui/Elements/DropdownMenu/types.js +1 -0
  311. package/ui/Elements/DropdownSelect/DropdownSelect.js +126 -205
  312. package/ui/Elements/DropdownSelect/index.js +3 -2
  313. package/ui/Elements/ErrorMessage/ErrorMessage.js +62 -56
  314. package/ui/Elements/ErrorMessage/index.d.js +1 -3
  315. package/ui/Elements/ErrorMessage/index.js +3 -1
  316. package/ui/Elements/ErrorMessage/types.js +1 -0
  317. package/ui/Elements/HighlightBox/HighlightBox.js +97 -99
  318. package/ui/Elements/HighlightBox/index.js +3 -1
  319. package/ui/Elements/Icon/BadgeIcon.js +26 -121
  320. package/ui/Elements/Icon/Icon.js +182 -255
  321. package/ui/Elements/Icon/icons/Add.js +31 -91
  322. package/ui/Elements/Icon/icons/AddPhoto.js +32 -84
  323. package/ui/Elements/Icon/icons/Admin.js +24 -79
  324. package/ui/Elements/Icon/icons/ArrowDown.js +16 -68
  325. package/ui/Elements/Icon/icons/ArrowForward.js +10 -64
  326. package/ui/Elements/Icon/icons/ArrowUp.js +16 -68
  327. package/ui/Elements/Icon/icons/ArrowUpRightDownLeft.js +19 -77
  328. package/ui/Elements/Icon/icons/ArrowsLeftRight.js +10 -64
  329. package/ui/Elements/Icon/icons/ArrowsUpDown.js +10 -64
  330. package/ui/Elements/Icon/icons/BarcodeScan.js +11 -65
  331. package/ui/Elements/Icon/icons/Box.js +15 -67
  332. package/ui/Elements/Icon/icons/Calendar.js +37 -89
  333. package/ui/Elements/Icon/icons/Cancel.js +16 -68
  334. package/ui/Elements/Icon/icons/CheckedBox.js +21 -76
  335. package/ui/Elements/Icon/icons/CircleHalfStroke.js +10 -64
  336. package/ui/Elements/Icon/icons/Company.js +80 -137
  337. package/ui/Elements/Icon/icons/Complaint.js +57 -114
  338. package/ui/Elements/Icon/icons/Consolidation.js +11 -65
  339. package/ui/Elements/Icon/icons/Container.js +11 -65
  340. package/ui/Elements/Icon/icons/Dashboard.js +34 -86
  341. package/ui/Elements/Icon/icons/Desktop.js +61 -118
  342. package/ui/Elements/Icon/icons/Dispatch.js +11 -65
  343. package/ui/Elements/Icon/icons/EmptyRack.js +32 -32
  344. package/ui/Elements/Icon/icons/Expeditions.js +60 -112
  345. package/ui/Elements/Icon/icons/Filter.js +15 -67
  346. package/ui/Elements/Icon/icons/FlagCZ.js +53 -108
  347. package/ui/Elements/Icon/icons/FlagEL.js +48 -100
  348. package/ui/Elements/Icon/icons/FlagESP.js +91 -143
  349. package/ui/Elements/Icon/icons/FlagHU.js +25 -77
  350. package/ui/Elements/Icon/icons/FlagITA.js +53 -108
  351. package/ui/Elements/Icon/icons/FlagNL.js +25 -77
  352. package/ui/Elements/Icon/icons/FlagRUS.js +53 -108
  353. package/ui/Elements/Icon/icons/FlagSVK.js +90 -145
  354. package/ui/Elements/Icon/icons/FlagUK.js +18 -73
  355. package/ui/Elements/Icon/icons/FlagUSA.js +104 -168
  356. package/ui/Elements/Icon/icons/Foldable.js +32 -84
  357. package/ui/Elements/Icon/icons/Fragile.js +40 -92
  358. package/ui/Elements/Icon/icons/Gift.js +39 -91
  359. package/ui/Elements/Icon/icons/Group.js +15 -67
  360. package/ui/Elements/Icon/icons/HamburgerMenu.js +39 -91
  361. package/ui/Elements/Icon/icons/HelpCircle1.js +30 -82
  362. package/ui/Elements/Icon/icons/HorizontalLines.js +34 -86
  363. package/ui/Elements/Icon/icons/ImagePlaceholder.js +15 -67
  364. package/ui/Elements/Icon/icons/Income.js +20 -75
  365. package/ui/Elements/Icon/icons/Info.js +31 -83
  366. package/ui/Elements/Icon/icons/Integrations.js +15 -67
  367. package/ui/Elements/Icon/icons/Inventory.js +43 -100
  368. package/ui/Elements/Icon/icons/Inventory2.js +64 -121
  369. package/ui/Elements/Icon/icons/Layout.js +41 -91
  370. package/ui/Elements/Icon/icons/Link.js +18 -73
  371. package/ui/Elements/Icon/icons/Liquid.js +20 -75
  372. package/ui/Elements/Icon/icons/Location.js +11 -65
  373. package/ui/Elements/Icon/icons/Logout1.js +30 -82
  374. package/ui/Elements/Icon/icons/MachinePackingForbidden.js +68 -120
  375. package/ui/Elements/Icon/icons/MakePhoto.js +33 -85
  376. package/ui/Elements/Icon/icons/MenuItems.js +37 -91
  377. package/ui/Elements/Icon/icons/Message.js +36 -96
  378. package/ui/Elements/Icon/icons/MobileCancel.js +20 -75
  379. package/ui/Elements/Icon/icons/MobilePhone.js +45 -97
  380. package/ui/Elements/Icon/icons/Moon.js +10 -64
  381. package/ui/Elements/Icon/icons/Notification2.js +23 -78
  382. package/ui/Elements/Icon/icons/OpenBox.js +35 -87
  383. package/ui/Elements/Icon/icons/Pallet.js +34 -93
  384. package/ui/Elements/Icon/icons/Plus1.js +15 -67
  385. package/ui/Elements/Icon/icons/Print.js +39 -91
  386. package/ui/Elements/Icon/icons/Product.js +15 -67
  387. package/ui/Elements/Icon/icons/Products.js +14 -66
  388. package/ui/Elements/Icon/icons/Profile.js +23 -78
  389. package/ui/Elements/Icon/icons/Puzzle1.js +16 -68
  390. package/ui/Elements/Icon/icons/QRCode.js +17 -69
  391. package/ui/Elements/Icon/icons/Rack.js +63 -115
  392. package/ui/Elements/Icon/icons/Reload.js +11 -65
  393. package/ui/Elements/Icon/icons/Return.js +17 -72
  394. package/ui/Elements/Icon/icons/Rows.js +37 -89
  395. package/ui/Elements/Icon/icons/Settings2.js +31 -91
  396. package/ui/Elements/Icon/icons/ShieldUser.js +7 -61
  397. package/ui/Elements/Icon/icons/ShoppingBag.js +16 -67
  398. package/ui/Elements/Icon/icons/Sort.js +21 -76
  399. package/ui/Elements/Icon/icons/Sun.js +10 -64
  400. package/ui/Elements/Icon/icons/ThreeDots.js +37 -89
  401. package/ui/Elements/Icon/icons/ToastError.js +25 -82
  402. package/ui/Elements/Icon/icons/ToastSuccess.js +25 -82
  403. package/ui/Elements/Icon/icons/Transfer.js +19 -74
  404. package/ui/Elements/Icon/icons/TrashBin.js +31 -83
  405. package/ui/Elements/Icon/icons/Truck.js +71 -127
  406. package/ui/Elements/Icon/icons/TwoBoxes.js +18 -73
  407. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +27 -27
  408. package/ui/Elements/Icon/icons/TwoUsers.js +40 -91
  409. package/ui/Elements/Icon/icons/UserCowboy.js +7 -61
  410. package/ui/Elements/Icon/icons/Valuable.js +32 -83
  411. package/ui/Elements/Icon/icons/Weight.js +10 -64
  412. package/ui/Elements/Icon/icons/index.js +188 -92
  413. package/ui/Elements/Icon/index.js +96 -4
  414. package/ui/Elements/Icon/types.js +1 -0
  415. package/ui/Elements/Image/Image.js +13 -154
  416. package/ui/Elements/Image/index.js +3 -1
  417. package/ui/Elements/Image/types.js +1 -0
  418. package/ui/Elements/Label/Label.js +22 -61
  419. package/ui/Elements/Label/index.js +4 -3
  420. package/ui/Elements/Line/Line.js +20 -44
  421. package/ui/Elements/Line/index.d.js +1 -3
  422. package/ui/Elements/Line/index.js +3 -1
  423. package/ui/Elements/Line/types.js +1 -0
  424. package/ui/Elements/Link/Link.js +42 -126
  425. package/ui/Elements/Link/index.js +3 -1
  426. package/ui/Elements/Logo/Logo.js +65 -162
  427. package/ui/Elements/Logo/assets/mailship/logo_black.js +4 -0
  428. package/ui/Elements/Logo/assets/mailship/logo_m.js +4 -0
  429. package/ui/Elements/Logo/assets/mailship/logo_white.js +4 -0
  430. package/ui/Elements/Logo/assets/mailship/mailship-logo.js +4 -0
  431. package/ui/Elements/Logo/assets/mailship/mailship-logo.svg +12 -12
  432. package/ui/Elements/Logo/assets/mailstep/mailstep_black.js +4 -0
  433. package/ui/Elements/Logo/assets/mailstep/mailstep_black.svg +17 -17
  434. package/ui/Elements/Logo/assets/mailstep/mailstep_white.js +4 -0
  435. package/ui/Elements/Logo/assets/mailstep/mailstep_white.svg +17 -17
  436. package/ui/Elements/Logo/assets/mailstock/mailstock.js +4 -0
  437. package/ui/Elements/Logo/assets/mailstock/mailstock.svg +12 -12
  438. package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.js +4 -0
  439. package/ui/Elements/Logo/assets/mailwise/mailwiseLogo.svg +46 -46
  440. package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.js +4 -0
  441. package/ui/Elements/Logo/assets/mailwise/mailwiseLogoSmall.svg +19 -19
  442. package/ui/Elements/Logo/assets/mailwrap/mailwrapLogo.js +4 -0
  443. package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.js +4 -0
  444. package/ui/Elements/Logo/assets/mailwrap/mailwrapLogoSmall.svg +4 -4
  445. package/ui/Elements/Logo/assets/warehouse/manager.js +4 -0
  446. package/ui/Elements/Logo/assets/warehouse/manager.svg +5 -5
  447. package/ui/Elements/Logo/assets/warehouse/manager2.js +4 -0
  448. package/ui/Elements/Logo/assets/warehouse/manager2.svg +5 -5
  449. package/ui/Elements/Logo/assets/warehouse/manager3.js +4 -0
  450. package/ui/Elements/Logo/assets/warehouse/manager3.svg +4 -4
  451. package/ui/Elements/Logo/default.d.js +1 -0
  452. package/ui/Elements/Logo/index.d.js +1 -2
  453. package/ui/Elements/Logo/index.js +3 -1
  454. package/ui/Elements/Logo/types.js +1 -0
  455. package/ui/Elements/Pagination/Pagination.js +61 -85
  456. package/ui/Elements/Pagination/index.d.js +2 -3
  457. package/ui/Elements/Pagination/index.js +3 -1
  458. package/ui/Elements/Pagination/styled.js +62 -89
  459. package/ui/Elements/Portal/index.js +20 -68
  460. package/ui/Elements/ProgressBar/ProgressBar.js +15 -19
  461. package/ui/Elements/ProgressBar/index.js +3 -1
  462. package/ui/Elements/ProgressBar/styles.js +69 -114
  463. package/ui/Elements/Select/Select.js +94 -442
  464. package/ui/Elements/Select/components/ChevronOption.js +29 -87
  465. package/ui/Elements/Select/components/ConnectedMenu.js +24 -85
  466. package/ui/Elements/Select/components/CountMultiValue.js +40 -132
  467. package/ui/Elements/Select/components/CustomInput.js +11 -61
  468. package/ui/Elements/Select/components/DropdownIndicator.js +28 -94
  469. package/ui/Elements/Select/components/IconValueContainer.js +27 -139
  470. package/ui/Elements/Select/components/SelectAll.js +87 -164
  471. package/ui/Elements/Select/components/SelectedIndicator.js +7 -23
  472. package/ui/Elements/Select/components/SimplifiedOption.js +15 -23
  473. package/ui/Elements/Select/index.js +3 -1
  474. package/ui/Elements/Select/styles.js +16 -44
  475. package/ui/Elements/Select/themes/index.js +37 -44
  476. package/ui/Elements/Select/themes/selectStyles.js +194 -302
  477. package/ui/Elements/Select/types.js +1 -0
  478. package/ui/Elements/SimpleLink/SimpleLink.js +35 -64
  479. package/ui/Elements/SimpleLink/index.js +5 -3
  480. package/ui/Elements/SingleSelect/SingleSelect.js +145 -509
  481. package/ui/Elements/SingleSelect/index.js +3 -1
  482. package/ui/Elements/SpaceAround/SpaceAround.js +31 -166
  483. package/ui/Elements/SpaceAround/index.js +3 -1
  484. package/ui/Elements/SpaceAround/types.js +1 -0
  485. package/ui/Elements/Spinner/Spinner.js +35 -36
  486. package/ui/Elements/Spinner/index.d.js +1 -2
  487. package/ui/Elements/Spinner/index.js +3 -1
  488. package/ui/Elements/Spinner/styles.js +35 -65
  489. package/ui/Elements/Spinner/types.js +1 -0
  490. package/ui/Elements/Table/Table.js +44 -77
  491. package/ui/Elements/Table/index.js +1 -1
  492. package/ui/Elements/Tag/Tag.js +47 -82
  493. package/ui/Elements/Tag/index.d.js +1 -3
  494. package/ui/Elements/Tag/index.js +4 -2
  495. package/ui/Elements/Tag/palettes.js +50 -45
  496. package/ui/Elements/Tag/stories/components/predefinedTags.js +17 -18
  497. package/ui/Elements/Tag/types.js +1 -0
  498. package/ui/Elements/Text/Text.js +9 -75
  499. package/ui/Elements/Text/index.d.js +1 -2
  500. package/ui/Elements/Text/index.js +1 -1
  501. package/ui/Elements/Text/types.js +1 -0
  502. package/ui/Elements/Toast/Toast.js +33 -55
  503. package/ui/Elements/Toast/constants.js +17 -15
  504. package/ui/Elements/Toast/index.d.js +2 -3
  505. package/ui/Elements/Toast/index.js +3 -1
  506. package/ui/Elements/Toast/styles.js +74 -104
  507. package/ui/Elements/Toggle/Toggle.js +120 -258
  508. package/ui/Elements/Toggle/index.d.js +1 -2
  509. package/ui/Elements/Toggle/index.js +3 -1
  510. package/ui/Elements/Toggle/types.js +1 -0
  511. package/ui/Elements/Tooltip/Tooltip.js +49 -119
  512. package/ui/Elements/Tooltip/index.d.js +1 -2
  513. package/ui/Elements/Tooltip/index.js +3 -1
  514. package/ui/Elements/Typography/Typography.js +73 -158
  515. package/ui/Elements/Typography/index.d.js +1 -2
  516. package/ui/Elements/Typography/index.js +4 -3
  517. package/ui/Forms/Checkbox/Checkbox.js +39 -40
  518. package/ui/Forms/Checkbox/index.d.js +1 -2
  519. package/ui/Forms/Checkbox/index.js +5 -3
  520. package/ui/Forms/Checkbox/styles.js +92 -74
  521. package/ui/Forms/Checkbox/types.js +1 -0
  522. package/ui/Forms/Input/Input.js +125 -258
  523. package/ui/Forms/Input/index.d.js +1 -3
  524. package/ui/Forms/Input/index.js +3 -1
  525. package/ui/Forms/Input/styles.js +217 -201
  526. package/ui/Forms/Input/types.js +1 -0
  527. package/ui/Forms/RadioButton/RadioButton.js +22 -101
  528. package/ui/Forms/RadioButton/index.d.js +1 -2
  529. package/ui/Forms/RadioButton/index.js +3 -1
  530. package/ui/Forms/RadioButton/styles.js +85 -75
  531. package/ui/Forms/RadioButton/types.js +1 -0
  532. package/ui/Forms/TextArea/TextArea.js +33 -153
  533. package/ui/Forms/TextArea/index.js +3 -1
  534. package/ui/Forms/TextArea/styles.js +75 -99
  535. package/ui/System/Fonts/font.d.js +1 -0
  536. package/ui/System/Fonts/index.js +52 -15
  537. package/ui/ThemeProvider/ThemeProvider.d.js +0 -1
  538. package/ui/ThemeProvider/ThemeProvider.js +15 -18
  539. package/ui/ThemeProvider/index.d.js +1 -3
  540. package/ui/ThemeProvider/index.js +5 -4
  541. package/ui/ThemeProvider/themes/default.js +185 -193
  542. package/ui/ThemeProvider/themes/index.js +10 -9
  543. package/ui/ThemeProvider/themes/light.js +7 -8
  544. package/ui/ThemeProvider/themes/mailwise.js +229 -236
  545. package/ui/ThemeProvider/types.js +1 -0
  546. package/ui/_virtual/_rolldown/runtime.js +13 -0
  547. package/ui/hooks/useToggleAndClose.js +15 -62
  548. package/ui/index.js +179 -94
  549. package/ui/packages/assets/fonts/Inter-Bold_mailstep.js +4 -0
  550. package/ui/packages/assets/fonts/Inter-Light_mailstep.js +4 -0
  551. package/ui/packages/assets/fonts/Inter-Medium_mailstep.js +4 -0
  552. package/ui/packages/assets/fonts/Inter-Regular_mailstep.js +4 -0
  553. package/ui/packages/assets/fonts/Inter-SemiBold_mailstep.js +4 -0
  554. package/ui/utils/CheckDeviceWidth/checkDeviceWidth.js +14 -63
  555. package/ui/utils/CreateRgba/createRgba.js +11 -16
  556. package/ui/utils/CreateRgba/types.js +1 -0
  557. package/ui/utils/KeyPress/KeyPress.js +15 -22
  558. package/ui/utils/KeyPress/index.js +4 -2
  559. package/ui/utils/KeyPress/types.js +1 -0
  560. package/ui/utils/LinguiContainer/index.js +7 -6
  561. package/ui/utils/index.d.js +1 -3
  562. package/ui/utils/index.js +7 -5
  563. package/ui/utils/translations.js +334 -333
@@ -1,80 +1,25 @@
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 Notification2 = function Notification2(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "24",
57
- height: "24",
58
- viewBox: "0 0 24 24",
59
- fill: "none",
60
- stroke: "#22394E"
61
- }, props), {
62
- children: [
63
- /* @__PURE__ */ jsx("path", {
64
- fillRule: "evenodd",
65
- clipRule: "evenodd",
66
- 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",
67
- strokeWidth: "1.5",
68
- strokeLinecap: "round",
69
- strokeLinejoin: "round"
70
- }),
71
- /* @__PURE__ */ jsx("path", {
72
- 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",
73
- strokeWidth: "1.5",
74
- strokeLinecap: "round",
75
- strokeLinejoin: "round"
76
- })
77
- ]
78
- }));
79
- };
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
80
25
  export { Notification2 };
@@ -1,89 +1,37 @@
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 OpenBox = function OpenBox(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "47",
57
- height: "47",
58
- viewBox: "0 0 47 47",
59
- fill: "none",
60
- stroke: "#22394E",
61
- xmlns: "http://www.w3.org/2000/svg"
62
- }, props), {
63
- children: [
64
- /* @__PURE__ */ jsx("rect", {
65
- x: "7",
66
- y: "22",
67
- width: "33",
68
- height: "19",
69
- rx: "1.92557",
70
- strokeWidth: "2.88835"
71
- }),
72
- /* @__PURE__ */ jsx("rect", {
73
- width: "37",
74
- height: "9",
75
- rx: "1.92557",
76
- transform: "matrix(1 0 0 -1 5 18)",
77
- strokeWidth: "2.88835"
78
- }),
79
- /* @__PURE__ */ jsx("line", {
80
- x1: "15",
81
- y1: "29.5558",
82
- x2: "33",
83
- y2: "29.5558",
84
- strokeWidth: "2.88835"
85
- })
86
- ]
87
- }));
88
- };
2
+ //#region packages/ui/Elements/Icon/icons/OpenBox.tsx
3
+ const OpenBox = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "47",
5
+ height: "47",
6
+ viewBox: "0 0 47 47",
7
+ fill: "none",
8
+ stroke: "#22394E",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("rect", {
13
+ x: "7",
14
+ y: "22",
15
+ width: "33",
16
+ height: "19",
17
+ rx: "1.92557",
18
+ strokeWidth: "2.88835"
19
+ }),
20
+ /* @__PURE__ */ jsx("rect", {
21
+ width: "37",
22
+ height: "9",
23
+ rx: "1.92557",
24
+ transform: "matrix(1 0 0 -1 5 18)",
25
+ strokeWidth: "2.88835"
26
+ }),
27
+ /* @__PURE__ */ jsx("line", {
28
+ x1: "15",
29
+ y1: "29.5558",
30
+ x2: "33",
31
+ y2: "29.5558",
32
+ strokeWidth: "2.88835"
33
+ })
34
+ ]
35
+ });
36
+ //#endregion
89
37
  export { OpenBox };
@@ -1,95 +1,36 @@
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 Pallet = function Pallet(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "60",
57
- height: "47",
58
- viewBox: "0 0 60 47",
59
- fill: "#7A90A1",
60
- stroke: "#7A90A1",
61
- xmlns: "http://www.w3.org/2000/svg"
62
- }, props), {
63
- children: [
64
- /* @__PURE__ */ jsxs("mask", {
65
- id: "path-1-outside-1_4169_16824",
66
- maskUnits: "userSpaceOnUse",
67
- x: "-1",
68
- y: "-1",
69
- width: "62",
70
- height: "49",
71
- fill: "black",
72
- children: [
73
- /* @__PURE__ */ jsx("rect", {
74
- fill: "white",
75
- x: "-1",
76
- y: "-1",
77
- width: "62",
78
- height: "49"
79
- }),
80
- /* @__PURE__ */ jsx("path", {
81
- d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z"
82
- })
83
- ]
84
- }),
85
- /* @__PURE__ */ jsx("path", {
86
- d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z"
87
- }),
88
- /* @__PURE__ */ jsx("path", {
89
- d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z",
90
- mask: "url(#path-1-outside-1_4169_16824)"
91
- })
92
- ]
93
- }));
94
- };
2
+ //#region packages/ui/Elements/Icon/icons/Pallet.tsx
3
+ const Pallet = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "60",
5
+ height: "47",
6
+ viewBox: "0 0 60 47",
7
+ fill: "#7A90A1",
8
+ stroke: "#7A90A1",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsxs("mask", {
13
+ id: "path-1-outside-1_4169_16824",
14
+ maskUnits: "userSpaceOnUse",
15
+ x: "-1",
16
+ y: "-1",
17
+ width: "62",
18
+ height: "49",
19
+ fill: "black",
20
+ children: [/* @__PURE__ */ jsx("rect", {
21
+ fill: "white",
22
+ x: "-1",
23
+ y: "-1",
24
+ width: "62",
25
+ height: "49"
26
+ }), /* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" })]
27
+ }),
28
+ /* @__PURE__ */ jsx("path", { d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z" }),
29
+ /* @__PURE__ */ jsx("path", {
30
+ d: "M10.3996 45.9926C10.3054 46.5225 9.76969 46.8451 9.27473 46.9007C6.74853 47.1859 3.71237 46.6859 1.13046 46.9028C0.451236 46.8066 0.171618 46.3227 0.110552 45.6764C-0.241917 41.9193 0.385884 37.6248 0.110552 33.81C3.57631 23.219 6.32107 12.1677 9.96896 1.6569C10.2604 0.818303 10.2668 0.204043 11.3049 0.104693C13.2151 -0.077983 15.4478 0.231818 17.3912 0.135673C18.26 0.311939 18.3254 1.06721 18.1636 1.82035L20.5687 1.92077C20.7455 0.945428 20.6116 0.242501 21.8093 0.110034C22.7692 0.00320625 27.166 -0.0363201 27.977 0.15597C28.4409 0.266003 28.7708 0.680495 28.8008 1.15161C28.8158 1.38983 28.6016 1.72955 28.8212 1.87804C28.9037 1.92931 28.998 1.9197 29.089 1.93038C29.3237 1.95923 31.1053 1.94 31.1867 1.87483C31.4353 1.67613 31.1824 1.30864 31.206 1.04264C31.2531 0.490342 31.8038 0.167721 32.3084 0.110034C33.4536 -0.0202959 37.3029 -0.0448663 38.3893 0.135673C39.4242 0.307666 39.2688 1.09926 39.4413 1.92077L41.8958 1.92611C41.6783 1.10353 41.6997 0.26173 42.71 0.119649C43.8627 -0.0427297 47.6317 -0.0331152 48.8091 0.107898C49.8065 0.226477 49.9072 1.25202 50.1739 2.05858C53.6558 12.5555 56.5559 23.266 59.8995 33.81C59.6467 37.6504 60.2198 41.8829 59.8995 45.6764C59.8427 46.3537 59.6199 46.8141 58.8796 46.9039C56.3512 47.2094 53.2187 46.6678 50.625 46.9039C50.2489 46.9562 49.6093 46.2981 49.6093 45.9937V40.5989H43.3956V45.9937C43.3956 46.4573 42.7228 46.8654 42.2761 46.9071C39.6631 47.1464 36.6805 46.7233 34.0279 46.8964C33.6904 46.8921 33.1108 46.2725 33.1108 45.9948V40.5999H26.8971V45.9948C26.8971 46.6015 26.0647 46.8718 25.5622 46.9071C23.0007 47.0855 20.2238 46.7725 17.6397 46.8932C17.2562 46.9199 16.6123 46.3377 16.6123 45.9948V40.5999H10.3986V45.9948L10.3996 45.9926ZM16.0777 2.13976H11.9531L2.47177 32.5857H9.75683L16.0777 2.13976ZM26.791 2.13976H22.5057L18.4346 32.5857H25.7197L26.791 2.13976ZM37.5044 2.13976H33.219L34.2893 32.4265L34.3964 32.6477C34.4725 32.7118 34.5314 32.5857 34.5582 32.5857H41.4147C41.4394 32.5857 41.5572 32.7887 41.5754 32.6391L37.5044 2.13976ZM50.2532 32.5857H57.2704C57.2983 32.5857 57.3347 32.6797 57.3776 32.6787L57.519 32.4479L48.057 2.13976H43.9324L50.2532 32.5857ZM20.363 3.84901H17.6847L17.149 6.51971H19.9345L20.363 3.84901ZM31.2906 3.84901H28.7194L28.6123 6.51971H31.3978L31.2906 3.84901ZM42.3254 3.84901H39.647L40.0756 6.51971H42.861L42.3254 3.84901ZM19.5595 8.44261H16.8812L11.6884 32.5334C11.7667 32.6562 11.7988 32.637 11.9102 32.6487C12.2445 32.684 12.8733 32.6915 13.2333 32.6979C14.3014 32.716 15.3835 32.5088 16.397 32.6925L19.5585 8.44261H19.5595ZM27.6492 32.6925L32.2023 32.6626L32.362 32.4255C32.1488 25.8962 31.8766 19.3914 31.6077 12.8802C31.5488 11.4594 31.6067 10.0365 31.4899 8.61781C31.4545 8.47893 31.3592 8.46504 31.2371 8.44261C30.9457 8.3892 28.5309 8.42338 28.4987 8.6114L27.6492 32.6925ZM43.0217 8.44261C42.2761 8.31869 41.2337 8.53341 40.4505 8.44261L43.6131 32.6936C44.8226 32.5868 46.0793 32.7524 47.3124 32.6979C47.4785 32.6904 48.312 32.653 48.3216 32.5334L43.3099 8.69686C43.2992 8.57401 43.1171 8.45757 43.0228 8.44154L43.0217 8.44261ZM57.8597 34.6154H2.15037V38.5681H57.8597V34.6154ZM8.3641 40.5978H2.15037V44.8709H8.3641V40.5978ZM24.8626 40.5978H18.6489V44.8709H24.8626V40.5978ZM41.3612 40.5978H35.1474V44.8709H41.3612V40.5978ZM57.8597 40.5978H51.646V44.8709H57.8597V40.5978Z",
31
+ mask: "url(#path-1-outside-1_4169_16824)"
32
+ })
33
+ ]
34
+ });
35
+ //#endregion
95
36
  export { Pallet };
@@ -1,69 +1,17 @@
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 Plus1 = function Plus1(props) {
55
- return /* @__PURE__ */ jsx("svg", _object_spread_props(_object_spread({
56
- width: "20",
57
- height: "20",
58
- viewBox: "0 0 20 20",
59
- fill: "none"
60
- }, props), {
61
- children: /* @__PURE__ */ jsx("path", {
62
- fillRule: "evenodd",
63
- clipRule: "evenodd",
64
- d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z",
65
- fill: "white"
66
- })
67
- }));
68
- };
2
+ //#region packages/ui/Elements/Icon/icons/Plus1.tsx
3
+ const Plus1 = (props) => /* @__PURE__ */ jsx("svg", {
4
+ width: "20",
5
+ height: "20",
6
+ viewBox: "0 0 20 20",
7
+ fill: "none",
8
+ ...props,
9
+ children: /* @__PURE__ */ jsx("path", {
10
+ fillRule: "evenodd",
11
+ clipRule: "evenodd",
12
+ d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z",
13
+ fill: "white"
14
+ })
15
+ });
16
+ //#endregion
69
17
  export { Plus1 };
@@ -1,93 +1,41 @@
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 Print = function Print(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "24",
57
- height: "24",
58
- viewBox: "0 0 24 24",
59
- stroke: "#22394E",
60
- fill: "none",
61
- xmlns: "http://www.w3.org/2000/svg"
62
- }, props), {
63
- children: [
64
- /* @__PURE__ */ jsx("path", {
65
- d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z",
66
- strokeWidth: "1.5",
67
- strokeLinecap: "round",
68
- strokeLinejoin: "round"
69
- }),
70
- /* @__PURE__ */ jsx("rect", {
71
- x: "17",
72
- y: "11",
73
- width: "2",
74
- height: "1"
75
- }),
76
- /* @__PURE__ */ jsx("rect", {
77
- x: "9.25",
78
- y: "15.25",
79
- width: "5.5",
80
- height: "0.5",
81
- strokeWidth: "0.5"
82
- }),
83
- /* @__PURE__ */ jsx("rect", {
84
- x: "9.25",
85
- y: "18.25",
86
- width: "5.5",
87
- height: "0.5",
88
- strokeWidth: "0.5"
89
- })
90
- ]
91
- }));
92
- };
2
+ //#region packages/ui/Elements/Icon/icons/Print.tsx
3
+ const Print = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "24",
5
+ height: "24",
6
+ viewBox: "0 0 24 24",
7
+ stroke: "#22394E",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...props,
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z",
14
+ strokeWidth: "1.5",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round"
17
+ }),
18
+ /* @__PURE__ */ jsx("rect", {
19
+ x: "17",
20
+ y: "11",
21
+ width: "2",
22
+ height: "1"
23
+ }),
24
+ /* @__PURE__ */ jsx("rect", {
25
+ x: "9.25",
26
+ y: "15.25",
27
+ width: "5.5",
28
+ height: "0.5",
29
+ strokeWidth: "0.5"
30
+ }),
31
+ /* @__PURE__ */ jsx("rect", {
32
+ x: "9.25",
33
+ y: "18.25",
34
+ width: "5.5",
35
+ height: "0.5",
36
+ strokeWidth: "0.5"
37
+ })
38
+ ]
39
+ });
40
+ //#endregion
93
41
  export { Print };