@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,147 +1,92 @@
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 FlagSVK = function FlagSVK(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "28",
57
- height: "20",
58
- viewBox: "0 0 28 20",
59
- fill: "none"
60
- }, props), {
61
- children: [
62
- /* @__PURE__ */ jsx("rect", {
63
- x: "0.25",
64
- y: "0.25",
65
- width: "27.5",
66
- height: "19.5",
67
- rx: "1.75",
68
- fill: "white",
69
- stroke: "#F5F5F5",
70
- strokeWidth: "0.5"
71
- }),
72
- /* @__PURE__ */ jsx("mask", {
73
- id: "mask0_48_1842",
74
- maskUnits: "userSpaceOnUse",
75
- x: "0",
76
- y: "0",
77
- width: "28",
78
- height: "20",
79
- children: /* @__PURE__ */ jsx("rect", {
80
- x: "0.25",
81
- y: "0.25",
82
- width: "27.5",
83
- height: "19.5",
84
- rx: "1.75",
85
- fill: "white",
86
- stroke: "white",
87
- strokeWidth: "0.5"
88
- })
89
- }),
90
- /* @__PURE__ */ jsxs("g", {
91
- mask: "url(#mask0_48_1842)",
92
- children: [
93
- /* @__PURE__ */ jsx("path", {
94
- fillRule: "evenodd",
95
- clipRule: "evenodd",
96
- d: "M0 13.3333H28V6.66666H0V13.3333Z",
97
- fill: "#0C47B7"
98
- }),
99
- /* @__PURE__ */ jsx("path", {
100
- fillRule: "evenodd",
101
- clipRule: "evenodd",
102
- d: "M0 20H28V13.3333H0V20Z",
103
- fill: "#E53B35"
104
- }),
105
- /* @__PURE__ */ jsx("path", {
106
- d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
107
- fill: "#F73744",
108
- stroke: "white",
109
- strokeWidth: "1.33333"
110
- }),
111
- /* @__PURE__ */ jsx("mask", {
112
- id: "mask1_48_1842",
113
- maskUnits: "userSpaceOnUse",
114
- x: "4",
115
- y: "2",
116
- width: "12",
117
- height: "16",
118
- children: /* @__PURE__ */ jsx("path", {
119
- d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
120
- fill: "white",
121
- stroke: "white",
122
- strokeWidth: "1.33333"
123
- })
124
- }),
125
- /* @__PURE__ */ jsxs("g", {
126
- mask: "url(#mask1_48_1842)",
127
- children: [
128
- /* @__PURE__ */ jsx("path", {
129
- fillRule: "evenodd",
130
- clipRule: "evenodd",
131
- d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z",
132
- fill: "white"
133
- }),
134
- /* @__PURE__ */ jsx("path", {
135
- fillRule: "evenodd",
136
- clipRule: "evenodd",
137
- d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z",
138
- fill: "#1251A1"
139
- })
140
- ]
141
- })
142
- ]
143
- })
144
- ]
145
- }));
146
- };
2
+ //#region packages/ui/Elements/Icon/icons/FlagSVK.tsx
3
+ const FlagSVK = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "28",
5
+ height: "20",
6
+ viewBox: "0 0 28 20",
7
+ fill: "none",
8
+ ...props,
9
+ children: [
10
+ /* @__PURE__ */ jsx("rect", {
11
+ x: "0.25",
12
+ y: "0.25",
13
+ width: "27.5",
14
+ height: "19.5",
15
+ rx: "1.75",
16
+ fill: "white",
17
+ stroke: "#F5F5F5",
18
+ strokeWidth: "0.5"
19
+ }),
20
+ /* @__PURE__ */ jsx("mask", {
21
+ id: "mask0_48_1842",
22
+ maskUnits: "userSpaceOnUse",
23
+ x: "0",
24
+ y: "0",
25
+ width: "28",
26
+ height: "20",
27
+ children: /* @__PURE__ */ jsx("rect", {
28
+ x: "0.25",
29
+ y: "0.25",
30
+ width: "27.5",
31
+ height: "19.5",
32
+ rx: "1.75",
33
+ fill: "white",
34
+ stroke: "white",
35
+ strokeWidth: "0.5"
36
+ })
37
+ }),
38
+ /* @__PURE__ */ jsxs("g", {
39
+ mask: "url(#mask0_48_1842)",
40
+ children: [
41
+ /* @__PURE__ */ jsx("path", {
42
+ fillRule: "evenodd",
43
+ clipRule: "evenodd",
44
+ d: "M0 13.3333H28V6.66666H0V13.3333Z",
45
+ fill: "#0C47B7"
46
+ }),
47
+ /* @__PURE__ */ jsx("path", {
48
+ fillRule: "evenodd",
49
+ clipRule: "evenodd",
50
+ d: "M0 20H28V13.3333H0V20Z",
51
+ fill: "#E53B35"
52
+ }),
53
+ /* @__PURE__ */ jsx("path", {
54
+ d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
55
+ fill: "#F73744",
56
+ stroke: "white",
57
+ strokeWidth: "1.33333"
58
+ }),
59
+ /* @__PURE__ */ jsx("mask", {
60
+ id: "mask1_48_1842",
61
+ maskUnits: "userSpaceOnUse",
62
+ x: "4",
63
+ y: "2",
64
+ width: "12",
65
+ height: "16",
66
+ children: /* @__PURE__ */ jsx("path", {
67
+ d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z",
68
+ fill: "white",
69
+ stroke: "white",
70
+ strokeWidth: "1.33333"
71
+ })
72
+ }),
73
+ /* @__PURE__ */ jsxs("g", {
74
+ mask: "url(#mask1_48_1842)",
75
+ children: [/* @__PURE__ */ jsx("path", {
76
+ fillRule: "evenodd",
77
+ clipRule: "evenodd",
78
+ d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z",
79
+ fill: "white"
80
+ }), /* @__PURE__ */ jsx("path", {
81
+ fillRule: "evenodd",
82
+ clipRule: "evenodd",
83
+ d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z",
84
+ fill: "#1251A1"
85
+ })]
86
+ })
87
+ ]
88
+ })
89
+ ]
90
+ });
91
+ //#endregion
147
92
  export { FlagSVK };
