braid-design-system 32.16.0 → 32.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1261) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/color-mode/query-param.cjs +2 -2
  3. package/dist/color-mode/query-param.mjs +1 -1
  4. package/dist/css.cjs +13 -13
  5. package/dist/css.mjs +6 -6
  6. package/dist/index.cjs +332 -213
  7. package/dist/index.mjs +165 -46
  8. package/dist/lib/color/palette.cjs +173 -0
  9. package/dist/lib/color/palette.mjs +174 -0
  10. package/dist/lib/components/Accordion/Accordion.cjs +60 -0
  11. package/dist/lib/components/Accordion/Accordion.mjs +59 -0
  12. package/dist/lib/components/Accordion/Accordion.playroom.cjs +34 -0
  13. package/dist/lib/components/Accordion/AccordionContext.cjs +8 -0
  14. package/dist/lib/components/Accordion/AccordionContext.mjs +9 -0
  15. package/dist/lib/components/Accordion/AccordionItem.cjs +136 -0
  16. package/dist/lib/components/Accordion/AccordionItem.css.cjs +21 -0
  17. package/dist/lib/components/Accordion/AccordionItem.mjs +135 -0
  18. package/dist/lib/components/Accordion/AccordionItem.playroom.cjs +42 -0
  19. package/dist/lib/components/Accordion/AccordionItem.playroom.mjs +43 -0
  20. package/dist/lib/components/Actions/Actions.cjs +10 -0
  21. package/dist/lib/components/Actions/Actions.mjs +11 -0
  22. package/dist/lib/components/Actions/ActionsContext.cjs +4 -0
  23. package/dist/lib/components/Actions/ActionsContext.mjs +5 -0
  24. package/dist/lib/components/Alert/Alert.cjs +139 -0
  25. package/dist/lib/components/Alert/Alert.mjs +140 -0
  26. package/dist/lib/components/Alert/Alert.playroom.cjs +11 -0
  27. package/dist/lib/components/Alert/Alert.playroom.mjs +12 -0
  28. package/dist/lib/components/Autosuggest/Autosuggest.cjs +608 -0
  29. package/dist/lib/components/Autosuggest/Autosuggest.css.cjs +33 -0
  30. package/dist/lib/components/Autosuggest/Autosuggest.mjs +606 -0
  31. package/dist/lib/components/Autosuggest/Autosuggest.playroom.cjs +36 -0
  32. package/dist/lib/components/Autosuggest/Autosuggest.playroom.mjs +37 -0
  33. package/dist/lib/components/Autosuggest/createAccessbilityProps.cjs +47 -0
  34. package/dist/lib/components/Autosuggest/createAccessbilityProps.mjs +48 -0
  35. package/dist/lib/components/Autosuggest/filterSuggestions.cjs +62 -0
  36. package/dist/lib/components/Autosuggest/filterSuggestions.mjs +60 -0
  37. package/dist/lib/components/Autosuggest/useScrollIntoView.cjs +19 -0
  38. package/dist/lib/components/Autosuggest/useScrollIntoView.mjs +20 -0
  39. package/dist/lib/components/Badge/Badge.cjs +91 -0
  40. package/dist/lib/components/Badge/Badge.mjs +90 -0
  41. package/dist/lib/components/Badge/Badge.playroom.cjs +12 -0
  42. package/dist/lib/components/Badge/Badge.playroom.mjs +13 -0
  43. package/dist/lib/components/Bleed/Bleed.cjs +43 -0
  44. package/dist/lib/components/Bleed/Bleed.mjs +44 -0
  45. package/dist/lib/components/Bleed/Bleed.playroom.cjs +11 -0
  46. package/dist/lib/components/Bleed/Bleed.playroom.mjs +12 -0
  47. package/dist/lib/components/Box/BackgroundContext.cjs +36 -0
  48. package/dist/lib/components/Box/BackgroundContext.mjs +37 -0
  49. package/dist/lib/components/Box/Box.cjs +85 -0
  50. package/dist/lib/components/Box/Box.mjs +83 -0
  51. package/dist/lib/components/Box/Box.playroom.cjs +30 -0
  52. package/dist/lib/components/Box/BoxRenderer.cjs +41 -0
  53. package/dist/lib/components/Box/BoxRenderer.mjs +40 -0
  54. package/dist/lib/components/Box/ColoredBox.cjs +117 -0
  55. package/dist/lib/components/Box/ColoredBox.mjs +118 -0
  56. package/dist/lib/components/BraidPortal/BraidPortal.cjs +14 -0
  57. package/dist/lib/components/BraidPortal/BraidPortal.mjs +15 -0
  58. package/dist/lib/components/BraidProvider/BraidProvider.cjs +76 -0
  59. package/dist/lib/components/BraidProvider/BraidProvider.mjs +74 -0
  60. package/dist/lib/components/BraidProvider/BraidThemeContext.cjs +12 -0
  61. package/dist/lib/components/BraidProvider/BraidThemeContext.mjs +13 -0
  62. package/dist/lib/components/BraidProvider/BreakpointContext.cjs +54 -0
  63. package/dist/lib/components/BraidProvider/BreakpointContext.mjs +55 -0
  64. package/dist/lib/components/BraidProvider/VanillaThemeContainer.cjs +13 -0
  65. package/dist/lib/components/BraidTestProvider/BraidTestProvider.cjs +19 -0
  66. package/dist/lib/components/BraidTestProvider/BraidTestProvider.mjs +20 -0
  67. package/dist/lib/components/BraidTestProvider/BraidTestProviderContext.cjs +4 -0
  68. package/dist/lib/components/BraidTestProvider/BraidTestProviderContext.mjs +5 -0
  69. package/dist/lib/components/Button/Button.cjs +457 -0
  70. package/dist/lib/components/Button/Button.css.cjs +147 -0
  71. package/dist/lib/components/Button/Button.mjs +455 -0
  72. package/dist/lib/components/Button/Button.playroom.cjs +21 -0
  73. package/dist/lib/components/Button/Button.playroom.mjs +22 -0
  74. package/dist/lib/components/ButtonIcon/ButtonIcon.cjs +140 -0
  75. package/dist/lib/components/ButtonIcon/ButtonIcon.mjs +139 -0
  76. package/dist/lib/components/ButtonIcon/ButtonIcon.playroom.cjs +24 -0
  77. package/dist/lib/components/ButtonIcon/ButtonIcon.playroom.mjs +25 -0
  78. package/dist/lib/components/ButtonLink/ButtonLink.cjs +77 -0
  79. package/dist/lib/components/ButtonLink/ButtonLink.mjs +76 -0
  80. package/dist/lib/components/ButtonLink/ButtonLink.playroom.cjs +20 -0
  81. package/dist/lib/components/ButtonLink/ButtonLink.playroom.mjs +21 -0
  82. package/dist/lib/components/Card/Card.cjs +66 -0
  83. package/dist/lib/components/Card/Card.mjs +65 -0
  84. package/dist/lib/components/Card/Card.playroom.cjs +11 -0
  85. package/dist/lib/components/Card/Card.playroom.mjs +12 -0
  86. package/dist/lib/components/Checkbox/Checkbox.cjs +21 -0
  87. package/dist/lib/components/Checkbox/Checkbox.mjs +22 -0
  88. package/dist/lib/components/Checkbox/Checkbox.playroom.cjs +30 -0
  89. package/dist/lib/components/Checkbox/Checkbox.playroom.mjs +31 -0
  90. package/dist/lib/components/Checkbox/CheckboxStandalone.cjs +20 -0
  91. package/dist/lib/components/Checkbox/CheckboxStandalone.mjs +21 -0
  92. package/dist/lib/components/Checkbox/CheckboxStandalone.playroom.cjs +32 -0
  93. package/dist/lib/components/Checkbox/CheckboxStandalone.playroom.mjs +33 -0
  94. package/dist/lib/components/Checkbox/resolveCheckedGroup.cjs +3 -0
  95. package/dist/lib/components/Checkbox/resolveCheckedGroup.mjs +4 -0
  96. package/dist/lib/components/Column/Column.cjs +65 -0
  97. package/dist/lib/components/Column/Column.mjs +66 -0
  98. package/dist/lib/components/Columns/Columns.cjs +79 -0
  99. package/dist/lib/components/Columns/Columns.mjs +78 -0
  100. package/dist/lib/components/Columns/Columns.playroom.cjs +22 -0
  101. package/dist/lib/components/Columns/Columns.playroom.mjs +23 -0
  102. package/dist/lib/components/Columns/ColumnsContext.cjs +16 -0
  103. package/dist/lib/components/Columns/ColumnsContext.mjs +17 -0
  104. package/dist/lib/components/ContentBlock/ContentBlock.cjs +21 -0
  105. package/dist/lib/components/ContentBlock/ContentBlock.mjs +22 -0
  106. package/dist/lib/components/Dialog/Dialog.cjs +10 -0
  107. package/dist/lib/components/Dialog/Dialog.mjs +11 -0
  108. package/dist/lib/components/Dialog/Dialog.playroom.cjs +37 -0
  109. package/dist/lib/components/Dialog/Dialog.playroom.mjs +38 -0
  110. package/dist/lib/components/Disclosure/Disclosure.cjs +84 -0
  111. package/dist/lib/components/Disclosure/Disclosure.mjs +83 -0
  112. package/dist/lib/components/Disclosure/Disclosure.playroom.cjs +34 -0
  113. package/dist/lib/components/Disclosure/Disclosure.playroom.mjs +35 -0
  114. package/dist/lib/components/Disclosure/useDisclosure.cjs +30 -0
  115. package/dist/lib/components/Disclosure/useDisclosure.mjs +31 -0
  116. package/dist/lib/components/Divider/Divider.cjs +23 -0
  117. package/dist/lib/components/Divider/Divider.css.cjs +53 -0
  118. package/dist/lib/components/Drawer/Drawer.cjs +27 -0
  119. package/dist/lib/components/Drawer/Drawer.mjs +26 -0
  120. package/dist/lib/components/Drawer/Drawer.playroom.cjs +37 -0
  121. package/dist/lib/components/Drawer/Drawer.playroom.mjs +38 -0
  122. package/dist/lib/components/Dropdown/Dropdown.cjs +72 -0
  123. package/dist/lib/components/Dropdown/Dropdown.css.cjs +10 -0
  124. package/dist/lib/components/Dropdown/Dropdown.mjs +73 -0
  125. package/dist/lib/components/Dropdown/Dropdown.playroom.cjs +30 -0
  126. package/dist/lib/components/Dropdown/Dropdown.playroom.mjs +31 -0
  127. package/dist/lib/components/FieldLabel/FieldLabel.cjs +41 -0
  128. package/dist/lib/components/FieldLabel/FieldLabel.mjs +42 -0
  129. package/dist/lib/components/FieldLabel/FieldLabel.playroom.cjs +21 -0
  130. package/dist/lib/components/FieldLabel/FieldLabel.playroom.mjs +22 -0
  131. package/dist/lib/components/FieldMessage/FieldMessage.cjs +55 -0
  132. package/dist/lib/components/FieldMessage/FieldMessage.mjs +56 -0
  133. package/dist/lib/components/FieldMessage/FieldMessage.playroom.cjs +20 -0
  134. package/dist/lib/components/FieldMessage/FieldMessage.playroom.mjs +21 -0
  135. package/dist/lib/components/Heading/Heading.cjs +30 -0
  136. package/dist/lib/components/Heading/Heading.mjs +31 -0
  137. package/dist/lib/components/Heading/Heading.playroom.cjs +5 -0
  138. package/dist/lib/components/Heading/Heading.playroom.mjs +6 -0
  139. package/dist/lib/components/Heading/HeadingContext.cjs +4 -0
  140. package/dist/lib/components/Heading/HeadingContext.mjs +5 -0
  141. package/dist/lib/components/Hidden/Hidden.cjs +50 -0
  142. package/dist/lib/components/Hidden/Hidden.mjs +51 -0
  143. package/dist/lib/components/HiddenVisually/HiddenVisually.cjs +31 -0
  144. package/dist/lib/components/HiddenVisually/HiddenVisually.mjs +32 -0
  145. package/dist/lib/components/Inline/Inline.cjs +74 -0
  146. package/dist/lib/components/Inline/Inline.mjs +73 -0
  147. package/dist/lib/components/Inline/Inline.playroom.cjs +21 -0
  148. package/dist/lib/components/Inline/Inline.playroom.mjs +22 -0
  149. package/dist/lib/components/Link/Link.cjs +26 -0
  150. package/dist/lib/components/Link/Link.mjs +25 -0
  151. package/dist/lib/components/Link/Link.playroom.cjs +16 -0
  152. package/dist/lib/components/Link/Link.playroom.mjs +17 -0
  153. package/dist/lib/components/List/List.cjs +134 -0
  154. package/dist/lib/components/List/List.mjs +135 -0
  155. package/dist/lib/components/List/List.playroom.cjs +13 -0
  156. package/dist/lib/components/List/List.playroom.mjs +14 -0
  157. package/dist/lib/components/Loader/Loader.cjs +48 -0
  158. package/dist/lib/components/Loader/Loader.css.cjs +82 -0
  159. package/dist/lib/components/Loader/Loader.mjs +49 -0
  160. package/dist/lib/components/MenuItem/MenuItem.cjs +23 -0
  161. package/dist/lib/components/MenuItem/MenuItem.mjs +24 -0
  162. package/dist/lib/components/MenuItem/MenuItem.playroom.cjs +12 -0
  163. package/dist/lib/components/MenuItem/MenuItem.playroom.mjs +13 -0
  164. package/dist/lib/components/MenuItem/MenuItemLink.cjs +38 -0
  165. package/dist/lib/components/MenuItem/MenuItemLink.mjs +39 -0
  166. package/dist/lib/components/MenuItem/MenuItemLink.playroom.cjs +12 -0
  167. package/dist/lib/components/MenuItem/MenuItemLink.playroom.mjs +13 -0
  168. package/dist/lib/components/MenuItem/useMenuItem.cjs +188 -0
  169. package/dist/lib/components/MenuItem/useMenuItem.mjs +187 -0
  170. package/dist/lib/components/MenuItemCheckbox/MenuItemCheckbox.cjs +73 -0
  171. package/dist/lib/components/MenuItemCheckbox/MenuItemCheckbox.css.cjs +30 -0
  172. package/dist/lib/components/MenuItemCheckbox/MenuItemCheckbox.mjs +74 -0
  173. package/dist/lib/components/MenuItemCheckbox/MenuItemCheckbox.playroom.cjs +15 -0
  174. package/dist/lib/components/MenuItemCheckbox/MenuItemCheckbox.playroom.mjs +16 -0
  175. package/dist/lib/components/MenuItemDivider/MenuItemDivider.cjs +18 -0
  176. package/dist/lib/components/MenuItemDivider/MenuItemDivider.mjs +17 -0
  177. package/dist/lib/components/MenuRenderer/MenuRenderer.actions.cjs +20 -0
  178. package/dist/lib/components/MenuRenderer/MenuRenderer.actions.mjs +21 -0
  179. package/dist/lib/components/MenuRenderer/MenuRenderer.cjs +306 -0
  180. package/dist/lib/components/MenuRenderer/MenuRenderer.css.cjs +40 -0
  181. package/dist/lib/components/MenuRenderer/MenuRenderer.mjs +305 -0
  182. package/dist/lib/components/MenuRenderer/MenuRendererContext.cjs +6 -0
  183. package/dist/lib/components/MenuRenderer/MenuRendererContext.mjs +7 -0
  184. package/dist/lib/components/MenuRenderer/MenuRendererItemContext.cjs +4 -0
  185. package/dist/lib/components/MenuRenderer/MenuRendererItemContext.mjs +5 -0
  186. package/dist/lib/components/MonthPicker/MonthPicker.cjs +174 -0
  187. package/dist/lib/components/MonthPicker/MonthPicker.mjs +173 -0
  188. package/dist/lib/components/MonthPicker/MonthPicker.playroom.cjs +30 -0
  189. package/dist/lib/components/MonthPicker/MonthPicker.playroom.mjs +31 -0
  190. package/dist/lib/components/Notice/Notice.cjs +39 -0
  191. package/dist/lib/components/Notice/Notice.mjs +40 -0
  192. package/dist/lib/components/Notice/Notice.playroom.cjs +11 -0
  193. package/dist/lib/components/Notice/Notice.playroom.mjs +12 -0
  194. package/dist/lib/components/OverflowMenu/OverflowMenu.cjs +40 -0
  195. package/dist/lib/components/OverflowMenu/OverflowMenu.mjs +41 -0
  196. package/dist/lib/components/OverflowMenu/OverflowMenu.playroom.cjs +9 -0
  197. package/dist/lib/components/OverflowMenu/OverflowMenu.playroom.mjs +10 -0
  198. package/dist/lib/components/Page/Page.cjs +44 -0
  199. package/dist/lib/components/Page/Page.mjs +43 -0
  200. package/dist/lib/components/Page/PageContext.cjs +4 -0
  201. package/dist/lib/components/Page/PageContext.mjs +5 -0
  202. package/dist/lib/components/PageBlock/PageBlock.cjs +34 -0
  203. package/dist/lib/components/PageBlock/PageBlock.mjs +35 -0
  204. package/dist/lib/components/Pagination/Pagination.cjs +224 -0
  205. package/dist/lib/components/Pagination/Pagination.css.cjs +32 -0
  206. package/dist/lib/components/Pagination/Pagination.mjs +223 -0
  207. package/dist/lib/components/Pagination/Pagination.playroom.cjs +55 -0
  208. package/dist/lib/components/Pagination/Pagination.playroom.mjs +56 -0
  209. package/dist/lib/components/Pagination/paginate.cjs +19 -0
  210. package/dist/lib/components/Pagination/paginate.mjs +20 -0
  211. package/dist/lib/components/PasswordField/PasswordField.cjs +83 -0
  212. package/dist/lib/components/PasswordField/PasswordField.mjs +84 -0
  213. package/dist/lib/components/PasswordField/PasswordField.playroom.cjs +31 -0
  214. package/dist/lib/components/PasswordField/PasswordField.playroom.mjs +32 -0
  215. package/dist/lib/components/Radio/Radio.cjs +51 -0
  216. package/dist/lib/components/Radio/Radio.mjs +49 -0
  217. package/dist/lib/components/Radio/Radio.playroom.cjs +24 -0
  218. package/dist/lib/components/Radio/Radio.playroom.mjs +25 -0
  219. package/dist/lib/components/RadioGroup/RadioGroup.cjs +71 -0
  220. package/dist/lib/components/RadioGroup/RadioGroup.mjs +70 -0
  221. package/dist/lib/components/RadioGroup/RadioGroup.playroom.cjs +27 -0
  222. package/dist/lib/components/RadioGroup/RadioGroup.playroom.mjs +28 -0
  223. package/dist/lib/components/RadioGroup/RadioGroupContext.cjs +8 -0
  224. package/dist/lib/components/RadioGroup/RadioGroupContext.mjs +9 -0
  225. package/dist/lib/components/RadioGroup/RadioItem.cjs +48 -0
  226. package/dist/lib/components/RadioGroup/RadioItem.mjs +47 -0
  227. package/dist/lib/components/Rating/Rating.cjs +112 -0
  228. package/dist/lib/components/Rating/Rating.css.cjs +27 -0
  229. package/dist/lib/components/Rating/Rating.mjs +110 -0
  230. package/dist/lib/components/Rating/Rating.playroom.cjs +11 -0
  231. package/dist/lib/components/Rating/Rating.playroom.mjs +12 -0
  232. package/dist/lib/components/Secondary/Secondary.cjs +19 -0
  233. package/dist/lib/components/Secondary/Secondary.mjs +20 -0
  234. package/dist/lib/components/Stack/Stack.cjs +142 -0
  235. package/dist/lib/components/Stack/Stack.mjs +141 -0
  236. package/dist/lib/components/Stack/Stack.playroom.cjs +19 -0
  237. package/dist/lib/components/Stack/Stack.playroom.mjs +20 -0
  238. package/dist/lib/components/Stepper/Step.cjs +209 -0
  239. package/dist/lib/components/Stepper/Step.mjs +207 -0
  240. package/dist/lib/components/Stepper/Stepper.cjs +126 -0
  241. package/dist/lib/components/Stepper/Stepper.css.cjs +168 -0
  242. package/dist/lib/components/Stepper/Stepper.mjs +125 -0
  243. package/dist/lib/components/Stepper/StepperContext.cjs +169 -0
  244. package/dist/lib/components/Stepper/StepperContext.mjs +170 -0
  245. package/dist/lib/components/Strong/Strong.cjs +14 -0
  246. package/dist/lib/components/Strong/Strong.mjs +15 -0
  247. package/dist/lib/components/Tabs/Tab.cjs +237 -0
  248. package/dist/lib/components/Tabs/Tab.mjs +236 -0
  249. package/dist/lib/components/Tabs/TabListContext.cjs +4 -0
  250. package/dist/lib/components/Tabs/TabListContext.mjs +5 -0
  251. package/dist/lib/components/Tabs/TabPanel.cjs +61 -0
  252. package/dist/lib/components/Tabs/TabPanel.mjs +60 -0
  253. package/dist/lib/components/Tabs/TabPanels.cjs +45 -0
  254. package/dist/lib/components/Tabs/TabPanels.mjs +44 -0
  255. package/dist/lib/components/Tabs/TabPanelsContext.cjs +6 -0
  256. package/dist/lib/components/Tabs/TabPanelsContext.mjs +7 -0
  257. package/dist/lib/components/Tabs/Tabs.actions.cjs +25 -0
  258. package/dist/lib/components/Tabs/Tabs.actions.mjs +26 -0
  259. package/dist/lib/components/Tabs/Tabs.cjs +192 -0
  260. package/dist/lib/components/Tabs/Tabs.css.cjs +93 -0
  261. package/dist/lib/components/Tabs/Tabs.css.mjs +94 -0
  262. package/dist/lib/components/Tabs/Tabs.mjs +191 -0
  263. package/dist/lib/components/Tabs/Tabs.playroom.cjs +25 -0
  264. package/dist/lib/components/Tabs/Tabs.playroom.mjs +26 -0
  265. package/dist/lib/components/Tabs/TabsProvider.cjs +120 -0
  266. package/dist/lib/components/Tabs/TabsProvider.mjs +121 -0
  267. package/dist/lib/components/Tabs/tabA11y.cjs +28 -0
  268. package/dist/lib/components/Tabs/tabA11y.mjs +29 -0
  269. package/dist/lib/components/Tag/Tag.cjs +66 -0
  270. package/dist/lib/components/Tag/Tag.mjs +65 -0
  271. package/dist/lib/components/Tag/Tag.playroom.cjs +16 -0
  272. package/dist/lib/components/Tag/Tag.playroom.mjs +17 -0
  273. package/dist/lib/components/Text/Text.cjs +44 -0
  274. package/dist/lib/components/Text/Text.mjs +43 -0
  275. package/dist/lib/components/Text/TextContext.cjs +4 -0
  276. package/dist/lib/components/Text/TextContext.mjs +5 -0
  277. package/dist/lib/components/TextDropdown/TextDropdown.cjs +92 -0
  278. package/dist/lib/components/TextDropdown/TextDropdown.css.cjs +25 -0
  279. package/dist/lib/components/TextDropdown/TextDropdown.mjs +91 -0
  280. package/dist/lib/components/TextDropdown/TextDropdown.playroom.cjs +52 -0
  281. package/dist/lib/components/TextDropdown/TextDropdown.playroom.mjs +53 -0
  282. package/dist/lib/components/TextField/TextField.cjs +94 -0
  283. package/dist/lib/components/TextField/TextField.mjs +95 -0
  284. package/dist/lib/components/TextField/TextField.playroom.cjs +36 -0
  285. package/dist/lib/components/TextField/TextField.playroom.mjs +37 -0
  286. package/dist/lib/components/TextLink/TextLink.cjs +91 -0
  287. package/dist/lib/components/TextLink/TextLink.css.cjs +132 -0
  288. package/dist/lib/components/TextLink/TextLink.mjs +90 -0
  289. package/dist/lib/components/TextLinkButton/TextLinkButton.cjs +61 -0
  290. package/dist/lib/components/TextLinkButton/TextLinkButton.mjs +62 -0
  291. package/dist/lib/components/Textarea/Highlight/Highlight.cjs +7 -0
  292. package/dist/lib/components/Textarea/Highlight/Highlight.css.cjs +39 -0
  293. package/dist/lib/components/Textarea/Textarea.cjs +132 -0
  294. package/dist/lib/components/Textarea/Textarea.css.cjs +22 -0
  295. package/dist/lib/components/Textarea/Textarea.mjs +133 -0
  296. package/dist/lib/components/Textarea/Textarea.playroom.cjs +31 -0
  297. package/dist/lib/components/Textarea/Textarea.playroom.mjs +32 -0
  298. package/dist/lib/components/Textarea/formatRanges.cjs +43 -0
  299. package/dist/lib/components/Textarea/formatRanges.mjs +42 -0
  300. package/dist/lib/components/ThemeNameConsumer/ThemeNameConsumer.cjs +4 -0
  301. package/dist/lib/components/ThemeNameConsumer/ThemeNameConsumer.mjs +5 -0
  302. package/dist/lib/components/Tiles/Tiles.cjs +69 -0
  303. package/dist/lib/components/Tiles/Tiles.css.cjs +27 -0
  304. package/dist/lib/components/Tiles/Tiles.mjs +70 -0
  305. package/dist/lib/components/Tiles/Tiles.playroom.cjs +13 -0
  306. package/dist/lib/components/Tiles/Tiles.playroom.mjs +14 -0
  307. package/dist/lib/components/Toggle/Toggle.cjs +163 -0
  308. package/dist/lib/components/Toggle/Toggle.css.cjs +152 -0
  309. package/dist/lib/components/Toggle/Toggle.mjs +164 -0
  310. package/dist/lib/components/Toggle/Toggle.playroom.cjs +30 -0
  311. package/dist/lib/components/Toggle/Toggle.playroom.mjs +31 -0
  312. package/dist/lib/components/TooltipRenderer/TooltipRenderer.cjs +252 -0
  313. package/dist/lib/components/TooltipRenderer/TooltipRenderer.css.cjs +60 -0
  314. package/dist/lib/components/TooltipRenderer/TooltipRenderer.mjs +250 -0
  315. package/dist/lib/components/TooltipRenderer/TooltipRenderer.playroom.cjs +12 -0
  316. package/dist/lib/components/TooltipRenderer/TooltipRenderer.playroom.mjs +13 -0
  317. package/dist/lib/components/icons/IconAdd/IconAdd.cjs +10 -0
  318. package/dist/lib/components/icons/IconAdd/IconAdd.mjs +11 -0
  319. package/dist/lib/components/icons/IconAdd/IconAddSvg.cjs +21 -0
  320. package/dist/lib/components/icons/IconAdd/IconAddSvg.mjs +22 -0
  321. package/dist/lib/components/icons/IconArrow/IconArrow.cjs +26 -0
  322. package/dist/lib/components/icons/IconArrow/IconArrow.mjs +27 -0
  323. package/dist/lib/components/icons/IconArrow/IconArrowSvg.cjs +20 -0
  324. package/dist/lib/components/icons/IconArrow/IconArrowSvg.mjs +21 -0
  325. package/dist/lib/components/icons/IconBookmark/IconBookmark.cjs +20 -0
  326. package/dist/lib/components/icons/IconBookmark/IconBookmark.mjs +21 -0
  327. package/dist/lib/components/icons/IconBookmark/IconBookmarkActiveSvg.cjs +25 -0
  328. package/dist/lib/components/icons/IconBookmark/IconBookmarkActiveSvg.mjs +26 -0
  329. package/dist/lib/components/icons/IconBookmark/IconBookmarkSvg.cjs +21 -0
  330. package/dist/lib/components/icons/IconBookmark/IconBookmarkSvg.mjs +22 -0
  331. package/dist/lib/components/icons/IconCaution/IconCaution.cjs +10 -0
  332. package/dist/lib/components/icons/IconCaution/IconCaution.mjs +11 -0
  333. package/dist/lib/components/icons/IconCaution/IconCautionSvg.cjs +22 -0
  334. package/dist/lib/components/icons/IconCaution/IconCautionSvg.mjs +23 -0
  335. package/dist/lib/components/icons/IconChevron/IconChevron.cjs +29 -0
  336. package/dist/lib/components/icons/IconChevron/IconChevron.mjs +30 -0
  337. package/dist/lib/components/icons/IconChevron/IconChevronSvg.cjs +21 -0
  338. package/dist/lib/components/icons/IconChevron/IconChevronSvg.mjs +22 -0
  339. package/dist/lib/components/icons/IconClear/IconClear.cjs +10 -0
  340. package/dist/lib/components/icons/IconClear/IconClear.mjs +11 -0
  341. package/dist/lib/components/icons/IconClear/IconClearSvg.cjs +21 -0
  342. package/dist/lib/components/icons/IconClear/IconClearSvg.mjs +22 -0
  343. package/dist/lib/components/icons/IconCompany/IconCompany.cjs +10 -0
  344. package/dist/lib/components/icons/IconCompany/IconCompany.mjs +11 -0
  345. package/dist/lib/components/icons/IconCompany/IconCompanySvg.cjs +22 -0
  346. package/dist/lib/components/icons/IconCompany/IconCompanySvg.mjs +23 -0
  347. package/dist/lib/components/icons/IconCompose/IconCompose.cjs +10 -0
  348. package/dist/lib/components/icons/IconCompose/IconCompose.mjs +11 -0
  349. package/dist/lib/components/icons/IconCompose/IconComposeSvg.cjs +22 -0
  350. package/dist/lib/components/icons/IconCompose/IconComposeSvg.mjs +23 -0
  351. package/dist/lib/components/icons/IconCopy/IconCopy.cjs +10 -0
  352. package/dist/lib/components/icons/IconCopy/IconCopy.mjs +11 -0
  353. package/dist/lib/components/icons/IconCopy/IconCopySvg.cjs +22 -0
  354. package/dist/lib/components/icons/IconCopy/IconCopySvg.mjs +23 -0
  355. package/dist/lib/components/icons/IconCreditCard/IconCreditCard.cjs +10 -0
  356. package/dist/lib/components/icons/IconCreditCard/IconCreditCard.mjs +11 -0
  357. package/dist/lib/components/icons/IconCreditCard/IconCreditCardSvg.cjs +22 -0
  358. package/dist/lib/components/icons/IconCreditCard/IconCreditCardSvg.mjs +23 -0
  359. package/dist/lib/components/icons/IconCritical/IconCritical.cjs +10 -0
  360. package/dist/lib/components/icons/IconCritical/IconCritical.mjs +11 -0
  361. package/dist/lib/components/icons/IconCritical/IconCriticalSvg.cjs +23 -0
  362. package/dist/lib/components/icons/IconCritical/IconCriticalSvg.mjs +24 -0
  363. package/dist/lib/components/icons/IconDate/IconDate.cjs +10 -0
  364. package/dist/lib/components/icons/IconDate/IconDate.mjs +11 -0
  365. package/dist/lib/components/icons/IconDate/IconDateSvg.cjs +21 -0
  366. package/dist/lib/components/icons/IconDate/IconDateSvg.mjs +22 -0
  367. package/dist/lib/components/icons/IconDelete/IconDelete.cjs +10 -0
  368. package/dist/lib/components/icons/IconDelete/IconDelete.mjs +11 -0
  369. package/dist/lib/components/icons/IconDelete/IconDeleteSvg.cjs +22 -0
  370. package/dist/lib/components/icons/IconDelete/IconDeleteSvg.mjs +23 -0
  371. package/dist/lib/components/icons/IconDesktop/IconDesktop.cjs +10 -0
  372. package/dist/lib/components/icons/IconDesktop/IconDesktop.mjs +11 -0
  373. package/dist/lib/components/icons/IconDesktop/IconDesktopSvg.cjs +20 -0
  374. package/dist/lib/components/icons/IconDesktop/IconDesktopSvg.mjs +21 -0
  375. package/dist/lib/components/icons/IconDocument/IconDocument.cjs +10 -0
  376. package/dist/lib/components/icons/IconDocument/IconDocument.mjs +11 -0
  377. package/dist/lib/components/icons/IconDocument/IconDocumentSvg.cjs +22 -0
  378. package/dist/lib/components/icons/IconDocument/IconDocumentSvg.mjs +23 -0
  379. package/dist/lib/components/icons/IconDocumentBroken/IconDocumentBroken.cjs +10 -0
  380. package/dist/lib/components/icons/IconDocumentBroken/IconDocumentBroken.mjs +11 -0
  381. package/dist/lib/components/icons/IconDocumentBroken/IconDocumentBrokenSvg.cjs +26 -0
  382. package/dist/lib/components/icons/IconDocumentBroken/IconDocumentBrokenSvg.mjs +27 -0
  383. package/dist/lib/components/icons/IconDownload/IconDownload.cjs +15 -0
  384. package/dist/lib/components/icons/IconDownload/IconDownload.mjs +16 -0
  385. package/dist/lib/components/icons/IconDownload/IconDownloadSvg.cjs +21 -0
  386. package/dist/lib/components/icons/IconDownload/IconDownloadSvg.mjs +22 -0
  387. package/dist/lib/components/icons/IconEdit/IconEdit.cjs +15 -0
  388. package/dist/lib/components/icons/IconEdit/IconEdit.mjs +16 -0
  389. package/dist/lib/components/icons/IconEdit/IconEditSvg.cjs +21 -0
  390. package/dist/lib/components/icons/IconEdit/IconEditSvg.mjs +22 -0
  391. package/dist/lib/components/icons/IconEducation/IconEducation.cjs +10 -0
  392. package/dist/lib/components/icons/IconEducation/IconEducation.mjs +11 -0
  393. package/dist/lib/components/icons/IconEducation/IconEducationSvg.cjs +21 -0
  394. package/dist/lib/components/icons/IconEducation/IconEducationSvg.mjs +22 -0
  395. package/dist/lib/components/icons/IconEnlarge/IconEnlarge.cjs +17 -0
  396. package/dist/lib/components/icons/IconEnlarge/IconEnlarge.mjs +18 -0
  397. package/dist/lib/components/icons/IconEnlarge/IconEnlargeActiveSvg.cjs +24 -0
  398. package/dist/lib/components/icons/IconEnlarge/IconEnlargeActiveSvg.mjs +25 -0
  399. package/dist/lib/components/icons/IconEnlarge/IconEnlargeSvg.cjs +20 -0
  400. package/dist/lib/components/icons/IconEnlarge/IconEnlargeSvg.mjs +21 -0
  401. package/dist/lib/components/icons/IconFilter/IconFilter.cjs +10 -0
  402. package/dist/lib/components/icons/IconFilter/IconFilter.mjs +11 -0
  403. package/dist/lib/components/icons/IconFilter/IconFilterSvg.cjs +21 -0
  404. package/dist/lib/components/icons/IconFilter/IconFilterSvg.mjs +22 -0
  405. package/dist/lib/components/icons/IconFlag/IconFlag.cjs +10 -0
  406. package/dist/lib/components/icons/IconFlag/IconFlag.mjs +11 -0
  407. package/dist/lib/components/icons/IconFlag/IconFlagSvg.cjs +20 -0
  408. package/dist/lib/components/icons/IconFlag/IconFlagSvg.mjs +21 -0
  409. package/dist/lib/components/icons/IconGrid/IconGrid.cjs +10 -0
  410. package/dist/lib/components/icons/IconGrid/IconGrid.mjs +11 -0
  411. package/dist/lib/components/icons/IconGrid/IconGridSvg.cjs +21 -0
  412. package/dist/lib/components/icons/IconGrid/IconGridSvg.mjs +22 -0
  413. package/dist/lib/components/icons/IconHeart/IconHeart.cjs +17 -0
  414. package/dist/lib/components/icons/IconHeart/IconHeart.mjs +18 -0
  415. package/dist/lib/components/icons/IconHeart/IconHeartActiveSvg.cjs +21 -0
  416. package/dist/lib/components/icons/IconHeart/IconHeartActiveSvg.mjs +22 -0
  417. package/dist/lib/components/icons/IconHeart/IconHeartSvg.cjs +21 -0
  418. package/dist/lib/components/icons/IconHeart/IconHeartSvg.mjs +22 -0
  419. package/dist/lib/components/icons/IconHelp/IconHelp.cjs +10 -0
  420. package/dist/lib/components/icons/IconHelp/IconHelp.mjs +11 -0
  421. package/dist/lib/components/icons/IconHelp/IconHelpSvg.cjs +22 -0
  422. package/dist/lib/components/icons/IconHelp/IconHelpSvg.mjs +23 -0
  423. package/dist/lib/components/icons/IconHistory/IconHistory.cjs +10 -0
  424. package/dist/lib/components/icons/IconHistory/IconHistory.mjs +11 -0
  425. package/dist/lib/components/icons/IconHistory/IconHistorySvg.cjs +22 -0
  426. package/dist/lib/components/icons/IconHistory/IconHistorySvg.mjs +23 -0
  427. package/dist/lib/components/icons/IconHome/IconHome.cjs +10 -0
  428. package/dist/lib/components/icons/IconHome/IconHome.mjs +11 -0
  429. package/dist/lib/components/icons/IconHome/IconHomeSvg.cjs +21 -0
  430. package/dist/lib/components/icons/IconHome/IconHomeSvg.mjs +22 -0
  431. package/dist/lib/components/icons/IconImage/IconImage.cjs +10 -0
  432. package/dist/lib/components/icons/IconImage/IconImage.mjs +11 -0
  433. package/dist/lib/components/icons/IconImage/IconImageSvg.cjs +22 -0
  434. package/dist/lib/components/icons/IconImage/IconImageSvg.mjs +23 -0
  435. package/dist/lib/components/icons/IconInfo/IconInfo.cjs +10 -0
  436. package/dist/lib/components/icons/IconInfo/IconInfo.mjs +11 -0
  437. package/dist/lib/components/icons/IconInfo/IconInfoSvg.cjs +22 -0
  438. package/dist/lib/components/icons/IconInfo/IconInfoSvg.mjs +23 -0
  439. package/dist/lib/components/icons/IconInvoice/IconInvoice.cjs +10 -0
  440. package/dist/lib/components/icons/IconInvoice/IconInvoice.mjs +11 -0
  441. package/dist/lib/components/icons/IconInvoice/IconInvoiceSvg.cjs +22 -0
  442. package/dist/lib/components/icons/IconInvoice/IconInvoiceSvg.mjs +23 -0
  443. package/dist/lib/components/icons/IconLanguage/IconLanguage.cjs +10 -0
  444. package/dist/lib/components/icons/IconLanguage/IconLanguage.mjs +11 -0
  445. package/dist/lib/components/icons/IconLanguage/IconLanguageSvg.cjs +20 -0
  446. package/dist/lib/components/icons/IconLanguage/IconLanguageSvg.mjs +21 -0
  447. package/dist/lib/components/icons/IconLink/IconLink.cjs +10 -0
  448. package/dist/lib/components/icons/IconLink/IconLink.mjs +11 -0
  449. package/dist/lib/components/icons/IconLink/IconLinkSvg.cjs +21 -0
  450. package/dist/lib/components/icons/IconLink/IconLinkSvg.mjs +22 -0
  451. package/dist/lib/components/icons/IconLinkBroken/IconLinkBroken.cjs +10 -0
  452. package/dist/lib/components/icons/IconLinkBroken/IconLinkBroken.mjs +11 -0
  453. package/dist/lib/components/icons/IconLinkBroken/IconLinkBrokenSvg.cjs +21 -0
  454. package/dist/lib/components/icons/IconLinkBroken/IconLinkBrokenSvg.mjs +22 -0
  455. package/dist/lib/components/icons/IconList/IconList.cjs +10 -0
  456. package/dist/lib/components/icons/IconList/IconList.mjs +11 -0
  457. package/dist/lib/components/icons/IconList/IconListSvg.cjs +24 -0
  458. package/dist/lib/components/icons/IconList/IconListSvg.mjs +25 -0
  459. package/dist/lib/components/icons/IconLocation/IconLocation.cjs +10 -0
  460. package/dist/lib/components/icons/IconLocation/IconLocation.mjs +11 -0
  461. package/dist/lib/components/icons/IconLocation/IconLocationSvg.cjs +22 -0
  462. package/dist/lib/components/icons/IconLocation/IconLocationSvg.mjs +23 -0
  463. package/dist/lib/components/icons/IconMail/IconMail.cjs +10 -0
  464. package/dist/lib/components/icons/IconMail/IconMail.mjs +11 -0
  465. package/dist/lib/components/icons/IconMail/IconMailSvg.cjs +21 -0
  466. package/dist/lib/components/icons/IconMail/IconMailSvg.mjs +22 -0
  467. package/dist/lib/components/icons/IconMessage/IconMessage.cjs +10 -0
  468. package/dist/lib/components/icons/IconMessage/IconMessage.mjs +11 -0
  469. package/dist/lib/components/icons/IconMessage/IconMessageSvg.cjs +30 -0
  470. package/dist/lib/components/icons/IconMessage/IconMessageSvg.mjs +31 -0
  471. package/dist/lib/components/icons/IconMinus/IconMinus.cjs +10 -0
  472. package/dist/lib/components/icons/IconMinus/IconMinus.mjs +11 -0
  473. package/dist/lib/components/icons/IconMinus/IconMinusSvg.cjs +21 -0
  474. package/dist/lib/components/icons/IconMinus/IconMinusSvg.mjs +22 -0
  475. package/dist/lib/components/icons/IconMobile/IconMobile.cjs +10 -0
  476. package/dist/lib/components/icons/IconMobile/IconMobile.mjs +11 -0
  477. package/dist/lib/components/icons/IconMobile/IconMobileSvg.cjs +21 -0
  478. package/dist/lib/components/icons/IconMobile/IconMobileSvg.mjs +22 -0
  479. package/dist/lib/components/icons/IconMoney/IconMoney.cjs +10 -0
  480. package/dist/lib/components/icons/IconMoney/IconMoney.mjs +11 -0
  481. package/dist/lib/components/icons/IconMoney/IconMoneySvg.cjs +28 -0
  482. package/dist/lib/components/icons/IconMoney/IconMoneySvg.mjs +29 -0
  483. package/dist/lib/components/icons/IconNewWindow/IconNewWindow.cjs +10 -0
  484. package/dist/lib/components/icons/IconNewWindow/IconNewWindow.mjs +11 -0
  485. package/dist/lib/components/icons/IconNewWindow/IconNewWindowSvg.cjs +22 -0
  486. package/dist/lib/components/icons/IconNewWindow/IconNewWindowSvg.mjs +23 -0
  487. package/dist/lib/components/icons/IconNote/IconNote.cjs +10 -0
  488. package/dist/lib/components/icons/IconNote/IconNote.mjs +11 -0
  489. package/dist/lib/components/icons/IconNote/IconNoteSvg.cjs +22 -0
  490. package/dist/lib/components/icons/IconNote/IconNoteSvg.mjs +23 -0
  491. package/dist/lib/components/icons/IconNotification/IconNotification.cjs +10 -0
  492. package/dist/lib/components/icons/IconNotification/IconNotification.mjs +11 -0
  493. package/dist/lib/components/icons/IconNotification/IconNotificationSvg.cjs +20 -0
  494. package/dist/lib/components/icons/IconNotification/IconNotificationSvg.mjs +21 -0
  495. package/dist/lib/components/icons/IconOverflow/IconOverflow.cjs +10 -0
  496. package/dist/lib/components/icons/IconOverflow/IconOverflow.mjs +11 -0
  497. package/dist/lib/components/icons/IconOverflow/IconOverflowSvg.cjs +23 -0
  498. package/dist/lib/components/icons/IconOverflow/IconOverflowSvg.mjs +24 -0
  499. package/dist/lib/components/icons/IconPeople/IconPeople.cjs +10 -0
  500. package/dist/lib/components/icons/IconPeople/IconPeople.mjs +11 -0
  501. package/dist/lib/components/icons/IconPeople/IconPeopleSvg.cjs +21 -0
  502. package/dist/lib/components/icons/IconPeople/IconPeopleSvg.mjs +22 -0
  503. package/dist/lib/components/icons/IconPersonAdd/IconPersonAdd.cjs +10 -0
  504. package/dist/lib/components/icons/IconPersonAdd/IconPersonAdd.mjs +11 -0
  505. package/dist/lib/components/icons/IconPersonAdd/IconPersonAddSvg.cjs +20 -0
  506. package/dist/lib/components/icons/IconPersonAdd/IconPersonAddSvg.mjs +21 -0
  507. package/dist/lib/components/icons/IconPersonVerified/IconPersonVerified.cjs +10 -0
  508. package/dist/lib/components/icons/IconPersonVerified/IconPersonVerified.mjs +11 -0
  509. package/dist/lib/components/icons/IconPersonVerified/IconPersonVerifiedSvg.cjs +26 -0
  510. package/dist/lib/components/icons/IconPersonVerified/IconPersonVerifiedSvg.mjs +27 -0
  511. package/dist/lib/components/icons/IconPhone/IconPhone.cjs +10 -0
  512. package/dist/lib/components/icons/IconPhone/IconPhone.mjs +11 -0
  513. package/dist/lib/components/icons/IconPhone/IconPhoneSvg.cjs +20 -0
  514. package/dist/lib/components/icons/IconPhone/IconPhoneSvg.mjs +21 -0
  515. package/dist/lib/components/icons/IconPlatformAndroid/IconPlatformAndroid.cjs +10 -0
  516. package/dist/lib/components/icons/IconPlatformAndroid/IconPlatformAndroid.mjs +11 -0
  517. package/dist/lib/components/icons/IconPlatformAndroid/IconPlatformAndroidSvg.cjs +24 -0
  518. package/dist/lib/components/icons/IconPlatformAndroid/IconPlatformAndroidSvg.mjs +25 -0
  519. package/dist/lib/components/icons/IconPlatformApple/IconPlatformApple.cjs +10 -0
  520. package/dist/lib/components/icons/IconPlatformApple/IconPlatformApple.mjs +11 -0
  521. package/dist/lib/components/icons/IconPlatformApple/IconPlatformAppleSvg.cjs +24 -0
  522. package/dist/lib/components/icons/IconPlatformApple/IconPlatformAppleSvg.mjs +25 -0
  523. package/dist/lib/components/icons/IconPositive/IconPositive.cjs +10 -0
  524. package/dist/lib/components/icons/IconPositive/IconPositive.mjs +11 -0
  525. package/dist/lib/components/icons/IconPositive/IconPositiveSvg.cjs +22 -0
  526. package/dist/lib/components/icons/IconPositive/IconPositiveSvg.mjs +23 -0
  527. package/dist/lib/components/icons/IconPrint/IconPrint.cjs +10 -0
  528. package/dist/lib/components/icons/IconPrint/IconPrint.mjs +11 -0
  529. package/dist/lib/components/icons/IconPrint/IconPrintSvg.cjs +21 -0
  530. package/dist/lib/components/icons/IconPrint/IconPrintSvg.mjs +22 -0
  531. package/dist/lib/components/icons/IconProfile/IconProfile.cjs +10 -0
  532. package/dist/lib/components/icons/IconProfile/IconProfile.mjs +11 -0
  533. package/dist/lib/components/icons/IconProfile/IconProfileSvg.cjs +20 -0
  534. package/dist/lib/components/icons/IconProfile/IconProfileSvg.mjs +21 -0
  535. package/dist/lib/components/icons/IconPromote/IconPromote.cjs +10 -0
  536. package/dist/lib/components/icons/IconPromote/IconPromote.mjs +11 -0
  537. package/dist/lib/components/icons/IconPromote/IconPromoteSvg.cjs +21 -0
  538. package/dist/lib/components/icons/IconPromote/IconPromoteSvg.mjs +22 -0
  539. package/dist/lib/components/icons/IconRecommended/IconRecommended.cjs +10 -0
  540. package/dist/lib/components/icons/IconRecommended/IconRecommended.mjs +11 -0
  541. package/dist/lib/components/icons/IconRecommended/IconRecommendedSvg.cjs +21 -0
  542. package/dist/lib/components/icons/IconRecommended/IconRecommendedSvg.mjs +22 -0
  543. package/dist/lib/components/icons/IconRefresh/IconRefresh.cjs +10 -0
  544. package/dist/lib/components/icons/IconRefresh/IconRefresh.mjs +11 -0
  545. package/dist/lib/components/icons/IconRefresh/IconRefreshSvg.cjs +20 -0
  546. package/dist/lib/components/icons/IconRefresh/IconRefreshSvg.mjs +21 -0
  547. package/dist/lib/components/icons/IconRenderer.cjs +35 -0
  548. package/dist/lib/components/icons/IconRenderer.mjs +33 -0
  549. package/dist/lib/components/icons/IconResume/IconResume.cjs +10 -0
  550. package/dist/lib/components/icons/IconResume/IconResume.mjs +11 -0
  551. package/dist/lib/components/icons/IconResume/IconResumeSvg.cjs +23 -0
  552. package/dist/lib/components/icons/IconResume/IconResumeSvg.mjs +24 -0
  553. package/dist/lib/components/icons/IconSearch/IconSearch.cjs +10 -0
  554. package/dist/lib/components/icons/IconSearch/IconSearch.mjs +11 -0
  555. package/dist/lib/components/icons/IconSearch/IconSearchSvg.cjs +21 -0
  556. package/dist/lib/components/icons/IconSearch/IconSearchSvg.mjs +22 -0
  557. package/dist/lib/components/icons/IconSecurity/IconSecurity.cjs +10 -0
  558. package/dist/lib/components/icons/IconSecurity/IconSecurity.mjs +11 -0
  559. package/dist/lib/components/icons/IconSecurity/IconSecuritySvg.cjs +21 -0
  560. package/dist/lib/components/icons/IconSecurity/IconSecuritySvg.mjs +22 -0
  561. package/dist/lib/components/icons/IconSend/IconSend.cjs +15 -0
  562. package/dist/lib/components/icons/IconSend/IconSend.mjs +16 -0
  563. package/dist/lib/components/icons/IconSend/IconSendSvg.cjs +21 -0
  564. package/dist/lib/components/icons/IconSend/IconSendSvg.mjs +22 -0
  565. package/dist/lib/components/icons/IconSent/IconSent.cjs +10 -0
  566. package/dist/lib/components/icons/IconSent/IconSent.mjs +11 -0
  567. package/dist/lib/components/icons/IconSent/IconSentSvg.cjs +21 -0
  568. package/dist/lib/components/icons/IconSent/IconSentSvg.mjs +22 -0
  569. package/dist/lib/components/icons/IconSettings/IconSettings.cjs +10 -0
  570. package/dist/lib/components/icons/IconSettings/IconSettings.mjs +11 -0
  571. package/dist/lib/components/icons/IconSettings/IconSettingsSvg.cjs +22 -0
  572. package/dist/lib/components/icons/IconSettings/IconSettingsSvg.mjs +23 -0
  573. package/dist/lib/components/icons/IconShare/IconShare.cjs +10 -0
  574. package/dist/lib/components/icons/IconShare/IconShare.mjs +11 -0
  575. package/dist/lib/components/icons/IconShare/IconShareSvg.cjs +21 -0
  576. package/dist/lib/components/icons/IconShare/IconShareSvg.mjs +22 -0
  577. package/dist/lib/components/icons/IconSocialFacebook/IconSocialFacebook.cjs +10 -0
  578. package/dist/lib/components/icons/IconSocialFacebook/IconSocialFacebook.mjs +11 -0
  579. package/dist/lib/components/icons/IconSocialFacebook/IconSocialFacebookSvg.cjs +24 -0
  580. package/dist/lib/components/icons/IconSocialFacebook/IconSocialFacebookSvg.mjs +25 -0
  581. package/dist/lib/components/icons/IconSocialGitHub/IconSocialGitHub.cjs +10 -0
  582. package/dist/lib/components/icons/IconSocialGitHub/IconSocialGitHub.mjs +11 -0
  583. package/dist/lib/components/icons/IconSocialGitHub/IconSocialGitHubSvg.cjs +26 -0
  584. package/dist/lib/components/icons/IconSocialGitHub/IconSocialGitHubSvg.mjs +27 -0
  585. package/dist/lib/components/icons/IconSocialInstagram/IconSocialInstagram.cjs +10 -0
  586. package/dist/lib/components/icons/IconSocialInstagram/IconSocialInstagram.mjs +11 -0
  587. package/dist/lib/components/icons/IconSocialInstagram/IconSocialInstagramSvg.cjs +24 -0
  588. package/dist/lib/components/icons/IconSocialInstagram/IconSocialInstagramSvg.mjs +25 -0
  589. package/dist/lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.cjs +10 -0
  590. package/dist/lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.mjs +11 -0
  591. package/dist/lib/components/icons/IconSocialLinkedIn/IconSocialLinkedInSvg.cjs +24 -0
  592. package/dist/lib/components/icons/IconSocialLinkedIn/IconSocialLinkedInSvg.mjs +25 -0
  593. package/dist/lib/components/icons/IconSocialMedium/IconSocialMedium.cjs +10 -0
  594. package/dist/lib/components/icons/IconSocialMedium/IconSocialMedium.mjs +11 -0
  595. package/dist/lib/components/icons/IconSocialMedium/IconSocialMediumSvg.cjs +21 -0
  596. package/dist/lib/components/icons/IconSocialMedium/IconSocialMediumSvg.mjs +22 -0
  597. package/dist/lib/components/icons/IconSocialTwitter/IconSocialTwitter.cjs +10 -0
  598. package/dist/lib/components/icons/IconSocialTwitter/IconSocialTwitter.mjs +11 -0
  599. package/dist/lib/components/icons/IconSocialX/IconSocialX.cjs +10 -0
  600. package/dist/lib/components/icons/IconSocialX/IconSocialX.mjs +11 -0
  601. package/dist/lib/components/icons/IconSocialX/IconSocialXSvg.cjs +20 -0
  602. package/dist/lib/components/icons/IconSocialX/IconSocialXSvg.mjs +21 -0
  603. package/dist/lib/components/icons/IconSocialYouTube/IconSocialYouTube.cjs +10 -0
  604. package/dist/lib/components/icons/IconSocialYouTube/IconSocialYouTube.mjs +11 -0
  605. package/dist/lib/components/icons/IconSocialYouTube/IconSocialYouTubeSvg.cjs +24 -0
  606. package/dist/lib/components/icons/IconSocialYouTube/IconSocialYouTubeSvg.mjs +25 -0
  607. package/dist/lib/components/icons/IconSort/IconSort.cjs +10 -0
  608. package/dist/lib/components/icons/IconSort/IconSort.mjs +11 -0
  609. package/dist/lib/components/icons/IconSort/IconSortSvg.cjs +20 -0
  610. package/dist/lib/components/icons/IconSort/IconSortSvg.mjs +21 -0
  611. package/dist/lib/components/icons/IconStar/IconStar.cjs +11 -0
  612. package/dist/lib/components/icons/IconStar/IconStar.mjs +12 -0
  613. package/dist/lib/components/icons/IconStar/IconStarActiveSvg.cjs +21 -0
  614. package/dist/lib/components/icons/IconStar/IconStarActiveSvg.mjs +22 -0
  615. package/dist/lib/components/icons/IconStar/IconStarHalfSvg.cjs +20 -0
  616. package/dist/lib/components/icons/IconStar/IconStarHalfSvg.mjs +21 -0
  617. package/dist/lib/components/icons/IconStar/IconStarSvg.cjs +21 -0
  618. package/dist/lib/components/icons/IconStar/IconStarSvg.mjs +22 -0
  619. package/dist/lib/components/icons/IconStatistics/IconStatistics.cjs +10 -0
  620. package/dist/lib/components/icons/IconStatistics/IconStatistics.mjs +11 -0
  621. package/dist/lib/components/icons/IconStatistics/IconStatisticsSvg.cjs +21 -0
  622. package/dist/lib/components/icons/IconStatistics/IconStatisticsSvg.mjs +22 -0
  623. package/dist/lib/components/icons/IconSubCategory/IconSubCategory.cjs +10 -0
  624. package/dist/lib/components/icons/IconSubCategory/IconSubCategory.mjs +11 -0
  625. package/dist/lib/components/icons/IconSubCategory/IconSubCategorySvg.cjs +21 -0
  626. package/dist/lib/components/icons/IconSubCategory/IconSubCategorySvg.mjs +22 -0
  627. package/dist/lib/components/icons/IconTag/IconTag.cjs +10 -0
  628. package/dist/lib/components/icons/IconTag/IconTag.mjs +11 -0
  629. package/dist/lib/components/icons/IconTag/IconTagSvg.cjs +22 -0
  630. package/dist/lib/components/icons/IconTag/IconTagSvg.mjs +23 -0
  631. package/dist/lib/components/icons/IconThumb/IconThumb.cjs +24 -0
  632. package/dist/lib/components/icons/IconThumb/IconThumb.mjs +25 -0
  633. package/dist/lib/components/icons/IconThumb/IconThumbSvg.cjs +20 -0
  634. package/dist/lib/components/icons/IconThumb/IconThumbSvg.mjs +21 -0
  635. package/dist/lib/components/icons/IconTick/IconTick.cjs +10 -0
  636. package/dist/lib/components/icons/IconTick/IconTick.mjs +11 -0
  637. package/dist/lib/components/icons/IconTick/IconTickSvg.cjs +21 -0
  638. package/dist/lib/components/icons/IconTick/IconTickSvg.mjs +22 -0
  639. package/dist/lib/components/icons/IconTime/IconTime.cjs +10 -0
  640. package/dist/lib/components/icons/IconTime/IconTime.mjs +11 -0
  641. package/dist/lib/components/icons/IconTime/IconTimeSvg.cjs +22 -0
  642. package/dist/lib/components/icons/IconTime/IconTimeSvg.mjs +23 -0
  643. package/dist/lib/components/icons/IconTip/IconTip.cjs +10 -0
  644. package/dist/lib/components/icons/IconTip/IconTip.mjs +11 -0
  645. package/dist/lib/components/icons/IconTip/IconTipSvg.cjs +22 -0
  646. package/dist/lib/components/icons/IconTip/IconTipSvg.mjs +23 -0
  647. package/dist/lib/components/icons/IconUpload/IconUpload.cjs +15 -0
  648. package/dist/lib/components/icons/IconUpload/IconUpload.mjs +16 -0
  649. package/dist/lib/components/icons/IconUpload/IconUploadSvg.cjs +21 -0
  650. package/dist/lib/components/icons/IconUpload/IconUploadSvg.mjs +22 -0
  651. package/dist/lib/components/icons/IconVideo/IconVideo.cjs +10 -0
  652. package/dist/lib/components/icons/IconVideo/IconVideo.mjs +11 -0
  653. package/dist/lib/components/icons/IconVideo/IconVideoSvg.cjs +21 -0
  654. package/dist/lib/components/icons/IconVideo/IconVideoSvg.mjs +22 -0
  655. package/dist/lib/components/icons/IconVisibility/IconVisibility.cjs +17 -0
  656. package/dist/lib/components/icons/IconVisibility/IconVisibility.mjs +18 -0
  657. package/dist/lib/components/icons/IconVisibility/IconVisibilityHiddenSvg.cjs +24 -0
  658. package/dist/lib/components/icons/IconVisibility/IconVisibilityHiddenSvg.mjs +25 -0
  659. package/dist/lib/components/icons/IconVisibility/IconVisibilitySvg.cjs +21 -0
  660. package/dist/lib/components/icons/IconVisibility/IconVisibilitySvg.mjs +22 -0
  661. package/dist/lib/components/icons/IconWorkExperience/IconWorkExperience.cjs +15 -0
  662. package/dist/lib/components/icons/IconWorkExperience/IconWorkExperience.mjs +16 -0
  663. package/dist/lib/components/icons/IconWorkExperience/IconWorkExperienceSvg.cjs +24 -0
  664. package/dist/lib/components/icons/IconWorkExperience/IconWorkExperienceSvg.mjs +25 -0
  665. package/dist/lib/components/icons/IconZoomIn/IconZoomIn.cjs +10 -0
  666. package/dist/lib/components/icons/IconZoomIn/IconZoomIn.mjs +11 -0
  667. package/dist/lib/components/icons/IconZoomIn/IconZoomInSvg.cjs +21 -0
  668. package/dist/lib/components/icons/IconZoomIn/IconZoomInSvg.mjs +22 -0
  669. package/dist/lib/components/icons/IconZoomOut/IconZoomOut.cjs +10 -0
  670. package/dist/lib/components/icons/IconZoomOut/IconZoomOut.mjs +11 -0
  671. package/dist/lib/components/icons/IconZoomOut/IconZoomOutSvg.cjs +21 -0
  672. package/dist/lib/components/icons/IconZoomOut/IconZoomOutSvg.mjs +22 -0
  673. package/dist/lib/components/icons/index.cjs +1 -0
  674. package/dist/lib/components/icons/index.mjs +1 -0
  675. package/dist/lib/components/index.cjs +2 -0
  676. package/dist/lib/components/index.mjs +1 -0
  677. package/dist/lib/components/private/Announcement/Announcement.cjs +36 -0
  678. package/dist/lib/components/private/AvoidWidowIcon/AvoidWidowIcon.cjs +25 -0
  679. package/dist/lib/components/private/Field/ClearField.cjs +50 -0
  680. package/dist/lib/components/private/Field/ClearField.mjs +51 -0
  681. package/dist/lib/components/private/Field/Field.cjs +195 -0
  682. package/dist/lib/components/private/Field/Field.css.cjs +53 -0
  683. package/dist/lib/components/private/Field/Field.mjs +193 -0
  684. package/dist/lib/components/private/Field/getCharacterLimitStatus.cjs +16 -0
  685. package/dist/lib/components/private/Field/getCharacterLimitStatus.mjs +17 -0
  686. package/dist/lib/components/private/FieldButtonIcon/FieldButtonIcon.cjs +34 -0
  687. package/dist/lib/components/private/FieldButtonIcon/FieldButtonIcon.mjs +35 -0
  688. package/dist/lib/components/private/FieldGroup/FieldGroup.cjs +82 -0
  689. package/dist/lib/components/private/FieldGroup/FieldGroup.mjs +83 -0
  690. package/dist/lib/components/private/FieldOverlay/FieldOverlay.cjs +21 -0
  691. package/dist/lib/components/private/FieldOverlay/FieldOverlay.mjs +22 -0
  692. package/dist/lib/components/private/InlineField/InlineField.cjs +122 -0
  693. package/dist/lib/components/private/InlineField/InlineField.css.cjs +126 -0
  694. package/dist/lib/components/private/InlineField/InlineField.mjs +123 -0
  695. package/dist/lib/components/private/InlineField/StyledInput.cjs +206 -0
  696. package/dist/lib/components/private/InlineField/StyledInput.mjs +207 -0
  697. package/dist/lib/components/private/Keyline/Keyline.cjs +36 -0
  698. package/dist/lib/components/private/Keyline/Keyline.css.cjs +70 -0
  699. package/dist/lib/components/private/MaxLines/MaxLines.cjs +18 -0
  700. package/dist/lib/components/private/MaxLines/MaxLines.css.cjs +41 -0
  701. package/dist/lib/components/private/MaxLines/MaxLines.css.mjs +42 -0
  702. package/dist/lib/components/private/Modal/Modal.cjs +215 -0
  703. package/dist/lib/components/private/Modal/Modal.css.cjs +167 -0
  704. package/dist/lib/components/private/Modal/Modal.mjs +214 -0
  705. package/dist/lib/components/private/Modal/ModalContent.cjs +205 -0
  706. package/dist/lib/components/private/Modal/ModalContent.mjs +206 -0
  707. package/dist/lib/components/private/Modal/ariaHideOthers.cjs +75 -0
  708. package/dist/lib/components/private/Modal/ariaHideOthers.mjs +76 -0
  709. package/dist/lib/components/private/Overlay/Overlay.cjs +36 -0
  710. package/dist/lib/components/private/Overlay/Overlay.mjs +37 -0
  711. package/dist/lib/components/private/Placeholder/Placeholder.cjs +71 -0
  712. package/dist/lib/components/private/Placeholder/Placeholder.css.cjs +61 -0
  713. package/dist/lib/components/private/Placeholder/Placeholder.mjs +72 -0
  714. package/dist/lib/components/private/Typography/Typography.cjs +81 -0
  715. package/dist/lib/components/private/Typography/Typography.mjs +80 -0
  716. package/dist/lib/components/private/buildDataAttributes.cjs +54 -0
  717. package/dist/lib/components/private/buildDataAttributes.mjs +53 -0
  718. package/dist/lib/components/private/defaultTextProps.cjs +38 -0
  719. package/dist/lib/components/private/defaultTextProps.mjs +39 -0
  720. package/dist/lib/components/private/getNextIndex.cjs +16 -0
  721. package/dist/lib/components/private/getNextIndex.mjs +17 -0
  722. package/dist/lib/components/private/hideFocusRings/hideFocusRings.css.cjs +14 -0
  723. package/dist/lib/components/private/hideFocusRings/useHideFocusRings.cjs +18 -0
  724. package/dist/lib/components/private/hideFocusRings/useHideFocusRings.mjs +19 -0
  725. package/dist/lib/components/private/mergeIds.cjs +9 -0
  726. package/dist/lib/components/private/mergeIds.mjs +10 -0
  727. package/dist/lib/components/private/normalizeKey.cjs +11 -0
  728. package/dist/lib/components/private/normalizeKey.mjs +12 -0
  729. package/dist/lib/components/private/smoothScroll.cjs +102 -0
  730. package/dist/lib/components/private/smoothScroll.mjs +103 -0
  731. package/dist/lib/components/private/touchable/virtualTouchable.cjs +6 -0
  732. package/dist/lib/components/private/touchable/virtualTouchable.css.cjs +27 -0
  733. package/dist/lib/components/private/touchable/virtualTouchableRules.cjs +10 -0
  734. package/dist/lib/components/useBreakpoint/useBreakpoint.cjs +15 -0
  735. package/dist/lib/components/useBreakpoint/useBreakpoint.mjs +16 -0
  736. package/dist/lib/components/useColor/useColor.cjs +4 -0
  737. package/dist/lib/components/useColor/useColor.mjs +5 -0
  738. package/dist/lib/components/useResponsiveValue/resolveResponsiveObject.cjs +16 -0
  739. package/dist/lib/components/useResponsiveValue/resolveResponsiveObject.mjs +17 -0
  740. package/dist/lib/components/useResponsiveValue/useResponsiveValue.cjs +11 -0
  741. package/dist/lib/components/useResponsiveValue/useResponsiveValue.mjs +12 -0
  742. package/dist/lib/components/useSpace/useSpace.cjs +4 -0
  743. package/dist/lib/components/useSpace/useSpace.mjs +5 -0
  744. package/dist/lib/components/useThemeName/useThemeName.cjs +4 -0
  745. package/dist/lib/components/useThemeName/useThemeName.mjs +5 -0
  746. package/dist/lib/components/useToast/Toast.cjs +148 -0
  747. package/dist/lib/components/useToast/Toast.mjs +146 -0
  748. package/dist/lib/components/useToast/ToastContext.cjs +126 -0
  749. package/dist/lib/components/useToast/ToastContext.mjs +127 -0
  750. package/dist/lib/components/useToast/Toaster.cjs +38 -0
  751. package/dist/lib/components/useToast/Toaster.mjs +39 -0
  752. package/dist/lib/components/useToast/useFlipList.cjs +113 -0
  753. package/dist/lib/components/useToast/useFlipList.mjs +114 -0
  754. package/dist/lib/components/useToast/useTimeout.cjs +28 -0
  755. package/dist/lib/components/useToast/useTimeout.mjs +29 -0
  756. package/dist/lib/css/atoms/atomicProperties.cjs +129 -0
  757. package/dist/lib/css/atoms/atoms.cjs +12 -0
  758. package/dist/lib/css/atoms/sprinkles.css.cjs +75 -0
  759. package/dist/lib/css/colorModeStyle.cjs +17 -0
  760. package/dist/lib/css/globalTypographyStyles.cjs +41 -0
  761. package/dist/lib/css/lineHeightContainer.css.cjs +19 -0
  762. package/dist/lib/css/negativeMargin/negativeMargin.cjs +23 -0
  763. package/dist/lib/css/negativeMargin/negativeMargin.css.cjs +61 -0
  764. package/dist/lib/css/reset/reset.css.cjs +111 -0
  765. package/dist/lib/css/responsiveStyle.cjs +36 -0
  766. package/dist/lib/css/textAlignedToIcon.css.cjs +23 -0
  767. package/dist/lib/css/typography.cjs +16 -0
  768. package/dist/lib/css/typography.css.cjs +172 -0
  769. package/dist/lib/css/typography.css.mjs +173 -0
  770. package/dist/lib/hooks/useIcon/icon.css.cjs +66 -0
  771. package/dist/lib/hooks/useIcon/index.cjs +73 -0
  772. package/dist/lib/hooks/useIcon/index.mjs +71 -0
  773. package/dist/lib/hooks/useIsomorphicLayoutEffect.cjs +4 -0
  774. package/dist/lib/hooks/useIsomorphicLayoutEffect.mjs +5 -0
  775. package/dist/lib/playroom/FrameComponent.cjs +68 -0
  776. package/dist/lib/playroom/FrameComponent.mjs +69 -0
  777. package/dist/lib/playroom/cleanSpaceValue.cjs +13 -0
  778. package/dist/lib/playroom/cleanSpaceValue.mjs +14 -0
  779. package/dist/lib/playroom/components.cjs +1 -0
  780. package/dist/lib/playroom/components.mjs +1 -0
  781. package/dist/lib/playroom/playroomState.cjs +82 -0
  782. package/dist/lib/playroom/playroomState.mjs +81 -0
  783. package/dist/lib/playroom/snippets/Accordion.cjs +24 -0
  784. package/dist/lib/playroom/snippets/Accordion.mjs +25 -0
  785. package/dist/lib/playroom/snippets/Actions.cjs +15 -0
  786. package/dist/lib/playroom/snippets/Actions.mjs +16 -0
  787. package/dist/lib/playroom/snippets/Alert.cjs +21 -0
  788. package/dist/lib/playroom/snippets/Alert.mjs +22 -0
  789. package/dist/lib/playroom/snippets/Autosuggest.cjs +80 -0
  790. package/dist/lib/playroom/snippets/Autosuggest.mjs +81 -0
  791. package/dist/lib/playroom/snippets/Badge.cjs +42 -0
  792. package/dist/lib/playroom/snippets/Badge.mjs +43 -0
  793. package/dist/lib/playroom/snippets/Bleed.cjs +24 -0
  794. package/dist/lib/playroom/snippets/Bleed.mjs +25 -0
  795. package/dist/lib/playroom/snippets/Button.cjs +63 -0
  796. package/dist/lib/playroom/snippets/Button.mjs +64 -0
  797. package/dist/lib/playroom/snippets/ButtonIcon.cjs +15 -0
  798. package/dist/lib/playroom/snippets/ButtonIcon.mjs +16 -0
  799. package/dist/lib/playroom/snippets/Card.cjs +18 -0
  800. package/dist/lib/playroom/snippets/Card.mjs +19 -0
  801. package/dist/lib/playroom/snippets/Checkbox.cjs +21 -0
  802. package/dist/lib/playroom/snippets/Checkbox.mjs +22 -0
  803. package/dist/lib/playroom/snippets/Columns.cjs +18 -0
  804. package/dist/lib/playroom/snippets/Columns.mjs +19 -0
  805. package/dist/lib/playroom/snippets/ContentBlock.cjs +15 -0
  806. package/dist/lib/playroom/snippets/ContentBlock.mjs +16 -0
  807. package/dist/lib/playroom/snippets/Dialog.cjs +21 -0
  808. package/dist/lib/playroom/snippets/Dialog.mjs +22 -0
  809. package/dist/lib/playroom/snippets/Disclosure.cjs +6 -0
  810. package/dist/lib/playroom/snippets/Disclosure.mjs +7 -0
  811. package/dist/lib/playroom/snippets/Divider.cjs +9 -0
  812. package/dist/lib/playroom/snippets/Divider.mjs +10 -0
  813. package/dist/lib/playroom/snippets/Drawer.cjs +15 -0
  814. package/dist/lib/playroom/snippets/Drawer.mjs +16 -0
  815. package/dist/lib/playroom/snippets/Dropdown.cjs +24 -0
  816. package/dist/lib/playroom/snippets/Dropdown.mjs +25 -0
  817. package/dist/lib/playroom/snippets/FieldLabel.cjs +12 -0
  818. package/dist/lib/playroom/snippets/FieldLabel.mjs +13 -0
  819. package/dist/lib/playroom/snippets/FieldMessage.cjs +15 -0
  820. package/dist/lib/playroom/snippets/FieldMessage.mjs +16 -0
  821. package/dist/lib/playroom/snippets/Heading.cjs +30 -0
  822. package/dist/lib/playroom/snippets/Heading.mjs +31 -0
  823. package/dist/lib/playroom/snippets/Inline.cjs +22 -0
  824. package/dist/lib/playroom/snippets/Inline.mjs +23 -0
  825. package/dist/lib/playroom/snippets/List.cjs +27 -0
  826. package/dist/lib/playroom/snippets/List.mjs +28 -0
  827. package/dist/lib/playroom/snippets/Loader.cjs +6 -0
  828. package/dist/lib/playroom/snippets/Loader.mjs +7 -0
  829. package/dist/lib/playroom/snippets/MonthPicker.cjs +40 -0
  830. package/dist/lib/playroom/snippets/MonthPicker.mjs +41 -0
  831. package/dist/lib/playroom/snippets/Notice.cjs +15 -0
  832. package/dist/lib/playroom/snippets/Notice.mjs +16 -0
  833. package/dist/lib/playroom/snippets/OverflowMenu.cjs +6 -0
  834. package/dist/lib/playroom/snippets/OverflowMenu.mjs +7 -0
  835. package/dist/lib/playroom/snippets/Page.cjs +9 -0
  836. package/dist/lib/playroom/snippets/Page.mjs +10 -0
  837. package/dist/lib/playroom/snippets/PageBlock.cjs +9 -0
  838. package/dist/lib/playroom/snippets/PageBlock.mjs +10 -0
  839. package/dist/lib/playroom/snippets/Pagination.cjs +6 -0
  840. package/dist/lib/playroom/snippets/Pagination.mjs +7 -0
  841. package/dist/lib/playroom/snippets/PasswordField.cjs +21 -0
  842. package/dist/lib/playroom/snippets/PasswordField.mjs +22 -0
  843. package/dist/lib/playroom/snippets/RadioGroup.cjs +24 -0
  844. package/dist/lib/playroom/snippets/RadioGroup.mjs +25 -0
  845. package/dist/lib/playroom/snippets/Rating.cjs +15 -0
  846. package/dist/lib/playroom/snippets/Rating.mjs +16 -0
  847. package/dist/lib/playroom/snippets/Secondary.cjs +6 -0
  848. package/dist/lib/playroom/snippets/Secondary.mjs +7 -0
  849. package/dist/lib/playroom/snippets/Stack.cjs +24 -0
  850. package/dist/lib/playroom/snippets/Stack.mjs +25 -0
  851. package/dist/lib/playroom/snippets/Stepper.cjs +15 -0
  852. package/dist/lib/playroom/snippets/Stepper.mjs +16 -0
  853. package/dist/lib/playroom/snippets/Strong.cjs +6 -0
  854. package/dist/lib/playroom/snippets/Strong.mjs +7 -0
  855. package/dist/lib/playroom/snippets/Tabs.cjs +21 -0
  856. package/dist/lib/playroom/snippets/Tabs.mjs +22 -0
  857. package/dist/lib/playroom/snippets/Tag.cjs +9 -0
  858. package/dist/lib/playroom/snippets/Tag.mjs +10 -0
  859. package/dist/lib/playroom/snippets/Text.cjs +30 -0
  860. package/dist/lib/playroom/snippets/Text.mjs +31 -0
  861. package/dist/lib/playroom/snippets/TextDropdown.cjs +32 -0
  862. package/dist/lib/playroom/snippets/TextDropdown.mjs +33 -0
  863. package/dist/lib/playroom/snippets/TextField.cjs +27 -0
  864. package/dist/lib/playroom/snippets/TextField.mjs +28 -0
  865. package/dist/lib/playroom/snippets/TextLink.cjs +12 -0
  866. package/dist/lib/playroom/snippets/TextLink.mjs +13 -0
  867. package/dist/lib/playroom/snippets/Textarea.cjs +33 -0
  868. package/dist/lib/playroom/snippets/Textarea.mjs +34 -0
  869. package/dist/lib/playroom/snippets/Tiles.cjs +15 -0
  870. package/dist/lib/playroom/snippets/Tiles.mjs +16 -0
  871. package/dist/lib/playroom/snippets/Toggle.cjs +15 -0
  872. package/dist/lib/playroom/snippets/Toggle.mjs +16 -0
  873. package/dist/lib/playroom/snippets/TooltipRenderer.cjs +6 -0
  874. package/dist/lib/playroom/snippets/TooltipRenderer.mjs +7 -0
  875. package/dist/lib/playroom/snippets.cjs +101 -0
  876. package/dist/lib/playroom/snippets.mjs +102 -0
  877. package/dist/lib/playroom/useScope.cjs +59 -0
  878. package/dist/lib/playroom/useScope.mjs +60 -0
  879. package/dist/lib/playroom/utils.cjs +5 -0
  880. package/dist/lib/playroom/utils.mjs +6 -0
  881. package/dist/lib/themes/apac/apacTheme.css.cjs +8 -0
  882. package/dist/lib/themes/apac/tokens.cjs +19 -0
  883. package/dist/lib/themes/apac/tokens.mjs +20 -0
  884. package/dist/lib/themes/baseTokens/apac.cjs +292 -0
  885. package/dist/lib/themes/baseTokens/apac.mjs +290 -0
  886. package/dist/lib/themes/docs/docsTheme.css.cjs +8 -0
  887. package/dist/lib/themes/docs/tokens.cjs +256 -0
  888. package/dist/lib/themes/docs/tokens.mjs +255 -0
  889. package/dist/lib/themes/index.cjs +15 -0
  890. package/dist/lib/themes/index.mjs +16 -0
  891. package/dist/lib/themes/makeBraidTheme.cjs +10 -0
  892. package/dist/lib/themes/makeBraidTheme.mjs +11 -0
  893. package/dist/lib/themes/makeRuntimeTokens.cjs +52 -0
  894. package/dist/lib/themes/makeRuntimeTokens.mjs +51 -0
  895. package/dist/lib/themes/seekBusiness/seekBusinessTheme.css.cjs +8 -0
  896. package/dist/lib/themes/seekBusiness/tokens.cjs +18 -0
  897. package/dist/lib/themes/seekBusiness/tokens.mjs +19 -0
  898. package/dist/lib/themes/seekJobs/seekJobs.css.cjs +8 -0
  899. package/dist/lib/themes/seekJobs/tokens.cjs +191 -0
  900. package/dist/lib/themes/seekJobs/tokens.mjs +192 -0
  901. package/dist/lib/themes/tokenType.cjs +15 -0
  902. package/dist/lib/themes/tokenType.mjs +16 -0
  903. package/dist/lib/themes/vars.css.cjs +9 -0
  904. package/dist/lib/themes/wireframe/tokens.cjs +282 -0
  905. package/dist/lib/themes/wireframe/tokens.mjs +281 -0
  906. package/dist/lib/themes/wireframe/wireframeTheme.css.cjs +8 -0
  907. package/dist/lib/translations/en.cjs +9 -0
  908. package/dist/lib/translations/en.mjs +10 -0
  909. package/dist/lib/utils/a11y/index.cjs +121 -0
  910. package/dist/lib/utils/a11y/index.mjs +122 -0
  911. package/dist/lib/utils/align.cjs +16 -0
  912. package/dist/lib/utils/collapsibleAlignmentProps.cjs +84 -0
  913. package/dist/lib/utils/collapsibleAlignmentProps.mjs +85 -0
  914. package/dist/lib/utils/flattenChildren.cjs +29 -0
  915. package/dist/lib/utils/flattenChildren.mjs +30 -0
  916. package/dist/lib/utils/index.cjs +1 -0
  917. package/dist/lib/utils/index.mjs +1 -0
  918. package/dist/lib/utils/isLight/index.cjs +29 -0
  919. package/dist/lib/utils/isLight/index.mjs +30 -0
  920. package/dist/lib/utils/mapToProperty.cjs +7 -0
  921. package/dist/lib/utils/mapToProperty.mjs +8 -0
  922. package/dist/lib/utils/optimizeResponsiveArray.cjs +18 -0
  923. package/dist/lib/utils/optimizeResponsiveArray.mjs +19 -0
  924. package/dist/lib/utils/resolveResponsiveProp.cjs +24 -0
  925. package/dist/lib/utils/resolveResponsiveProp.mjs +23 -0
  926. package/dist/lib/utils/resolveResponsiveRangeProps.cjs +17 -0
  927. package/dist/lib/utils/resolveResponsiveRangeProps.mjs +18 -0
  928. package/dist/playroom/FrameComponent.cjs +2 -2
  929. package/dist/playroom/FrameComponent.mjs +1 -1
  930. package/dist/playroom/components.cjs +332 -982
  931. package/dist/playroom/components.mjs +164 -820
  932. package/dist/playroom/scope.cjs +2 -2
  933. package/dist/playroom/scope.mjs +1 -1
  934. package/dist/playroom/snippets.cjs +2 -901
  935. package/dist/playroom/snippets.mjs +1 -900
  936. package/dist/reset.cjs +4 -4
  937. package/dist/reset.mjs +3 -3
  938. package/dist/test.cjs +2 -28
  939. package/dist/test.mjs +1 -27
  940. package/dist/themes/apac.cjs +2 -2
  941. package/dist/themes/apac.mjs +1 -1
  942. package/dist/themes/docs.cjs +2 -2
  943. package/dist/themes/docs.mjs +1 -1
  944. package/dist/themes/seekBusiness.cjs +2 -2
  945. package/dist/themes/seekBusiness.mjs +1 -1
  946. package/dist/themes/seekJobs.cjs +2 -2
  947. package/dist/themes/seekJobs.mjs +1 -1
  948. package/dist/themes/wireframe.cjs +2 -2
  949. package/dist/themes/wireframe.mjs +1 -1
  950. package/dist/wireframe.chunk.d.ts +2 -1
  951. package/package.json +7 -4
  952. package/dist/side-effects/lib/components/BraidProvider/BraidProvider.cjs +0 -148
  953. package/dist/side-effects/lib/components/BraidProvider/BraidProvider.mjs +0 -146
  954. package/dist/styles/lib/components/Accordion/Accordion.cjs +0 -116
  955. package/dist/styles/lib/components/Accordion/Accordion.mjs +0 -114
  956. package/dist/styles/lib/components/Accordion/Accordion.playroom.cjs +0 -34
  957. package/dist/styles/lib/components/Accordion/AccordionItem.cjs +0 -2542
  958. package/dist/styles/lib/components/Accordion/AccordionItem.css.cjs +0 -21
  959. package/dist/styles/lib/components/Accordion/AccordionItem.mjs +0 -2540
  960. package/dist/styles/lib/components/Alert/Alert.cjs +0 -133
  961. package/dist/styles/lib/components/Alert/Alert.mjs +0 -134
  962. package/dist/styles/lib/components/Autosuggest/Autosuggest.cjs +0 -888
  963. package/dist/styles/lib/components/Autosuggest/Autosuggest.css.cjs +0 -33
  964. package/dist/styles/lib/components/Autosuggest/Autosuggest.mjs +0 -886
  965. package/dist/styles/lib/components/Box/BackgroundContext.cjs +0 -36
  966. package/dist/styles/lib/components/Box/BackgroundContext.mjs +0 -37
  967. package/dist/styles/lib/components/Box/Box.cjs +0 -85
  968. package/dist/styles/lib/components/Box/Box.mjs +0 -83
  969. package/dist/styles/lib/components/Box/Box.playroom.cjs +0 -30
  970. package/dist/styles/lib/components/Box/ColoredBox.cjs +0 -117
  971. package/dist/styles/lib/components/Box/ColoredBox.mjs +0 -118
  972. package/dist/styles/lib/components/BraidProvider/VanillaThemeContainer.cjs +0 -13
  973. package/dist/styles/lib/components/Button/Button.cjs +0 -512
  974. package/dist/styles/lib/components/Button/Button.css.cjs +0 -147
  975. package/dist/styles/lib/components/Button/Button.mjs +0 -510
  976. package/dist/styles/lib/components/ButtonIcon/ButtonIcon.cjs +0 -139
  977. package/dist/styles/lib/components/ButtonIcon/ButtonIcon.mjs +0 -138
  978. package/dist/styles/lib/components/Column/Column.cjs +0 -94
  979. package/dist/styles/lib/components/Column/Column.mjs +0 -95
  980. package/dist/styles/lib/components/Columns/Columns.cjs +0 -79
  981. package/dist/styles/lib/components/Columns/Columns.mjs +0 -78
  982. package/dist/styles/lib/components/ContentBlock/ContentBlock.cjs +0 -21
  983. package/dist/styles/lib/components/ContentBlock/ContentBlock.mjs +0 -22
  984. package/dist/styles/lib/components/Divider/Divider.cjs +0 -23
  985. package/dist/styles/lib/components/Divider/Divider.css.cjs +0 -53
  986. package/dist/styles/lib/components/Dropdown/Dropdown.cjs +0 -72
  987. package/dist/styles/lib/components/Dropdown/Dropdown.css.cjs +0 -10
  988. package/dist/styles/lib/components/Dropdown/Dropdown.mjs +0 -73
  989. package/dist/styles/lib/components/Heading/Heading.cjs +0 -32
  990. package/dist/styles/lib/components/Heading/Heading.mjs +0 -33
  991. package/dist/styles/lib/components/Hidden/Hidden.cjs +0 -65
  992. package/dist/styles/lib/components/Hidden/Hidden.mjs +0 -66
  993. package/dist/styles/lib/components/HiddenVisually/HiddenVisually.cjs +0 -31
  994. package/dist/styles/lib/components/HiddenVisually/HiddenVisually.mjs +0 -32
  995. package/dist/styles/lib/components/List/List.cjs +0 -132
  996. package/dist/styles/lib/components/List/List.mjs +0 -133
  997. package/dist/styles/lib/components/Loader/Loader.cjs +0 -48
  998. package/dist/styles/lib/components/Loader/Loader.css.cjs +0 -82
  999. package/dist/styles/lib/components/Loader/Loader.mjs +0 -49
  1000. package/dist/styles/lib/components/MenuItem/useMenuItem.cjs +0 -210
  1001. package/dist/styles/lib/components/MenuItem/useMenuItem.mjs +0 -209
  1002. package/dist/styles/lib/components/MenuItemCheckbox/MenuItemCheckbox.cjs +0 -73
  1003. package/dist/styles/lib/components/MenuItemCheckbox/MenuItemCheckbox.css.cjs +0 -30
  1004. package/dist/styles/lib/components/MenuItemCheckbox/MenuItemCheckbox.mjs +0 -74
  1005. package/dist/styles/lib/components/MenuRenderer/MenuRenderer.cjs +0 -311
  1006. package/dist/styles/lib/components/MenuRenderer/MenuRenderer.css.cjs +0 -40
  1007. package/dist/styles/lib/components/MenuRenderer/MenuRenderer.mjs +0 -310
  1008. package/dist/styles/lib/components/MonthPicker/MonthPicker.cjs +0 -341
  1009. package/dist/styles/lib/components/MonthPicker/MonthPicker.mjs +0 -340
  1010. package/dist/styles/lib/components/OverflowMenu/OverflowMenu.cjs +0 -40
  1011. package/dist/styles/lib/components/OverflowMenu/OverflowMenu.mjs +0 -41
  1012. package/dist/styles/lib/components/Page/Page.cjs +0 -44
  1013. package/dist/styles/lib/components/Page/Page.mjs +0 -43
  1014. package/dist/styles/lib/components/Pagination/Pagination.cjs +0 -259
  1015. package/dist/styles/lib/components/Pagination/Pagination.css.cjs +0 -32
  1016. package/dist/styles/lib/components/Pagination/Pagination.mjs +0 -257
  1017. package/dist/styles/lib/components/Rating/Rating.cjs +0 -126
  1018. package/dist/styles/lib/components/Rating/Rating.css.cjs +0 -27
  1019. package/dist/styles/lib/components/Rating/Rating.mjs +0 -124
  1020. package/dist/styles/lib/components/Secondary/Secondary.cjs +0 -19
  1021. package/dist/styles/lib/components/Secondary/Secondary.mjs +0 -20
  1022. package/dist/styles/lib/components/Stack/Stack.cjs +0 -141
  1023. package/dist/styles/lib/components/Stack/Stack.mjs +0 -140
  1024. package/dist/styles/lib/components/Stepper/Step.cjs +0 -373
  1025. package/dist/styles/lib/components/Stepper/Step.mjs +0 -371
  1026. package/dist/styles/lib/components/Stepper/Stepper.cjs +0 -125
  1027. package/dist/styles/lib/components/Stepper/Stepper.css.cjs +0 -168
  1028. package/dist/styles/lib/components/Stepper/Stepper.mjs +0 -124
  1029. package/dist/styles/lib/components/Strong/Strong.cjs +0 -14
  1030. package/dist/styles/lib/components/Strong/Strong.mjs +0 -15
  1031. package/dist/styles/lib/components/Tabs/Tab.cjs +0 -394
  1032. package/dist/styles/lib/components/Tabs/Tab.mjs +0 -393
  1033. package/dist/styles/lib/components/Tabs/TabPanel.cjs +0 -64
  1034. package/dist/styles/lib/components/Tabs/TabPanel.mjs +0 -63
  1035. package/dist/styles/lib/components/Tabs/Tabs.cjs +0 -191
  1036. package/dist/styles/lib/components/Tabs/Tabs.css.cjs +0 -97
  1037. package/dist/styles/lib/components/Tabs/Tabs.css.mjs +0 -98
  1038. package/dist/styles/lib/components/Tabs/Tabs.mjs +0 -190
  1039. package/dist/styles/lib/components/Tag/Tag.cjs +0 -65
  1040. package/dist/styles/lib/components/Tag/Tag.mjs +0 -64
  1041. package/dist/styles/lib/components/TextDropdown/TextDropdown.cjs +0 -91
  1042. package/dist/styles/lib/components/TextDropdown/TextDropdown.css.cjs +0 -25
  1043. package/dist/styles/lib/components/TextDropdown/TextDropdown.mjs +0 -90
  1044. package/dist/styles/lib/components/TextLink/TextLink.cjs +0 -91
  1045. package/dist/styles/lib/components/TextLink/TextLink.css.cjs +0 -132
  1046. package/dist/styles/lib/components/TextLink/TextLink.mjs +0 -90
  1047. package/dist/styles/lib/components/Textarea/Highlight/Highlight.cjs +0 -7
  1048. package/dist/styles/lib/components/Textarea/Highlight/Highlight.css.cjs +0 -39
  1049. package/dist/styles/lib/components/Textarea/Textarea.cjs +0 -184
  1050. package/dist/styles/lib/components/Textarea/Textarea.css.cjs +0 -22
  1051. package/dist/styles/lib/components/Textarea/Textarea.mjs +0 -183
  1052. package/dist/styles/lib/components/Tiles/Tiles.cjs +0 -69
  1053. package/dist/styles/lib/components/Tiles/Tiles.css.cjs +0 -27
  1054. package/dist/styles/lib/components/Tiles/Tiles.mjs +0 -70
  1055. package/dist/styles/lib/components/Toggle/Toggle.cjs +0 -162
  1056. package/dist/styles/lib/components/Toggle/Toggle.css.cjs +0 -152
  1057. package/dist/styles/lib/components/Toggle/Toggle.mjs +0 -163
  1058. package/dist/styles/lib/components/TooltipRenderer/TooltipRenderer.cjs +0 -263
  1059. package/dist/styles/lib/components/TooltipRenderer/TooltipRenderer.css.cjs +0 -60
  1060. package/dist/styles/lib/components/TooltipRenderer/TooltipRenderer.mjs +0 -261
  1061. package/dist/styles/lib/components/icons/IconArrow/IconArrow.cjs +0 -42
  1062. package/dist/styles/lib/components/icons/IconArrow/IconArrow.mjs +0 -43
  1063. package/dist/styles/lib/components/icons/IconChevron/IconChevron.cjs +0 -46
  1064. package/dist/styles/lib/components/icons/IconChevron/IconChevron.mjs +0 -47
  1065. package/dist/styles/lib/components/icons/IconRenderer.cjs +0 -35
  1066. package/dist/styles/lib/components/icons/IconRenderer.mjs +0 -33
  1067. package/dist/styles/lib/components/icons/IconThumb/IconThumb.cjs +0 -40
  1068. package/dist/styles/lib/components/icons/IconThumb/IconThumb.mjs +0 -41
  1069. package/dist/styles/lib/components/private/Announcement/Announcement.cjs +0 -36
  1070. package/dist/styles/lib/components/private/AvoidWidowIcon/AvoidWidowIcon.cjs +0 -25
  1071. package/dist/styles/lib/components/private/Field/Field.cjs +0 -193
  1072. package/dist/styles/lib/components/private/Field/Field.css.cjs +0 -53
  1073. package/dist/styles/lib/components/private/Field/Field.mjs +0 -191
  1074. package/dist/styles/lib/components/private/InlineField/InlineField.cjs +0 -120
  1075. package/dist/styles/lib/components/private/InlineField/InlineField.css.cjs +0 -126
  1076. package/dist/styles/lib/components/private/InlineField/InlineField.mjs +0 -121
  1077. package/dist/styles/lib/components/private/InlineField/StyledInput.cjs +0 -205
  1078. package/dist/styles/lib/components/private/InlineField/StyledInput.mjs +0 -206
  1079. package/dist/styles/lib/components/private/Keyline/Keyline.cjs +0 -36
  1080. package/dist/styles/lib/components/private/Keyline/Keyline.css.cjs +0 -70
  1081. package/dist/styles/lib/components/private/MaxLines/MaxLines.cjs +0 -18
  1082. package/dist/styles/lib/components/private/MaxLines/MaxLines.css.cjs +0 -30
  1083. package/dist/styles/lib/components/private/MaxLines/MaxLines.css.mjs +0 -31
  1084. package/dist/styles/lib/components/private/Modal/Modal.cjs +0 -287
  1085. package/dist/styles/lib/components/private/Modal/Modal.css.cjs +0 -167
  1086. package/dist/styles/lib/components/private/Modal/Modal.mjs +0 -286
  1087. package/dist/styles/lib/components/private/Modal/ModalContent.cjs +0 -232
  1088. package/dist/styles/lib/components/private/Modal/ModalContent.mjs +0 -233
  1089. package/dist/styles/lib/components/private/Placeholder/Placeholder.cjs +0 -1277
  1090. package/dist/styles/lib/components/private/Placeholder/Placeholder.css.cjs +0 -61
  1091. package/dist/styles/lib/components/private/Placeholder/Placeholder.mjs +0 -1273
  1092. package/dist/styles/lib/components/private/hideFocusRings/hideFocusRings.css.cjs +0 -14
  1093. package/dist/styles/lib/components/private/touchable/virtualTouchable.cjs +0 -6
  1094. package/dist/styles/lib/components/private/touchable/virtualTouchable.css.cjs +0 -27
  1095. package/dist/styles/lib/components/private/touchable/virtualTouchableRules.cjs +0 -10
  1096. package/dist/styles/lib/components/useToast/Toast.cjs +0 -168
  1097. package/dist/styles/lib/components/useToast/Toast.mjs +0 -166
  1098. package/dist/styles/lib/css/atoms/atomicProperties.cjs +0 -129
  1099. package/dist/styles/lib/css/atoms/atoms.cjs +0 -12
  1100. package/dist/styles/lib/css/atoms/sprinkles.css.cjs +0 -75
  1101. package/dist/styles/lib/css/colorModeStyle.cjs +0 -17
  1102. package/dist/styles/lib/css/globalTypographyStyles.cjs +0 -41
  1103. package/dist/styles/lib/css/lineHeightContainer.css.cjs +0 -19
  1104. package/dist/styles/lib/css/negativeMargin/negativeMargin.cjs +0 -23
  1105. package/dist/styles/lib/css/negativeMargin/negativeMargin.css.cjs +0 -61
  1106. package/dist/styles/lib/css/reset/reset.css.cjs +0 -111
  1107. package/dist/styles/lib/css/responsiveStyle.cjs +0 -36
  1108. package/dist/styles/lib/css/textAlignedToIcon.css.cjs +0 -23
  1109. package/dist/styles/lib/css/typography.cjs +0 -16
  1110. package/dist/styles/lib/css/typography.css.cjs +0 -172
  1111. package/dist/styles/lib/css/typography.css.mjs +0 -173
  1112. package/dist/styles/lib/hooks/useIcon/icon.css.cjs +0 -66
  1113. package/dist/styles/lib/hooks/useIcon/index.cjs +0 -73
  1114. package/dist/styles/lib/hooks/useIcon/index.mjs +0 -71
  1115. package/dist/styles/lib/playroom/FrameComponent.cjs +0 -145
  1116. package/dist/styles/lib/playroom/FrameComponent.mjs +0 -144
  1117. package/dist/styles/lib/playroom/useScope.cjs +0 -59
  1118. package/dist/styles/lib/playroom/useScope.mjs +0 -60
  1119. package/dist/styles/lib/themes/apac/apacTheme.css.cjs +0 -8
  1120. package/dist/styles/lib/themes/apac/tokens.cjs +0 -491
  1121. package/dist/styles/lib/themes/apac/tokens.mjs +0 -489
  1122. package/dist/styles/lib/themes/docs/docsTheme.css.cjs +0 -8
  1123. package/dist/styles/lib/themes/docs/tokens.cjs +0 -255
  1124. package/dist/styles/lib/themes/docs/tokens.mjs +0 -254
  1125. package/dist/styles/lib/themes/makeBraidTheme.cjs +0 -59
  1126. package/dist/styles/lib/themes/makeBraidTheme.mjs +0 -58
  1127. package/dist/styles/lib/themes/seekBusiness/seekBusinessTheme.css.cjs +0 -8
  1128. package/dist/styles/lib/themes/seekBusiness/tokens.cjs +0 -17
  1129. package/dist/styles/lib/themes/seekBusiness/tokens.mjs +0 -18
  1130. package/dist/styles/lib/themes/seekJobs/seekJobs.css.cjs +0 -8
  1131. package/dist/styles/lib/themes/seekJobs/tokens.cjs +0 -190
  1132. package/dist/styles/lib/themes/seekJobs/tokens.mjs +0 -191
  1133. package/dist/styles/lib/themes/vars.css.cjs +0 -9
  1134. package/dist/styles/lib/themes/wireframe/tokens.cjs +0 -281
  1135. package/dist/styles/lib/themes/wireframe/tokens.mjs +0 -280
  1136. package/dist/styles/lib/themes/wireframe/wireframeTheme.css.cjs +0 -8
  1137. package/dist/styles/lib/utils/align.cjs +0 -16
  1138. package/dist/styles/lib/utils/collapsibleAlignmentProps.cjs +0 -84
  1139. package/dist/styles/lib/utils/collapsibleAlignmentProps.mjs +0 -85
  1140. package/dist/styles/lib/utils/index.cjs +0 -154
  1141. package/dist/styles/lib/utils/index.mjs +0 -155
  1142. package/dist/styles/lib/utils/resolveResponsiveProp.cjs +0 -24
  1143. package/dist/styles/lib/utils/resolveResponsiveProp.mjs +0 -23
  1144. /package/dist/{styles/lib → lib}/components/Accordion/Accordion.playroom.mjs +0 -0
  1145. /package/dist/{styles/lib → lib}/components/Accordion/AccordionItem.css.mjs +0 -0
  1146. /package/dist/{styles/lib → lib}/components/Alert/Alert.css.cjs +0 -0
  1147. /package/dist/{styles/lib → lib}/components/Alert/Alert.css.mjs +0 -0
  1148. /package/dist/{styles/lib → lib}/components/Autosuggest/Autosuggest.css.mjs +0 -0
  1149. /package/dist/{styles/lib → lib}/components/Box/Box.playroom.mjs +0 -0
  1150. /package/dist/{styles/lib → lib}/components/BraidProvider/VanillaThemeContainer.mjs +0 -0
  1151. /package/dist/{styles/lib → lib}/components/Button/Button.css.mjs +0 -0
  1152. /package/dist/{styles/lib → lib}/components/ButtonIcon/ButtonIcon.css.cjs +0 -0
  1153. /package/dist/{styles/lib → lib}/components/ButtonIcon/ButtonIcon.css.mjs +0 -0
  1154. /package/dist/{styles/lib → lib}/components/Column/Column.css.cjs +0 -0
  1155. /package/dist/{styles/lib → lib}/components/Column/Column.css.mjs +0 -0
  1156. /package/dist/{styles/lib → lib}/components/ContentBlock/ContentBlock.css.cjs +0 -0
  1157. /package/dist/{styles/lib → lib}/components/ContentBlock/ContentBlock.css.mjs +0 -0
  1158. /package/dist/{styles/lib → lib}/components/Divider/Divider.css.mjs +0 -0
  1159. /package/dist/{styles/lib → lib}/components/Divider/Divider.mjs +0 -0
  1160. /package/dist/{styles/lib → lib}/components/Dropdown/Dropdown.css.mjs +0 -0
  1161. /package/dist/{styles/lib → lib}/components/Hidden/Hidden.css.cjs +0 -0
  1162. /package/dist/{styles/lib → lib}/components/Hidden/Hidden.css.mjs +0 -0
  1163. /package/dist/{styles/lib → lib}/components/HiddenVisually/HiddenVisually.css.cjs +0 -0
  1164. /package/dist/{styles/lib → lib}/components/HiddenVisually/HiddenVisually.css.mjs +0 -0
  1165. /package/dist/{styles/lib → lib}/components/List/List.css.cjs +0 -0
  1166. /package/dist/{styles/lib → lib}/components/List/List.css.mjs +0 -0
  1167. /package/dist/{styles/lib → lib}/components/Loader/Loader.css.mjs +0 -0
  1168. /package/dist/{styles/lib → lib}/components/MenuItem/useMenuItem.css.cjs +0 -0
  1169. /package/dist/{styles/lib → lib}/components/MenuItem/useMenuItem.css.mjs +0 -0
  1170. /package/dist/{styles/lib → lib}/components/MenuItemCheckbox/MenuItemCheckbox.css.mjs +0 -0
  1171. /package/dist/{styles/lib → lib}/components/MenuRenderer/MenuRenderer.css.mjs +0 -0
  1172. /package/dist/{styles/lib → lib}/components/MonthPicker/MonthPicker.css.cjs +0 -0
  1173. /package/dist/{styles/lib → lib}/components/MonthPicker/MonthPicker.css.mjs +0 -0
  1174. /package/dist/{styles/lib → lib}/components/OverflowMenu/OverflowMenu.css.cjs +0 -0
  1175. /package/dist/{styles/lib → lib}/components/OverflowMenu/OverflowMenu.css.mjs +0 -0
  1176. /package/dist/{styles/lib → lib}/components/Page/Page.css.cjs +0 -0
  1177. /package/dist/{styles/lib → lib}/components/Page/Page.css.mjs +0 -0
  1178. /package/dist/{styles/lib → lib}/components/Pagination/Pagination.css.mjs +0 -0
  1179. /package/dist/{styles/lib → lib}/components/Rating/Rating.css.mjs +0 -0
  1180. /package/dist/{styles/lib → lib}/components/Stepper/Stepper.css.mjs +0 -0
  1181. /package/dist/{styles/lib → lib}/components/Tag/Tag.css.cjs +0 -0
  1182. /package/dist/{styles/lib → lib}/components/Tag/Tag.css.mjs +0 -0
  1183. /package/dist/{styles/lib → lib}/components/TextDropdown/TextDropdown.css.mjs +0 -0
  1184. /package/dist/{styles/lib → lib}/components/TextLink/TextLink.css.mjs +0 -0
  1185. /package/dist/{styles/lib → lib}/components/Textarea/Highlight/Highlight.css.mjs +0 -0
  1186. /package/dist/{styles/lib → lib}/components/Textarea/Highlight/Highlight.mjs +0 -0
  1187. /package/dist/{styles/lib → lib}/components/Textarea/Textarea.css.mjs +0 -0
  1188. /package/dist/{styles/lib → lib}/components/Tiles/Tiles.css.mjs +0 -0
  1189. /package/dist/{styles/lib → lib}/components/Toggle/Toggle.css.mjs +0 -0
  1190. /package/dist/{styles/lib → lib}/components/TooltipRenderer/TooltipRenderer.css.mjs +0 -0
  1191. /package/dist/{styles/lib → lib}/components/icons/IconArrow/IconArrow.css.cjs +0 -0
  1192. /package/dist/{styles/lib → lib}/components/icons/IconArrow/IconArrow.css.mjs +0 -0
  1193. /package/dist/{styles/lib → lib}/components/icons/IconChevron/IconChevron.css.cjs +0 -0
  1194. /package/dist/{styles/lib → lib}/components/icons/IconChevron/IconChevron.css.mjs +0 -0
  1195. /package/dist/{styles/lib → lib}/components/icons/IconThumb/IconThumb.css.cjs +0 -0
  1196. /package/dist/{styles/lib → lib}/components/icons/IconThumb/IconThumb.css.mjs +0 -0
  1197. /package/dist/{styles/lib → lib}/components/private/Announcement/Announcement.mjs +0 -0
  1198. /package/dist/{styles/lib → lib}/components/private/AvoidWidowIcon/AvoidWidowIcon.css.cjs +0 -0
  1199. /package/dist/{styles/lib → lib}/components/private/AvoidWidowIcon/AvoidWidowIcon.css.mjs +0 -0
  1200. /package/dist/{styles/lib → lib}/components/private/AvoidWidowIcon/AvoidWidowIcon.mjs +0 -0
  1201. /package/dist/{styles/lib → lib}/components/private/Field/Field.css.mjs +0 -0
  1202. /package/dist/{styles/lib → lib}/components/private/InlineField/InlineField.css.mjs +0 -0
  1203. /package/dist/{styles/lib → lib}/components/private/Keyline/Keyline.css.mjs +0 -0
  1204. /package/dist/{styles/lib → lib}/components/private/Keyline/Keyline.mjs +0 -0
  1205. /package/dist/{styles/lib → lib}/components/private/MaxLines/MaxLines.mjs +0 -0
  1206. /package/dist/{styles/lib → lib}/components/private/Modal/Modal.css.mjs +0 -0
  1207. /package/dist/{styles/lib → lib}/components/private/Modal/ModalExternalGutter.cjs +0 -0
  1208. /package/dist/{styles/lib → lib}/components/private/Modal/ModalExternalGutter.mjs +0 -0
  1209. /package/dist/{styles/lib → lib}/components/private/Placeholder/Placeholder.css.mjs +0 -0
  1210. /package/dist/{styles/lib → lib}/components/private/hideFocusRings/hideFocusRings.cjs +0 -0
  1211. /package/dist/{styles/lib → lib}/components/private/hideFocusRings/hideFocusRings.css.mjs +0 -0
  1212. /package/dist/{styles/lib → lib}/components/private/hideFocusRings/hideFocusRings.mjs +0 -0
  1213. /package/dist/{styles/lib → lib}/components/private/hideFocusRings/hideFocusRingsDataAttribute.cjs +0 -0
  1214. /package/dist/{styles/lib → lib}/components/private/hideFocusRings/hideFocusRingsDataAttribute.mjs +0 -0
  1215. /package/dist/{styles/lib → lib}/components/private/touchable/debugTouchable.cjs +0 -0
  1216. /package/dist/{styles/lib → lib}/components/private/touchable/debugTouchable.mjs +0 -0
  1217. /package/dist/{styles/lib → lib}/components/private/touchable/hitArea.cjs +0 -0
  1218. /package/dist/{styles/lib → lib}/components/private/touchable/hitArea.mjs +0 -0
  1219. /package/dist/{styles/lib → lib}/components/private/touchable/virtualTouchable.css.mjs +0 -0
  1220. /package/dist/{styles/lib → lib}/components/private/touchable/virtualTouchable.mjs +0 -0
  1221. /package/dist/{styles/lib → lib}/components/private/touchable/virtualTouchableRules.mjs +0 -0
  1222. /package/dist/{styles/lib → lib}/components/useToast/Toast.css.cjs +0 -0
  1223. /package/dist/{styles/lib → lib}/components/useToast/Toast.css.mjs +0 -0
  1224. /package/dist/{styles/lib → lib}/css/atoms/atomicProperties.mjs +0 -0
  1225. /package/dist/{styles/lib → lib}/css/atoms/atoms.mjs +0 -0
  1226. /package/dist/{styles/lib → lib}/css/atoms/sprinkles.css.mjs +0 -0
  1227. /package/dist/{styles/lib → lib}/css/breakpoints.cjs +0 -0
  1228. /package/dist/{styles/lib → lib}/css/breakpoints.mjs +0 -0
  1229. /package/dist/{styles/lib → lib}/css/capsize.css.cjs +0 -0
  1230. /package/dist/{styles/lib → lib}/css/capsize.css.mjs +0 -0
  1231. /package/dist/{styles/lib → lib}/css/colorModeStyle.mjs +0 -0
  1232. /package/dist/{styles/lib → lib}/css/globalTypographyStyles.mjs +0 -0
  1233. /package/dist/{styles/lib → lib}/css/lineHeightContainer.css.mjs +0 -0
  1234. /package/dist/{styles/lib → lib}/css/negativeMargin/negativeMargin.css.mjs +0 -0
  1235. /package/dist/{styles/lib → lib}/css/negativeMargin/negativeMargin.mjs +0 -0
  1236. /package/dist/{styles/lib → lib}/css/reset/reset.css.mjs +0 -0
  1237. /package/dist/{side-effects/lib → lib}/css/reset/resetTracker.cjs +0 -0
  1238. /package/dist/{side-effects/lib → lib}/css/reset/resetTracker.mjs +0 -0
  1239. /package/dist/{styles/lib → lib}/css/responsiveStyle.mjs +0 -0
  1240. /package/dist/{styles/lib → lib}/css/textAlignedToIcon.css.mjs +0 -0
  1241. /package/dist/{styles/lib → lib}/css/typography.mjs +0 -0
  1242. /package/dist/{styles/lib → lib}/hooks/useIcon/icon.css.mjs +0 -0
  1243. /package/dist/{styles/lib → lib}/themes/apac/apacTheme.css.mjs +0 -0
  1244. /package/dist/{styles/lib → lib}/themes/apac/index.cjs +0 -0
  1245. /package/dist/{styles/lib → lib}/themes/apac/index.mjs +0 -0
  1246. /package/dist/{styles/lib → lib}/themes/docs/docsTheme.css.mjs +0 -0
  1247. /package/dist/{styles/lib → lib}/themes/docs/index.cjs +0 -0
  1248. /package/dist/{styles/lib → lib}/themes/docs/index.mjs +0 -0
  1249. /package/dist/{styles/lib → lib}/themes/makeVanillaTheme.cjs +0 -0
  1250. /package/dist/{styles/lib → lib}/themes/makeVanillaTheme.mjs +0 -0
  1251. /package/dist/{styles/lib → lib}/themes/seekBusiness/index.cjs +0 -0
  1252. /package/dist/{styles/lib → lib}/themes/seekBusiness/index.mjs +0 -0
  1253. /package/dist/{styles/lib → lib}/themes/seekBusiness/seekBusinessTheme.css.mjs +0 -0
  1254. /package/dist/{styles/lib → lib}/themes/seekJobs/index.cjs +0 -0
  1255. /package/dist/{styles/lib → lib}/themes/seekJobs/index.mjs +0 -0
  1256. /package/dist/{styles/lib → lib}/themes/seekJobs/seekJobs.css.mjs +0 -0
  1257. /package/dist/{styles/lib → lib}/themes/vars.css.mjs +0 -0
  1258. /package/dist/{styles/lib → lib}/themes/wireframe/index.cjs +0 -0
  1259. /package/dist/{styles/lib → lib}/themes/wireframe/index.mjs +0 -0
  1260. /package/dist/{styles/lib → lib}/themes/wireframe/wireframeTheme.css.mjs +0 -0
  1261. /package/dist/{styles/lib → lib}/utils/align.mjs +0 -0
