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,2540 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Box } from "../Box/Box.mjs";
3
- import { useIcon } from "../../hooks/useIcon/index.mjs";
4
- import { createContext, Children, isValidElement, cloneElement, useMemo, useContext, useState } from "react";
5
- import assert from "assert";
6
- import { textStyles } from "../../css/typography.mjs";
7
- import { buildDataAttributes, AccordionContext, validTones } from "./Accordion.mjs";
8
- import { MaxLines } from "../private/MaxLines/MaxLines.mjs";
9
- import { alignToFlexAlign } from "../../utils/align.mjs";
10
- import dedent from "dedent";
11
- import { Columns } from "../Columns/Columns.mjs";
12
- import { Column } from "../Column/Column.mjs";
13
- import { isFragment } from "react-is";
14
- import { negativeMargin } from "../../css/negativeMargin/negativeMargin.mjs";
15
- import { resolveCollapsibleAlignmentProps } from "../../utils/collapsibleAlignmentProps.mjs";
16
- import { virtualTouchable } from "../private/touchable/virtualTouchable.mjs";
17
- import { hideFocusRingsClassName } from "../private/hideFocusRings/hideFocusRings.css.mjs";
18
- import { button, focusRing } from "./AccordionItem.css.mjs";
19
- import { IconChevron } from "../icons/IconChevron/IconChevron.mjs";
20
- const TextContext = createContext(null);
21
- function flattenChildren(children, depth = 0, keys = []) {
22
- return Children.toArray(children).reduce(
23
- (acc, node, nodeIndex) => {
24
- if (isFragment(node)) {
25
- acc.push(
26
- ...flattenChildren(
27
- node.props.children,
28
- depth + 1,
29
- keys.concat(node.key || nodeIndex)
30
- )
31
- );
32
- } else if (isValidElement(node)) {
33
- acc.push(
34
- cloneElement(node, {
35
- key: keys.concat(String(node.key)).join(".")
36
- })
37
- );
38
- } else if (typeof node === "string" || typeof node === "number") {
39
- acc.push(node);
40
- }
41
- return acc;
42
- },
43
- []
44
- );
45
- }
46
- const DefaultTextPropsContext = createContext({
47
- tone: void 0,
48
- weight: void 0,
49
- size: void 0
50
- });
51
- const DefaultTextPropsProvider = ({
52
- size,
53
- weight,
54
- tone,
55
- children
56
- }) => {
57
- const defaultTextProps = useMemo(
58
- () => ({
59
- size,
60
- weight,
61
- tone
62
- }),
63
- [size, weight, tone]
64
- );
65
- return /* @__PURE__ */ jsx(DefaultTextPropsContext.Provider, { value: defaultTextProps, children });
66
- };
67
- const useDefaultTextProps = ({
68
- size: sizeProp,
69
- weight: weightProp,
70
- tone: toneProp
71
- }) => {
72
- const { size, weight, tone } = useContext(DefaultTextPropsContext);
73
- return {
74
- size: sizeProp ?? size ?? "standard",
75
- weight: weightProp ?? weight ?? "regular",
76
- tone: toneProp ?? tone ?? "neutral"
77
- };
78
- };
79
- const Typography = ({
80
- id,
81
- component = "span",
82
- className,
83
- align,
84
- truncate = false,
85
- maxLines,
86
- icon,
87
- data,
88
- children,
89
- ...restProps
90
- }) => {
91
- const lines = truncate ? 1 : maxLines;
92
- const contents = typeof lines === "number" ? /* @__PURE__ */ jsx(MaxLines, { lines, children }) : children;
93
- if (process.env.NODE_ENV !== "production") {
94
- if (truncate) {
95
- console.warn(
96
- dedent`
97
- The "truncate" prop has been deprecated and will be removed in a future version. Use "maxLines" instead.
98
- <Text
99
- %c- truncate
100
- %c+ maxLines={1}
101
- %c/>
102
- `,
103
- "color: red",
104
- "color: green",
105
- "color: inherit"
106
- );
107
- }
108
- }
109
- return /* @__PURE__ */ jsx(
110
- Box,
111
- {
112
- id,
113
- display: "block",
114
- component,
115
- textAlign: align,
116
- className,
117
- ...buildDataAttributes({ data, validateRestProps: restProps }),
118
- children: icon ? /* @__PURE__ */ jsxs(
119
- Box,
120
- {
121
- component: "span",
122
- display: "flex",
123
- justifyContent: alignToFlexAlign(align),
124
- children: [
125
- /* @__PURE__ */ jsx(
126
- Box,
127
- {
128
- component: "span",
129
- display: "block",
130
- paddingRight: "xsmall",
131
- flexGrow: 0,
132
- flexShrink: 0,
133
- minWidth: 0,
134
- textAlign: align,
135
- children: icon
136
- }
137
- ),
138
- /* @__PURE__ */ jsx(Box, { component: "span", display: "block", minWidth: 0, children: contents })
139
- ]
140
- }
141
- ) : contents
142
- }
143
- );
144
- };
145
- const Text = ({
146
- size: sizeProp,
147
- tone: toneProp,
148
- weight: weightProp,
149
- baseline = true,
150
- ...typographyProps
151
- }) => {
152
- assert(
153
- !useContext(TextContext),
154
- "Text components should not be nested within each other"
155
- );
156
- const { size, weight, tone } = useDefaultTextProps({
157
- size: sizeProp,
158
- weight: weightProp,
159
- tone: toneProp
160
- });
161
- const textStylingProps = useMemo(
162
- () => ({
163
- tone,
164
- size,
165
- weight,
166
- baseline
167
- }),
168
- [tone, size, weight, baseline]
169
- );
170
- return /* @__PURE__ */ jsx(TextContext.Provider, { value: textStylingProps, children: /* @__PURE__ */ jsx(
171
- Typography,
172
- {
173
- ...typographyProps,
174
- className: textStyles(textStylingProps)
175
- }
176
- ) });
177
- };
178
- const validInlineComponents = ["div", "span", "ol", "ul"];
179
- const Inline = ({
180
- space = "none",
181
- align,
182
- alignY,
183
- collapseBelow,
184
- reverse,
185
- component = "div",
186
- data,
187
- children,
188
- ...restProps
189
- }) => {
190
- assert(
191
- validInlineComponents.includes(component),
192
- `Invalid Inline component: '${component}'. Should be one of [${validInlineComponents.map((c) => `'${c}'`).join(", ")}]`
193
- );
194
- const isList = component === "ol" || component === "ul";
195
- const inlineItemComponent = isList ? "li" : component;
196
- const {
197
- collapsibleAlignmentProps,
198
- collapsibleAlignmentChildProps,
199
- orderChildren
200
- } = resolveCollapsibleAlignmentProps({
201
- align,
202
- alignY,
203
- collapseBelow,
204
- reverse
205
- });
206
- return /* @__PURE__ */ jsx(
207
- Box,
208
- {
209
- component: component === "span" ? component : void 0,
210
- display: component === "span" ? "block" : void 0,
211
- className: negativeMargin("top", space),
212
- ...buildDataAttributes({ data, validateRestProps: restProps }),
213
- children: /* @__PURE__ */ jsx(
214
- Box,
215
- {
216
- component,
217
- className: negativeMargin("left", space),
218
- flexWrap: "wrap",
219
- ...collapsibleAlignmentProps,
220
- children: Children.map(
221
- orderChildren(flattenChildren(children)),
222
- (child) => child !== null && child !== void 0 ? /* @__PURE__ */ jsx(
223
- Box,
224
- {
225
- component: inlineItemComponent,
226
- minWidth: 0,
227
- marginLeft: space,
228
- marginTop: space,
229
- ...collapsibleAlignmentChildProps,
230
- children: child
231
- }
232
- ) : null
233
- )
234
- }
235
- )
236
- }
237
- );
238
- };
239
- const IconAddSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
240
- "svg",
241
- {
242
- xmlns: "http://www.w3.org/2000/svg",
243
- viewBox: "0 0 24 24",
244
- xmlSpace: "preserve",
245
- focusable: "false",
246
- fill: "currentColor",
247
- width: 16,
248
- height: 16,
249
- "aria-labelledby": titleId,
250
- ...props,
251
- children: [
252
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
253
- /* @__PURE__ */ 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" })
254
- ]
255
- }
256
- );
257
- const IconAdd = (props) => {
258
- const iconProps = useIcon(props);
259
- return /* @__PURE__ */ jsx(Box, { component: IconAddSvg, ...iconProps });
260
- };
261
- const IconBookmarkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
262
- "svg",
263
- {
264
- xmlns: "http://www.w3.org/2000/svg",
265
- viewBox: "0 0 24 24",
266
- xmlSpace: "preserve",
267
- focusable: "false",
268
- fill: "currentColor",
269
- width: 16,
270
- height: 16,
271
- "aria-labelledby": titleId,
272
- ...props,
273
- children: [
274
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
275
- /* @__PURE__ */ 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" })
276
- ]
277
- }
278
- );
279
- const IconBookmarkActiveSvg = ({
280
- title,
281
- titleId,
282
- ...props
283
- }) => /* @__PURE__ */ jsxs(
284
- "svg",
285
- {
286
- xmlns: "http://www.w3.org/2000/svg",
287
- viewBox: "0 0 24 24",
288
- xmlSpace: "preserve",
289
- focusable: "false",
290
- fill: "currentColor",
291
- width: 16,
292
- height: 16,
293
- "aria-labelledby": titleId,
294
- ...props,
295
- children: [
296
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
297
- /* @__PURE__ */ 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" })
298
- ]
299
- }
300
- );
301
- const IconBookmark = ({
302
- active = false,
303
- ...props
304
- }) => {
305
- const iconProps = useIcon(props);
306
- return /* @__PURE__ */ jsx(
307
- Box,
308
- {
309
- component: active ? IconBookmarkActiveSvg : IconBookmarkSvg,
310
- ...iconProps
311
- }
312
- );
313
- };
314
- const IconCautionSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
315
- "svg",
316
- {
317
- xmlns: "http://www.w3.org/2000/svg",
318
- width: 16,
319
- height: 16,
320
- viewBox: "0 0 24 24",
321
- focusable: "false",
322
- fill: "currentColor",
323
- "aria-labelledby": titleId,
324
- ...props,
325
- children: [
326
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
327
- /* @__PURE__ */ 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" }),
328
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 17, r: 1 }),
329
- /* @__PURE__ */ jsx("path", { d: "M11.978 14a1 1 0 0 0 1-1V9a1 1 0 0 0-2 0v4a1 1 0 0 0 1 1Z" })
330
- ]
331
- }
332
- );
333
- const IconCaution = (props) => {
334
- const iconProps = useIcon(props);
335
- return /* @__PURE__ */ jsx(Box, { component: IconCautionSvg, ...iconProps });
336
- };
337
- const IconClearSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
338
- "svg",
339
- {
340
- xmlns: "http://www.w3.org/2000/svg",
341
- viewBox: "0 0 24 24",
342
- xmlSpace: "preserve",
343
- focusable: "false",
344
- fill: "currentColor",
345
- width: 16,
346
- height: 16,
347
- "aria-labelledby": titleId,
348
- ...props,
349
- children: [
350
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
351
- /* @__PURE__ */ 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" })
352
- ]
353
- }
354
- );
355
- const IconClear = (props) => {
356
- const iconProps = useIcon(props);
357
- return /* @__PURE__ */ jsx(Box, { component: IconClearSvg, ...iconProps });
358
- };
359
- const IconCompanySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
360
- "svg",
361
- {
362
- xmlns: "http://www.w3.org/2000/svg",
363
- viewBox: "0 0 24 24",
364
- xmlSpace: "preserve",
365
- focusable: "false",
366
- fill: "currentColor",
367
- width: 16,
368
- height: 16,
369
- "aria-labelledby": titleId,
370
- ...props,
371
- children: [
372
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
373
- /* @__PURE__ */ jsx("path", { d: "M9 6h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z" }),
374
- /* @__PURE__ */ 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" })
375
- ]
376
- }
377
- );
378
- const IconCompany = (props) => {
379
- const iconProps = useIcon(props);
380
- return /* @__PURE__ */ jsx(Box, { component: IconCompanySvg, ...iconProps });
381
- };
382
- const IconComposeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
383
- "svg",
384
- {
385
- xmlns: "http://www.w3.org/2000/svg",
386
- viewBox: "0 0 24 24",
387
- xmlSpace: "preserve",
388
- focusable: "false",
389
- fill: "currentColor",
390
- width: 16,
391
- height: 16,
392
- "aria-labelledby": titleId,
393
- ...props,
394
- children: [
395
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
396
- /* @__PURE__ */ 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" }),
397
- /* @__PURE__ */ 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" })
398
- ]
399
- }
400
- );
401
- const IconCompose = (props) => {
402
- const iconProps = useIcon(props);
403
- return /* @__PURE__ */ jsx(Box, { component: IconComposeSvg, ...iconProps });
404
- };
405
- const IconCopySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
406
- "svg",
407
- {
408
- xmlns: "http://www.w3.org/2000/svg",
409
- viewBox: "0 0 24 24",
410
- xmlSpace: "preserve",
411
- focusable: "false",
412
- fill: "currentColor",
413
- width: 16,
414
- height: 16,
415
- "aria-labelledby": titleId,
416
- ...props,
417
- children: [
418
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
419
- /* @__PURE__ */ 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" }),
420
- /* @__PURE__ */ 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" })
421
- ]
422
- }
423
- );
424
- const IconCopy = (props) => {
425
- const iconProps = useIcon(props);
426
- return /* @__PURE__ */ jsx(Box, { component: IconCopySvg, ...iconProps });
427
- };
428
- const IconCreditCardSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
429
- "svg",
430
- {
431
- xmlns: "http://www.w3.org/2000/svg",
432
- viewBox: "0 0 24 24",
433
- xmlSpace: "preserve",
434
- focusable: "false",
435
- fill: "currentColor",
436
- width: 16,
437
- height: 16,
438
- "aria-labelledby": titleId,
439
- ...props,
440
- children: [
441
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
442
- /* @__PURE__ */ 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" }),
443
- /* @__PURE__ */ 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" })
444
- ]
445
- }
446
- );
447
- const IconCreditCard = (props) => {
448
- const iconProps = useIcon(props);
449
- return /* @__PURE__ */ jsx(Box, { component: IconCreditCardSvg, ...iconProps });
450
- };
451
- const IconCriticalSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
452
- "svg",
453
- {
454
- xmlns: "http://www.w3.org/2000/svg",
455
- viewBox: "0 0 24 24",
456
- xmlSpace: "preserve",
457
- focusable: "false",
458
- fill: "currentColor",
459
- width: 16,
460
- height: 16,
461
- "aria-labelledby": titleId,
462
- ...props,
463
- children: [
464
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
465
- /* @__PURE__ */ 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" }),
466
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 17, r: 1 }),
467
- /* @__PURE__ */ 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" })
468
- ]
469
- }
470
- );
471
- const IconCritical = (props) => {
472
- const iconProps = useIcon(props);
473
- return /* @__PURE__ */ jsx(Box, { component: IconCriticalSvg, ...iconProps });
474
- };
475
- const IconDateSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
476
- "svg",
477
- {
478
- xmlns: "http://www.w3.org/2000/svg",
479
- viewBox: "0 0 24 24",
480
- xmlSpace: "preserve",
481
- focusable: "false",
482
- fill: "currentColor",
483
- width: 16,
484
- height: 16,
485
- "aria-labelledby": titleId,
486
- ...props,
487
- children: [
488
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
489
- /* @__PURE__ */ 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" })
490
- ]
491
- }
492
- );
493
- const IconDate = (props) => {
494
- const iconProps = useIcon(props);
495
- return /* @__PURE__ */ jsx(Box, { component: IconDateSvg, ...iconProps });
496
- };
497
- const IconDeleteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
498
- "svg",
499
- {
500
- xmlns: "http://www.w3.org/2000/svg",
501
- viewBox: "0 0 24 24",
502
- xmlSpace: "preserve",
503
- focusable: "false",
504
- fill: "currentColor",
505
- width: 16,
506
- height: 16,
507
- "aria-labelledby": titleId,
508
- ...props,
509
- children: [
510
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
511
- /* @__PURE__ */ 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" }),
512
- /* @__PURE__ */ 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" })
513
- ]
514
- }
515
- );
516
- const IconDelete = (props) => {
517
- const iconProps = useIcon(props);
518
- return /* @__PURE__ */ jsx(Box, { component: IconDeleteSvg, ...iconProps });
519
- };
520
- const IconDesktopSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
521
- "svg",
522
- {
523
- xmlns: "http://www.w3.org/2000/svg",
524
- width: 16,
525
- height: 16,
526
- viewBox: "0 0 24 24",
527
- focusable: "false",
528
- fill: "currentColor",
529
- "aria-labelledby": titleId,
530
- ...props,
531
- children: [
532
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
533
- /* @__PURE__ */ 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" })
534
- ]
535
- }
536
- );
537
- const IconDesktop = (props) => {
538
- const iconProps = useIcon(props);
539
- return /* @__PURE__ */ jsx(Box, { component: IconDesktopSvg, ...iconProps });
540
- };
541
- const IconDocumentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
542
- "svg",
543
- {
544
- xmlns: "http://www.w3.org/2000/svg",
545
- viewBox: "0 0 24 24",
546
- xmlSpace: "preserve",
547
- focusable: "false",
548
- fill: "currentColor",
549
- width: 16,
550
- height: 16,
551
- "aria-labelledby": titleId,
552
- ...props,
553
- children: [
554
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
555
- /* @__PURE__ */ 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" }),
556
- /* @__PURE__ */ 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" })
557
- ]
558
- }
559
- );
560
- const IconDocument = (props) => {
561
- const iconProps = useIcon(props);
562
- return /* @__PURE__ */ jsx(Box, { component: IconDocumentSvg, ...iconProps });
563
- };
564
- const IconDocumentBrokenSvg = ({
565
- title,
566
- titleId,
567
- ...props
568
- }) => /* @__PURE__ */ jsxs(
569
- "svg",
570
- {
571
- xmlns: "http://www.w3.org/2000/svg",
572
- width: 16,
573
- height: 16,
574
- viewBox: "0 0 24 24",
575
- focusable: "false",
576
- fill: "currentColor",
577
- "aria-labelledby": titleId,
578
- ...props,
579
- children: [
580
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
581
- /* @__PURE__ */ jsx("path", { fill: "none", d: "M15 5.414V7h1.586L15 5.414z" }),
582
- /* @__PURE__ */ 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" }),
583
- /* @__PURE__ */ 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" })
584
- ]
585
- }
586
- );
587
- const IconDocumentBroken = (props) => {
588
- const iconProps = useIcon(props);
589
- return /* @__PURE__ */ jsx(Box, { component: IconDocumentBrokenSvg, ...iconProps });
590
- };
591
- const IconDownloadSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
592
- "svg",
593
- {
594
- xmlns: "http://www.w3.org/2000/svg",
595
- viewBox: "0 0 24 24",
596
- xmlSpace: "preserve",
597
- focusable: "false",
598
- fill: "currentColor",
599
- width: 16,
600
- height: 16,
601
- "aria-labelledby": titleId,
602
- ...props,
603
- children: [
604
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
605
- /* @__PURE__ */ 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" })
606
- ]
607
- }
608
- );
609
- const IconDownload = (props) => {
610
- const iconProps = useIcon(props, {
611
- verticalCorrection: {
612
- uppercase: "none",
613
- lowercase: "up"
614
- }
615
- });
616
- return /* @__PURE__ */ jsx(Box, { component: IconDownloadSvg, ...iconProps });
617
- };
618
- const IconEditSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
619
- "svg",
620
- {
621
- xmlns: "http://www.w3.org/2000/svg",
622
- viewBox: "0 0 24 24",
623
- xmlSpace: "preserve",
624
- focusable: "false",
625
- fill: "currentColor",
626
- width: 16,
627
- height: 16,
628
- "aria-labelledby": titleId,
629
- ...props,
630
- children: [
631
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
632
- /* @__PURE__ */ 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" })
633
- ]
634
- }
635
- );
636
- const IconEdit = (props) => {
637
- const iconProps = useIcon(props, {
638
- verticalCorrection: {
639
- uppercase: "none",
640
- lowercase: "up"
641
- }
642
- });
643
- return /* @__PURE__ */ jsx(Box, { component: IconEditSvg, ...iconProps });
644
- };
645
- const IconEducationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
646
- "svg",
647
- {
648
- xmlns: "http://www.w3.org/2000/svg",
649
- viewBox: "0 0 24 24",
650
- xmlSpace: "preserve",
651
- focusable: "false",
652
- fill: "currentColor",
653
- width: 16,
654
- height: 16,
655
- "aria-labelledby": titleId,
656
- ...props,
657
- children: [
658
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
659
- /* @__PURE__ */ 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" })
660
- ]
661
- }
662
- );
663
- const IconEducation = (props) => {
664
- const iconProps = useIcon(props);
665
- return /* @__PURE__ */ jsx(Box, { component: IconEducationSvg, ...iconProps });
666
- };
667
- const IconEnlargeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
668
- "svg",
669
- {
670
- xmlns: "http://www.w3.org/2000/svg",
671
- width: 16,
672
- height: 16,
673
- viewBox: "0 0 24 24",
674
- focusable: "false",
675
- fill: "currentColor",
676
- "aria-labelledby": titleId,
677
- ...props,
678
- children: [
679
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
680
- /* @__PURE__ */ 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" })
681
- ]
682
- }
683
- );
684
- const IconEnlargeActiveSvg = ({
685
- title,
686
- titleId,
687
- ...props
688
- }) => /* @__PURE__ */ jsxs(
689
- "svg",
690
- {
691
- xmlns: "http://www.w3.org/2000/svg",
692
- width: 16,
693
- height: 16,
694
- viewBox: "0 0 24 24",
695
- focusable: "false",
696
- fill: "currentColor",
697
- "aria-labelledby": titleId,
698
- ...props,
699
- children: [
700
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
701
- /* @__PURE__ */ 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" })
702
- ]
703
- }
704
- );
705
- const IconEnlarge = ({ active = false, ...props }) => {
706
- const iconProps = useIcon(props);
707
- return /* @__PURE__ */ jsx(
708
- Box,
709
- {
710
- component: active ? IconEnlargeActiveSvg : IconEnlargeSvg,
711
- ...iconProps
712
- }
713
- );
714
- };
715
- const IconFilterSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
716
- "svg",
717
- {
718
- xmlns: "http://www.w3.org/2000/svg",
719
- viewBox: "0 0 24 24",
720
- xmlSpace: "preserve",
721
- focusable: "false",
722
- fill: "currentColor",
723
- width: 16,
724
- height: 16,
725
- "aria-labelledby": titleId,
726
- ...props,
727
- children: [
728
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
729
- /* @__PURE__ */ 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" })
730
- ]
731
- }
732
- );
733
- const IconFilter = (props) => {
734
- const iconProps = useIcon(props);
735
- return /* @__PURE__ */ jsx(Box, { component: IconFilterSvg, ...iconProps });
736
- };
737
- const IconFlagSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
738
- "svg",
739
- {
740
- xmlns: "http://www.w3.org/2000/svg",
741
- width: 16,
742
- height: 16,
743
- viewBox: "0 0 24 24",
744
- focusable: "false",
745
- fill: "currentColor",
746
- "aria-labelledby": titleId,
747
- ...props,
748
- children: [
749
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
750
- /* @__PURE__ */ 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" })
751
- ]
752
- }
753
- );
754
- const IconFlag = (props) => {
755
- const iconProps = useIcon(props);
756
- return /* @__PURE__ */ jsx(Box, { component: IconFlagSvg, ...iconProps });
757
- };
758
- const IconGridSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
759
- "svg",
760
- {
761
- xmlns: "http://www.w3.org/2000/svg",
762
- viewBox: "0 0 24 24",
763
- xmlSpace: "preserve",
764
- focusable: "false",
765
- fill: "currentColor",
766
- width: 16,
767
- height: 16,
768
- "aria-labelledby": titleId,
769
- ...props,
770
- children: [
771
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
772
- /* @__PURE__ */ 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" })
773
- ]
774
- }
775
- );
776
- const IconGrid = (props) => {
777
- const iconProps = useIcon(props);
778
- return /* @__PURE__ */ jsx(Box, { component: IconGridSvg, ...iconProps });
779
- };
780
- const IconHeartSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
781
- "svg",
782
- {
783
- xmlns: "http://www.w3.org/2000/svg",
784
- viewBox: "0 0 24 24",
785
- xmlSpace: "preserve",
786
- focusable: "false",
787
- fill: "currentColor",
788
- width: 16,
789
- height: 16,
790
- "aria-labelledby": titleId,
791
- ...props,
792
- children: [
793
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
794
- /* @__PURE__ */ 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" })
795
- ]
796
- }
797
- );
798
- const IconHeartActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
799
- "svg",
800
- {
801
- xmlns: "http://www.w3.org/2000/svg",
802
- viewBox: "0 0 24 24",
803
- xmlSpace: "preserve",
804
- focusable: "false",
805
- fill: "currentColor",
806
- width: 16,
807
- height: 16,
808
- "aria-labelledby": titleId,
809
- ...props,
810
- children: [
811
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
812
- /* @__PURE__ */ 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" })
813
- ]
814
- }
815
- );
816
- const IconHeart = ({ active = false, ...props }) => {
817
- const iconProps = useIcon(props);
818
- return /* @__PURE__ */ jsx(
819
- Box,
820
- {
821
- component: active ? IconHeartActiveSvg : IconHeartSvg,
822
- ...iconProps
823
- }
824
- );
825
- };
826
- const IconHelpSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
827
- "svg",
828
- {
829
- xmlns: "http://www.w3.org/2000/svg",
830
- viewBox: "0 0 24 24",
831
- xmlSpace: "preserve",
832
- focusable: "false",
833
- fill: "currentColor",
834
- width: 16,
835
- height: 16,
836
- "aria-labelledby": titleId,
837
- ...props,
838
- children: [
839
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
840
- /* @__PURE__ */ 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" }),
841
- /* @__PURE__ */ 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" })
842
- ]
843
- }
844
- );
845
- const IconHelp = (props) => {
846
- const iconProps = useIcon(props);
847
- return /* @__PURE__ */ jsx(Box, { component: IconHelpSvg, ...iconProps });
848
- };
849
- const IconHistorySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
850
- "svg",
851
- {
852
- xmlns: "http://www.w3.org/2000/svg",
853
- viewBox: "0 0 24 24",
854
- xmlSpace: "preserve",
855
- focusable: "false",
856
- fill: "currentColor",
857
- width: 16,
858
- height: 16,
859
- "aria-labelledby": titleId,
860
- ...props,
861
- children: [
862
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
863
- /* @__PURE__ */ 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" }),
864
- /* @__PURE__ */ 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" })
865
- ]
866
- }
867
- );
868
- const IconHistory = (props) => {
869
- const iconProps = useIcon(props);
870
- return /* @__PURE__ */ jsx(Box, { component: IconHistorySvg, ...iconProps });
871
- };
872
- const IconHomeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
873
- "svg",
874
- {
875
- xmlns: "http://www.w3.org/2000/svg",
876
- viewBox: "0 0 24 24",
877
- xmlSpace: "preserve",
878
- focusable: "false",
879
- fill: "currentColor",
880
- width: 16,
881
- height: 16,
882
- "aria-labelledby": titleId,
883
- ...props,
884
- children: [
885
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
886
- /* @__PURE__ */ 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" })
887
- ]
888
- }
889
- );
890
- const IconHome = (props) => {
891
- const iconProps = useIcon(props);
892
- return /* @__PURE__ */ jsx(Box, { component: IconHomeSvg, ...iconProps });
893
- };
894
- const IconImageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
895
- "svg",
896
- {
897
- xmlns: "http://www.w3.org/2000/svg",
898
- viewBox: "0 0 24 24",
899
- xmlSpace: "preserve",
900
- focusable: "false",
901
- fill: "currentColor",
902
- width: 16,
903
- height: 16,
904
- "aria-labelledby": titleId,
905
- ...props,
906
- children: [
907
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
908
- /* @__PURE__ */ 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" }),
909
- /* @__PURE__ */ jsx("circle", { cx: 8, cy: 8, r: 2 })
910
- ]
911
- }
912
- );
913
- const IconImage = (props) => {
914
- const iconProps = useIcon(props);
915
- return /* @__PURE__ */ jsx(Box, { component: IconImageSvg, ...iconProps });
916
- };
917
- const IconInfoSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
918
- "svg",
919
- {
920
- xmlns: "http://www.w3.org/2000/svg",
921
- viewBox: "0 0 24 24",
922
- xmlSpace: "preserve",
923
- focusable: "false",
924
- fill: "currentColor",
925
- width: 16,
926
- height: 16,
927
- "aria-labelledby": titleId,
928
- ...props,
929
- children: [
930
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
931
- /* @__PURE__ */ 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" }),
932
- /* @__PURE__ */ 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" })
933
- ]
934
- }
935
- );
936
- const IconInfo = (props) => {
937
- const iconProps = useIcon(props);
938
- return /* @__PURE__ */ jsx(Box, { component: IconInfoSvg, ...iconProps });
939
- };
940
- const IconInvoiceSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
941
- "svg",
942
- {
943
- xmlns: "http://www.w3.org/2000/svg",
944
- viewBox: "0 0 24 24",
945
- xmlSpace: "preserve",
946
- focusable: "false",
947
- fill: "currentColor",
948
- width: 16,
949
- height: 16,
950
- "aria-labelledby": titleId,
951
- ...props,
952
- children: [
953
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
954
- /* @__PURE__ */ 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" }),
955
- /* @__PURE__ */ 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" })
956
- ]
957
- }
958
- );
959
- const IconInvoice = (props) => {
960
- const iconProps = useIcon(props);
961
- return /* @__PURE__ */ jsx(Box, { component: IconInvoiceSvg, ...iconProps });
962
- };
963
- const IconLanguageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
964
- "svg",
965
- {
966
- xmlns: "http://www.w3.org/2000/svg",
967
- width: 16,
968
- height: 16,
969
- viewBox: "0 0 24 24",
970
- focusable: "false",
971
- fill: "currentColor",
972
- "aria-labelledby": titleId,
973
- ...props,
974
- children: [
975
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
976
- /* @__PURE__ */ 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" })
977
- ]
978
- }
979
- );
980
- const IconLanguage = (props) => {
981
- const iconProps = useIcon(props);
982
- return /* @__PURE__ */ jsx(Box, { component: IconLanguageSvg, ...iconProps });
983
- };
984
- const IconLinkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
985
- "svg",
986
- {
987
- xmlns: "http://www.w3.org/2000/svg",
988
- width: 16,
989
- height: 16,
990
- viewBox: "0 0 24 24",
991
- focusable: "false",
992
- fill: "currentColor",
993
- "aria-labelledby": titleId,
994
- ...props,
995
- children: [
996
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
997
- /* @__PURE__ */ 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" }),
998
- /* @__PURE__ */ 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" })
999
- ]
1000
- }
1001
- );
1002
- const IconLink = (props) => {
1003
- const iconProps = useIcon(props);
1004
- return /* @__PURE__ */ jsx(Box, { component: IconLinkSvg, ...iconProps });
1005
- };
1006
- const IconLinkBrokenSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1007
- "svg",
1008
- {
1009
- xmlns: "http://www.w3.org/2000/svg",
1010
- width: 16,
1011
- height: 16,
1012
- viewBox: "0 0 24 24",
1013
- focusable: "false",
1014
- fill: "currentColor",
1015
- "aria-labelledby": titleId,
1016
- ...props,
1017
- children: [
1018
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1019
- /* @__PURE__ */ 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" }),
1020
- /* @__PURE__ */ 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" })
1021
- ]
1022
- }
1023
- );
1024
- const IconLinkBroken = (props) => {
1025
- const iconProps = useIcon(props);
1026
- return /* @__PURE__ */ jsx(Box, { component: IconLinkBrokenSvg, ...iconProps });
1027
- };
1028
- const IconListSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1029
- "svg",
1030
- {
1031
- xmlns: "http://www.w3.org/2000/svg",
1032
- viewBox: "0 0 24 24",
1033
- xmlSpace: "preserve",
1034
- focusable: "false",
1035
- fill: "currentColor",
1036
- width: 16,
1037
- height: 16,
1038
- "aria-labelledby": titleId,
1039
- ...props,
1040
- children: [
1041
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1042
- /* @__PURE__ */ 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" }),
1043
- /* @__PURE__ */ jsx("circle", { cx: 5, cy: 7, r: 1 }),
1044
- /* @__PURE__ */ jsx("circle", { cx: 5, cy: 12, r: 1 }),
1045
- /* @__PURE__ */ jsx("circle", { cx: 5, cy: 17, r: 1 })
1046
- ]
1047
- }
1048
- );
1049
- const IconList = (props) => {
1050
- const iconProps = useIcon(props);
1051
- return /* @__PURE__ */ jsx(Box, { component: IconListSvg, ...iconProps });
1052
- };
1053
- const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1054
- "svg",
1055
- {
1056
- xmlns: "http://www.w3.org/2000/svg",
1057
- viewBox: "0 0 24 24",
1058
- xmlSpace: "preserve",
1059
- focusable: "false",
1060
- fill: "currentColor",
1061
- width: 16,
1062
- height: 16,
1063
- "aria-labelledby": titleId,
1064
- ...props,
1065
- children: [
1066
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1067
- /* @__PURE__ */ 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" }),
1068
- /* @__PURE__ */ 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" })
1069
- ]
1070
- }
1071
- );
1072
- const IconLocation = (props) => {
1073
- const iconProps = useIcon(props);
1074
- return /* @__PURE__ */ jsx(Box, { component: IconLocationSvg, ...iconProps });
1075
- };
1076
- const IconMailSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1077
- "svg",
1078
- {
1079
- xmlns: "http://www.w3.org/2000/svg",
1080
- viewBox: "0 0 24 24",
1081
- xmlSpace: "preserve",
1082
- focusable: "false",
1083
- fill: "currentColor",
1084
- width: 16,
1085
- height: 16,
1086
- "aria-labelledby": titleId,
1087
- ...props,
1088
- children: [
1089
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1090
- /* @__PURE__ */ 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" })
1091
- ]
1092
- }
1093
- );
1094
- const IconMail = (props) => {
1095
- const iconProps = useIcon(props);
1096
- return /* @__PURE__ */ jsx(Box, { component: IconMailSvg, ...iconProps });
1097
- };
1098
- const IconMessageSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1099
- "svg",
1100
- {
1101
- xmlns: "http://www.w3.org/2000/svg",
1102
- width: 16,
1103
- height: 16,
1104
- viewBox: "0 0 24 24",
1105
- focusable: "false",
1106
- fill: "currentColor",
1107
- "aria-labelledby": titleId,
1108
- ...props,
1109
- children: [
1110
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1111
- /* @__PURE__ */ jsx(
1112
- "path",
1113
- {
1114
- d: "M12 3a9 9 0 0 0-7.605 13.815L3 21l4.909-.982A9 9 0 1 0 12 3Z",
1115
- fill: "none",
1116
- stroke: "currentColor",
1117
- strokeLinecap: "round",
1118
- strokeLinejoin: "round",
1119
- strokeWidth: 2
1120
- }
1121
- )
1122
- ]
1123
- }
1124
- );
1125
- const IconMessage = (props) => {
1126
- const iconProps = useIcon(props);
1127
- return /* @__PURE__ */ jsx(Box, { component: IconMessageSvg, ...iconProps });
1128
- };
1129
- const IconMinusSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1130
- "svg",
1131
- {
1132
- xmlns: "http://www.w3.org/2000/svg",
1133
- viewBox: "0 0 24 24",
1134
- xmlSpace: "preserve",
1135
- focusable: "false",
1136
- fill: "currentColor",
1137
- width: 16,
1138
- height: 16,
1139
- "aria-labelledby": titleId,
1140
- ...props,
1141
- children: [
1142
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1143
- /* @__PURE__ */ 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" })
1144
- ]
1145
- }
1146
- );
1147
- const IconMinus = (props) => {
1148
- const iconProps = useIcon(props);
1149
- return /* @__PURE__ */ jsx(Box, { component: IconMinusSvg, ...iconProps });
1150
- };
1151
- const IconMobileSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1152
- "svg",
1153
- {
1154
- xmlns: "http://www.w3.org/2000/svg",
1155
- width: 16,
1156
- height: 16,
1157
- viewBox: "0 0 24 24",
1158
- focusable: "false",
1159
- fill: "currentColor",
1160
- "aria-labelledby": titleId,
1161
- ...props,
1162
- children: [
1163
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1164
- /* @__PURE__ */ 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" }),
1165
- /* @__PURE__ */ 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" })
1166
- ]
1167
- }
1168
- );
1169
- const IconMobile = (props) => {
1170
- const iconProps = useIcon(props);
1171
- return /* @__PURE__ */ jsx(Box, { component: IconMobileSvg, ...iconProps });
1172
- };
1173
- const IconMoneySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1174
- "svg",
1175
- {
1176
- xmlns: "http://www.w3.org/2000/svg",
1177
- viewBox: "0 0 24 24",
1178
- focusable: "false",
1179
- fill: "currentColor",
1180
- width: 16,
1181
- height: 16,
1182
- "aria-labelledby": titleId,
1183
- ...props,
1184
- children: [
1185
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1186
- /* @__PURE__ */ jsx(
1187
- "path",
1188
- {
1189
- fill: "none",
1190
- 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"
1191
- }
1192
- ),
1193
- /* @__PURE__ */ 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" }),
1194
- /* @__PURE__ */ 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" })
1195
- ]
1196
- }
1197
- );
1198
- const IconMoney = (props) => {
1199
- const iconProps = useIcon(props);
1200
- return /* @__PURE__ */ jsx(Box, { component: IconMoneySvg, ...iconProps });
1201
- };
1202
- const IconNewWindowSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1203
- "svg",
1204
- {
1205
- xmlns: "http://www.w3.org/2000/svg",
1206
- viewBox: "0 0 24 24",
1207
- xmlSpace: "preserve",
1208
- focusable: "false",
1209
- fill: "currentColor",
1210
- width: 16,
1211
- height: 16,
1212
- "aria-labelledby": titleId,
1213
- ...props,
1214
- children: [
1215
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1216
- /* @__PURE__ */ 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" }),
1217
- /* @__PURE__ */ 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" })
1218
- ]
1219
- }
1220
- );
1221
- const IconNewWindow = (props) => {
1222
- const iconProps = useIcon(props);
1223
- return /* @__PURE__ */ jsx(Box, { component: IconNewWindowSvg, ...iconProps });
1224
- };
1225
- const IconNoteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1226
- "svg",
1227
- {
1228
- xmlns: "http://www.w3.org/2000/svg",
1229
- viewBox: "0 0 24 24",
1230
- xmlSpace: "preserve",
1231
- focusable: "false",
1232
- fill: "currentColor",
1233
- width: 16,
1234
- height: 16,
1235
- "aria-labelledby": titleId,
1236
- ...props,
1237
- children: [
1238
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1239
- /* @__PURE__ */ 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" }),
1240
- /* @__PURE__ */ 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" })
1241
- ]
1242
- }
1243
- );
1244
- const IconNote = (props) => {
1245
- const iconProps = useIcon(props);
1246
- return /* @__PURE__ */ jsx(Box, { component: IconNoteSvg, ...iconProps });
1247
- };
1248
- const IconNotificationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1249
- "svg",
1250
- {
1251
- xmlns: "http://www.w3.org/2000/svg",
1252
- width: 16,
1253
- height: 16,
1254
- viewBox: "0 0 24 24",
1255
- focusable: "false",
1256
- fill: "currentColor",
1257
- "aria-labelledby": titleId,
1258
- ...props,
1259
- children: [
1260
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1261
- /* @__PURE__ */ 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" })
1262
- ]
1263
- }
1264
- );
1265
- const IconNotification = (props) => {
1266
- const iconProps = useIcon(props);
1267
- return /* @__PURE__ */ jsx(Box, { component: IconNotificationSvg, ...iconProps });
1268
- };
1269
- const IconOverflowSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1270
- "svg",
1271
- {
1272
- xmlns: "http://www.w3.org/2000/svg",
1273
- viewBox: "0 0 24 24",
1274
- xmlSpace: "preserve",
1275
- focusable: "false",
1276
- fill: "currentColor",
1277
- width: 16,
1278
- height: 16,
1279
- "aria-labelledby": titleId,
1280
- ...props,
1281
- children: [
1282
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1283
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 4, r: 2 }),
1284
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 20, r: 2 }),
1285
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 12, r: 2 })
1286
- ]
1287
- }
1288
- );
1289
- const IconOverflow = (props) => {
1290
- const iconProps = useIcon(props);
1291
- return /* @__PURE__ */ jsx(Box, { component: IconOverflowSvg, ...iconProps });
1292
- };
1293
- const IconPeopleSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1294
- "svg",
1295
- {
1296
- xmlns: "http://www.w3.org/2000/svg",
1297
- width: 16,
1298
- height: 16,
1299
- viewBox: "0 0 24 24",
1300
- focusable: "false",
1301
- fill: "currentColor",
1302
- "aria-labelledby": titleId,
1303
- ...props,
1304
- children: [
1305
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1306
- /* @__PURE__ */ 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" }),
1307
- /* @__PURE__ */ 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" })
1308
- ]
1309
- }
1310
- );
1311
- const IconPeople = (props) => {
1312
- const iconProps = useIcon(props);
1313
- return /* @__PURE__ */ jsx(Box, { component: IconPeopleSvg, ...iconProps });
1314
- };
1315
- const IconPersonAddSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1316
- "svg",
1317
- {
1318
- xmlns: "http://www.w3.org/2000/svg",
1319
- width: 16,
1320
- height: 16,
1321
- viewBox: "0 0 24 24",
1322
- focusable: "false",
1323
- fill: "currentColor",
1324
- "aria-labelledby": titleId,
1325
- ...props,
1326
- children: [
1327
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1328
- /* @__PURE__ */ 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" })
1329
- ]
1330
- }
1331
- );
1332
- const IconPersonAdd = (props) => {
1333
- const iconProps = useIcon(props);
1334
- return /* @__PURE__ */ jsx(Box, { component: IconPersonAddSvg, ...iconProps });
1335
- };
1336
- const IconPersonVerifiedSvg = ({
1337
- title,
1338
- titleId,
1339
- ...props
1340
- }) => /* @__PURE__ */ jsxs(
1341
- "svg",
1342
- {
1343
- xmlns: "http://www.w3.org/2000/svg",
1344
- viewBox: "0 0 24 24",
1345
- xmlSpace: "preserve",
1346
- focusable: "false",
1347
- fill: "currentColor",
1348
- width: 16,
1349
- height: 16,
1350
- "aria-labelledby": titleId,
1351
- ...props,
1352
- children: [
1353
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1354
- /* @__PURE__ */ 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" }),
1355
- /* @__PURE__ */ 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" })
1356
- ]
1357
- }
1358
- );
1359
- const IconPersonVerified = (props) => {
1360
- const iconProps = useIcon(props);
1361
- return /* @__PURE__ */ jsx(Box, { component: IconPersonVerifiedSvg, ...iconProps });
1362
- };
1363
- const IconPhoneSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1364
- "svg",
1365
- {
1366
- xmlns: "http://www.w3.org/2000/svg",
1367
- width: 16,
1368
- height: 16,
1369
- viewBox: "0 0 24 24",
1370
- focusable: "false",
1371
- fill: "currentColor",
1372
- "aria-labelledby": titleId,
1373
- ...props,
1374
- children: [
1375
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1376
- /* @__PURE__ */ 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" })
1377
- ]
1378
- }
1379
- );
1380
- const IconPhone = (props) => {
1381
- const iconProps = useIcon(props);
1382
- return /* @__PURE__ */ jsx(Box, { component: IconPhoneSvg, ...iconProps });
1383
- };
1384
- const IconPlatformAndroidSvg = ({
1385
- title,
1386
- titleId,
1387
- ...props
1388
- }) => /* @__PURE__ */ jsxs(
1389
- "svg",
1390
- {
1391
- xmlns: "http://www.w3.org/2000/svg",
1392
- width: 16,
1393
- height: 16,
1394
- viewBox: "0 0 24 24",
1395
- focusable: "false",
1396
- fill: "currentColor",
1397
- "aria-labelledby": titleId,
1398
- ...props,
1399
- children: [
1400
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1401
- /* @__PURE__ */ 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" })
1402
- ]
1403
- }
1404
- );
1405
- const IconPlatformAndroid = (props) => {
1406
- const iconProps = useIcon(props);
1407
- return /* @__PURE__ */ jsx(Box, { component: IconPlatformAndroidSvg, ...iconProps });
1408
- };
1409
- const IconPlatformAppleSvg = ({
1410
- title,
1411
- titleId,
1412
- ...props
1413
- }) => /* @__PURE__ */ jsxs(
1414
- "svg",
1415
- {
1416
- xmlns: "http://www.w3.org/2000/svg",
1417
- width: 16,
1418
- height: 16,
1419
- viewBox: "0 0 24 24",
1420
- focusable: "false",
1421
- fill: "currentColor",
1422
- "aria-labelledby": titleId,
1423
- ...props,
1424
- children: [
1425
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1426
- /* @__PURE__ */ 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" })
1427
- ]
1428
- }
1429
- );
1430
- const IconPlatformApple = (props) => {
1431
- const iconProps = useIcon(props);
1432
- return /* @__PURE__ */ jsx(Box, { component: IconPlatformAppleSvg, ...iconProps });
1433
- };
1434
- const IconPositiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1435
- "svg",
1436
- {
1437
- xmlns: "http://www.w3.org/2000/svg",
1438
- viewBox: "0 0 24 24",
1439
- xmlSpace: "preserve",
1440
- focusable: "false",
1441
- fill: "currentColor",
1442
- width: 16,
1443
- height: 16,
1444
- "aria-labelledby": titleId,
1445
- ...props,
1446
- children: [
1447
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1448
- /* @__PURE__ */ 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" }),
1449
- /* @__PURE__ */ 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" })
1450
- ]
1451
- }
1452
- );
1453
- const IconPositive = (props) => {
1454
- const iconProps = useIcon(props);
1455
- return /* @__PURE__ */ jsx(Box, { component: IconPositiveSvg, ...iconProps });
1456
- };
1457
- const IconPrintSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1458
- "svg",
1459
- {
1460
- xmlns: "http://www.w3.org/2000/svg",
1461
- viewBox: "0 0 24 24",
1462
- xmlSpace: "preserve",
1463
- focusable: "false",
1464
- fill: "currentColor",
1465
- width: 16,
1466
- height: 16,
1467
- "aria-labelledby": titleId,
1468
- ...props,
1469
- children: [
1470
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1471
- /* @__PURE__ */ 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" })
1472
- ]
1473
- }
1474
- );
1475
- const IconPrint = (props) => {
1476
- const iconProps = useIcon(props);
1477
- return /* @__PURE__ */ jsx(Box, { component: IconPrintSvg, ...iconProps });
1478
- };
1479
- const IconProfileSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1480
- "svg",
1481
- {
1482
- xmlns: "http://www.w3.org/2000/svg",
1483
- width: 16,
1484
- height: 16,
1485
- viewBox: "0 0 24 24",
1486
- focusable: "false",
1487
- fill: "currentColor",
1488
- "aria-labelledby": titleId,
1489
- ...props,
1490
- children: [
1491
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1492
- /* @__PURE__ */ 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" })
1493
- ]
1494
- }
1495
- );
1496
- const IconProfile = (props) => {
1497
- const iconProps = useIcon(props);
1498
- return /* @__PURE__ */ jsx(Box, { component: IconProfileSvg, ...iconProps });
1499
- };
1500
- const IconPromoteSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1501
- "svg",
1502
- {
1503
- xmlns: "http://www.w3.org/2000/svg",
1504
- viewBox: "0 0 24 24",
1505
- xmlSpace: "preserve",
1506
- focusable: "false",
1507
- fill: "currentColor",
1508
- width: 16,
1509
- height: 16,
1510
- "aria-labelledby": titleId,
1511
- ...props,
1512
- children: [
1513
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1514
- /* @__PURE__ */ 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" })
1515
- ]
1516
- }
1517
- );
1518
- const IconPromote = (props) => {
1519
- const iconProps = useIcon(props);
1520
- return /* @__PURE__ */ jsx(Box, { component: IconPromoteSvg, ...iconProps });
1521
- };
1522
- const IconRecommendedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1523
- "svg",
1524
- {
1525
- xmlns: "http://www.w3.org/2000/svg",
1526
- viewBox: "0 0 24 24",
1527
- xmlSpace: "preserve",
1528
- focusable: "false",
1529
- fill: "currentColor",
1530
- width: 16,
1531
- height: 16,
1532
- "aria-labelledby": titleId,
1533
- ...props,
1534
- children: [
1535
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1536
- /* @__PURE__ */ 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" })
1537
- ]
1538
- }
1539
- );
1540
- const IconRecommended = (props) => {
1541
- const iconProps = useIcon(props);
1542
- return /* @__PURE__ */ jsx(Box, { component: IconRecommendedSvg, ...iconProps });
1543
- };
1544
- const IconRefreshSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1545
- "svg",
1546
- {
1547
- xmlns: "http://www.w3.org/2000/svg",
1548
- width: 16,
1549
- height: 16,
1550
- viewBox: "0 0 24 24",
1551
- focusable: "false",
1552
- fill: "currentColor",
1553
- "aria-labelledby": titleId,
1554
- ...props,
1555
- children: [
1556
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1557
- /* @__PURE__ */ 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" })
1558
- ]
1559
- }
1560
- );
1561
- const IconRefresh = (props) => {
1562
- const iconProps = useIcon(props);
1563
- return /* @__PURE__ */ jsx(Box, { component: IconRefreshSvg, ...iconProps });
1564
- };
1565
- const IconResumeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1566
- "svg",
1567
- {
1568
- xmlns: "http://www.w3.org/2000/svg",
1569
- viewBox: "0 0 24 24",
1570
- xmlSpace: "preserve",
1571
- focusable: "false",
1572
- fill: "currentColor",
1573
- width: 16,
1574
- height: 16,
1575
- "aria-labelledby": titleId,
1576
- ...props,
1577
- children: [
1578
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1579
- /* @__PURE__ */ 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" }),
1580
- /* @__PURE__ */ jsx("circle", { cx: 10, cy: 8, r: 2 }),
1581
- /* @__PURE__ */ 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" })
1582
- ]
1583
- }
1584
- );
1585
- const IconResume = (props) => {
1586
- const iconProps = useIcon(props);
1587
- return /* @__PURE__ */ jsx(Box, { component: IconResumeSvg, ...iconProps });
1588
- };
1589
- const IconSearchSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1590
- "svg",
1591
- {
1592
- xmlns: "http://www.w3.org/2000/svg",
1593
- viewBox: "0 0 24 24",
1594
- xmlSpace: "preserve",
1595
- focusable: "false",
1596
- fill: "currentColor",
1597
- width: 16,
1598
- height: 16,
1599
- "aria-labelledby": titleId,
1600
- ...props,
1601
- children: [
1602
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1603
- /* @__PURE__ */ 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" })
1604
- ]
1605
- }
1606
- );
1607
- const IconSearch = (props) => {
1608
- const iconProps = useIcon(props);
1609
- return /* @__PURE__ */ jsx(Box, { component: IconSearchSvg, ...iconProps });
1610
- };
1611
- const IconSecuritySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1612
- "svg",
1613
- {
1614
- xmlns: "http://www.w3.org/2000/svg",
1615
- viewBox: "0 0 24 24",
1616
- xmlSpace: "preserve",
1617
- focusable: "false",
1618
- fill: "currentColor",
1619
- width: 16,
1620
- height: 16,
1621
- "aria-labelledby": titleId,
1622
- ...props,
1623
- children: [
1624
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1625
- /* @__PURE__ */ 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" })
1626
- ]
1627
- }
1628
- );
1629
- const IconSecurity = (props) => {
1630
- const iconProps = useIcon(props);
1631
- return /* @__PURE__ */ jsx(Box, { component: IconSecuritySvg, ...iconProps });
1632
- };
1633
- const IconSendSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1634
- "svg",
1635
- {
1636
- xmlns: "http://www.w3.org/2000/svg",
1637
- viewBox: "0 0 24 24",
1638
- xmlSpace: "preserve",
1639
- focusable: "false",
1640
- fill: "currentColor",
1641
- width: 16,
1642
- height: 16,
1643
- "aria-labelledby": titleId,
1644
- ...props,
1645
- children: [
1646
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1647
- /* @__PURE__ */ 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" })
1648
- ]
1649
- }
1650
- );
1651
- const IconSend = (props) => {
1652
- const iconProps = useIcon(props, {
1653
- verticalCorrection: {
1654
- uppercase: "none",
1655
- lowercase: "up"
1656
- }
1657
- });
1658
- return /* @__PURE__ */ jsx(Box, { component: IconSendSvg, ...iconProps });
1659
- };
1660
- const IconSentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1661
- "svg",
1662
- {
1663
- xmlns: "http://www.w3.org/2000/svg",
1664
- viewBox: "0 0 24 24",
1665
- xmlSpace: "preserve",
1666
- focusable: "false",
1667
- fill: "currentColor",
1668
- width: 16,
1669
- height: 16,
1670
- "aria-labelledby": titleId,
1671
- ...props,
1672
- children: [
1673
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1674
- /* @__PURE__ */ 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" })
1675
- ]
1676
- }
1677
- );
1678
- const IconSent = (props) => {
1679
- const iconProps = useIcon(props);
1680
- return /* @__PURE__ */ jsx(Box, { component: IconSentSvg, ...iconProps });
1681
- };
1682
- const IconSettingsSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1683
- "svg",
1684
- {
1685
- xmlns: "http://www.w3.org/2000/svg",
1686
- viewBox: "0 0 24 24",
1687
- xmlSpace: "preserve",
1688
- focusable: "false",
1689
- fill: "currentColor",
1690
- width: 16,
1691
- height: 16,
1692
- "aria-labelledby": titleId,
1693
- ...props,
1694
- children: [
1695
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1696
- /* @__PURE__ */ 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" }),
1697
- /* @__PURE__ */ 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" })
1698
- ]
1699
- }
1700
- );
1701
- const IconSettings = (props) => {
1702
- const iconProps = useIcon(props);
1703
- return /* @__PURE__ */ jsx(Box, { component: IconSettingsSvg, ...iconProps });
1704
- };
1705
- const IconShareSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1706
- "svg",
1707
- {
1708
- xmlns: "http://www.w3.org/2000/svg",
1709
- viewBox: "0 0 24 24",
1710
- xmlSpace: "preserve",
1711
- focusable: "false",
1712
- fill: "currentColor",
1713
- width: 16,
1714
- height: 16,
1715
- "aria-labelledby": titleId,
1716
- ...props,
1717
- children: [
1718
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1719
- /* @__PURE__ */ 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" })
1720
- ]
1721
- }
1722
- );
1723
- const IconShare = (props) => {
1724
- const iconProps = useIcon(props);
1725
- return /* @__PURE__ */ jsx(Box, { component: IconShareSvg, ...iconProps });
1726
- };
1727
- const IconSocialFacebookSvg = ({
1728
- title,
1729
- titleId,
1730
- ...props
1731
- }) => /* @__PURE__ */ jsxs(
1732
- "svg",
1733
- {
1734
- xmlns: "http://www.w3.org/2000/svg",
1735
- viewBox: "0 0 24 24",
1736
- focusable: "false",
1737
- fill: "currentColor",
1738
- width: 16,
1739
- height: 16,
1740
- "aria-labelledby": titleId,
1741
- ...props,
1742
- children: [
1743
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1744
- /* @__PURE__ */ 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" })
1745
- ]
1746
- }
1747
- );
1748
- const IconSocialFacebook = (props) => {
1749
- const iconProps = useIcon(props);
1750
- return /* @__PURE__ */ jsx(Box, { component: IconSocialFacebookSvg, ...iconProps });
1751
- };
1752
- const IconSocialGitHubSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1753
- "svg",
1754
- {
1755
- xmlns: "http://www.w3.org/2000/svg",
1756
- viewBox: "0 0 24 24",
1757
- focusable: "false",
1758
- fill: "currentColor",
1759
- width: 16,
1760
- height: 16,
1761
- "aria-labelledby": titleId,
1762
- ...props,
1763
- children: [
1764
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1765
- /* @__PURE__ */ jsx(
1766
- "path",
1767
- {
1768
- fillRule: "evenodd",
1769
- 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"
1770
- }
1771
- )
1772
- ]
1773
- }
1774
- );
1775
- const IconSocialGitHub = (props) => {
1776
- const iconProps = useIcon(props);
1777
- return /* @__PURE__ */ jsx(Box, { component: IconSocialGitHubSvg, ...iconProps });
1778
- };
1779
- const IconSocialInstagramSvg = ({
1780
- title,
1781
- titleId,
1782
- ...props
1783
- }) => /* @__PURE__ */ jsxs(
1784
- "svg",
1785
- {
1786
- xmlns: "http://www.w3.org/2000/svg",
1787
- viewBox: "0 0 24 24",
1788
- focusable: "false",
1789
- fill: "currentColor",
1790
- width: 16,
1791
- height: 16,
1792
- "aria-labelledby": titleId,
1793
- ...props,
1794
- children: [
1795
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1796
- /* @__PURE__ */ 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" })
1797
- ]
1798
- }
1799
- );
1800
- const IconSocialInstagram = (props) => {
1801
- const iconProps = useIcon(props);
1802
- return /* @__PURE__ */ jsx(Box, { component: IconSocialInstagramSvg, ...iconProps });
1803
- };
1804
- const IconSocialLinkedInSvg = ({
1805
- title,
1806
- titleId,
1807
- ...props
1808
- }) => /* @__PURE__ */ jsxs(
1809
- "svg",
1810
- {
1811
- xmlns: "http://www.w3.org/2000/svg",
1812
- viewBox: "0 0 24 24",
1813
- focusable: "false",
1814
- fill: "currentColor",
1815
- width: 16,
1816
- height: 16,
1817
- "aria-labelledby": titleId,
1818
- ...props,
1819
- children: [
1820
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1821
- /* @__PURE__ */ 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" })
1822
- ]
1823
- }
1824
- );
1825
- const IconSocialLinkedIn = (props) => {
1826
- const iconProps = useIcon(props);
1827
- return /* @__PURE__ */ jsx(Box, { component: IconSocialLinkedInSvg, ...iconProps });
1828
- };
1829
- const IconSocialMediumSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1830
- "svg",
1831
- {
1832
- xmlns: "http://www.w3.org/2000/svg",
1833
- viewBox: "0 0 24 24",
1834
- focusable: "false",
1835
- fill: "currentColor",
1836
- width: 16,
1837
- height: 16,
1838
- "aria-labelledby": titleId,
1839
- ...props,
1840
- children: [
1841
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1842
- /* @__PURE__ */ 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" }),
1843
- /* @__PURE__ */ jsx("path", { fill: "none", d: "M22.98 6.104v11.755H1.032V6.104H22.98Z" })
1844
- ]
1845
- }
1846
- );
1847
- const IconSocialMedium = (props) => {
1848
- const iconProps = useIcon(props);
1849
- return /* @__PURE__ */ jsx(Box, { component: IconSocialMediumSvg, ...iconProps });
1850
- };
1851
- const IconSocialXSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1852
- "svg",
1853
- {
1854
- xmlns: "http://www.w3.org/2000/svg",
1855
- viewBox: "0 0 24 24",
1856
- focusable: "false",
1857
- fill: "currentColor",
1858
- width: 16,
1859
- height: 16,
1860
- "aria-labelledby": titleId,
1861
- ...props,
1862
- children: [
1863
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1864
- /* @__PURE__ */ 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" })
1865
- ]
1866
- }
1867
- );
1868
- const IconSocialTwitter = (props) => {
1869
- const iconProps = useIcon(props);
1870
- return /* @__PURE__ */ jsx(Box, { component: IconSocialXSvg, ...iconProps });
1871
- };
1872
- const IconSocialX = (props) => {
1873
- const iconProps = useIcon(props);
1874
- return /* @__PURE__ */ jsx(Box, { component: IconSocialXSvg, ...iconProps });
1875
- };
1876
- const IconSocialYouTubeSvg = ({
1877
- title,
1878
- titleId,
1879
- ...props
1880
- }) => /* @__PURE__ */ jsxs(
1881
- "svg",
1882
- {
1883
- xmlns: "http://www.w3.org/2000/svg",
1884
- viewBox: "0 0 24 24",
1885
- focusable: "false",
1886
- fill: "currentColor",
1887
- width: 16,
1888
- height: 16,
1889
- "aria-labelledby": titleId,
1890
- ...props,
1891
- children: [
1892
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1893
- /* @__PURE__ */ 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" })
1894
- ]
1895
- }
1896
- );
1897
- const IconSocialYouTube = (props) => {
1898
- const iconProps = useIcon(props);
1899
- return /* @__PURE__ */ jsx(Box, { component: IconSocialYouTubeSvg, ...iconProps });
1900
- };
1901
- const IconSortSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1902
- "svg",
1903
- {
1904
- xmlns: "http://www.w3.org/2000/svg",
1905
- viewBox: "0 0 24 24",
1906
- focusable: "false",
1907
- fill: "currentColor",
1908
- width: 16,
1909
- height: 16,
1910
- "aria-labelledby": titleId,
1911
- ...props,
1912
- children: [
1913
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1914
- /* @__PURE__ */ 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" })
1915
- ]
1916
- }
1917
- );
1918
- const IconSort = (props) => {
1919
- const iconProps = useIcon(props);
1920
- return /* @__PURE__ */ jsx(Box, { component: IconSortSvg, ...iconProps });
1921
- };
1922
- const IconStarSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1923
- "svg",
1924
- {
1925
- xmlns: "http://www.w3.org/2000/svg",
1926
- viewBox: "0 0 24 24",
1927
- xmlSpace: "preserve",
1928
- focusable: "false",
1929
- fill: "currentColor",
1930
- width: 16,
1931
- height: 16,
1932
- "aria-labelledby": titleId,
1933
- ...props,
1934
- children: [
1935
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1936
- /* @__PURE__ */ 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" })
1937
- ]
1938
- }
1939
- );
1940
- const IconStarActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1941
- "svg",
1942
- {
1943
- xmlns: "http://www.w3.org/2000/svg",
1944
- viewBox: "0 0 24 24",
1945
- xmlSpace: "preserve",
1946
- focusable: "false",
1947
- fill: "currentColor",
1948
- width: 16,
1949
- height: 16,
1950
- "aria-labelledby": titleId,
1951
- ...props,
1952
- children: [
1953
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1954
- /* @__PURE__ */ 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" })
1955
- ]
1956
- }
1957
- );
1958
- const IconStar = ({ active = false, ...props }) => {
1959
- const iconProps = useIcon(props);
1960
- return /* @__PURE__ */ jsx(Box, { component: active ? IconStarActiveSvg : IconStarSvg, ...iconProps });
1961
- };
1962
- const IconStatisticsSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1963
- "svg",
1964
- {
1965
- xmlns: "http://www.w3.org/2000/svg",
1966
- width: 16,
1967
- height: 16,
1968
- viewBox: "0 0 24 24",
1969
- focusable: "false",
1970
- fill: "currentColor",
1971
- "aria-labelledby": titleId,
1972
- ...props,
1973
- children: [
1974
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1975
- /* @__PURE__ */ 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" }),
1976
- /* @__PURE__ */ 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" })
1977
- ]
1978
- }
1979
- );
1980
- const IconStatistics = (props) => {
1981
- const iconProps = useIcon(props);
1982
- return /* @__PURE__ */ jsx(Box, { component: IconStatisticsSvg, ...iconProps });
1983
- };
1984
- const IconSubCategorySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
1985
- "svg",
1986
- {
1987
- xmlns: "http://www.w3.org/2000/svg",
1988
- viewBox: "0 0 24 24",
1989
- xmlSpace: "preserve",
1990
- focusable: "false",
1991
- fill: "currentColor",
1992
- width: 16,
1993
- height: 16,
1994
- "aria-labelledby": titleId,
1995
- ...props,
1996
- children: [
1997
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
1998
- /* @__PURE__ */ 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" })
1999
- ]
2000
- }
2001
- );
2002
- const IconSubCategory = (props) => {
2003
- const iconProps = useIcon(props);
2004
- return /* @__PURE__ */ jsx(Box, { component: IconSubCategorySvg, ...iconProps });
2005
- };
2006
- const IconTagSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2007
- "svg",
2008
- {
2009
- xmlns: "http://www.w3.org/2000/svg",
2010
- viewBox: "0 0 24 24",
2011
- xmlSpace: "preserve",
2012
- focusable: "false",
2013
- fill: "currentColor",
2014
- width: 16,
2015
- height: 16,
2016
- "aria-labelledby": titleId,
2017
- ...props,
2018
- children: [
2019
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2020
- /* @__PURE__ */ 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" }),
2021
- /* @__PURE__ */ 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" })
2022
- ]
2023
- }
2024
- );
2025
- const IconTag = (props) => {
2026
- const iconProps = useIcon(props);
2027
- return /* @__PURE__ */ jsx(Box, { component: IconTagSvg, ...iconProps });
2028
- };
2029
- const IconTickSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2030
- "svg",
2031
- {
2032
- xmlns: "http://www.w3.org/2000/svg",
2033
- viewBox: "0 0 24 24",
2034
- xmlSpace: "preserve",
2035
- focusable: "false",
2036
- fill: "currentColor",
2037
- width: 16,
2038
- height: 16,
2039
- "aria-labelledby": titleId,
2040
- ...props,
2041
- children: [
2042
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2043
- /* @__PURE__ */ 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" })
2044
- ]
2045
- }
2046
- );
2047
- const IconTick = (props) => {
2048
- const iconProps = useIcon(props);
2049
- return /* @__PURE__ */ jsx(Box, { component: IconTickSvg, ...iconProps });
2050
- };
2051
- const IconTimeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2052
- "svg",
2053
- {
2054
- xmlns: "http://www.w3.org/2000/svg",
2055
- viewBox: "0 0 24 24",
2056
- xmlSpace: "preserve",
2057
- focusable: "false",
2058
- fill: "currentColor",
2059
- width: 16,
2060
- height: 16,
2061
- "aria-labelledby": titleId,
2062
- ...props,
2063
- children: [
2064
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2065
- /* @__PURE__ */ 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" }),
2066
- /* @__PURE__ */ 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" })
2067
- ]
2068
- }
2069
- );
2070
- const IconTime = (props) => {
2071
- const iconProps = useIcon(props);
2072
- return /* @__PURE__ */ jsx(Box, { component: IconTimeSvg, ...iconProps });
2073
- };
2074
- const IconTipSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2075
- "svg",
2076
- {
2077
- xmlns: "http://www.w3.org/2000/svg",
2078
- width: 16,
2079
- height: 16,
2080
- viewBox: "0 0 24 24",
2081
- focusable: "false",
2082
- fill: "currentColor",
2083
- "aria-labelledby": titleId,
2084
- ...props,
2085
- children: [
2086
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2087
- /* @__PURE__ */ 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" }),
2088
- /* @__PURE__ */ 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" }),
2089
- /* @__PURE__ */ jsx("path", { d: "M14 21a2 2 0 0 1-4 0" })
2090
- ]
2091
- }
2092
- );
2093
- const IconTip = (props) => {
2094
- const iconProps = useIcon(props);
2095
- return /* @__PURE__ */ jsx(Box, { component: IconTipSvg, ...iconProps });
2096
- };
2097
- const IconUploadSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2098
- "svg",
2099
- {
2100
- xmlns: "http://www.w3.org/2000/svg",
2101
- viewBox: "0 0 24 24",
2102
- xmlSpace: "preserve",
2103
- focusable: "false",
2104
- fill: "currentColor",
2105
- width: 16,
2106
- height: 16,
2107
- "aria-labelledby": titleId,
2108
- ...props,
2109
- children: [
2110
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2111
- /* @__PURE__ */ 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" })
2112
- ]
2113
- }
2114
- );
2115
- const IconUpload = (props) => {
2116
- const iconProps = useIcon(props, {
2117
- verticalCorrection: {
2118
- uppercase: "none",
2119
- lowercase: "up"
2120
- }
2121
- });
2122
- return /* @__PURE__ */ jsx(Box, { component: IconUploadSvg, ...iconProps });
2123
- };
2124
- const IconVideoSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2125
- "svg",
2126
- {
2127
- xmlns: "http://www.w3.org/2000/svg",
2128
- viewBox: "0 0 24 24",
2129
- xmlSpace: "preserve",
2130
- focusable: "false",
2131
- fill: "currentColor",
2132
- width: 16,
2133
- height: 16,
2134
- "aria-labelledby": titleId,
2135
- ...props,
2136
- children: [
2137
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2138
- /* @__PURE__ */ 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" })
2139
- ]
2140
- }
2141
- );
2142
- const IconVideo = (props) => {
2143
- const iconProps = useIcon(props);
2144
- return /* @__PURE__ */ jsx(Box, { component: IconVideoSvg, ...iconProps });
2145
- };
2146
- const IconVisibilitySvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2147
- "svg",
2148
- {
2149
- xmlns: "http://www.w3.org/2000/svg",
2150
- width: 16,
2151
- height: 16,
2152
- viewBox: "0 0 24 24",
2153
- focusable: "false",
2154
- fill: "currentColor",
2155
- "aria-labelledby": titleId,
2156
- ...props,
2157
- children: [
2158
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2159
- /* @__PURE__ */ 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" }),
2160
- /* @__PURE__ */ jsx("circle", { cx: 12, cy: 12, r: 2.5 })
2161
- ]
2162
- }
2163
- );
2164
- const IconVisibilityHiddenSvg = ({
2165
- title,
2166
- titleId,
2167
- ...props
2168
- }) => /* @__PURE__ */ jsxs(
2169
- "svg",
2170
- {
2171
- xmlns: "http://www.w3.org/2000/svg",
2172
- width: 16,
2173
- height: 16,
2174
- viewBox: "0 0 24 24",
2175
- focusable: "false",
2176
- fill: "currentColor",
2177
- "aria-labelledby": titleId,
2178
- ...props,
2179
- children: [
2180
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2181
- /* @__PURE__ */ 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" })
2182
- ]
2183
- }
2184
- );
2185
- const IconVisibility = ({ hidden, ...props }) => {
2186
- const iconProps = useIcon(props);
2187
- return /* @__PURE__ */ jsx(
2188
- Box,
2189
- {
2190
- component: hidden ? IconVisibilityHiddenSvg : IconVisibilitySvg,
2191
- ...iconProps
2192
- }
2193
- );
2194
- };
2195
- const IconWorkExperienceSvg = ({
2196
- title,
2197
- titleId,
2198
- ...props
2199
- }) => /* @__PURE__ */ jsxs(
2200
- "svg",
2201
- {
2202
- xmlns: "http://www.w3.org/2000/svg",
2203
- width: 16,
2204
- height: 16,
2205
- viewBox: "0 0 24 24",
2206
- focusable: "false",
2207
- fill: "currentColor",
2208
- "aria-labelledby": titleId,
2209
- ...props,
2210
- children: [
2211
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2212
- /* @__PURE__ */ 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" })
2213
- ]
2214
- }
2215
- );
2216
- const IconWorkExperience = (props) => {
2217
- const iconProps = useIcon(props, {
2218
- verticalCorrection: {
2219
- uppercase: "up",
2220
- lowercase: "up"
2221
- }
2222
- });
2223
- return /* @__PURE__ */ jsx(Box, { component: IconWorkExperienceSvg, ...iconProps });
2224
- };
2225
- const IconZoomInSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2226
- "svg",
2227
- {
2228
- xmlns: "http://www.w3.org/2000/svg",
2229
- width: 16,
2230
- height: 16,
2231
- viewBox: "0 0 24 24",
2232
- focusable: "false",
2233
- fill: "currentColor",
2234
- "aria-labelledby": titleId,
2235
- ...props,
2236
- children: [
2237
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2238
- /* @__PURE__ */ 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" }),
2239
- /* @__PURE__ */ 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" })
2240
- ]
2241
- }
2242
- );
2243
- const IconZoomIn = (props) => {
2244
- const iconProps = useIcon(props);
2245
- return /* @__PURE__ */ jsx(Box, { component: IconZoomInSvg, ...iconProps });
2246
- };
2247
- const IconZoomOutSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
2248
- "svg",
2249
- {
2250
- xmlns: "http://www.w3.org/2000/svg",
2251
- width: 16,
2252
- height: 16,
2253
- viewBox: "0 0 24 24",
2254
- focusable: "false",
2255
- fill: "currentColor",
2256
- "aria-labelledby": titleId,
2257
- ...props,
2258
- children: [
2259
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
2260
- /* @__PURE__ */ 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" }),
2261
- /* @__PURE__ */ jsx("path", { d: "M14 10H8a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2Z" })
2262
- ]
2263
- }
2264
- );
2265
- const IconZoomOut = (props) => {
2266
- const iconProps = useIcon(props);
2267
- return /* @__PURE__ */ jsx(Box, { component: IconZoomOutSvg, ...iconProps });
2268
- };
2269
- const useDisclosure = ({
2270
- id,
2271
- expanded: expandedProp,
2272
- onToggle
2273
- }) => {
2274
- const [expandedFallback, setExpandedFallback] = useState(false);
2275
- const expanded = expandedProp ?? expandedFallback;
2276
- return {
2277
- buttonProps: {
2278
- "aria-controls": id,
2279
- "aria-expanded": expanded,
2280
- onClick: () => {
2281
- const newValue = !expanded;
2282
- if (expandedProp === void 0) {
2283
- setExpandedFallback(newValue);
2284
- }
2285
- if (typeof onToggle === "function") {
2286
- onToggle(newValue);
2287
- }
2288
- }
2289
- },
2290
- contentProps: {
2291
- id
2292
- },
2293
- expanded
2294
- };
2295
- };
2296
- const Overlay = ({
2297
- component,
2298
- zIndex,
2299
- background,
2300
- borderRadius,
2301
- boxShadow,
2302
- transition,
2303
- visible = false,
2304
- onlyVisibleForKeyboardNavigation = false,
2305
- className,
2306
- children
2307
- }) => /* @__PURE__ */ jsx(
2308
- Box,
2309
- {
2310
- component,
2311
- position: "absolute",
2312
- zIndex,
2313
- pointerEvents: "none",
2314
- background,
2315
- borderRadius,
2316
- boxShadow,
2317
- transition,
2318
- inset: 0,
2319
- opacity: !visible ? 0 : void 0,
2320
- className: [
2321
- onlyVisibleForKeyboardNavigation ? hideFocusRingsClassName : null,
2322
- className
2323
- ],
2324
- children
2325
- }
2326
- );
2327
- const itemSpaceForSize = {
2328
- xsmall: "small",
2329
- small: "medium",
2330
- standard: "medium",
2331
- large: "large"
2332
- };
2333
- const AccordionItem = ({
2334
- id,
2335
- label,
2336
- children,
2337
- badge,
2338
- size: sizeProp,
2339
- tone: toneProp,
2340
- weight: weightProp,
2341
- icon,
2342
- data,
2343
- ...restProps
2344
- }) => {
2345
- const accordionContext = useContext(AccordionContext);
2346
- assert(
2347
- !(accordionContext && sizeProp),
2348
- "Size cannot be set on AccordionItem when inside Accordion. Size should be set on Accordion instead."
2349
- );
2350
- assert(
2351
- !(accordionContext && toneProp),
2352
- "Tone cannot be set on AccordionItem when inside Accordion. Tone should be set on Accordion instead."
2353
- );
2354
- assert(
2355
- !(accordionContext && weightProp),
2356
- "Weight cannot be set on AccordionItem when inside Accordion. Weight should be set on Accordion instead."
2357
- );
2358
- assert(
2359
- toneProp === void 0 || validTones.includes(toneProp),
2360
- `The 'tone' prop should be one of the following: ${validTones.map((x) => `"${x}"`).join(", ")}`
2361
- );
2362
- assert(
2363
- // @ts-expect-error
2364
- !badge || badge.type.__isBadge__,
2365
- `AccordionItem badge prop can only be an instance of Badge. e.g. <AccordionItem badge={<Badge>New</Badge>}>`
2366
- );
2367
- assert(
2368
- !badge || badge.props.bleedY === void 0,
2369
- "Badge elements cannot set the 'bleedY' prop when passed to an AccordionItem component"
2370
- );
2371
- assert(
2372
- !icon || icon.props.size === void 0 && icon.props.tone === void 0,
2373
- "Icons cannot set the 'size' or 'tone' prop when passed to an AccordionItem component"
2374
- );
2375
- const size = (accordionContext == null ? void 0 : accordionContext.size) ?? sizeProp ?? "large";
2376
- const tone = (accordionContext == null ? void 0 : accordionContext.tone) ?? toneProp ?? "neutral";
2377
- const weight = (accordionContext == null ? void 0 : accordionContext.weight) ?? weightProp ?? "medium";
2378
- const itemSpace = itemSpaceForSize[size] ?? "none";
2379
- assert(
2380
- typeof label === "undefined" || typeof label === "string",
2381
- "Label must be a string"
2382
- );
2383
- const { expanded, buttonProps, contentProps } = useDisclosure({
2384
- id,
2385
- ...restProps.expanded !== void 0 ? {
2386
- onToggle: restProps.onToggle,
2387
- expanded: restProps.expanded
2388
- } : {
2389
- onToggle: restProps.onToggle
2390
- }
2391
- });
2392
- return /* @__PURE__ */ jsxs(Box, { ...buildDataAttributes({ data, validateRestProps: restProps }), children: [
2393
- /* @__PURE__ */ jsxs(Box, { position: "relative", display: "flex", children: [
2394
- /* @__PURE__ */ jsx(
2395
- Box,
2396
- {
2397
- component: "button",
2398
- type: "button",
2399
- cursor: "pointer",
2400
- className: [button, virtualTouchable()],
2401
- outline: "none",
2402
- width: "full",
2403
- textAlign: "left",
2404
- ...buttonProps,
2405
- children: /* @__PURE__ */ jsx(Box, { component: "span", position: "relative", children: /* @__PURE__ */ jsxs(Columns, { component: "span", space: itemSpace, children: [
2406
- /* @__PURE__ */ jsx(Column, { children: /* @__PURE__ */ jsxs(Inline, { component: "span", space: "small", alignY: "center", children: [
2407
- /* @__PURE__ */ jsx(Text, { size, weight, tone, icon, children: label }),
2408
- badge ? cloneElement(badge, { bleedY: true }) : null
2409
- ] }) }),
2410
- /* @__PURE__ */ jsx(Column, { width: "content", children: /* @__PURE__ */ jsx(
2411
- Text,
2412
- {
2413
- size,
2414
- weight,
2415
- tone: tone === "neutral" ? "secondary" : tone,
2416
- children: /* @__PURE__ */ jsx(IconChevron, { direction: expanded ? "up" : "down" })
2417
- }
2418
- ) })
2419
- ] }) })
2420
- }
2421
- ),
2422
- /* @__PURE__ */ jsx(
2423
- Overlay,
2424
- {
2425
- boxShadow: "outlineFocus",
2426
- borderRadius: "standard",
2427
- transition: "fast",
2428
- className: [focusRing, hideFocusRingsClassName]
2429
- }
2430
- )
2431
- ] }),
2432
- /* @__PURE__ */ jsx(
2433
- Box,
2434
- {
2435
- paddingTop: itemSpace,
2436
- display: expanded ? "block" : "none",
2437
- ...contentProps,
2438
- children
2439
- }
2440
- )
2441
- ] });
2442
- };
2443
- export {
2444
- AccordionItem,
2445
- DefaultTextPropsProvider,
2446
- IconAdd,
2447
- IconBookmark,
2448
- IconCaution,
2449
- IconClear,
2450
- IconCompany,
2451
- IconCompose,
2452
- IconCopy,
2453
- IconCreditCard,
2454
- IconCritical,
2455
- IconDate,
2456
- IconDelete,
2457
- IconDesktop,
2458
- IconDocument,
2459
- IconDocumentBroken,
2460
- IconDownload,
2461
- IconEdit,
2462
- IconEducation,
2463
- IconEnlarge,
2464
- IconFilter,
2465
- IconFlag,
2466
- IconGrid,
2467
- IconHeart,
2468
- IconHelp,
2469
- IconHistory,
2470
- IconHome,
2471
- IconImage,
2472
- IconInfo,
2473
- IconInvoice,
2474
- IconLanguage,
2475
- IconLink,
2476
- IconLinkBroken,
2477
- IconList,
2478
- IconLocation,
2479
- IconMail,
2480
- IconMessage,
2481
- IconMinus,
2482
- IconMobile,
2483
- IconMoney,
2484
- IconNewWindow,
2485
- IconNote,
2486
- IconNotification,
2487
- IconOverflow,
2488
- IconPeople,
2489
- IconPersonAdd,
2490
- IconPersonVerified,
2491
- IconPhone,
2492
- IconPlatformAndroid,
2493
- IconPlatformApple,
2494
- IconPositive,
2495
- IconPrint,
2496
- IconProfile,
2497
- IconPromote,
2498
- IconRecommended,
2499
- IconRefresh,
2500
- IconResume,
2501
- IconSearch,
2502
- IconSecurity,
2503
- IconSend,
2504
- IconSent,
2505
- IconSettings,
2506
- IconShare,
2507
- IconSocialFacebook,
2508
- IconSocialGitHub,
2509
- IconSocialInstagram,
2510
- IconSocialLinkedIn,
2511
- IconSocialMedium,
2512
- IconSocialTwitter,
2513
- IconSocialX,
2514
- IconSocialYouTube,
2515
- IconSort,
2516
- IconStar,
2517
- IconStarActiveSvg,
2518
- IconStarSvg,
2519
- IconStatistics,
2520
- IconSubCategory,
2521
- IconTag,
2522
- IconTick,
2523
- IconTime,
2524
- IconTip,
2525
- IconUpload,
2526
- IconVideo,
2527
- IconVisibility,
2528
- IconWorkExperience,
2529
- IconZoomIn,
2530
- IconZoomOut,
2531
- Inline,
2532
- Overlay,
2533
- Text,
2534
- TextContext,
2535
- Typography,
2536
- flattenChildren,
2537
- useDefaultTextProps,
2538
- useDisclosure,
2539
- validInlineComponents
2540
- };