@@ -1,75 +1,20 @@
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 FlagUK = function FlagUK(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- xmlns: "http://www.w3.org/2000/svg",
57
- width: "28",
58
- height: "20"
59
- }, props), {
60
- children: [
61
- /* @__PURE__ */ jsx("rect", {
62
- width: "28",
63
- height: "20",
64
- fill: "#0057B7"
65
- }),
66
- /* @__PURE__ */ jsx("rect", {
67
- width: "28",
68
- height: "10",
69
- y: "10",
70
- fill: "#FFD700"
71
- })
72
- ]
73
- }));
74
- };
2
+ //#region packages/ui/Elements/Icon/icons/FlagUK.tsx
3
+ const FlagUK = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ width: "28",
6
+ height: "20",
7
+ ...props,
8
+ children: [/* @__PURE__ */ jsx("rect", {
9
+ width: "28",
10
+ height: "20",
11
+ fill: "#0057B7"
12
+ }), /* @__PURE__ */ jsx("rect", {
13
+ width: "28",
14
+ height: "10",
15
+ y: "10",
16
+ fill: "#FFD700"
17
+ })]
18
+ });
19
+ //#endregion
75
20
  export { FlagUK };
@@ -1,170 +1,106 @@
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 FlagUSA = function FlagUSA(props) {
55
- return /* @__PURE__ */ jsxs("svg", _object_spread_props(_object_spread({
56
- width: "28",
57
- height: "20",
58
- viewBox: "0 0 28 20",
59
- fill: "none"
60
- }, props), {
61
- children: [
62
- /* @__PURE__ */ jsx("rect", {
63
- width: "28",
64
- height: "20",
65
- rx: "2",
66
- fill: "white"
67
- }),
68
- /* @__PURE__ */ jsx("mask", {
69
- id: "mask0_48_2135",
70
- maskUnits: "userSpaceOnUse",
71
- x: "0",
72
- y: "0",
73
- width: "28",
74
- height: "20",
75
- children: /* @__PURE__ */ jsx("rect", {
76
- width: "28",
77
- height: "20",
78
- rx: "2",
79
- fill: "white"
80
- })
81
- }),
82
- /* @__PURE__ */ jsxs("g", {
83
- mask: "url(#mask0_48_2135)",
84
- children: [
85
- /* @__PURE__ */ jsx("path", {
86
- fillRule: "evenodd",
87
- clipRule: "evenodd",
88
- d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z",
89
- fill: "#D02F44"
90
- }),
91
- /* @__PURE__ */ jsx("rect", {
92
- width: "12",
93
- height: "9.33333",
94
- fill: "#46467F"
95
- }),
96
- /* @__PURE__ */ jsx("g", {
97
- filter: "url(#filter0_d_48_2135)",
98
- children: /* @__PURE__ */ jsx("path", {
99
- fillRule: "evenodd",
100
- clipRule: "evenodd",
101
- d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z",
102
- fill: "url(#paint0_linear_48_2135)"
103
- })
104
- })
105
- ]
106
- }),
107
- /* @__PURE__ */ jsxs("defs", {
108
- children: [
109
- /* @__PURE__ */ jsxs("filter", {
110
- id: "filter0_d_48_2135",
111
- x: "1.33337",
112
- y: "1.33334",
113
- width: "9.33337",
114
- height: "7.66666",
115
- filterUnits: "userSpaceOnUse",
116
- colorInterpolationFilters: "sRGB",
117
- children: [
118
- /* @__PURE__ */ jsx("feFlood", {
119
- floodOpacity: "0",
120
- result: "BackgroundImageFix"
121
- }),
122
- /* @__PURE__ */ jsx("feColorMatrix", {
123
- in: "SourceAlpha",
124
- type: "matrix",
125
- values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
126
- result: "hardAlpha"
127
- }),
128
- /* @__PURE__ */ jsx("feOffset", {
129
- dy: "1"
130
- }),
131
- /* @__PURE__ */ jsx("feColorMatrix", {
132
- type: "matrix",
133
- values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"
134
- }),
135
- /* @__PURE__ */ jsx("feBlend", {
136
- mode: "normal",
137
- in2: "BackgroundImageFix",
138
- result: "effect1_dropShadow_48_2135"
139
- }),
140
- /* @__PURE__ */ jsx("feBlend", {
141
- mode: "normal",
142
- in: "SourceGraphic",
143
- in2: "effect1_dropShadow_48_2135",
144
- result: "shape"
145
- })
146
- ]
147
- }),
148
- /* @__PURE__ */ jsxs("linearGradient", {
149
- id: "paint0_linear_48_2135",
150
- x1: "1.33337",
151
- y1: "1.33334",
152
- x2: "1.33337",
153
- y2: "8.00001",
154
- gradientUnits: "userSpaceOnUse",
155
- children: [
156
- /* @__PURE__ */ jsx("stop", {
157
- stopColor: "white"
158
- }),
159
- /* @__PURE__ */ jsx("stop", {
160
- offset: "1",
161
- stopColor: "#F0F0F0"
162
- })
163
- ]
164
- })
165
- ]
166
- })
167
- ]
168
- }));
169
- };
2
+ //#region packages/ui/Elements/Icon/icons/FlagUSA.tsx
3
+ const FlagUSA = (props) => /* @__PURE__ */ jsxs("svg", {
4
+ width: "28",
5
+ height: "20",
6
+ viewBox: "0 0 28 20",
7
+ fill: "none",
8
+ ...props,
9
+ children: [
10
+ /* @__PURE__ */ jsx("rect", {
11
+ width: "28",
12
+ height: "20",
13
+ rx: "2",
14
+ fill: "white"
15
+ }),
16
+ /* @__PURE__ */ jsx("mask", {
17
+ id: "mask0_48_2135",
18
+ maskUnits: "userSpaceOnUse",
19
+ x: "0",
20
+ y: "0",
21
+ width: "28",
22
+ height: "20",
23
+ children: /* @__PURE__ */ jsx("rect", {
24
+ width: "28",
25
+ height: "20",
26
+ rx: "2",
27
+ fill: "white"
28
+ })
29
+ }),
30
+ /* @__PURE__ */ jsxs("g", {
31
+ mask: "url(#mask0_48_2135)",
32
+ children: [
33
+ /* @__PURE__ */ jsx("path", {
34
+ fillRule: "evenodd",
35
+ clipRule: "evenodd",
36
+ d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z",
37
+ fill: "#D02F44"
38
+ }),
39
+ /* @__PURE__ */ jsx("rect", {
40
+ width: "12",
41
+ height: "9.33333",
42
+ fill: "#46467F"
43
+ }),
44
+ /* @__PURE__ */ jsx("g", {
45
+ filter: "url(#filter0_d_48_2135)",
46
+ children: /* @__PURE__ */ jsx("path", {
47
+ fillRule: "evenodd",
48
+ clipRule: "evenodd",
49
+ d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z",
50
+ fill: "url(#paint0_linear_48_2135)"
51
+ })
52
+ })
53
+ ]
54
+ }),
55
+ /* @__PURE__ */ jsxs("defs", { children: [/* @__PURE__ */ jsxs("filter", {
56
+ id: "filter0_d_48_2135",
57
+ x: "1.33337",
58
+ y: "1.33334",
59
+ width: "9.33337",
60
+ height: "7.66666",
61
+ filterUnits: "userSpaceOnUse",
62
+ colorInterpolationFilters: "sRGB",
63
+ children: [
64
+ /* @__PURE__ */ jsx("feFlood", {
65
+ floodOpacity: "0",
66
+ result: "BackgroundImageFix"
67
+ }),
68
+ /* @__PURE__ */ jsx("feColorMatrix", {
69
+ in: "SourceAlpha",
70
+ type: "matrix",
71
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
72
+ result: "hardAlpha"
73
+ }),
74
+ /* @__PURE__ */ jsx("feOffset", { dy: "1" }),
75
+ /* @__PURE__ */ jsx("feColorMatrix", {
76
+ type: "matrix",
77
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"
78
+ }),
79
+ /* @__PURE__ */ jsx("feBlend", {
80
+ mode: "normal",
81
+ in2: "BackgroundImageFix",
82
+ result: "effect1_dropShadow_48_2135"
83
+ }),
84
+ /* @__PURE__ */ jsx("feBlend", {
85
+ mode: "normal",
86
+ in: "SourceGraphic",
87
+ in2: "effect1_dropShadow_48_2135",
88
+ result: "shape"
89
+ })
90
+ ]
91
+ }), /* @__PURE__ */ jsxs("linearGradient", {
92
+ id: "paint0_linear_48_2135",
93
+ x1: "1.33337",
94
+ y1: "1.33334",
95
+ x2: "1.33337",
96
+ y2: "8.00001",
97
+ gradientUnits: "userSpaceOnUse",
98
+ children: [/* @__PURE__ */ jsx("stop", { stopColor: "white" }), /* @__PURE__ */ jsx("stop", {
99
+ offset: "1",
100
+ stopColor: "#F0F0F0"
101
+ })]
102
+ })] })
103
+ ]
104
+ });
105
+ //#endregion
170
106
  export { FlagUSA };