@@ -1,2542 +0,0 @@
1
- "use strict";
2
- const jsxRuntime = require("react/jsx-runtime");
3
- const styles_lib_components_Box_Box_cjs = require("../Box/Box.cjs");
4
- const styles_lib_hooks_useIcon_index_cjs = require("../../hooks/useIcon/index.cjs");
5
- const React = require("react");
6
- const assert = require("assert");
7
- const styles_lib_css_typography_cjs = require("../../css/typography.cjs");
8
- const styles_lib_components_Accordion_Accordion_cjs = require("./Accordion.cjs");
9
- const styles_lib_components_private_MaxLines_MaxLines_cjs = require("../private/MaxLines/MaxLines.cjs");
10
- const styles_lib_utils_align_cjs = require("../../utils/align.cjs");
11
- const dedent = require("dedent");
12
- const styles_lib_components_Columns_Columns_cjs = require("../Columns/Columns.cjs");
13
- const styles_lib_components_Column_Column_cjs = require("../Column/Column.cjs");
14
- const reactIs = require("react-is");
15
- const styles_lib_css_negativeMargin_negativeMargin_cjs = require("../../css/negativeMargin/negativeMargin.cjs");
16
- const styles_lib_utils_collapsibleAlignmentProps_cjs = require("../../utils/collapsibleAlignmentProps.cjs");
17
- const styles_lib_components_private_touchable_virtualTouchable_cjs = require("../private/touchable/virtualTouchable.cjs");
18
- const styles_lib_components_private_hideFocusRings_hideFocusRings_css_cjs = require("../private/hideFocusRings/hideFocusRings.css.cjs");
19
- const styles_lib_components_Accordion_AccordionItem_css_cjs = require("./AccordionItem.css.cjs");
20
- const styles_lib_components_icons_IconChevron_IconChevron_cjs = require("../icons/IconChevron/IconChevron.cjs");
21
- const _interopDefaultCompat = (e) => e && typeof e === "object" && "default" in e ? e : { default: e };
22
- const assert__default = /* @__PURE__ */ _interopDefaultCompat(assert);
23
- const dedent__default = /* @__PURE__ */ _interopDefaultCompat(dedent);
24
- const TextContext = React.createContext(null);
25
- function flattenChildren(children, depth = 0, keys = []) {
26
- return React.Children.toArray(children).reduce(
27
- (acc, node, nodeIndex) => {
28
- if (reactIs.isFragment(node)) {
29
- acc.push(
30
- ...flattenChildren(
31
- node.props.children,
32
- depth + 1,
33
- keys.concat(node.key || nodeIndex)
34
- )
35
- );
36
- } else if (React.isValidElement(node)) {
37
- acc.push(
38
- React.cloneElement(node, {
39
- key: keys.concat(String(node.key)).join(".")
40
- })
41
- );
42
- } else if (typeof node === "string" || typeof node === "number") {
43
- acc.push(node);
44
- }
45
- return acc;
46
- },
47
- []
48
- );
49
- }
50
- const DefaultTextPropsContext = React.createContext({
51
- tone: void 0,
52
- weight: void 0,
53
- size: void 0
54
- });
55
- const DefaultTextPropsProvider = ({
56
- size,
57
- weight,
58
- tone,
59
- children
60
- }) => {
61
- const defaultTextProps = React.useMemo(
62
- () => ({
63
- size,
64
- weight,
65
- tone
66
- }),
67
- [size, weight, tone]
68
- );
69
- return /* @__PURE__ */ jsxRuntime.jsx(DefaultTextPropsContext.Provider, { value: defaultTextProps, children });
70
- };
71
- const useDefaultTextProps = ({
72
- size: sizeProp,
73
- weight: weightProp,
74
- tone: toneProp
75
- }) => {
76
- const { size, weight, tone } = React.useContext(DefaultTextPropsContext);
77
- return {
78
- size: sizeProp ?? size ?? "standard",
79
- weight: weightProp ?? weight ?? "regular",
80
- tone: toneProp ?? tone ?? "neutral"
81
- };
82
- };
83
- const Typography = ({
84
- id,
85
- component = "span",
86
- className,
87
- align,
88
- truncate = false,
89
- maxLines,
90
- icon,
91
- data,
92
- children,
93
- ...restProps
94
- }) => {
95
- const lines = truncate ? 1 : maxLines;
96
- const contents = typeof lines === "number" ? /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_private_MaxLines_MaxLines_cjs.MaxLines, { lines, children }) : children;
97
- if (process.env.NODE_ENV !== "production") {
98
- if (truncate) {
99
- console.warn(
100
- dedent__default.default`
101
- The "truncate" prop has been deprecated and will be removed in a future version. Use "maxLines" instead.
102
- <Text
103
- %c- truncate
104
- %c+ maxLines={1}
105
- %c/>
106
- `,
107
- "color: red",
108
- "color: green",
109
- "color: inherit"
110
- );
111
- }
112
- }
113
- return /* @__PURE__ */ jsxRuntime.jsx(
114
- styles_lib_components_Box_Box_cjs.Box,
115
- {
116
- id,
117
- display: "block",
118
- component,
119
- textAlign: align,
120
- className,
121
- ...styles_lib_components_Accordion_Accordion_cjs.buildDataAttributes({ data, validateRestProps: restProps }),
122
- children: icon ? /* @__PURE__ */ jsxRuntime.jsxs(
123
- styles_lib_components_Box_Box_cjs.Box,
124
- {
125
- component: "span",
126
- display: "flex",
127
- justifyContent: styles_lib_utils_align_cjs.alignToFlexAlign(align),
128
- children: [
129
- /* @__PURE__ */ jsxRuntime.jsx(
130
- styles_lib_components_Box_Box_cjs.Box,
131
- {
132
- component: "span",
133
- display: "block",
134
- paddingRight: "xsmall",
135
- flexGrow: 0,
136
- flexShrink: 0,
137
- minWidth: 0,
138
- textAlign: align,
139
- children: icon
140
- }
141
- ),
142
- /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: "span", display: "block", minWidth: 0, children: contents })
143
- ]
144
- }
145
- ) : contents
146
- }
147
- );
148
- };
149
- const Text = ({
150
- size: sizeProp,
151
- tone: toneProp,
152
- weight: weightProp,
153
- baseline = true,
154
- ...typographyProps
155
- }) => {
156
- assert__default.default(
157
- !React.useContext(TextContext),
158
- "Text components should not be nested within each other"
159
- );
160
- const { size, weight, tone } = useDefaultTextProps({
161
- size: sizeProp,
162
- weight: weightProp,
163
- tone: toneProp
164
- });
165
- const textStylingProps = React.useMemo(
166
- () => ({
167
- tone,
168
- size,
169
- weight,
170
- baseline
171
- }),
172
- [tone, size, weight, baseline]
173
- );
174
- return /* @__PURE__ */ jsxRuntime.jsx(TextContext.Provider, { value: textStylingProps, children: /* @__PURE__ */ jsxRuntime.jsx(
175
- Typography,
176
- {
177
- ...typographyProps,
178
- className: styles_lib_css_typography_cjs.textStyles(textStylingProps)
179
- }
180
- ) });
181
- };
182
- const validInlineComponents = ["div", "span", "ol", "ul"];
183
- const Inline = ({
184
- space = "none",
185
- align,
186
- alignY,
187
- collapseBelow,
188
- reverse,
189
- component = "div",
190
- data,
191
- children,
192
- ...restProps
193
- }) => {
194
- assert__default.default(
195
- validInlineComponents.includes(component),
196
- `Invalid Inline component: '${component}'. Should be one of [${validInlineComponents.map((c) => `'${c}'`).join(", ")}]`
197
- );
198
- const isList = component === "ol" || component === "ul";
199
- const inlineItemComponent = isList ? "li" : component;
200
- const {
201
- collapsibleAlignmentProps,
202
- collapsibleAlignmentChildProps,
203
- orderChildren
204
- } = styles_lib_utils_collapsibleAlignmentProps_cjs.resolveCollapsibleAlignmentProps({
205
- align,
206
- alignY,
207
- collapseBelow,
208
- reverse
209
- });
210
- return /* @__PURE__ */ jsxRuntime.jsx(
211
- styles_lib_components_Box_Box_cjs.Box,
212
- {
213
- component: component === "span" ? component : void 0,
214
- display: component === "span" ? "block" : void 0,
215
- className: styles_lib_css_negativeMargin_negativeMargin_cjs.negativeMargin("top", space),
216
- ...styles_lib_components_Accordion_Accordion_cjs.buildDataAttributes({ data, validateRestProps: restProps }),
217
- children: /* @__PURE__ */ jsxRuntime.jsx(
218
- styles_lib_components_Box_Box_cjs.Box,
219
- {
220
- component,
221
- className: styles_lib_css_negativeMargin_negativeMargin_cjs.negativeMargin("left", space),
222
- flexWrap: "wrap",
223
- ...collapsibleAlignmentProps,
224
- children: React.Children.map(
225
- orderChildren(flattenChildren(children)),
226
- (child) => child !== null && child !== void 0 ? /* @__PURE__ */ jsxRuntime.jsx(
227
- styles_lib_components_Box_Box_cjs.Box,
228
- {
229
- component: inlineItemComponent,
230
- minWidth: 0,
231
- marginLeft: space,
232
- marginTop: space,
233
- ...collapsibleAlignmentChildProps,
234
- children: child
235
- }
236
- ) : null
237
- )
238
- }
239
- )
240
- }
241
- );
242
- };
243
- const IconAddSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
244
- "svg",
245
- {
246
- xmlns: "http://www.w3.org/2000/svg",
247
- viewBox: "0 0 24 24",
248
- xmlSpace: "preserve",
249
- focusable: "false",
250
- fill: "currentColor",
251
- width: 16,
252
- height: 16,
253
- "aria-labelledby": titleId,
254
- ...props,
255
- children: [
256
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
257
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 11h-5V6c0-.6-.4-1-1-1s-1 .4-1 1v5H6c-.6 0-1 .4-1 1s.4 1 1 1h5v5c0 .6.4 1 1 1s1-.4 1-1v-5h5c.6 0 1-.4 1-1s-.4-1-1-1z" })
258
- ]
259
- }
260
- );
261
- const IconAdd = (props) => {
262
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
263
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconAddSvg, ...iconProps });
264
- };
265
- const IconBookmarkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
266
- "svg",
267
- {
268
- xmlns: "http://www.w3.org/2000/svg",
269
- viewBox: "0 0 24 24",
270
- xmlSpace: "preserve",
271
- focusable: "false",
272
- fill: "currentColor",
273
- width: 16,
274
- height: 16,
275
- "aria-labelledby": titleId,
276
- ...props,
277
- children: [
278
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
279
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 5.1c.1-1.6-1.1-2.9-2.7-3.1H7.6C6.1 2.1 4.9 3.5 5 5v16c0 .4.2.7.5.9.3.2.7.2 1 0l5.4-3.6 5.4 3.6c.2.1.4.2.6.2.2 0 .3 0 .5-.1.3-.2.5-.5.5-.9l.1-16zm-2 14-4.4-3c-.3-.2-.8-.2-1.1 0l-4.4 3L7 4.9c0-.4.3-.9.7-.9h8.5c.5 0 .8.5.8 1v14.1z" })
280
- ]
281
- }
282
- );
283
- const IconBookmarkActiveSvg = ({
284
- title,
285
- titleId,
286
- ...props
287
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
288
- "svg",
289
- {
290
- xmlns: "http://www.w3.org/2000/svg",
291
- viewBox: "0 0 24 24",
292
- xmlSpace: "preserve",
293
- focusable: "false",
294
- fill: "currentColor",
295
- width: 16,
296
- height: 16,
297
- "aria-labelledby": titleId,
298
- ...props,
299
- children: [
300
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
301
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 5.1c.1-1.6-1.1-2.9-2.7-3.1H7.6C6.1 2.1 4.9 3.5 5 5v16c0 .4.2.7.5.9.3.2.7.2 1 0l5.4-3.6 5.4 3.6c.2.1.4.2.6.2.2 0 .3 0 .5-.1.3-.2.5-.5.5-.9l.1-16z" })
302
- ]
303
- }
304
- );
305
- const IconBookmark = ({
306
- active = false,
307
- ...props
308
- }) => {
309
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
310
- return /* @__PURE__ */ jsxRuntime.jsx(
311
- styles_lib_components_Box_Box_cjs.Box,
312
- {
313
- component: active ? IconBookmarkActiveSvg : IconBookmarkSvg,
314
- ...iconProps
315
- }
316
- );
317
- };
318
- const IconCautionSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
319
- "svg",
320
- {
321
- xmlns: "http://www.w3.org/2000/svg",
322
- width: 16,
323
- height: 16,
324
- viewBox: "0 0 24 24",
325
- focusable: "false",
326
- fill: "currentColor",
327
- "aria-labelledby": titleId,
328
- ...props,
329
- children: [
330
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
331
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.71 17.262 14.738 3.71A3.183 3.183 0 0 0 12 2.013 3.183 3.183 0 0 0 9.262 3.71L1.29 17.262a3.152 3.152 0 0 0-.14 3.225A3.152 3.152 0 0 0 4 22h16a3.023 3.023 0 0 0 2.71-4.738ZM20 20H4c-1.1 0-1.544-.776-.986-1.724l7.972-13.552A1.232 1.232 0 0 1 12 4.013a1.232 1.232 0 0 1 1.014.71l7.972 13.553C21.544 19.224 21.1 20 20 20Z" }),
332
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 17, r: 1 }),
333
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.978 14a1 1 0 0 0 1-1V9a1 1 0 0 0-2 0v4a1 1 0 0 0 1 1Z" })
334
- ]
335
- }
336
- );
337
- const IconCaution = (props) => {
338
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
339
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconCautionSvg, ...iconProps });
340
- };
341
- const IconClearSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
342
- "svg",
343
- {
344
- xmlns: "http://www.w3.org/2000/svg",
345
- viewBox: "0 0 24 24",
346
- xmlSpace: "preserve",
347
- focusable: "false",
348
- fill: "currentColor",
349
- width: 16,
350
- height: 16,
351
- "aria-labelledby": titleId,
352
- ...props,
353
- children: [
354
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
355
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.4 12 5.3-5.3c.4-.4.4-1 0-1.4s-1-.4-1.4 0L12 10.6 6.7 5.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l5.3 5.3-5.3 5.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3s.5-.1.7-.3l5.3-5.3 5.3 5.3c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4L13.4 12z" })
356
- ]
357
- }
358
- );
359
- const IconClear = (props) => {
360
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
361
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconClearSvg, ...iconProps });
362
- };
363
- const IconCompanySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
364
- "svg",
365
- {
366
- xmlns: "http://www.w3.org/2000/svg",
367
- viewBox: "0 0 24 24",
368
- xmlSpace: "preserve",
369
- focusable: "false",
370
- fill: "currentColor",
371
- width: 16,
372
- height: 16,
373
- "aria-labelledby": titleId,
374
- ...props,
375
- children: [
376
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
377
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 6h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z" }),
378
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 2.2V2c0-.6-.4-1-1-1H8c-.6 0-1 .4-1 1v.2C5.9 2.6 5 3.7 5 5v16c0 .6.4 1 1 1h12c.6 0 1-.4 1-1V5c0-1.3-.9-2.4-2-2.8zM17 20h-3v-2h-4v2H7V5c0-.6.4-1 1-1h8c.6 0 1 .4 1 1v15z" })
379
- ]
380
- }
381
- );
382
- const IconCompany = (props) => {
383
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
384
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconCompanySvg, ...iconProps });
385
- };
386
- const IconComposeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
387
- "svg",
388
- {
389
- xmlns: "http://www.w3.org/2000/svg",
390
- viewBox: "0 0 24 24",
391
- xmlSpace: "preserve",
392
- focusable: "false",
393
- fill: "currentColor",
394
- width: 16,
395
- height: 16,
396
- "aria-labelledby": titleId,
397
- ...props,
398
- children: [
399
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
400
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.3 1.9-.2-.2C20.9.5 19 .5 17.9 1.7l-7.6 7.6c-.1.1-.2.3-.3.5l-1 4c-.1.3 0 .7.3.9.2.2.4.3.7.3h.2l4-1c.2 0 .3-.1.5-.3l7.6-7.6c.6-.6.9-1.3.9-2.1s-.3-1.6-.9-2.1zm-8.8 10.2-2.1.5.5-2.1L17 5.4 18.6 7l-5.1 5.1zm7.4-7.4-.9.9L18.4 4l.9-.9c.4-.4 1-.4 1.4 0l.2.2c.2.2.3.4.3.7s-.1.5-.3.7z" }),
401
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 11c-.6 0-1 .4-1 1v6c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h6c.6 0 1-.4 1-1s-.4-1-1-1H6C4.3 3 3 4.3 3 6v12c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3v-6c0-.6-.4-1-1-1z" })
402
- ]
403
- }
404
- );
405
- const IconCompose = (props) => {
406
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
407
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconComposeSvg, ...iconProps });
408
- };
409
- const IconCopySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
410
- "svg",
411
- {
412
- xmlns: "http://www.w3.org/2000/svg",
413
- viewBox: "0 0 24 24",
414
- xmlSpace: "preserve",
415
- focusable: "false",
416
- fill: "currentColor",
417
- width: 16,
418
- height: 16,
419
- "aria-labelledby": titleId,
420
- ...props,
421
- children: [
422
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
423
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 7H6c-1.7 0-3 1.3-3 3v8c0 1.7 1.3 3 3 3h8c1.7 0 3-1.3 3-3v-8c0-1.7-1.3-3-3-3zm1 11c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-8c0-.6.4-1 1-1h8c.6 0 1 .4 1 1v8z" }),
424
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 2h-8C9.3 2 8 3.3 8 5h2c0-.6.4-1 1-1h8c.6 0 1 .4 1 1v8c0 .6-.4 1-1 1v2c1.7 0 3-1.3 3-3V5c0-1.7-1.3-3-3-3z" })
425
- ]
426
- }
427
- );
428
- const IconCopy = (props) => {
429
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
430
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconCopySvg, ...iconProps });
431
- };
432
- const IconCreditCardSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
433
- "svg",
434
- {
435
- xmlns: "http://www.w3.org/2000/svg",
436
- viewBox: "0 0 24 24",
437
- xmlSpace: "preserve",
438
- focusable: "false",
439
- fill: "currentColor",
440
- width: 16,
441
- height: 16,
442
- "aria-labelledby": titleId,
443
- ...props,
444
- children: [
445
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
446
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 4H4C2.3 4 1 5.3 1 7v10c0 1.7 1.3 3 3 3h16c1.7 0 3-1.3 3-3V7c0-1.7-1.3-3-3-3zM3 7c0-.6.4-1 1-1h16c.6 0 1 .4 1 1v1H3V7zm18 10c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1v-7h18v7z" }),
447
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 16h4c.6 0 1-.4 1-1s-.4-1-1-1H6c-.6 0-1 .4-1 1s.4 1 1 1z" })
448
- ]
449
- }
450
- );
451
- const IconCreditCard = (props) => {
452
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
453
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconCreditCardSvg, ...iconProps });
454
- };
455
- const IconCriticalSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
456
- "svg",
457
- {
458
- xmlns: "http://www.w3.org/2000/svg",
459
- viewBox: "0 0 24 24",
460
- xmlSpace: "preserve",
461
- focusable: "false",
462
- fill: "currentColor",
463
- width: 16,
464
- height: 16,
465
- "aria-labelledby": titleId,
466
- ...props,
467
- children: [
468
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
469
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9z" }),
470
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 17, r: 1 }),
471
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 14c.6 0 1-.4 1-1V8c0-.6-.4-1-1-1s-1 .4-1 1v5c0 .6.4 1 1 1z" })
472
- ]
473
- }
474
- );
475
- const IconCritical = (props) => {
476
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
477
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconCriticalSvg, ...iconProps });
478
- };
479
- const IconDateSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
480
- "svg",
481
- {
482
- xmlns: "http://www.w3.org/2000/svg",
483
- viewBox: "0 0 24 24",
484
- xmlSpace: "preserve",
485
- focusable: "false",
486
- fill: "currentColor",
487
- width: 16,
488
- height: 16,
489
- "aria-labelledby": titleId,
490
- ...props,
491
- children: [
492
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
493
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 4h-2V3c0-.6-.4-1-1-1s-1 .4-1 1v1H9V3c0-.6-.4-1-1-1s-1 .4-1 1v1H5C3.3 4 2 5.3 2 7v12c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3V7c0-1.7-1.3-3-3-3zM4 7c0-.6.4-1 1-1h2v1c0 .6.4 1 1 1s1-.4 1-1V6h6v1c0 .6.4 1 1 1s1-.4 1-1V6h2c.6 0 1 .4 1 1v3H4V7zm16 12c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-7h16v7z" })
494
- ]
495
- }
496
- );
497
- const IconDate = (props) => {
498
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
499
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDateSvg, ...iconProps });
500
- };
501
- const IconDeleteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
502
- "svg",
503
- {
504
- xmlns: "http://www.w3.org/2000/svg",
505
- viewBox: "0 0 24 24",
506
- xmlSpace: "preserve",
507
- focusable: "false",
508
- fill: "currentColor",
509
- width: 16,
510
- height: 16,
511
- "aria-labelledby": titleId,
512
- ...props,
513
- children: [
514
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
515
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 17c.6 0 1-.4 1-1v-6c0-.6-.4-1-1-1s-1 .4-1 1v6c0 .6.4 1 1 1zm4 0c.6 0 1-.4 1-1v-6c0-.6-.4-1-1-1s-1 .4-1 1v6c0 .6.4 1 1 1z" }),
516
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 4h-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v1H4c-.6 0-1 .4-1 1s.4 1 1 1v13c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3V6c.6 0 1-.4 1-1s-.4-1-1-1zM10 3h4v1h-4V3zm8 16c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V6h12v13z" })
517
- ]
518
- }
519
- );
520
- const IconDelete = (props) => {
521
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
522
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDeleteSvg, ...iconProps });
523
- };
524
- const IconDesktopSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
525
- "svg",
526
- {
527
- xmlns: "http://www.w3.org/2000/svg",
528
- width: 16,
529
- height: 16,
530
- viewBox: "0 0 24 24",
531
- focusable: "false",
532
- fill: "currentColor",
533
- "aria-labelledby": titleId,
534
- ...props,
535
- children: [
536
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
537
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.2 2H4.8A2.908 2.908 0 0 0 2 5v10a2.908 2.908 0 0 0 2.8 3H11v2.005H8a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2h-3V18h6.2a2.908 2.908 0 0 0 2.8-3V5a2.908 2.908 0 0 0-2.8-3Zm.8 13a.93.93 0 0 1-.8 1H4.8a.93.93 0 0 1-.8-1V5a.93.93 0 0 1 .8-1h14.4a.93.93 0 0 1 .8 1Z" })
538
- ]
539
- }
540
- );
541
- const IconDesktop = (props) => {
542
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
543
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDesktopSvg, ...iconProps });
544
- };
545
- const IconDocumentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
546
- "svg",
547
- {
548
- xmlns: "http://www.w3.org/2000/svg",
549
- viewBox: "0 0 24 24",
550
- xmlSpace: "preserve",
551
- focusable: "false",
552
- fill: "currentColor",
553
- width: 16,
554
- height: 16,
555
- "aria-labelledby": titleId,
556
- ...props,
557
- children: [
558
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
559
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.5 6.7-3.6-3.2-1.2-1.2c-.2-.2-.4-.3-.7-.3H5.8C4.8 2 4 3.1 4 4.5V20c-.1 1 .7 1.9 1.7 2H18c1 .1 1.9-.7 2-1.7V8c0-.5-.2-1-.5-1.3zM15 5.4 16.6 7H15V5.4zM7 20c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h6v4c0 .6.4 1 1 1h4v10c0 .6-.4 1-1 1H7z" }),
560
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 11H9c-.6 0-1 .4-1 1s.4 1 1 1h5c.6 0 1-.4 1-1s-.4-1-1-1zm-2 4H9c-.6 0-1 .4-1 1s.4 1 1 1h3c.6 0 1-.4 1-1s-.4-1-1-1z" })
561
- ]
562
- }
563
- );
564
- const IconDocument = (props) => {
565
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
566
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDocumentSvg, ...iconProps });
567
- };
568
- const IconDocumentBrokenSvg = ({
569
- title,
570
- titleId,
571
- ...props
572
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
573
- "svg",
574
- {
575
- xmlns: "http://www.w3.org/2000/svg",
576
- width: 16,
577
- height: 16,
578
- viewBox: "0 0 24 24",
579
- focusable: "false",
580
- fill: "currentColor",
581
- "aria-labelledby": titleId,
582
- ...props,
583
- children: [
584
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
585
- /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M15 5.414V7h1.586L15 5.414z" }),
586
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.707 7.293-5-5A1 1 0 0 0 14 2H7a3.003 3.003 0 0 0-3 3v14a3.003 3.003 0 0 0 3 3h5v-2H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h6v4a1 1 0 0 0 1 1h4v5h2V8a1 1 0 0 0-.293-.707ZM15 7V5.414L16.586 7Z" }),
587
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.707 16.293a1 1 0 0 0-1.414 0L17 17.586l-1.293-1.293a1 1 0 0 0-1.414 1.414L15.586 19l-1.293 1.293a1 1 0 1 0 1.414 1.414L17 20.414l1.293 1.293a1 1 0 0 0 1.414-1.414L18.414 19l1.293-1.293a1 1 0 0 0 0-1.414Z" })
588
- ]
589
- }
590
- );
591
- const IconDocumentBroken = (props) => {
592
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
593
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDocumentBrokenSvg, ...iconProps });
594
- };
595
- const IconDownloadSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
596
- "svg",
597
- {
598
- xmlns: "http://www.w3.org/2000/svg",
599
- viewBox: "0 0 24 24",
600
- xmlSpace: "preserve",
601
- focusable: "false",
602
- fill: "currentColor",
603
- width: 16,
604
- height: 16,
605
- "aria-labelledby": titleId,
606
- ...props,
607
- children: [
608
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
609
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 16c-.6 0-1 .4-1 1v1c0 .6-.5 1-1.1 1H7.1c-.6 0-1-.5-1.1-1v-1c0-.6-.4-1-1-1s-1 .4-1 1v1c0 1.7 1.4 3 3 3h9.9c1.7 0 3.1-1.3 3.1-3v-1c0-.6-.4-1-1-1zm-7.7-1.3c.2.2.5.3.7.3s.5-.1.7-.3l5-5c.4-.4.4-1 0-1.4s-1-.4-1.4 0L13 11.6V4c0-.6-.4-1-1-1s-1 .4-1 1v7.6L7.7 8.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l5 5z" })
610
- ]
611
- }
612
- );
613
- const IconDownload = (props) => {
614
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props, {
615
- verticalCorrection: {
616
- uppercase: "none",
617
- lowercase: "up"
618
- }
619
- });
620
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconDownloadSvg, ...iconProps });
621
- };
622
- const IconEditSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
623
- "svg",
624
- {
625
- xmlns: "http://www.w3.org/2000/svg",
626
- viewBox: "0 0 24 24",
627
- xmlSpace: "preserve",
628
- focusable: "false",
629
- fill: "currentColor",
630
- width: 16,
631
- height: 16,
632
- "aria-labelledby": titleId,
633
- ...props,
634
- children: [
635
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
636
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.7 4.1c-1.4-1.4-4-1.4-5.4 0l-11 11c-.1.1-.2.3-.3.5l-1 5c-.1.3 0 .7.3.9.2.2.4.3.7.3h.2l5-1c.2 0 .4-.1.5-.3l11-11c1.5-1.5 1.5-3.9 0-5.4zM8.5 18.9l-3.2.6.6-3.2 8.6-8.6 2.6 2.6-8.6 8.6zM19.3 8.1l-.8.8-2.6-2.6.8-.8c.7-.7 1.9-.7 2.6 0 .7.7.7 1.9 0 2.6z" })
637
- ]
638
- }
639
- );
640
- const IconEdit = (props) => {
641
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props, {
642
- verticalCorrection: {
643
- uppercase: "none",
644
- lowercase: "up"
645
- }
646
- });
647
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconEditSvg, ...iconProps });
648
- };
649
- const IconEducationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
650
- "svg",
651
- {
652
- xmlns: "http://www.w3.org/2000/svg",
653
- viewBox: "0 0 24 24",
654
- xmlSpace: "preserve",
655
- focusable: "false",
656
- fill: "currentColor",
657
- width: 16,
658
- height: 16,
659
- "aria-labelledby": titleId,
660
- ...props,
661
- children: [
662
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
663
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 2H7C5.3 2 4 3.3 4 5v14c0 1.7 1.3 3 3 3h12c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1zM7 4h11v12H7c-.4 0-.7.1-1 .2V5c0-.6.4-1 1-1zm11 16H7c-.6 0-1-.4-1-1s.4-1 1-1h11v2z" })
664
- ]
665
- }
666
- );
667
- const IconEducation = (props) => {
668
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
669
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconEducationSvg, ...iconProps });
670
- };
671
- const IconEnlargeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
672
- "svg",
673
- {
674
- xmlns: "http://www.w3.org/2000/svg",
675
- width: 16,
676
- height: 16,
677
- viewBox: "0 0 24 24",
678
- focusable: "false",
679
- fill: "currentColor",
680
- "aria-labelledby": titleId,
681
- ...props,
682
- children: [
683
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
684
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.923 4.618A.999.999 0 0 0 19 4h-4a1 1 0 1 0 0 2h1.586l-3.293 3.293a1 1 0 1 0 1.414 1.414L18 7.414V9a1 1 0 1 0 2 0V5c0-.13-.026-.26-.077-.382Zm-10.63 8.675L6 16.586V15a1 1 0 1 0-2 0v4a1 1 0 0 0 .618.923A1 1 0 0 0 5 20h4a1 1 0 1 0 0-2H7.414l3.293-3.293a1 1 0 1 0-1.414-1.414Z" })
685
- ]
686
- }
687
- );
688
- const IconEnlargeActiveSvg = ({
689
- title,
690
- titleId,
691
- ...props
692
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
693
- "svg",
694
- {
695
- xmlns: "http://www.w3.org/2000/svg",
696
- width: 16,
697
- height: 16,
698
- viewBox: "0 0 24 24",
699
- focusable: "false",
700
- fill: "currentColor",
701
- "aria-labelledby": titleId,
702
- ...props,
703
- children: [
704
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
705
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.382 13.077A1 1 0 0 0 10 13H6a1 1 0 1 0 0 2h1.586l-3.293 3.293a1 1 0 1 0 1.414 1.414L9 16.414V18a1 1 0 1 0 2 0v-4a.999.999 0 0 0-.618-.923Zm9.325-8.784a1 1 0 0 0-1.414 0L15 7.586V6a1 1 0 1 0-2 0v4a1 1 0 0 0 .618.923A1 1 0 0 0 14 11h4a1 1 0 1 0 0-2h-1.586l3.293-3.293a1 1 0 0 0 0-1.414Z" })
706
- ]
707
- }
708
- );
709
- const IconEnlarge = ({ active = false, ...props }) => {
710
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
711
- return /* @__PURE__ */ jsxRuntime.jsx(
712
- styles_lib_components_Box_Box_cjs.Box,
713
- {
714
- component: active ? IconEnlargeActiveSvg : IconEnlargeSvg,
715
- ...iconProps
716
- }
717
- );
718
- };
719
- const IconFilterSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
720
- "svg",
721
- {
722
- xmlns: "http://www.w3.org/2000/svg",
723
- viewBox: "0 0 24 24",
724
- xmlSpace: "preserve",
725
- focusable: "false",
726
- fill: "currentColor",
727
- width: 16,
728
- height: 16,
729
- "aria-labelledby": titleId,
730
- ...props,
731
- children: [
732
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
733
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 9.2V5c0-.6-.4-1-1-1s-1 .4-1 1v4.2c-1.2.4-2 1.5-2 2.8 0 1.3.9 2.4 2 2.8V19c0 .6.4 1 1 1s1-.4 1-1v-4.2c1.2-.4 2-1.5 2-2.8 0-1.3-.8-2.4-2-2.8zM5 13c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm8 1.2V5c0-.6-.4-1-1-1s-1 .4-1 1v9.2c-1.2.4-2 1.5-2 2.8 0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.3-.9-2.4-2-2.8zM12 18c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zM22 7c0-1.7-1.3-3-3-3s-3 1.3-3 3c0 1.3.9 2.4 2 2.8V19c0 .6.4 1 1 1s1-.4 1-1V9.8c1.1-.4 2-1.5 2-2.8zm-3 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z" })
734
- ]
735
- }
736
- );
737
- const IconFilter = (props) => {
738
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
739
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconFilterSvg, ...iconProps });
740
- };
741
- const IconFlagSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
742
- "svg",
743
- {
744
- xmlns: "http://www.w3.org/2000/svg",
745
- width: 16,
746
- height: 16,
747
- viewBox: "0 0 24 24",
748
- focusable: "false",
749
- fill: "currentColor",
750
- "aria-labelledby": titleId,
751
- ...props,
752
- children: [
753
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
754
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.41 2.967a1.031 1.031 0 0 0-1.08.148 4.778 4.778 0 0 1-2.83.599 8.47 8.47 0 0 1-3.135-.788A10.177 10.177 0 0 0 8.5 2c-2.887 0-4.005.952-4.2 1.144a1 1 0 0 0-.3.713V21a1 1 0 0 0 2 0v-6.298a6.167 6.167 0 0 1 2.5-.416 8.47 8.47 0 0 1 3.135.788A10.177 10.177 0 0 0 15.5 16c2.887 0 4.005-.952 4.2-1.144a1 1 0 0 0 .3-.713V3.857a.996.996 0 0 0-.59-.89ZM18 13.584a6.174 6.174 0 0 1-2.5.416 8.47 8.47 0 0 1-3.135-.788 10.178 10.178 0 0 0-3.865-.926 9.467 9.467 0 0 0-2.5.298V4.416A6.174 6.174 0 0 1 8.5 4a8.47 8.47 0 0 1 3.135.788 10.178 10.178 0 0 0 3.865.926 9.467 9.467 0 0 0 2.5-.298Z" })
755
- ]
756
- }
757
- );
758
- const IconFlag = (props) => {
759
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
760
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconFlagSvg, ...iconProps });
761
- };
762
- const IconGridSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
763
- "svg",
764
- {
765
- xmlns: "http://www.w3.org/2000/svg",
766
- viewBox: "0 0 24 24",
767
- xmlSpace: "preserve",
768
- focusable: "false",
769
- fill: "currentColor",
770
- width: 16,
771
- height: 16,
772
- "aria-labelledby": titleId,
773
- ...props,
774
- children: [
775
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
776
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3H6C4.3 3 3 4.3 3 6v2c0 1.7 1.3 3 3 3h2c1.7 0 3-1.3 3-3V6c0-1.7-1.3-3-3-3zm1 5c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h2c.6 0 1 .4 1 1v2zm-1 5H6c-1.7 0-3 1.3-3 3v2c0 1.7 1.3 3 3 3h2c1.7 0 3-1.3 3-3v-2c0-1.7-1.3-3-3-3zm1 5c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-2c0-.6.4-1 1-1h2c.6 0 1 .4 1 1v2zm9-15h-2c-1.7 0-3 1.3-3 3v2c0 1.7 1.3 3 3 3h2c1.7 0 3-1.3 3-3V6c0-1.7-1.3-3-3-3zm1 5c0 .6-.4 1-1 1h-2c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h2c.6 0 1 .4 1 1v2zm-1 5h-2c-1.7 0-3 1.3-3 3v2c0 1.7 1.3 3 3 3h2c1.7 0 3-1.3 3-3v-2c0-1.7-1.3-3-3-3zm1 5c0 .6-.4 1-1 1h-2c-.6 0-1-.4-1-1v-2c0-.6.4-1 1-1h2c.6 0 1 .4 1 1v2z" })
777
- ]
778
- }
779
- );
780
- const IconGrid = (props) => {
781
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
782
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconGridSvg, ...iconProps });
783
- };
784
- const IconHeartSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
785
- "svg",
786
- {
787
- xmlns: "http://www.w3.org/2000/svg",
788
- viewBox: "0 0 24 24",
789
- xmlSpace: "preserve",
790
- focusable: "false",
791
- fill: "currentColor",
792
- width: 16,
793
- height: 16,
794
- "aria-labelledby": titleId,
795
- ...props,
796
- children: [
797
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
798
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.7 4c-.1 0-.1 0 0 0-1.4 0-2.7.5-3.7 1.3C11 4.5 9.7 4 8.4 4 5.5 4 3 6.3 3 9.3c0 4 5 8.9 8.6 10.6.1.1.3.1.4.1s.3 0 .4-.1C16 18.2 21 13.3 21 9.3c0-3-2.4-5.3-5.3-5.3zM12 17.9c-3-1.6-7-5.7-7-8.6C5 7.5 6.5 6 8.4 6h.1c1.1 0 2.1.5 2.8 1.4.4.5 1.2.5 1.6 0 .6-.9 1.6-1.4 2.7-1.4C17.5 6 19 7.5 19 9.3c0 2.9-4 7-7 8.6z" })
799
- ]
800
- }
801
- );
802
- const IconHeartActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
803
- "svg",
804
- {
805
- xmlns: "http://www.w3.org/2000/svg",
806
- viewBox: "0 0 24 24",
807
- xmlSpace: "preserve",
808
- focusable: "false",
809
- fill: "currentColor",
810
- width: 16,
811
- height: 16,
812
- "aria-labelledby": titleId,
813
- ...props,
814
- children: [
815
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
816
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.7 4c-.1 0-.1 0 0 0-1.4 0-2.7.5-3.7 1.3C11 4.5 9.7 4 8.4 4 5.5 4 3 6.3 3 9.3c0 4 5 8.9 8.6 10.6.1.1.3.1.4.1s.3 0 .4-.1C16 18.2 21 13.3 21 9.3c0-3-2.4-5.3-5.3-5.3z" })
817
- ]
818
- }
819
- );
820
- const IconHeart = ({ active = false, ...props }) => {
821
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
822
- return /* @__PURE__ */ jsxRuntime.jsx(
823
- styles_lib_components_Box_Box_cjs.Box,
824
- {
825
- component: active ? IconHeartActiveSvg : IconHeartSvg,
826
- ...iconProps
827
- }
828
- );
829
- };
830
- const IconHelpSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
831
- "svg",
832
- {
833
- xmlns: "http://www.w3.org/2000/svg",
834
- viewBox: "0 0 24 24",
835
- xmlSpace: "preserve",
836
- focusable: "false",
837
- fill: "currentColor",
838
- width: 16,
839
- height: 16,
840
- "aria-labelledby": titleId,
841
- ...props,
842
- children: [
843
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
844
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9z" }),
845
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7 16.3c-.4-.4-1.1-.4-1.4 0-.1.1-.2.2-.2.3 0 .1-.1.2-.1.4 0 .3.1.5.3.7.2.2.4.3.7.3s.5-.1.7-.3c.1-.1.2-.2.2-.3 0-.1.1-.2.1-.4s0-.3-.1-.4c0-.1-.1-.2-.2-.3zm.6-10.1c-2-.7-4.3.4-5.1 2.5-.2.5.1 1 .6 1.2.5.2 1.1-.1 1.3-.6.4-1 1.5-1.6 2.6-1.2.8.3 1.3 1 1.3 1.9 0 .5-.3.7-1.3 1.2-.7.3-1.7.8-1.7 1.8 0 .6.4 1 1 1 .5 0 .9-.3 1-.7.1-.1.4-.2.6-.3.9-.4 2.5-1.2 2.5-3-.1-1.7-1.2-3.2-2.8-3.8z" })
846
- ]
847
- }
848
- );
849
- const IconHelp = (props) => {
850
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
851
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconHelpSvg, ...iconProps });
852
- };
853
- const IconHistorySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
854
- "svg",
855
- {
856
- xmlns: "http://www.w3.org/2000/svg",
857
- viewBox: "0 0 24 24",
858
- xmlSpace: "preserve",
859
- focusable: "false",
860
- fill: "currentColor",
861
- width: 16,
862
- height: 16,
863
- "aria-labelledby": titleId,
864
- ...props,
865
- children: [
866
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
867
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6c-.6 0-1 .4-1 1v5c0 .4.2.7.6.9l4 2c.1.1.2.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1.1-.4-1.3L13 11.4V7c0-.6-.4-1-1-1z" }),
868
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.1 4.9C15.2 1 8.8 1 4.9 4.9 3.3 6.6 2.3 8.7 2 11H1c-.4 0-.8.2-.9.6-.2.4-.1.8.2 1.1l2 2c.2.2.4.3.7.3s.5-.1.7-.3l2-2c.3-.3.4-.7.2-1.1-.1-.4-.5-.6-.9-.6h-.9c.2-1.8 1-3.4 2.3-4.7 3.1-3.1 8.2-3.1 11.3 0 3.1 3.1 3.1 8.2 0 11.3-3.1 3.1-8.2 3.1-11.3 0-.4-.4-1-.4-1.4 0s-.4 1 0 1.4c1.9 2 4.4 3 7 3 2.6 0 5.1-1 7.1-2.9 3.9-3.9 3.9-10.3 0-14.2z" })
869
- ]
870
- }
871
- );
872
- const IconHistory = (props) => {
873
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
874
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconHistorySvg, ...iconProps });
875
- };
876
- const IconHomeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
877
- "svg",
878
- {
879
- xmlns: "http://www.w3.org/2000/svg",
880
- viewBox: "0 0 24 24",
881
- xmlSpace: "preserve",
882
- focusable: "false",
883
- fill: "currentColor",
884
- width: 16,
885
- height: 16,
886
- "aria-labelledby": titleId,
887
- ...props,
888
- children: [
889
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
890
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.7 9.2-8-7c-.4-.3-.9-.3-1.3 0l-8 7c-.3.2-.4.5-.4.8v11c0 .6.4 1 1 1h16c.6 0 1-.4 1-1V10c0-.3-.1-.6-.3-.8zM19 20h-5v-4c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v4H5v-9.5l7-6.1 7 6.1V20z" })
891
- ]
892
- }
893
- );
894
- const IconHome = (props) => {
895
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
896
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconHomeSvg, ...iconProps });
897
- };
898
- const IconImageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
899
- "svg",
900
- {
901
- xmlns: "http://www.w3.org/2000/svg",
902
- viewBox: "0 0 24 24",
903
- xmlSpace: "preserve",
904
- focusable: "false",
905
- fill: "currentColor",
906
- width: 16,
907
- height: 16,
908
- "aria-labelledby": titleId,
909
- ...props,
910
- children: [
911
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
912
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 2H5C3.3 2 2 3.3 2 5v14c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3V5c0-1.7-1.3-3-3-3zM4 5c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v7.6L17.4 10c-.8-.8-2.1-.8-2.8 0l-9.9 9.9c-.4-.1-.7-.5-.7-.9V5zm15 15H7.4l8.6-8.6 4 4V19c0 .6-.4 1-1 1z" }),
913
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 8, cy: 8, r: 2 })
914
- ]
915
- }
916
- );
917
- const IconImage = (props) => {
918
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
919
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconImageSvg, ...iconProps });
920
- };
921
- const IconInfoSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
922
- "svg",
923
- {
924
- xmlns: "http://www.w3.org/2000/svg",
925
- viewBox: "0 0 24 24",
926
- xmlSpace: "preserve",
927
- focusable: "false",
928
- fill: "currentColor",
929
- width: 16,
930
- height: 16,
931
- "aria-labelledby": titleId,
932
- ...props,
933
- children: [
934
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
935
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9z" }),
936
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 11c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1s1-.4 1-1v-4c0-.6-.4-1-1-1zm.9-3.4c0-.1-.1-.1-.1-.2s-.1-.1-.1-.1c-.3-.3-.7-.4-1.1-.2-.1.1-.2.1-.3.2l-.1.1c0 .1-.1.1-.1.2s0 .1-.1.2V8c0 .3.1.5.3.7.1.1.2.2.3.2.1.1.3.1.4.1h.2c.1 0 .1 0 .2-.1.1 0 .1-.1.2-.1l.1-.1c.2-.2.3-.4.3-.7v-.2c0-.1-.1-.1-.1-.2z" })
937
- ]
938
- }
939
- );
940
- const IconInfo = (props) => {
941
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
942
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconInfoSvg, ...iconProps });
943
- };
944
- const IconInvoiceSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
945
- "svg",
946
- {
947
- xmlns: "http://www.w3.org/2000/svg",
948
- viewBox: "0 0 24 24",
949
- xmlSpace: "preserve",
950
- focusable: "false",
951
- fill: "currentColor",
952
- width: 16,
953
- height: 16,
954
- "aria-labelledby": titleId,
955
- ...props,
956
- children: [
957
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
958
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 2H4c-.6 0-1 .4-1 1v18c0 .3.2.7.5.9.3.2.7.2 1 0l1.5-.8 1.6.8c.3.1.6.1.9 0l1.6-.8 1.6.8c.3.1.6.1.9 0l1.6-.8 1.6.8c.3.1.6.1.9 0l1.6-.8 1.6.8c-.2.1-.1.1.1.1s.4 0 .5-.1c.3-.2.5-.5.5-.9V3c0-.6-.4-1-1-1zm-1 17.4-.6-.3c-.3-.1-.6-.1-.9 0l-1.5.8-1.6-.8c-.1-.1-.2-.1-.4-.1s-.3 0-.4.1l-1.6.8-1.6-.8c-.3-.1-.6-.1-.9 0l-1.5.8-1.6-.8c-.3-.1-.6-.1-.9 0l-.5.3V4h14v15.4z" }),
959
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 12h8c.6 0 1-.4 1-1s-.4-1-1-1H8c-.6 0-1 .4-1 1s.4 1 1 1zm0-4h8c.6 0 1-.4 1-1s-.4-1-1-1H8c-.6 0-1 .4-1 1s.4 1 1 1zm8 6h-3c-.6 0-1 .4-1 1s.4 1 1 1h3c.6 0 1-.4 1-1s-.4-1-1-1z" })
960
- ]
961
- }
962
- );
963
- const IconInvoice = (props) => {
964
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
965
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconInvoiceSvg, ...iconProps });
966
- };
967
- const IconLanguageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
968
- "svg",
969
- {
970
- xmlns: "http://www.w3.org/2000/svg",
971
- width: 16,
972
- height: 16,
973
- viewBox: "0 0 24 24",
974
- focusable: "false",
975
- fill: "currentColor",
976
- "aria-labelledby": titleId,
977
- ...props,
978
- children: [
979
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
980
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.784 18.593a10.917 10.917 0 0 0 0-13.186.995.995 0 0 0-.094-.126 10.96 10.96 0 0 0-17.38 0 .99.99 0 0 0-.094.126 10.917 10.917 0 0 0 0 13.186.988.988 0 0 0 .094.126 10.96 10.96 0 0 0 17.38 0 .993.993 0 0 0 .094-.126ZM4.522 7h2.922a14.936 14.936 0 0 0-.902 4H3.06a8.942 8.942 0 0 1 1.463-4Zm12.936 4a14.936 14.936 0 0 0-.902-4h2.922a8.942 8.942 0 0 1 1.463 4ZM4.522 17a8.942 8.942 0 0 1-1.463-4h3.483a14.936 14.936 0 0 0 .902 4Zm4.028-4h6.9a13.453 13.453 0 0 1-1.058 4H9.608a13.453 13.453 0 0 1-1.058-4Zm0-2a13.453 13.453 0 0 1 1.058-4h4.784a13.453 13.453 0 0 1 1.058 4Zm7.12-6a20.175 20.175 0 0 0-.882-1.553A8.988 8.988 0 0 1 17.645 5ZM12 3l.028.001A17.948 17.948 0 0 1 13.382 5h-2.764a17.948 17.948 0 0 1 1.354-1.999ZM8.33 5H6.355a8.988 8.988 0 0 1 2.857-1.553c-.287.456-.587.977-.882 1.553Zm0 14c.295.576.595 1.097.882 1.553A8.988 8.988 0 0 1 6.355 19ZM12 21l-.028-.001A17.948 17.948 0 0 1 10.618 19h2.764a17.948 17.948 0 0 1-1.354 1.999Zm3.67-2h1.975a8.988 8.988 0 0 1-2.857 1.553c.287-.456.587-.977.882-1.553Zm.886-2a14.936 14.936 0 0 0 .902-4h3.483a8.942 8.942 0 0 1-1.463 4Z" })
981
- ]
982
- }
983
- );
984
- const IconLanguage = (props) => {
985
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
986
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconLanguageSvg, ...iconProps });
987
- };
988
- const IconLinkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
989
- "svg",
990
- {
991
- xmlns: "http://www.w3.org/2000/svg",
992
- width: 16,
993
- height: 16,
994
- viewBox: "0 0 24 24",
995
- focusable: "false",
996
- fill: "currentColor",
997
- "aria-labelledby": titleId,
998
- ...props,
999
- children: [
1000
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1001
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.848 17.334a6.214 6.214 0 0 1-1.476-.2L9.44 19.066a3.188 3.188 0 1 1-4.51-4.508l2.962-2.961a3.208 3.208 0 0 1 4.509 0 1 1 0 1 0 1.414-1.414 5.205 5.205 0 0 0-6.832-.413 5.102 5.102 0 0 0-.505.413l-2.961 2.96a5.188 5.188 0 0 0 7.337 7.337l3.293-3.293a6.226 6.226 0 0 1-1.3.147Z" }),
1002
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.15 6.664a6.214 6.214 0 0 1 1.476.2l1.932-1.932a3.188 3.188 0 1 1 4.508 4.508l-2.96 2.961a3.208 3.208 0 0 1-4.51 0 1 1 0 0 0-1.413 1.414 5.205 5.205 0 0 0 6.831.413 5.101 5.101 0 0 0 .506-.413l2.96-2.96a5.188 5.188 0 0 0-7.336-7.337L9.85 6.812a6.226 6.226 0 0 1 1.298-.148Z" })
1003
- ]
1004
- }
1005
- );
1006
- const IconLink = (props) => {
1007
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1008
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconLinkSvg, ...iconProps });
1009
- };
1010
- const IconLinkBrokenSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1011
- "svg",
1012
- {
1013
- xmlns: "http://www.w3.org/2000/svg",
1014
- width: 16,
1015
- height: 16,
1016
- viewBox: "0 0 24 24",
1017
- focusable: "false",
1018
- fill: "currentColor",
1019
- "aria-labelledby": titleId,
1020
- ...props,
1021
- children: [
1022
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1023
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.848 17.334a6.214 6.214 0 0 1-1.476-.2L9.44 19.066a3.188 3.188 0 1 1-4.51-4.508l2.962-2.961a3.208 3.208 0 0 1 4.509 0 1 1 0 1 0 1.414-1.414 5.205 5.205 0 0 0-6.832-.413 5.102 5.102 0 0 0-.505.413l-2.961 2.96a5.188 5.188 0 0 0 7.337 7.337l3.293-3.293a6.226 6.226 0 0 1-1.3.147Z" }),
1024
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.15 6.664a6.214 6.214 0 0 1 1.476.2l1.932-1.932a3.188 3.188 0 1 1 4.508 4.508l-2.96 2.961a3.208 3.208 0 0 1-4.51 0 1 1 0 0 0-1.413 1.414 5.205 5.205 0 0 0 6.831.413 5.101 5.101 0 0 0 .506-.413l2.96-2.96a5.188 5.188 0 0 0-7.336-7.337L9.85 6.812a6.226 6.226 0 0 1 1.298-.148Zm-5.736-.25a.997.997 0 0 1-.707-.293L3.293 4.707a1 1 0 0 1 1.414-1.414l1.414 1.414a1 1 0 0 1-.707 1.707ZM3.736 9.321a.994.994 0 0 1-.26-.034l-1.93-.517a1 1 0 0 1 .518-1.932l1.931.517a1 1 0 0 1-.258 1.966ZM8.32 4.735a.999.999 0 0 1-.965-.74l-.517-1.933a1 1 0 0 1 1.932-.517l.517 1.932a1 1 0 0 1-.967 1.258Z" })
1025
- ]
1026
- }
1027
- );
1028
- const IconLinkBroken = (props) => {
1029
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1030
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconLinkBrokenSvg, ...iconProps });
1031
- };
1032
- const IconListSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1033
- "svg",
1034
- {
1035
- xmlns: "http://www.w3.org/2000/svg",
1036
- viewBox: "0 0 24 24",
1037
- xmlSpace: "preserve",
1038
- focusable: "false",
1039
- fill: "currentColor",
1040
- width: 16,
1041
- height: 16,
1042
- "aria-labelledby": titleId,
1043
- ...props,
1044
- children: [
1045
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1046
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 8h10c.6 0 1-.4 1-1s-.4-1-1-1H9c-.6 0-1 .4-1 1s.4 1 1 1zm10 3H9c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1zm0 5H9c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1z" }),
1047
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 5, cy: 7, r: 1 }),
1048
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 5, cy: 12, r: 1 }),
1049
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 5, cy: 17, r: 1 })
1050
- ]
1051
- }
1052
- );
1053
- const IconList = (props) => {
1054
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1055
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconListSvg, ...iconProps });
1056
- };
1057
- const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1058
- "svg",
1059
- {
1060
- xmlns: "http://www.w3.org/2000/svg",
1061
- viewBox: "0 0 24 24",
1062
- xmlSpace: "preserve",
1063
- focusable: "false",
1064
- fill: "currentColor",
1065
- width: 16,
1066
- height: 16,
1067
- "aria-labelledby": titleId,
1068
- ...props,
1069
- children: [
1070
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1071
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C7.6 1 4 4.6 4 9c0 4.1 6.5 12.6 7.2 13.6.2.2.5.4.8.4s.6-.1.8-.4c.7-1 7.2-9.5 7.2-13.6 0-4.4-3.6-8-8-8zm0 19.3c-2.2-3-6-8.8-6-11.3 0-3.3 2.7-6 6-6s6 2.7 6 6c0 2.5-3.8 8.3-6 11.3z" }),
1072
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 5c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z" })
1073
- ]
1074
- }
1075
- );
1076
- const IconLocation = (props) => {
1077
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1078
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconLocationSvg, ...iconProps });
1079
- };
1080
- const IconMailSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1081
- "svg",
1082
- {
1083
- xmlns: "http://www.w3.org/2000/svg",
1084
- viewBox: "0 0 24 24",
1085
- xmlSpace: "preserve",
1086
- focusable: "false",
1087
- fill: "currentColor",
1088
- width: 16,
1089
- height: 16,
1090
- "aria-labelledby": titleId,
1091
- ...props,
1092
- children: [
1093
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1094
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 6.8C21.9 5.2 20.6 4 19 4H5C3.4 4 2.1 5.2 2 6.8V17c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3V6.8zM5 6h14c.4 0 .7.2.9.5L12 11.8 4.1 6.5c.2-.3.5-.5.9-.5zm14 12H5c-.6 0-1-.4-1-1V8.9l7.4 5c.2.1.4.2.6.2s.4-.1.6-.2l7.4-5V17c0 .6-.4 1-1 1z" })
1095
- ]
1096
- }
1097
- );
1098
- const IconMail = (props) => {
1099
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1100
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconMailSvg, ...iconProps });
1101
- };
1102
- const IconMessageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1103
- "svg",
1104
- {
1105
- xmlns: "http://www.w3.org/2000/svg",
1106
- width: 16,
1107
- height: 16,
1108
- viewBox: "0 0 24 24",
1109
- focusable: "false",
1110
- fill: "currentColor",
1111
- "aria-labelledby": titleId,
1112
- ...props,
1113
- children: [
1114
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1115
- /* @__PURE__ */ jsxRuntime.jsx(
1116
- "path",
1117
- {
1118
- d: "M12 3a9 9 0 0 0-7.605 13.815L3 21l4.909-.982A9 9 0 1 0 12 3Z",
1119
- fill: "none",
1120
- stroke: "currentColor",
1121
- strokeLinecap: "round",
1122
- strokeLinejoin: "round",
1123
- strokeWidth: 2
1124
- }
1125
- )
1126
- ]
1127
- }
1128
- );
1129
- const IconMessage = (props) => {
1130
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1131
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconMessageSvg, ...iconProps });
1132
- };
1133
- const IconMinusSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1134
- "svg",
1135
- {
1136
- xmlns: "http://www.w3.org/2000/svg",
1137
- viewBox: "0 0 24 24",
1138
- xmlSpace: "preserve",
1139
- focusable: "false",
1140
- fill: "currentColor",
1141
- width: 16,
1142
- height: 16,
1143
- "aria-labelledby": titleId,
1144
- ...props,
1145
- children: [
1146
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1147
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 11H6c-.6 0-1 .4-1 1s.4 1 1 1h12c.6 0 1-.4 1-1s-.4-1-1-1z" })
1148
- ]
1149
- }
1150
- );
1151
- const IconMinus = (props) => {
1152
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1153
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconMinusSvg, ...iconProps });
1154
- };
1155
- const IconMobileSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1156
- "svg",
1157
- {
1158
- xmlns: "http://www.w3.org/2000/svg",
1159
- width: 16,
1160
- height: 16,
1161
- viewBox: "0 0 24 24",
1162
- focusable: "false",
1163
- fill: "currentColor",
1164
- "aria-labelledby": titleId,
1165
- ...props,
1166
- children: [
1167
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1168
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.71 16.29a1.047 1.047 0 0 0-1.42 0 1.029 1.029 0 0 0-.21.33.832.832 0 0 0-.08.38.951.951 0 0 0 .29.7.96.96 0 0 0 .71.3 1 1 0 0 0 .38-.08 1.012 1.012 0 0 0 .33-.22.955.955 0 0 0 .29-.7 1 1 0 0 0-.08-.38 1.029 1.029 0 0 0-.21-.33Z" }),
1169
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.286 2H7.714A2.761 2.761 0 0 0 5 4.8v14.4A2.761 2.761 0 0 0 7.714 22h8.572A2.761 2.761 0 0 0 19 19.2V4.8A2.761 2.761 0 0 0 16.286 2ZM17 19.2a.761.761 0 0 1-.714.8H7.714A.761.761 0 0 1 7 19.2V4.8a.761.761 0 0 1 .714-.8h8.572a.761.761 0 0 1 .714.8Z" })
1170
- ]
1171
- }
1172
- );
1173
- const IconMobile = (props) => {
1174
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1175
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconMobileSvg, ...iconProps });
1176
- };
1177
- const IconMoneySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1178
- "svg",
1179
- {
1180
- xmlns: "http://www.w3.org/2000/svg",
1181
- viewBox: "0 0 24 24",
1182
- focusable: "false",
1183
- fill: "currentColor",
1184
- width: 16,
1185
- height: 16,
1186
- "aria-labelledby": titleId,
1187
- ...props,
1188
- children: [
1189
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1190
- /* @__PURE__ */ jsxRuntime.jsx(
1191
- "path",
1192
- {
1193
- fill: "none",
1194
- d: "M19 7H5a2 2 0 0 1-2 2v6a2 2 0 0 1 2 2h14a2 2 0 0 1 2-2V9a2 2 0 0 1-2-2Z"
1195
- }
1196
- ),
1197
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.945 7.45a3 3 0 0 0-2.396-2.395A2.988 2.988 0 0 0 20 5H4c-.188 0-.37.022-.55.055a3 3 0 0 0-2.395 2.396A2.988 2.988 0 0 0 1 8v8c0 .188.022.37.055.55a3 3 0 0 0 2.396 2.395c.178.033.361.055.549.055h16c.188 0 .37-.022.55-.055a3 3 0 0 0 2.395-2.396c.033-.178.055-.36.055-.549V8c0-.188-.022-.37-.055-.55ZM21 15a2 2 0 0 0-2 2H5a2 2 0 0 0-2-2V9a2 2 0 0 0 2-2h14a2 2 0 0 0 2 2v6Z" }),
1198
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16c-2.206 0-4-1.794-4-4s1.794-4 4-4 4 1.794 4 4-1.794 4-4 4Zm0-6c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2Z" })
1199
- ]
1200
- }
1201
- );
1202
- const IconMoney = (props) => {
1203
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1204
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconMoneySvg, ...iconProps });
1205
- };
1206
- const IconNewWindowSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1207
- "svg",
1208
- {
1209
- xmlns: "http://www.w3.org/2000/svg",
1210
- viewBox: "0 0 24 24",
1211
- xmlSpace: "preserve",
1212
- focusable: "false",
1213
- fill: "currentColor",
1214
- width: 16,
1215
- height: 16,
1216
- "aria-labelledby": titleId,
1217
- ...props,
1218
- children: [
1219
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1220
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 11c-.6 0-1 .4-1 1v5c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h5c.6 0 1-.4 1-1s-.4-1-1-1H7C5.3 4 4 5.3 4 7v10c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-5c0-.6-.4-1-1-1z" }),
1221
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 3v-.4l-.1-.1c0-.1-.1-.1-.1-.2 0 0-.1 0-.1-.1-.1 0-.1-.1-.2-.1h-4.3c-.6 0-1 .4-1 1s.4 1 1 1H18l-6.5 7.3c-.4.4-.3 1 .1 1.4.2.2.4.3.7.3.3 0 .6-.1.7-.3l6.3-7V7c0 .6.4 1 1 1s1-.4 1-1L21 3z" })
1222
- ]
1223
- }
1224
- );
1225
- const IconNewWindow = (props) => {
1226
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1227
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconNewWindowSvg, ...iconProps });
1228
- };
1229
- const IconNoteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1230
- "svg",
1231
- {
1232
- xmlns: "http://www.w3.org/2000/svg",
1233
- viewBox: "0 0 24 24",
1234
- xmlSpace: "preserve",
1235
- focusable: "false",
1236
- fill: "currentColor",
1237
- width: 16,
1238
- height: 16,
1239
- "aria-labelledby": titleId,
1240
- ...props,
1241
- children: [
1242
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1243
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 11H8c-.6 0-1 .4-1 1s.4 1 1 1h5c.6 0 1-.4 1-1s-.4-1-1-1zm-2 4H8c-.6 0-1 .4-1 1s.4 1 1 1h3c.6 0 1-.4 1-1s-.4-1-1-1z" }),
1244
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.9 8.6c-.1-.1-.1-.2-.2-.3l-5-5c-.1-.1-.2-.2-.3-.2-.1-.1-.3-.1-.4-.1H6C4.3 3 3 4.3 3 6v12c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3V9c0-.1 0-.3-.1-.4zM16 6.4 17.6 8H16V6.4zM18 19H6c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h8v4c0 .6.4 1 1 1h4v8c0 .6-.4 1-1 1z" })
1245
- ]
1246
- }
1247
- );
1248
- const IconNote = (props) => {
1249
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1250
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconNoteSvg, ...iconProps });
1251
- };
1252
- const IconNotificationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1253
- "svg",
1254
- {
1255
- xmlns: "http://www.w3.org/2000/svg",
1256
- width: 16,
1257
- height: 16,
1258
- viewBox: "0 0 24 24",
1259
- focusable: "false",
1260
- fill: "currentColor",
1261
- "aria-labelledby": titleId,
1262
- ...props,
1263
- children: [
1264
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1265
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 16v-6a8.018 8.018 0 0 0-5.45-7.577 2.996 2.996 0 0 0-5.1 0A8.018 8.018 0 0 0 4 10v6a1 1 0 0 0 0 2h16a1 1 0 0 0 0-2ZM6 16v-6a6.008 6.008 0 0 1 4.411-5.78 1.001 1.001 0 0 0 .663-.591.996.996 0 0 1 1.852 0 1.001 1.001 0 0 0 .663.592A6.008 6.008 0 0 1 18 10v6Zm6 6a2.991 2.991 0 0 0 2.816-2H9.184A2.991 2.991 0 0 0 12 22Z" })
1266
- ]
1267
- }
1268
- );
1269
- const IconNotification = (props) => {
1270
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1271
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconNotificationSvg, ...iconProps });
1272
- };
1273
- const IconOverflowSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1274
- "svg",
1275
- {
1276
- xmlns: "http://www.w3.org/2000/svg",
1277
- viewBox: "0 0 24 24",
1278
- xmlSpace: "preserve",
1279
- focusable: "false",
1280
- fill: "currentColor",
1281
- width: 16,
1282
- height: 16,
1283
- "aria-labelledby": titleId,
1284
- ...props,
1285
- children: [
1286
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1287
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 4, r: 2 }),
1288
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 20, r: 2 }),
1289
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 12, r: 2 })
1290
- ]
1291
- }
1292
- );
1293
- const IconOverflow = (props) => {
1294
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1295
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconOverflowSvg, ...iconProps });
1296
- };
1297
- const IconPeopleSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1298
- "svg",
1299
- {
1300
- xmlns: "http://www.w3.org/2000/svg",
1301
- width: 16,
1302
- height: 16,
1303
- viewBox: "0 0 24 24",
1304
- focusable: "false",
1305
- fill: "currentColor",
1306
- "aria-labelledby": titleId,
1307
- ...props,
1308
- children: [
1309
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1310
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.772 4.023c.076-.006.15-.023.228-.023a3 3 0 0 1 0 6c-.078 0-.152-.017-.228-.023a6.529 6.529 0 0 1-1.325 1.751A4.934 4.934 0 0 0 15 12a5 5 0 0 0 0-10 4.934 4.934 0 0 0-1.553.272 6.529 6.529 0 0 1 1.325 1.751ZM17 14h-1.853a6.54 6.54 0 0 1 1.613 2H17a3.003 3.003 0 0 1 3 3v2a1 1 0 0 0 2 0v-2a5.006 5.006 0 0 0-5-5Z" }),
1311
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12a5 5 0 1 1 5-5 5.006 5.006 0 0 1-5 5Zm0-8a3 3 0 1 0 3 3 3.003 3.003 0 0 0-3-3Zm6 18a1 1 0 0 1-1-1v-2a3.003 3.003 0 0 0-3-3H7a3.003 3.003 0 0 0-3 3v2a1 1 0 0 1-2 0v-2a5.006 5.006 0 0 1 5-5h4a5.006 5.006 0 0 1 5 5v2a1 1 0 0 1-1 1Z" })
1312
- ]
1313
- }
1314
- );
1315
- const IconPeople = (props) => {
1316
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1317
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPeopleSvg, ...iconProps });
1318
- };
1319
- const IconPersonAddSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1320
- "svg",
1321
- {
1322
- xmlns: "http://www.w3.org/2000/svg",
1323
- width: 16,
1324
- height: 16,
1325
- viewBox: "0 0 24 24",
1326
- focusable: "false",
1327
- fill: "currentColor",
1328
- "aria-labelledby": titleId,
1329
- ...props,
1330
- children: [
1331
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1332
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12a5 5 0 1 0-5-5 5.006 5.006 0 0 0 5 5Zm0-8a3 3 0 1 1-3 3 3.003 3.003 0 0 1 3-3Zm12 7h-2V9a1 1 0 0 0-2 0v2h-2a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0-2Zm-10 3H7a5.006 5.006 0 0 0-5 5v2a1 1 0 0 0 2 0v-2a3.003 3.003 0 0 1 3-3h4a3.003 3.003 0 0 1 3 3v2a1 1 0 0 0 2 0v-2a5.006 5.006 0 0 0-5-5Z" })
1333
- ]
1334
- }
1335
- );
1336
- const IconPersonAdd = (props) => {
1337
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1338
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPersonAddSvg, ...iconProps });
1339
- };
1340
- const IconPersonVerifiedSvg = ({
1341
- title,
1342
- titleId,
1343
- ...props
1344
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1345
- "svg",
1346
- {
1347
- xmlns: "http://www.w3.org/2000/svg",
1348
- viewBox: "0 0 24 24",
1349
- xmlSpace: "preserve",
1350
- focusable: "false",
1351
- fill: "currentColor",
1352
- width: 16,
1353
- height: 16,
1354
- "aria-labelledby": titleId,
1355
- ...props,
1356
- children: [
1357
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1358
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.4 4.1-8-3c-.2-.1-.5-.1-.7 0l-8 3c-.4.1-.7.5-.7.9v7c0 6.5 8.2 10.7 8.6 10.9.1.1.2.1.4.1s.3 0 .4-.1c.4-.2 8.6-4.4 8.6-10.9V5c0-.4-.3-.8-.6-.9zM19 12c0 4.5-5.4 7.9-7 8.9-1.6-.9-7-4.3-7-8.9V5.7l7-2.6 7 2.6V12z" }),
1359
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.7 11.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l2 2c.2.2.5.3.7.3s.5-.1.7-.3l4-4c.4-.4.4-1 0-1.4s-1-.4-1.4 0L11 12.6l-1.3-1.3z" })
1360
- ]
1361
- }
1362
- );
1363
- const IconPersonVerified = (props) => {
1364
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1365
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPersonVerifiedSvg, ...iconProps });
1366
- };
1367
- const IconPhoneSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1368
- "svg",
1369
- {
1370
- xmlns: "http://www.w3.org/2000/svg",
1371
- width: 16,
1372
- height: 16,
1373
- viewBox: "0 0 24 24",
1374
- focusable: "false",
1375
- fill: "currentColor",
1376
- "aria-labelledby": titleId,
1377
- ...props,
1378
- children: [
1379
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1380
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.338 20.999a2.45 2.45 0 0 1-.292-.017A17.205 17.205 0 0 1 3.018 5.954a2.63 2.63 0 0 1 .655-2.047A2.723 2.723 0 0 1 5.699 3h3.29a1 1 0 0 1 .894.553l1.694 3.387a1 1 0 0 1-.062 1.002l-1.33 1.995a14.439 14.439 0 0 0 3.754 3.792l1.119-1.119a1.003 1.003 0 0 1 1.078-.221l4.235 1.694a1 1 0 0 1 .629.929V18.3a2.723 2.723 0 0 1-.907 2.026 2.641 2.641 0 0 1-1.755.672ZM5.699 5a.717.717 0 0 0-.534.24.63.63 0 0 0-.161.488 15.191 15.191 0 0 0 13.268 13.268.65.65 0 0 0 .489-.161.717.717 0 0 0 .239-.534v-2.613l-2.994-1.197-1.229 1.228a.998.998 0 0 1-1.236.141 16.495 16.495 0 0 1-5.402-5.403.998.998 0 0 1 .017-1.082l1.372-2.059L8.37 5Z" })
1381
- ]
1382
- }
1383
- );
1384
- const IconPhone = (props) => {
1385
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1386
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPhoneSvg, ...iconProps });
1387
- };
1388
- const IconPlatformAndroidSvg = ({
1389
- title,
1390
- titleId,
1391
- ...props
1392
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1393
- "svg",
1394
- {
1395
- xmlns: "http://www.w3.org/2000/svg",
1396
- width: 16,
1397
- height: 16,
1398
- viewBox: "0 0 24 24",
1399
- focusable: "false",
1400
- fill: "currentColor",
1401
- "aria-labelledby": titleId,
1402
- ...props,
1403
- children: [
1404
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1405
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.09 10.255 1.674-2.891a.577.577 0 0 0-.237-.773.58.58 0 0 0-.754.2l-1.71 2.945a10.42 10.42 0 0 0-8.127 0L6.227 6.791a.584.584 0 0 0-.79-.182.58.58 0 0 0-.2.755l1.672 2.89A9.8 9.8 0 0 0 2 18h20a9.8 9.8 0 0 0-4.91-7.745ZM7.456 15.5a1.137 1.137 0 1 1 0-2.274 1.137 1.137 0 0 1 0 2.274Zm9.09 0a1.137 1.137 0 1 1 .001-2.274 1.137 1.137 0 0 1 0 2.274Z" })
1406
- ]
1407
- }
1408
- );
1409
- const IconPlatformAndroid = (props) => {
1410
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1411
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPlatformAndroidSvg, ...iconProps });
1412
- };
1413
- const IconPlatformAppleSvg = ({
1414
- title,
1415
- titleId,
1416
- ...props
1417
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1418
- "svg",
1419
- {
1420
- xmlns: "http://www.w3.org/2000/svg",
1421
- width: 16,
1422
- height: 16,
1423
- viewBox: "0 0 24 24",
1424
- focusable: "false",
1425
- fill: "currentColor",
1426
- "aria-labelledby": titleId,
1427
- ...props,
1428
- children: [
1429
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1430
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.957 8.241c-.104.081-1.948 1.12-1.948 3.43 0 2.67 2.346 3.616 2.416 3.64-.01.057-.373 1.294-1.237 2.554-.77 1.109-1.575 2.216-2.799 2.216s-1.54-.711-2.952-.711c-1.377 0-1.867.734-2.987.734s-1.9-1.026-2.799-2.286c-1.04-1.48-1.881-3.779-1.881-5.96 0-3.5 2.275-5.356 4.515-5.356 1.19 0 2.181.781 2.929.781.71 0 1.82-.828 3.173-.828.513 0 2.357.047 3.57 1.786Zm-4.212-3.267c.56-.665.955-1.586.955-2.508 0-.128-.01-.257-.034-.362-.91.034-1.994.607-2.648 1.365-.513.583-.992 1.505-.992 2.439 0 .14.024.28.035.326.057.01.15.023.244.023.818 0 1.846-.547 2.44-1.283Z" })
1431
- ]
1432
- }
1433
- );
1434
- const IconPlatformApple = (props) => {
1435
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1436
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPlatformAppleSvg, ...iconProps });
1437
- };
1438
- const IconPositiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1439
- "svg",
1440
- {
1441
- xmlns: "http://www.w3.org/2000/svg",
1442
- viewBox: "0 0 24 24",
1443
- xmlSpace: "preserve",
1444
- focusable: "false",
1445
- fill: "currentColor",
1446
- width: 16,
1447
- height: 16,
1448
- "aria-labelledby": titleId,
1449
- ...props,
1450
- children: [
1451
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1452
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9z" }),
1453
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.3 9.3 11 13.6l-1.3-1.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l2 2c.2.2.5.3.7.3s.5-.1.7-.3l5-5c.4-.4.4-1 0-1.4s-1-.4-1.4 0z" })
1454
- ]
1455
- }
1456
- );
1457
- const IconPositive = (props) => {
1458
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1459
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPositiveSvg, ...iconProps });
1460
- };
1461
- const IconPrintSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1462
- "svg",
1463
- {
1464
- xmlns: "http://www.w3.org/2000/svg",
1465
- viewBox: "0 0 24 24",
1466
- xmlSpace: "preserve",
1467
- focusable: "false",
1468
- fill: "currentColor",
1469
- width: 16,
1470
- height: 16,
1471
- "aria-labelledby": titleId,
1472
- ...props,
1473
- children: [
1474
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1475
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 8h-1V3c0-.6-.4-1-1-1H7c-.6 0-1 .4-1 1v5H5c-1.7 0-3 1.3-3 3v4c0 1.7 1.3 3 3 3v3c0 .6.4 1 1 1h12c.6 0 1-.4 1-1v-3c1.7 0 3-1.3 3-3v-4c0-1.7-1.3-3-3-3zM8 4h8v4H8V4zm9 16H7v-4h10v4zm3-5c0 .6-.4 1-1 1v-1c0-.6-.4-1-1-1H6c-.6 0-1 .4-1 1v1c-.6 0-1-.4-1-1v-4c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v4z" })
1476
- ]
1477
- }
1478
- );
1479
- const IconPrint = (props) => {
1480
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1481
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPrintSvg, ...iconProps });
1482
- };
1483
- const IconProfileSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1484
- "svg",
1485
- {
1486
- xmlns: "http://www.w3.org/2000/svg",
1487
- width: 16,
1488
- height: 16,
1489
- viewBox: "0 0 24 24",
1490
- focusable: "false",
1491
- fill: "currentColor",
1492
- "aria-labelledby": titleId,
1493
- ...props,
1494
- children: [
1495
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1496
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12a5 5 0 1 1 5-5 5.006 5.006 0 0 1-5 5Zm0-8a3 3 0 1 0 3 3 3.003 3.003 0 0 0-3-3Zm6 18a1 1 0 0 1-1-1v-2a3.003 3.003 0 0 0-3-3h-4a3.003 3.003 0 0 0-3 3v2a1 1 0 0 1-2 0v-2a5.006 5.006 0 0 1 5-5h4a5.006 5.006 0 0 1 5 5v2a1 1 0 0 1-1 1Z" })
1497
- ]
1498
- }
1499
- );
1500
- const IconProfile = (props) => {
1501
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1502
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconProfileSvg, ...iconProps });
1503
- };
1504
- const IconPromoteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1505
- "svg",
1506
- {
1507
- xmlns: "http://www.w3.org/2000/svg",
1508
- viewBox: "0 0 24 24",
1509
- xmlSpace: "preserve",
1510
- focusable: "false",
1511
- fill: "currentColor",
1512
- width: 16,
1513
- height: 16,
1514
- "aria-labelledby": titleId,
1515
- ...props,
1516
- children: [
1517
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1518
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 10h1c.6 0 1-.4 1-1s-.4-1-1-1H6V7c0-.6-.4-1-1-1s-1 .4-1 1v1H3c-.6 0-1 .4-1 1s.4 1 1 1h1v1c0 .6.4 1 1 1s1-.4 1-1v-1zm5 8h-1v-1c0-.6-.4-1-1-1s-1 .4-1 1v1H7c-.6 0-1 .4-1 1s.4 1 1 1h1v1c0 .6.4 1 1 1s1-.4 1-1v-1h1c.6 0 1-.4 1-1s-.4-1-1-1zm10-7c-2.2 0-4-3.2-4-7 0-.6-.4-1-1-1s-1 .4-1 1c0 3.8-1.8 7-4 7-.6 0-1 .4-1 1s.4 1 1 1c2.2 0 4 3.2 4 7 0 .6.4 1 1 1s1-.4 1-1c0-3.8 1.8-7 4-7 .6 0 1-.4 1-1s-.4-1-1-1zm-5 4c-.6-1.3-1.3-2.3-2.2-3 .9-.7 1.7-1.7 2.2-3 .6 1.3 1.3 2.3 2.2 3-.9.7-1.6 1.7-2.2 3z" })
1519
- ]
1520
- }
1521
- );
1522
- const IconPromote = (props) => {
1523
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1524
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconPromoteSvg, ...iconProps });
1525
- };
1526
- const IconRecommendedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1527
- "svg",
1528
- {
1529
- xmlns: "http://www.w3.org/2000/svg",
1530
- viewBox: "0 0 24 24",
1531
- xmlSpace: "preserve",
1532
- focusable: "false",
1533
- fill: "currentColor",
1534
- width: 16,
1535
- height: 16,
1536
- "aria-labelledby": titleId,
1537
- ...props,
1538
- children: [
1539
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1540
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 8c0-3.9-3.1-7-7-7S5 4.1 5 8c0 2 .8 3.8 2.2 5.1L6 21.9c-.1.4.1.8.4 1 .3.2.7.2 1.1 0l4.5-2.7 4.5 2.7c.1.1.3.1.5.1s.4-.1.5-.2c.3-.2.5-.6.4-1L16.7 13c1.5-1.2 2.3-3 2.3-5zM7 8c0-2.8 2.2-5 5-5s5 2.2 5 5-2.2 5-5 5-5-2.2-5-5zm8.7 12.1-3.2-1.9c-.3-.2-.7-.2-1 0l-3.2 1.9.7-5.8c.9.4 1.9.7 3 .7s2.1-.2 3-.7l.7 5.8z" })
1541
- ]
1542
- }
1543
- );
1544
- const IconRecommended = (props) => {
1545
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1546
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconRecommendedSvg, ...iconProps });
1547
- };
1548
- const IconRefreshSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1549
- "svg",
1550
- {
1551
- xmlns: "http://www.w3.org/2000/svg",
1552
- width: 16,
1553
- height: 16,
1554
- viewBox: "0 0 24 24",
1555
- focusable: "false",
1556
- fill: "currentColor",
1557
- "aria-labelledby": titleId,
1558
- ...props,
1559
- children: [
1560
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1561
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.607 10.29a1 1 0 0 0-1.414 0l-.304.304A9.995 9.995 0 1 0 12 22a1 1 0 0 0 0-2 8 8 0 1 1 7.86-9.457l-.253-.253a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l2-2a1 1 0 0 0 0-1.414Z" })
1562
- ]
1563
- }
1564
- );
1565
- const IconRefresh = (props) => {
1566
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1567
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconRefreshSvg, ...iconProps });
1568
- };
1569
- const IconResumeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1570
- "svg",
1571
- {
1572
- xmlns: "http://www.w3.org/2000/svg",
1573
- viewBox: "0 0 24 24",
1574
- xmlSpace: "preserve",
1575
- focusable: "false",
1576
- fill: "currentColor",
1577
- width: 16,
1578
- height: 16,
1579
- "aria-labelledby": titleId,
1580
- ...props,
1581
- children: [
1582
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1583
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 2H7C5.3 2 4 3.3 4 5v14c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3V5c0-1.7-1.3-3-3-3zm1 17c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h10c.6 0 1 .4 1 1v14z" }),
1584
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 10, cy: 8, r: 2 }),
1585
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 12H9c-.6 0-1 .4-1 1s.4 1 1 1h6c.6 0 1-.4 1-1s-.4-1-1-1zm-2 4H9c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1z" })
1586
- ]
1587
- }
1588
- );
1589
- const IconResume = (props) => {
1590
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1591
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconResumeSvg, ...iconProps });
1592
- };
1593
- const IconSearchSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1594
- "svg",
1595
- {
1596
- xmlns: "http://www.w3.org/2000/svg",
1597
- viewBox: "0 0 24 24",
1598
- xmlSpace: "preserve",
1599
- focusable: "false",
1600
- fill: "currentColor",
1601
- width: 16,
1602
- height: 16,
1603
- "aria-labelledby": titleId,
1604
- ...props,
1605
- children: [
1606
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1607
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.7 20.3 18 16.6c1.2-1.5 2-3.5 2-5.6 0-5-4-9-9-9s-9 4-9 9 4 9 9 9c2.1 0 4.1-.7 5.6-2l3.7 3.7c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4zM4 11c0-3.9 3.1-7 7-7s7 3.1 7 7c0 1.9-.8 3.7-2 4.9-1.3 1.3-3 2-4.9 2-4 .1-7.1-3-7.1-6.9z" })
1608
- ]
1609
- }
1610
- );
1611
- const IconSearch = (props) => {
1612
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1613
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSearchSvg, ...iconProps });
1614
- };
1615
- const IconSecuritySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1616
- "svg",
1617
- {
1618
- xmlns: "http://www.w3.org/2000/svg",
1619
- viewBox: "0 0 24 24",
1620
- xmlSpace: "preserve",
1621
- focusable: "false",
1622
- fill: "currentColor",
1623
- width: 16,
1624
- height: 16,
1625
- "aria-labelledby": titleId,
1626
- ...props,
1627
- children: [
1628
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1629
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 10V7c0-2.8-2.2-5-5-5S7 4.2 7 7v3c-1.7 0-3 1.3-3 3v6c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-6c0-1.7-1.3-3-3-3zM9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v3H9V7zm9 12c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1v-6c0-.6.4-1 1-1h10c.6 0 1 .4 1 1v6z" })
1630
- ]
1631
- }
1632
- );
1633
- const IconSecurity = (props) => {
1634
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1635
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSecuritySvg, ...iconProps });
1636
- };
1637
- const IconSendSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1638
- "svg",
1639
- {
1640
- xmlns: "http://www.w3.org/2000/svg",
1641
- viewBox: "0 0 24 24",
1642
- xmlSpace: "preserve",
1643
- focusable: "false",
1644
- fill: "currentColor",
1645
- width: 16,
1646
- height: 16,
1647
- "aria-labelledby": titleId,
1648
- ...props,
1649
- children: [
1650
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1651
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 3c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.2-.2-.3-.1-.1-.2-.1-.3-.2h-.1c-.1-.1-.2-.1-.3-.1h-.3l-19 6c-.4.2-.6.5-.7.9 0 .4.1.8.5 1l7.8 4.9 4.9 7.8c.2.3.5.5.8.5h.1c.4 0 .7-.3.8-.7l6-19c.1-.2.1-.3.1-.4zm-4.6 2.2-7.5 7.5-5.5-3.4 13-4.1zm-2.7 14.4-3.4-5.5 7.5-7.5-4.1 13z" })
1652
- ]
1653
- }
1654
- );
1655
- const IconSend = (props) => {
1656
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props, {
1657
- verticalCorrection: {
1658
- uppercase: "none",
1659
- lowercase: "up"
1660
- }
1661
- });
1662
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSendSvg, ...iconProps });
1663
- };
1664
- const IconSentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1665
- "svg",
1666
- {
1667
- xmlns: "http://www.w3.org/2000/svg",
1668
- viewBox: "0 0 24 24",
1669
- xmlSpace: "preserve",
1670
- focusable: "false",
1671
- fill: "currentColor",
1672
- width: 16,
1673
- height: 16,
1674
- "aria-labelledby": titleId,
1675
- ...props,
1676
- children: [
1677
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1678
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 8.2V6.4c0-1.1-.9-2-2-2-.5 0-1 .2-1.4.6l-6.3 6.3c-.4.4-.4 1 0 1.4L9.6 19c.8.8 2 .8 2.8 0 .4-.4.6-.9.6-1.4v-1.7c2.5 0 4.9 1.3 6.1 3.6.2.3.5.5.9.5h.2c.4-.1.8-.5.8-1 0-3.3-1.7-9.5-8-10.8zM11.9 14c-.5.1-.9.5-.9 1v2.6L5.4 12 11 6.4V9c0 .5.4.9.9 1 4.1.5 5.8 3.4 6.6 5.7-1.9-1.4-4.3-2-6.6-1.7z" })
1679
- ]
1680
- }
1681
- );
1682
- const IconSent = (props) => {
1683
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1684
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSentSvg, ...iconProps });
1685
- };
1686
- const IconSettingsSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1687
- "svg",
1688
- {
1689
- xmlns: "http://www.w3.org/2000/svg",
1690
- viewBox: "0 0 24 24",
1691
- xmlSpace: "preserve",
1692
- focusable: "false",
1693
- fill: "currentColor",
1694
- width: 16,
1695
- height: 16,
1696
- "aria-labelledby": titleId,
1697
- ...props,
1698
- children: [
1699
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1700
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.3 13.3-.2-.2c-.5-.7-.5-1.5 0-2.2l.2-.2c.6-.8.9-1.7.8-2.7-.2-2.1-2.1-3.6-4.2-3.4h-.3c-.8.1-1.6-.3-1.9-1.1l-.1-.3c-.4-.9-1.1-1.6-2-2-.9-.4-2-.4-2.9-.1-1 .4-1.7 1.1-2.1 2l-.2.4c-.3.8-1.1 1.2-1.9 1.1h-.3c-1-.1-1.9.2-2.7.7-1.6 1.3-2 3.7-.8 5.4l.2.2c.5.6.5 1.5 0 2.2l-.2.2c-.5.8-.8 1.7-.7 2.7.1 1 .6 1.9 1.4 2.6.8.6 1.8.9 2.8.8h.3c.8-.1 1.6.3 1.9 1.1l.1.3c.4.9 1.1 1.6 2 2 .5.2 1 .3 1.5.3s.9-.1 1.4-.3c1-.4 1.7-1.1 2.1-2l.1-.3c.3-.7 1.1-1.2 1.9-1.1h.3c.9.1 1.9-.2 2.7-.7.8-.6 1.4-1.5 1.5-2.5.2-1 0-2.1-.7-2.9zm-1.2 2.6c-.1.5-.3.9-.7 1.2-.4.3-.8.4-1.3.3h-.3c-1.7-.2-3.2.7-3.9 2.3l-.1.3c-.2.5-.6.8-1 1-.5.2-1 .2-1.4 0-.4-.2-.8-.5-.9-.9l-.1-.3c-.6-1.4-2-2.3-3.5-2.3h-.7c-.5.1-1-.1-1.4-.4-.4-.3-.6-.7-.7-1.2 0-.5.1-.9.3-1.3l.2-.2c1-1.4 1-3.2 0-4.5l-.2-.4c-.3-.4-.4-.9-.4-1.4.1-.5.3-.9.7-1.2.4-.2.9-.4 1.3-.3h.3c1.7.2 3.3-.7 4-2.2l.1-.3c.2-.4.6-.8 1-1 .5-.2 1-.2 1.4 0 .4.2.8.5.9.9l.1.3c.7 1.5 2.3 2.4 3.9 2.3h.3c1-.1 1.9.6 2 1.6 0 .5-.1.9-.3 1.3l-.2.2c-1 1.4-1 3.2 0 4.5l.2.2c.3.5.4 1 .4 1.5z" }),
1701
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.7-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.8 2-2 2z" })
1702
- ]
1703
- }
1704
- );
1705
- const IconSettings = (props) => {
1706
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1707
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSettingsSvg, ...iconProps });
1708
- };
1709
- const IconShareSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1710
- "svg",
1711
- {
1712
- xmlns: "http://www.w3.org/2000/svg",
1713
- viewBox: "0 0 24 24",
1714
- xmlSpace: "preserve",
1715
- focusable: "false",
1716
- fill: "currentColor",
1717
- width: 16,
1718
- height: 16,
1719
- "aria-labelledby": titleId,
1720
- ...props,
1721
- children: [
1722
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1723
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.7 11.3 14.4 5c-.4-.4-.9-.6-1.4-.6-1.1 0-2 .9-2 2v1.7C4.7 9.5 3 15.7 3 19c0 .5.3.9.8 1H4c.4 0 .7-.2.9-.5 1.2-2.2 3.6-3.6 6.1-3.6v1.7c0 .5.2 1 .6 1.4.8.8 2 .8 2.8 0l6.3-6.3c.4-.4.4-1 0-1.4zM13 17.6V15c0-.5-.4-.9-.9-1-.4-.1-.8-.1-1.2-.1-1.9 0-3.8.6-5.4 1.8.7-2.4 2.5-5.2 6.6-5.7.5-.1.9-.5.9-1V6.4l5.6 5.6-5.6 5.6z" })
1724
- ]
1725
- }
1726
- );
1727
- const IconShare = (props) => {
1728
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1729
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconShareSvg, ...iconProps });
1730
- };
1731
- const IconSocialFacebookSvg = ({
1732
- title,
1733
- titleId,
1734
- ...props
1735
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1736
- "svg",
1737
- {
1738
- xmlns: "http://www.w3.org/2000/svg",
1739
- viewBox: "0 0 24 24",
1740
- focusable: "false",
1741
- fill: "currentColor",
1742
- width: 16,
1743
- height: 16,
1744
- "aria-labelledby": titleId,
1745
- ...props,
1746
- children: [
1747
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1748
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.016 2c.8 0 2.183.157 2.748.314v3.502a16.218 16.218 0 0 0-1.46-.047c-2.074 0-2.875.786-2.875 2.827v1.367h3.85l-.71 3.863h-3.14V22H8.843v-8.174H6.236V9.963h2.607V8.298C8.843 3.995 10.791 2 15.015 2" })
1749
- ]
1750
- }
1751
- );
1752
- const IconSocialFacebook = (props) => {
1753
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1754
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialFacebookSvg, ...iconProps });
1755
- };
1756
- const IconSocialGitHubSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1757
- "svg",
1758
- {
1759
- xmlns: "http://www.w3.org/2000/svg",
1760
- viewBox: "0 0 24 24",
1761
- focusable: "false",
1762
- fill: "currentColor",
1763
- width: 16,
1764
- height: 16,
1765
- "aria-labelledby": titleId,
1766
- ...props,
1767
- children: [
1768
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1769
- /* @__PURE__ */ jsxRuntime.jsx(
1770
- "path",
1771
- {
1772
- fillRule: "evenodd",
1773
- d: "M12.008 2C6.38 2 1.831 6.583 1.831 12.254c0 4.532 2.915 8.369 6.959 9.727.506.102.69-.221.69-.493 0-.237-.016-1.052-.016-1.901-2.831.611-3.42-1.222-3.42-1.222-.456-1.189-1.13-1.494-1.13-1.494-.927-.628.068-.628.068-.628 1.027.068 1.567 1.052 1.567 1.052.91 1.562 2.376 1.12 2.965.85.085-.663.354-1.121.64-1.376-2.257-.238-4.633-1.12-4.633-5.059 0-1.12.404-2.037 1.045-2.75-.102-.254-.455-1.307.1-2.716 0 0 .86-.272 2.798 1.052a9.786 9.786 0 0 1 2.544-.34c.86 0 1.736.12 2.545.34 1.938-1.324 2.797-1.052 2.797-1.052.556 1.409.202 2.462.101 2.716.657.713 1.045 1.63 1.045 2.75 0 3.939-2.376 4.804-4.65 5.06.37.322.69.933.69 1.9 0 1.375-.017 2.479-.017 2.818 0 .272.186.595.691.493a10.246 10.246 0 0 0 6.96-9.727C22.185 6.584 17.62 2 12.007 2Z"
1774
- }
1775
- )
1776
- ]
1777
- }
1778
- );
1779
- const IconSocialGitHub = (props) => {
1780
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1781
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialGitHubSvg, ...iconProps });
1782
- };
1783
- const IconSocialInstagramSvg = ({
1784
- title,
1785
- titleId,
1786
- ...props
1787
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1788
- "svg",
1789
- {
1790
- xmlns: "http://www.w3.org/2000/svg",
1791
- viewBox: "0 0 24 24",
1792
- focusable: "false",
1793
- fill: "currentColor",
1794
- width: 16,
1795
- height: 16,
1796
- "aria-labelledby": titleId,
1797
- ...props,
1798
- children: [
1799
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1800
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.858 2.07c-1.064.05-1.79.22-2.425.469-.658.256-1.215.6-1.77 1.156a4.9 4.9 0 0 0-1.15 1.773c-.246.637-.413 1.364-.46 2.429-.046 1.066-.057 1.407-.052 4.122.005 2.715.017 3.056.068 4.123.051 1.064.22 1.79.47 2.426.256.657.6 1.214 1.156 1.769a4.904 4.904 0 0 0 1.774 1.15c.636.245 1.363.413 2.428.46 1.066.047 1.407.057 4.122.052 2.716-.005 3.056-.017 4.123-.068 1.064-.05 1.79-.221 2.426-.47a4.901 4.901 0 0 0 1.769-1.156 4.903 4.903 0 0 0 1.15-1.774c.245-.636.413-1.363.46-2.427.046-1.067.057-1.408.052-4.123-.005-2.716-.018-3.056-.068-4.122-.05-1.065-.221-1.79-.47-2.427a4.905 4.905 0 0 0-1.156-1.769 4.894 4.894 0 0 0-1.774-1.15c-.636-.245-1.363-.413-2.427-.46-1.067-.047-1.407-.057-4.123-.052-2.715.005-3.056.017-4.123.068m.117 18.078c-.975-.043-1.504-.205-1.857-.34a3.136 3.136 0 0 1-1.152-.746 3.107 3.107 0 0 1-.75-1.149c-.137-.352-.302-.881-.347-1.856-.05-1.054-.061-1.37-.066-4.04-.005-2.67.004-2.986.05-4.041.042-.974.205-1.504.34-1.857.182-.468.398-.8.747-1.151.35-.351.682-.568 1.148-.75.353-.138.881-.302 1.856-.348 1.055-.05 1.37-.06 4.04-.066 2.67-.005 2.986.004 4.041.05.975.043 1.505.204 1.857.34.467.182.8.397 1.151.747.35.35.568.681.75 1.149.138.351.302.88.348 1.855.05 1.054.062 1.37.066 4.04.006 2.67-.004 2.986-.05 4.04-.043.976-.205 1.505-.34 1.859-.181.467-.398.8-.747 1.15a3.11 3.11 0 0 1-1.148.75c-.352.138-.882.302-1.856.349-1.054.05-1.37.06-4.04.065-2.67.006-2.986-.005-4.04-.05m8.151-13.492a1.2 1.2 0 1 0 2.4-.006 1.2 1.2 0 0 0-2.4.006M6.865 12.01a5.134 5.134 0 1 0 10.269-.02 5.134 5.134 0 0 0-10.269.02m1.802-.004a3.333 3.333 0 1 1 6.666-.011 3.333 3.333 0 0 1-6.666.011" })
1801
- ]
1802
- }
1803
- );
1804
- const IconSocialInstagram = (props) => {
1805
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1806
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialInstagramSvg, ...iconProps });
1807
- };
1808
- const IconSocialLinkedInSvg = ({
1809
- title,
1810
- titleId,
1811
- ...props
1812
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1813
- "svg",
1814
- {
1815
- xmlns: "http://www.w3.org/2000/svg",
1816
- viewBox: "0 0 24 24",
1817
- focusable: "false",
1818
- fill: "currentColor",
1819
- width: 16,
1820
- height: 16,
1821
- "aria-labelledby": titleId,
1822
- ...props,
1823
- children: [
1824
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1825
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.907 18.837H4.982v-9.4h2.925v9.4ZM6.445 8.152a1.694 1.694 0 1 1-.003-3.388 1.694 1.694 0 0 1 .003 3.388ZM18.85 18.837h-2.922v-4.572c0-1.09-.018-2.492-1.518-2.492-1.52 0-1.752 1.188-1.752 2.414v4.65H9.74v-9.4h2.8v1.284h.04c.39-.739 1.343-1.518 2.765-1.518 2.958 0 3.505 1.946 3.505 4.478v5.156ZM21 2H3a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1Z" })
1826
- ]
1827
- }
1828
- );
1829
- const IconSocialLinkedIn = (props) => {
1830
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1831
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialLinkedInSvg, ...iconProps });
1832
- };
1833
- const IconSocialMediumSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1834
- "svg",
1835
- {
1836
- xmlns: "http://www.w3.org/2000/svg",
1837
- viewBox: "0 0 24 24",
1838
- focusable: "false",
1839
- fill: "currentColor",
1840
- width: 16,
1841
- height: 16,
1842
- "aria-labelledby": titleId,
1843
- ...props,
1844
- children: [
1845
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1846
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.41 12c0 3.45-2.779 6.247-6.205 6.247S1 15.45 1 12s2.778-6.247 6.205-6.247S13.409 8.55 13.409 12m6.807 0c0 3.248-1.39 5.88-3.102 5.88S14.01 15.249 14.01 12s1.39-5.88 3.103-5.88 3.102 2.632 3.102 5.88M23 12c0 2.91-.488 5.269-1.091 5.269s-1.091-2.36-1.091-5.269.488-5.269 1.09-5.269S23 9.091 23 12" }),
1847
- /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M22.98 6.104v11.755H1.032V6.104H22.98Z" })
1848
- ]
1849
- }
1850
- );
1851
- const IconSocialMedium = (props) => {
1852
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1853
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialMediumSvg, ...iconProps });
1854
- };
1855
- const IconSocialXSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1856
- "svg",
1857
- {
1858
- xmlns: "http://www.w3.org/2000/svg",
1859
- viewBox: "0 0 24 24",
1860
- focusable: "false",
1861
- fill: "currentColor",
1862
- width: 16,
1863
- height: 16,
1864
- "aria-labelledby": titleId,
1865
- ...props,
1866
- children: [
1867
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1868
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.096 10.55 20.666 3h-2l-5.404 6.21-3.278-5.267L9.397 3H2.399l1.903 3.057 4.88 7.84L3 21h2l5.016-5.763 3 4.82.587.943h6.998l-1.903-3.057-4.602-7.393Zm.618 8.45-3.324-5.341-.834-1.34L6 5h2.286l3.602 5.788.834 1.34L17 19h-2.286Z" })
1869
- ]
1870
- }
1871
- );
1872
- const IconSocialTwitter = (props) => {
1873
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1874
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialXSvg, ...iconProps });
1875
- };
1876
- const IconSocialX = (props) => {
1877
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1878
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialXSvg, ...iconProps });
1879
- };
1880
- const IconSocialYouTubeSvg = ({
1881
- title,
1882
- titleId,
1883
- ...props
1884
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
1885
- "svg",
1886
- {
1887
- xmlns: "http://www.w3.org/2000/svg",
1888
- viewBox: "0 0 24 24",
1889
- focusable: "false",
1890
- fill: "currentColor",
1891
- width: 16,
1892
- height: 16,
1893
- "aria-labelledby": titleId,
1894
- ...props,
1895
- children: [
1896
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1897
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.54 6.705a2.755 2.755 0 0 0-1.945-1.945C18.88 4.3 12 4.3 12 4.3s-6.88 0-8.595.46A2.755 2.755 0 0 0 1.46 6.705C1 8.42 1 12 1 12s0 3.58.46 5.295a2.755 2.755 0 0 0 1.945 1.945C5.12 19.7 12 19.7 12 19.7s6.88 0 8.595-.46a2.755 2.755 0 0 0 1.945-1.945C23 15.58 23 12 23 12s0-3.58-.46-5.295ZM9.8 15.3V8.7l5.716 3.3L9.8 15.3Z" })
1898
- ]
1899
- }
1900
- );
1901
- const IconSocialYouTube = (props) => {
1902
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1903
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSocialYouTubeSvg, ...iconProps });
1904
- };
1905
- const IconSortSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1906
- "svg",
1907
- {
1908
- xmlns: "http://www.w3.org/2000/svg",
1909
- viewBox: "0 0 24 24",
1910
- focusable: "false",
1911
- fill: "currentColor",
1912
- width: 16,
1913
- height: 16,
1914
- "aria-labelledby": titleId,
1915
- ...props,
1916
- children: [
1917
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1918
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.707 7.293-3-3a1 1 0 0 0-1.414 0l-3 3a1 1 0 1 0 1.414 1.414L7 7.414V15a1 1 0 1 0 2 0V7.414l1.293 1.293a.997.997 0 0 0 1.414 0 1 1 0 0 0 0-1.414Zm8 8a1 1 0 0 0-1.414 0L17 16.586V10a1 1 0 1 0-2 0v6.586l-1.293-1.293a1 1 0 1 0-1.414 1.414l3 3a.997.997 0 0 0 1.414 0l3-3a1 1 0 0 0 0-1.414Z" })
1919
- ]
1920
- }
1921
- );
1922
- const IconSort = (props) => {
1923
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1924
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSortSvg, ...iconProps });
1925
- };
1926
- const IconStarSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1927
- "svg",
1928
- {
1929
- xmlns: "http://www.w3.org/2000/svg",
1930
- viewBox: "0 0 24 24",
1931
- xmlSpace: "preserve",
1932
- focusable: "false",
1933
- fill: "currentColor",
1934
- width: 16,
1935
- height: 16,
1936
- "aria-labelledby": titleId,
1937
- ...props,
1938
- children: [
1939
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1940
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23 9c-.1-.4-.4-.6-.8-.7l-6.4-.9-2.9-5.8c-.3-.7-1.5-.7-1.8 0L8.2 7.3l-6.3 1c-.4 0-.7.3-.9.7-.1.4 0 .8.3 1l4.6 4.5-1.1 6.4c-.1.4.1.8.4 1 .2 0 .4.1.6.1.2 0 .3 0 .5-.1l5.7-3 5.7 3c.3.2.7.1 1.1-.1.3-.2.5-.6.4-1l-1.1-6.4 4.6-4.5c.3-.2.4-.6.3-.9zm-6.7 4.4c-.2.2-.3.6-.3.9l.8 4.9-4.4-2.3c-.3-.2-.6-.2-.9 0l-4.4 2.3.9-4.9c0-.3-.1-.7-.3-.9L4.1 10 9 9.3c.3 0 .6-.3.8-.5L12 4.3l2.2 4.4c.1.3.4.5.8.5l4.9.7-3.6 3.5z" })
1941
- ]
1942
- }
1943
- );
1944
- const IconStarActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1945
- "svg",
1946
- {
1947
- xmlns: "http://www.w3.org/2000/svg",
1948
- viewBox: "0 0 24 24",
1949
- xmlSpace: "preserve",
1950
- focusable: "false",
1951
- fill: "currentColor",
1952
- width: 16,
1953
- height: 16,
1954
- "aria-labelledby": titleId,
1955
- ...props,
1956
- children: [
1957
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1958
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23 9c-.1-.4-.4-.6-.8-.7l-6.4-.9-2.9-5.8c-.3-.5-.9-.7-1.4-.4-.2.1-.3.2-.4.4L8.2 7.3l-6.3 1c-.6.1-1 .6-.9 1.1 0 .2.1.4.3.6l4.6 4.5-1.1 6.4c-.1.5.3 1.1.8 1.2.2 0 .4 0 .6-.1l5.7-3 5.7 3c.5.3 1.1.1 1.3-.4.1-.2.1-.4.1-.6l-1.1-6.4 4.6-4.5c.5-.4.6-.8.5-1.1z" })
1959
- ]
1960
- }
1961
- );
1962
- const IconStar = ({ active = false, ...props }) => {
1963
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1964
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: active ? IconStarActiveSvg : IconStarSvg, ...iconProps });
1965
- };
1966
- const IconStatisticsSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1967
- "svg",
1968
- {
1969
- xmlns: "http://www.w3.org/2000/svg",
1970
- width: 16,
1971
- height: 16,
1972
- viewBox: "0 0 24 24",
1973
- focusable: "false",
1974
- fill: "currentColor",
1975
- "aria-labelledby": titleId,
1976
- ...props,
1977
- children: [
1978
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
1979
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 20H4a1 1 0 0 1 0-2h16a1 1 0 0 1 0 2ZM4 16a1 1 0 0 1-.707-1.707l5-5a1 1 0 0 1 1.414 0L12 11.586l7.293-7.293a1 1 0 0 1 1.414 1.414l-8 8a1 1 0 0 1-1.414 0L9 11.414l-4.293 4.293A.997.997 0 0 1 4 16Z" }),
1980
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 20H4a1 1 0 0 1 0-2h16a1 1 0 0 1 0 2ZM4 16a1 1 0 0 1-.707-1.707l5-5a1 1 0 0 1 1.414 0L12 11.586l7.293-7.293a1 1 0 0 1 1.414 1.414l-8 8a1 1 0 0 1-1.414 0L9 11.414l-4.293 4.293A.997.997 0 0 1 4 16Z" })
1981
- ]
1982
- }
1983
- );
1984
- const IconStatistics = (props) => {
1985
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
1986
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconStatisticsSvg, ...iconProps });
1987
- };
1988
- const IconSubCategorySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
1989
- "svg",
1990
- {
1991
- xmlns: "http://www.w3.org/2000/svg",
1992
- viewBox: "0 0 24 24",
1993
- xmlSpace: "preserve",
1994
- focusable: "false",
1995
- fill: "currentColor",
1996
- width: 16,
1997
- height: 16,
1998
- "aria-labelledby": titleId,
1999
- ...props,
2000
- children: [
2001
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2002
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.7 14.3-3-3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l1.3 1.3H8c-.6 0-1-.4-1-1V6c0-.6-.4-1-1-1s-1 .4-1 1v7c0 1.7 1.3 3 3 3h7.6l-1.3 1.3c-.4.4-.4 1 0 1.4.2.2.5.3.7.3s.5-.1.7-.3l3-3c.4-.4.4-1 0-1.4z" })
2003
- ]
2004
- }
2005
- );
2006
- const IconSubCategory = (props) => {
2007
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2008
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconSubCategorySvg, ...iconProps });
2009
- };
2010
- const IconTagSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2011
- "svg",
2012
- {
2013
- xmlns: "http://www.w3.org/2000/svg",
2014
- viewBox: "0 0 24 24",
2015
- xmlSpace: "preserve",
2016
- focusable: "false",
2017
- fill: "currentColor",
2018
- width: 16,
2019
- height: 16,
2020
- "aria-labelledby": titleId,
2021
- ...props,
2022
- children: [
2023
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2024
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.4 6.1c-.3-.1-.5-.1-.8 0-.1 0-.2.1-.3.2-.1.1-.2.2-.2.3-.1.1-.1.3-.1.4 0 .1 0 .3.1.4.1.1.1.2.2.3.2.2.4.3.7.3.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.1-.1-.2-.2-.3-.2z" }),
2025
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.1 10.9-8.6-8.6c-.2-.2-.4-.3-.7-.3h-8c-1.7 0-3 1.3-3 3v8c0 .3.1.5.3.7l8.6 8.6c.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l7.1-7.1.1-.1c1.2-1.2 1.2-3.1 0-4.2zm-1.3 2.7s-.1.1 0 0l-7.3 7.3c-.4.4-1 .4-1.4 0l-8.3-8.3V5c0-.6.4-1 1-1h7.6l8.3 8.3c.4.4.4.9.1 1.3z" })
2026
- ]
2027
- }
2028
- );
2029
- const IconTag = (props) => {
2030
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2031
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconTagSvg, ...iconProps });
2032
- };
2033
- const IconTickSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2034
- "svg",
2035
- {
2036
- xmlns: "http://www.w3.org/2000/svg",
2037
- viewBox: "0 0 24 24",
2038
- xmlSpace: "preserve",
2039
- focusable: "false",
2040
- fill: "currentColor",
2041
- width: 16,
2042
- height: 16,
2043
- "aria-labelledby": titleId,
2044
- ...props,
2045
- children: [
2046
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2047
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.7 6.3c-.4-.4-1-.4-1.4 0L9 15.6l-3.3-3.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l4 4c.2.2.4.3.7.3s.5-.1.7-.3l10-10c.4-.4.4-1 0-1.4z" })
2048
- ]
2049
- }
2050
- );
2051
- const IconTick = (props) => {
2052
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2053
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconTickSvg, ...iconProps });
2054
- };
2055
- const IconTimeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2056
- "svg",
2057
- {
2058
- xmlns: "http://www.w3.org/2000/svg",
2059
- viewBox: "0 0 24 24",
2060
- xmlSpace: "preserve",
2061
- focusable: "false",
2062
- fill: "currentColor",
2063
- width: 16,
2064
- height: 16,
2065
- "aria-labelledby": titleId,
2066
- ...props,
2067
- children: [
2068
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2069
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.4 13.1 13 11.4V6c0-.6-.4-1-1-1s-1 .4-1 1v6c0 .4.2.7.6.9l4 2c.1.1.2.1.4.1.4 0 .7-.2.9-.6.2-.4 0-1-.5-1.3z" }),
2070
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9z" })
2071
- ]
2072
- }
2073
- );
2074
- const IconTime = (props) => {
2075
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2076
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconTimeSvg, ...iconProps });
2077
- };
2078
- const IconTipSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2079
- "svg",
2080
- {
2081
- xmlns: "http://www.w3.org/2000/svg",
2082
- width: 16,
2083
- height: 16,
2084
- viewBox: "0 0 24 24",
2085
- focusable: "false",
2086
- fill: "currentColor",
2087
- "aria-labelledby": titleId,
2088
- ...props,
2089
- children: [
2090
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2091
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 18.957a1 1 0 0 1-1-1V16a8.96 8.96 0 0 0-1.485-2.633l-.277-.391a7 7 0 1 1 11.524 0l-.277.391A8.96 8.96 0 0 0 16 16v1.932a1 1 0 0 1-2 0V16c0-1.095.878-2.419 1.856-3.793l.261-.368a5 5 0 1 0-8.234 0l.26.368C9.124 13.581 10 14.905 10 16v1.957a1 1 0 0 1-1 1Z" }),
2092
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.286 22h-2.572A2.761 2.761 0 0 1 8 19.2V17a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2.2a2.761 2.761 0 0 1-2.714 2.8ZM10 18v1.2a.761.761 0 0 0 .714.8h2.572a.761.761 0 0 0 .714-.8V18Zm13-8h-2a1 1 0 0 1 0-2h2a1 1 0 0 1 0 2Zm-1.475 5.5a.994.994 0 0 1-.499-.134l-1.732-1a1 1 0 1 1 1-1.732l1.732 1a1 1 0 0 1-.5 1.866Zm-1.73-10a1 1 0 0 1-.501-1.866l1.732-1a1 1 0 1 1 1 1.732l-1.732 1a.994.994 0 0 1-.5.134ZM3 10H1a1 1 0 0 1 0-2h2a1 1 0 0 1 0 2Zm-.525 5.5a1 1 0 0 1-.501-1.866l1.732-1a1 1 0 1 1 1 1.732l-1.732 1a.994.994 0 0 1-.5.134Zm1.73-10a.994.994 0 0 1-.499-.134l-1.732-1a1 1 0 0 1 1-1.732l1.732 1a1 1 0 0 1-.5 1.866ZM15 10a1 1 0 0 1-1-1 2.003 2.003 0 0 0-2-2 1 1 0 0 1 0-2 4.004 4.004 0 0 1 4 4 1 1 0 0 1-1 1Z" }),
2093
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 21a2 2 0 0 1-4 0" })
2094
- ]
2095
- }
2096
- );
2097
- const IconTip = (props) => {
2098
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2099
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconTipSvg, ...iconProps });
2100
- };
2101
- const IconUploadSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2102
- "svg",
2103
- {
2104
- xmlns: "http://www.w3.org/2000/svg",
2105
- viewBox: "0 0 24 24",
2106
- xmlSpace: "preserve",
2107
- focusable: "false",
2108
- fill: "currentColor",
2109
- width: 16,
2110
- height: 16,
2111
- "aria-labelledby": titleId,
2112
- ...props,
2113
- children: [
2114
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2115
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.7 9.7 11 6.4V14c0 .6.4 1 1 1s1-.4 1-1V6.4l3.3 3.3c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-5-5c-.4-.4-1-.4-1.4 0l-5 5c-.4.4-.4 1 0 1.4s1 .4 1.4 0zM19 16c-.6 0-1 .4-1 1v1c0 .6-.5 1-1.1 1H7.1c-.6 0-1-.5-1.1-1v-1c0-.6-.4-1-1-1s-1 .4-1 1v1c0 1.7 1.4 3 3 3h9.9c1.7 0 3.1-1.3 3.1-3v-1c0-.6-.4-1-1-1z" })
2116
- ]
2117
- }
2118
- );
2119
- const IconUpload = (props) => {
2120
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props, {
2121
- verticalCorrection: {
2122
- uppercase: "none",
2123
- lowercase: "up"
2124
- }
2125
- });
2126
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconUploadSvg, ...iconProps });
2127
- };
2128
- const IconVideoSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2129
- "svg",
2130
- {
2131
- xmlns: "http://www.w3.org/2000/svg",
2132
- viewBox: "0 0 24 24",
2133
- xmlSpace: "preserve",
2134
- focusable: "false",
2135
- fill: "currentColor",
2136
- width: 16,
2137
- height: 16,
2138
- "aria-labelledby": titleId,
2139
- ...props,
2140
- children: [
2141
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2142
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.4 11.1-12-6c-.3-.1-.6-.1-.9 0-.3.2-.5.6-.5.9v12c0 .3.2.7.5.9.1.1.3.1.5.1s.3 0 .4-.1l12-6c.3-.2.6-.5.6-.9s-.2-.7-.6-.9zM7 16.4V7.6l8.8 4.4L7 16.4z" })
2143
- ]
2144
- }
2145
- );
2146
- const IconVideo = (props) => {
2147
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2148
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconVideoSvg, ...iconProps });
2149
- };
2150
- const IconVisibilitySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2151
- "svg",
2152
- {
2153
- xmlns: "http://www.w3.org/2000/svg",
2154
- width: 16,
2155
- height: 16,
2156
- viewBox: "0 0 24 24",
2157
- focusable: "false",
2158
- fill: "currentColor",
2159
- "aria-labelledby": titleId,
2160
- ...props,
2161
- children: [
2162
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2163
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.912 11.59C21.791 11.32 18.867 5 12 5s-9.791 6.32-9.912 6.59a1.001 1.001 0 0 0 0 .82C2.209 12.68 5.133 19 12 19s9.791-6.32 9.912-6.59a1.001 1.001 0 0 0 0-.82ZM12 17c-4.708 0-7.173-3.728-7.877-5C4.827 10.728 7.292 7 12 7c4.71 0 7.175 3.73 7.877 5-.704 1.272-3.169 5-7.877 5Z" }),
2164
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 12, r: 2.5 })
2165
- ]
2166
- }
2167
- );
2168
- const IconVisibilityHiddenSvg = ({
2169
- title,
2170
- titleId,
2171
- ...props
2172
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
2173
- "svg",
2174
- {
2175
- xmlns: "http://www.w3.org/2000/svg",
2176
- width: 16,
2177
- height: 16,
2178
- viewBox: "0 0 24 24",
2179
- focusable: "false",
2180
- fill: "currentColor",
2181
- "aria-labelledby": titleId,
2182
- ...props,
2183
- children: [
2184
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2185
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.571 14.015A11.133 11.133 0 0 1 4.123 12C4.827 10.728 7.292 7 12 7c.192 0 .374.015.558.027l1.768-1.767A10.41 10.41 0 0 0 12 5c-6.867 0-9.791 6.32-9.912 6.59a1.001 1.001 0 0 0 0 .82 12.68 12.68 0 0 0 2.072 3.016Zm16.341-2.425a12.842 12.842 0 0 0-3.64-4.448l2.435-2.435a1 1 0 0 0-1.414-1.414l-6.384 6.384-3.232 3.232-6.384 6.384a1 1 0 1 0 1.414 1.414l2.76-2.76A10.023 10.023 0 0 0 12 19c6.867 0 9.791-6.32 9.912-6.59a1.001 1.001 0 0 0 0-.82ZM12 17a8.097 8.097 0 0 1-3.008-.578l2.099-2.099a2.488 2.488 0 0 0 3.232-3.232l2.515-2.515A10.792 10.792 0 0 1 19.877 12c-.704 1.272-3.169 5-7.877 5Z" })
2186
- ]
2187
- }
2188
- );
2189
- const IconVisibility = ({ hidden, ...props }) => {
2190
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2191
- return /* @__PURE__ */ jsxRuntime.jsx(
2192
- styles_lib_components_Box_Box_cjs.Box,
2193
- {
2194
- component: hidden ? IconVisibilityHiddenSvg : IconVisibilitySvg,
2195
- ...iconProps
2196
- }
2197
- );
2198
- };
2199
- const IconWorkExperienceSvg = ({
2200
- title,
2201
- titleId,
2202
- ...props
2203
- }) => /* @__PURE__ */ jsxRuntime.jsxs(
2204
- "svg",
2205
- {
2206
- xmlns: "http://www.w3.org/2000/svg",
2207
- width: 16,
2208
- height: 16,
2209
- viewBox: "0 0 24 24",
2210
- focusable: "false",
2211
- fill: "currentColor",
2212
- "aria-labelledby": titleId,
2213
- ...props,
2214
- children: [
2215
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2216
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6h-3V5a3.003 3.003 0 0 0-3-3h-4a3.003 3.003 0 0 0-3 3v1H4a3.003 3.003 0 0 0-3 3v10a3.003 3.003 0 0 0 3 3h16a3.003 3.003 0 0 0 3-3V9a3.003 3.003 0 0 0-3-3ZM9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1H9Zm6 3v12H9V8ZM3 19V9a1 1 0 0 1 1-1h3v12H4a1 1 0 0 1-1-1Zm18 0a1 1 0 0 1-1 1h-3V8h3a1 1 0 0 1 1 1Z" })
2217
- ]
2218
- }
2219
- );
2220
- const IconWorkExperience = (props) => {
2221
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props, {
2222
- verticalCorrection: {
2223
- uppercase: "up",
2224
- lowercase: "up"
2225
- }
2226
- });
2227
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconWorkExperienceSvg, ...iconProps });
2228
- };
2229
- const IconZoomInSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2230
- "svg",
2231
- {
2232
- xmlns: "http://www.w3.org/2000/svg",
2233
- width: 16,
2234
- height: 16,
2235
- viewBox: "0 0 24 24",
2236
- focusable: "false",
2237
- fill: "currentColor",
2238
- "aria-labelledby": titleId,
2239
- ...props,
2240
- children: [
2241
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2242
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.707 20.293-3.682-3.682a9.022 9.022 0 1 0-1.414 1.414l3.682 3.682a1 1 0 0 0 1.414-1.414ZM4 11a7 7 0 1 1 11.962 4.93c-.006.006-.013.008-.019.013s-.007.013-.012.02A6.995 6.995 0 0 1 4 11Z" }),
2243
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 10h-2V8a1 1 0 0 0-2 0v2H8a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0-2Z" })
2244
- ]
2245
- }
2246
- );
2247
- const IconZoomIn = (props) => {
2248
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2249
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconZoomInSvg, ...iconProps });
2250
- };
2251
- const IconZoomOutSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2252
- "svg",
2253
- {
2254
- xmlns: "http://www.w3.org/2000/svg",
2255
- width: 16,
2256
- height: 16,
2257
- viewBox: "0 0 24 24",
2258
- focusable: "false",
2259
- fill: "currentColor",
2260
- "aria-labelledby": titleId,
2261
- ...props,
2262
- children: [
2263
- title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
2264
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.707 20.293-3.682-3.682a9.022 9.022 0 1 0-1.414 1.414l3.682 3.682a1 1 0 0 0 1.414-1.414ZM4 11a7 7 0 1 1 11.962 4.93c-.006.006-.013.008-.019.013s-.007.013-.012.02A6.995 6.995 0 0 1 4 11Z" }),
2265
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 10H8a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2Z" })
2266
- ]
2267
- }
2268
- );
2269
- const IconZoomOut = (props) => {
2270
- const iconProps = styles_lib_hooks_useIcon_index_cjs.useIcon(props);
2271
- return /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: IconZoomOutSvg, ...iconProps });
2272
- };
2273
- const useDisclosure = ({
2274
- id,
2275
- expanded: expandedProp,
2276
- onToggle
2277
- }) => {
2278
- const [expandedFallback, setExpandedFallback] = React.useState(false);
2279
- const expanded = expandedProp ?? expandedFallback;
2280
- return {
2281
- buttonProps: {
2282
- "aria-controls": id,
2283
- "aria-expanded": expanded,
2284
- onClick: () => {
2285
- const newValue = !expanded;
2286
- if (expandedProp === void 0) {
2287
- setExpandedFallback(newValue);
2288
- }
2289
- if (typeof onToggle === "function") {
2290
- onToggle(newValue);
2291
- }
2292
- }
2293
- },
2294
- contentProps: {
2295
- id
2296
- },
2297
- expanded
2298
- };
2299
- };
2300
- const Overlay = ({
2301
- component,
2302
- zIndex,
2303
- background,
2304
- borderRadius,
2305
- boxShadow,
2306
- transition,
2307
- visible = false,
2308
- onlyVisibleForKeyboardNavigation = false,
2309
- className,
2310
- children
2311
- }) => /* @__PURE__ */ jsxRuntime.jsx(
2312
- styles_lib_components_Box_Box_cjs.Box,
2313
- {
2314
- component,
2315
- position: "absolute",
2316
- zIndex,
2317
- pointerEvents: "none",
2318
- background,
2319
- borderRadius,
2320
- boxShadow,
2321
- transition,
2322
- inset: 0,
2323
- opacity: !visible ? 0 : void 0,
2324
- className: [
2325
- onlyVisibleForKeyboardNavigation ? styles_lib_components_private_hideFocusRings_hideFocusRings_css_cjs.hideFocusRingsClassName : null,
2326
- className
2327
- ],
2328
- children
2329
- }
2330
- );
2331
- const itemSpaceForSize = {
2332
- xsmall: "small",
2333
- small: "medium",
2334
- standard: "medium",
2335
- large: "large"
2336
- };
2337
- const AccordionItem = ({
2338
- id,
2339
- label,
2340
- children,
2341
- badge,
2342
- size: sizeProp,
2343
- tone: toneProp,
2344
- weight: weightProp,
2345
- icon,
2346
- data,
2347
- ...restProps
2348
- }) => {
2349
- const accordionContext = React.useContext(styles_lib_components_Accordion_Accordion_cjs.AccordionContext);
2350
- assert__default.default(
2351
- !(accordionContext && sizeProp),
2352
- "Size cannot be set on AccordionItem when inside Accordion. Size should be set on Accordion instead."
2353
- );
2354
- assert__default.default(
2355
- !(accordionContext && toneProp),
2356
- "Tone cannot be set on AccordionItem when inside Accordion. Tone should be set on Accordion instead."
2357
- );
2358
- assert__default.default(
2359
- !(accordionContext && weightProp),
2360
- "Weight cannot be set on AccordionItem when inside Accordion. Weight should be set on Accordion instead."
2361
- );
2362
- assert__default.default(
2363
- toneProp === void 0 || styles_lib_components_Accordion_Accordion_cjs.validTones.includes(toneProp),
2364
- `The 'tone' prop should be one of the following: ${styles_lib_components_Accordion_Accordion_cjs.validTones.map((x) => `"${x}"`).join(", ")}`
2365
- );
2366
- assert__default.default(
2367
- // @ts-expect-error
2368
- !badge || badge.type.__isBadge__,
2369
- `AccordionItem badge prop can only be an instance of Badge. e.g. <AccordionItem badge={<Badge>New</Badge>}>`
2370
- );
2371
- assert__default.default(
2372
- !badge || badge.props.bleedY === void 0,
2373
- "Badge elements cannot set the 'bleedY' prop when passed to an AccordionItem component"
2374
- );
2375
- assert__default.default(
2376
- !icon || icon.props.size === void 0 && icon.props.tone === void 0,
2377
- "Icons cannot set the 'size' or 'tone' prop when passed to an AccordionItem component"
2378
- );
2379
- const size = (accordionContext == null ? void 0 : accordionContext.size) ?? sizeProp ?? "large";
2380
- const tone = (accordionContext == null ? void 0 : accordionContext.tone) ?? toneProp ?? "neutral";
2381
- const weight = (accordionContext == null ? void 0 : accordionContext.weight) ?? weightProp ?? "medium";
2382
- const itemSpace = itemSpaceForSize[size] ?? "none";
2383
- assert__default.default(
2384
- typeof label === "undefined" || typeof label === "string",
2385
- "Label must be a string"
2386
- );
2387
- const { expanded, buttonProps, contentProps } = useDisclosure({
2388
- id,
2389
- ...restProps.expanded !== void 0 ? {
2390
- onToggle: restProps.onToggle,
2391
- expanded: restProps.expanded
2392
- } : {
2393
- onToggle: restProps.onToggle
2394
- }
2395
- });
2396
- return /* @__PURE__ */ jsxRuntime.jsxs(styles_lib_components_Box_Box_cjs.Box, { ...styles_lib_components_Accordion_Accordion_cjs.buildDataAttributes({ data, validateRestProps: restProps }), children: [
2397
- /* @__PURE__ */ jsxRuntime.jsxs(styles_lib_components_Box_Box_cjs.Box, { position: "relative", display: "flex", children: [
2398
- /* @__PURE__ */ jsxRuntime.jsx(
2399
- styles_lib_components_Box_Box_cjs.Box,
2400
- {
2401
- component: "button",
2402
- type: "button",
2403
- cursor: "pointer",
2404
- className: [styles_lib_components_Accordion_AccordionItem_css_cjs.button, styles_lib_components_private_touchable_virtualTouchable_cjs.virtualTouchable()],
2405
- outline: "none",
2406
- width: "full",
2407
- textAlign: "left",
2408
- ...buttonProps,
2409
- children: /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Box_Box_cjs.Box, { component: "span", position: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(styles_lib_components_Columns_Columns_cjs.Columns, { component: "span", space: itemSpace, children: [
2410
- /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Column_Column_cjs.Column, { children: /* @__PURE__ */ jsxRuntime.jsxs(Inline, { component: "span", space: "small", alignY: "center", children: [
2411
- /* @__PURE__ */ jsxRuntime.jsx(Text, { size, weight, tone, icon, children: label }),
2412
- badge ? React.cloneElement(badge, { bleedY: true }) : null
2413
- ] }) }),
2414
- /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_Column_Column_cjs.Column, { width: "content", children: /* @__PURE__ */ jsxRuntime.jsx(
2415
- Text,
2416
- {
2417
- size,
2418
- weight,
2419
- tone: tone === "neutral" ? "secondary" : tone,
2420
- children: /* @__PURE__ */ jsxRuntime.jsx(styles_lib_components_icons_IconChevron_IconChevron_cjs.IconChevron, { direction: expanded ? "up" : "down" })
2421
- }
2422
- ) })
2423
- ] }) })
2424
- }
2425
- ),
2426
- /* @__PURE__ */ jsxRuntime.jsx(
2427
- Overlay,
2428
- {
2429
- boxShadow: "outlineFocus",
2430
- borderRadius: "standard",
2431
- transition: "fast",
2432
- className: [styles_lib_components_Accordion_AccordionItem_css_cjs.focusRing, styles_lib_components_private_hideFocusRings_hideFocusRings_css_cjs.hideFocusRingsClassName]
2433
- }
2434
- )
2435
- ] }),
2436
- /* @__PURE__ */ jsxRuntime.jsx(
2437
- styles_lib_components_Box_Box_cjs.Box,
2438
- {
2439
- paddingTop: itemSpace,
2440
- display: expanded ? "block" : "none",
2441
- ...contentProps,
2442
- children
2443
- }
2444
- )
2445
- ] });
2446
- };
2447
- exports.AccordionItem = AccordionItem;
2448
- exports.DefaultTextPropsProvider = DefaultTextPropsProvider;
2449
- exports.IconAdd = IconAdd;
2450
- exports.IconBookmark = IconBookmark;
2451
- exports.IconCaution = IconCaution;
2452
- exports.IconClear = IconClear;
2453
- exports.IconCompany = IconCompany;
2454
- exports.IconCompose = IconCompose;
2455
- exports.IconCopy = IconCopy;
2456
- exports.IconCreditCard = IconCreditCard;
2457
- exports.IconCritical = IconCritical;
2458
- exports.IconDate = IconDate;
2459
- exports.IconDelete = IconDelete;
2460
- exports.IconDesktop = IconDesktop;
2461
- exports.IconDocument = IconDocument;
2462
- exports.IconDocumentBroken = IconDocumentBroken;
2463
- exports.IconDownload = IconDownload;
2464
- exports.IconEdit = IconEdit;
2465
- exports.IconEducation = IconEducation;
2466
- exports.IconEnlarge = IconEnlarge;
2467
- exports.IconFilter = IconFilter;
2468
- exports.IconFlag = IconFlag;
2469
- exports.IconGrid = IconGrid;
2470
- exports.IconHeart = IconHeart;
2471
- exports.IconHelp = IconHelp;
2472
- exports.IconHistory = IconHistory;
2473
- exports.IconHome = IconHome;
2474
- exports.IconImage = IconImage;
2475
- exports.IconInfo = IconInfo;
2476
- exports.IconInvoice = IconInvoice;
2477
- exports.IconLanguage = IconLanguage;
2478
- exports.IconLink = IconLink;
2479
- exports.IconLinkBroken = IconLinkBroken;
2480
- exports.IconList = IconList;
2481
- exports.IconLocation = IconLocation;
2482
- exports.IconMail = IconMail;
2483
- exports.IconMessage = IconMessage;
2484
- exports.IconMinus = IconMinus;
2485
- exports.IconMobile = IconMobile;
2486
- exports.IconMoney = IconMoney;
2487
- exports.IconNewWindow = IconNewWindow;
2488
- exports.IconNote = IconNote;
2489
- exports.IconNotification = IconNotification;
2490
- exports.IconOverflow = IconOverflow;
2491
- exports.IconPeople = IconPeople;
2492
- exports.IconPersonAdd = IconPersonAdd;
2493
- exports.IconPersonVerified = IconPersonVerified;
2494
- exports.IconPhone = IconPhone;
2495
- exports.IconPlatformAndroid = IconPlatformAndroid;
2496
- exports.IconPlatformApple = IconPlatformApple;
2497
- exports.IconPositive = IconPositive;
2498
- exports.IconPrint = IconPrint;
2499
- exports.IconProfile = IconProfile;
2500
- exports.IconPromote = IconPromote;
2501
- exports.IconRecommended = IconRecommended;
2502
- exports.IconRefresh = IconRefresh;
2503
- exports.IconResume = IconResume;
2504
- exports.IconSearch = IconSearch;
2505
- exports.IconSecurity = IconSecurity;
2506
- exports.IconSend = IconSend;
2507
- exports.IconSent = IconSent;
2508
- exports.IconSettings = IconSettings;
2509
- exports.IconShare = IconShare;
2510
- exports.IconSocialFacebook = IconSocialFacebook;
2511
- exports.IconSocialGitHub = IconSocialGitHub;
2512
- exports.IconSocialInstagram = IconSocialInstagram;
2513
- exports.IconSocialLinkedIn = IconSocialLinkedIn;
2514
- exports.IconSocialMedium = IconSocialMedium;
2515
- exports.IconSocialTwitter = IconSocialTwitter;
2516
- exports.IconSocialX = IconSocialX;
2517
- exports.IconSocialYouTube = IconSocialYouTube;
2518
- exports.IconSort = IconSort;
2519
- exports.IconStar = IconStar;
2520
- exports.IconStarActiveSvg = IconStarActiveSvg;
2521
- exports.IconStarSvg = IconStarSvg;
2522
- exports.IconStatistics = IconStatistics;
2523
- exports.IconSubCategory = IconSubCategory;
2524
- exports.IconTag = IconTag;
2525
- exports.IconTick = IconTick;
2526
- exports.IconTime = IconTime;
2527
- exports.IconTip = IconTip;
2528
- exports.IconUpload = IconUpload;
2529
- exports.IconVideo = IconVideo;
2530
- exports.IconVisibility = IconVisibility;
2531
- exports.IconWorkExperience = IconWorkExperience;
2532
- exports.IconZoomIn = IconZoomIn;
2533
- exports.IconZoomOut = IconZoomOut;
2534
- exports.Inline = Inline;
2535
- exports.Overlay = Overlay;
2536
- exports.Text = Text;
2537
- exports.TextContext = TextContext;
2538
- exports.Typography = Typography;
2539
- exports.flattenChildren = flattenChildren;
2540
- exports.useDefaultTextProps = useDefaultTextProps;
2541
- exports.useDisclosure = useDisclosure;
2542
- exports.validInlineComponents = validInlineComponents;