@altinn/altinn-components 0.5.2 → 0.6.1

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 (544) hide show
  1. package/README.md +14 -2
  2. package/dist/components/Attachment/AttachmentLink.d.ts +10 -0
  3. package/dist/components/Attachment/AttachmentList.d.ts +7 -0
  4. package/dist/components/Avatar/Avatar.d.ts +27 -0
  5. package/dist/components/Avatar/AvatarGroup.d.ts +20 -0
  6. package/dist/components/Avatar/color.d.ts +4 -0
  7. package/dist/components/Badge/Badge.d.ts +11 -0
  8. package/dist/components/Bookmarks/BookmarksList.d.ts +7 -0
  9. package/dist/components/Bookmarks/BookmarksListItem.d.ts +21 -0
  10. package/dist/components/Bookmarks/QueryLabel.d.ts +11 -0
  11. package/dist/components/Bookmarks/index.d.ts +3 -0
  12. package/dist/components/Button/Button.d.ts +8 -0
  13. package/dist/components/Button/ButtonBase.d.ts +20 -0
  14. package/dist/components/Button/ButtonIcon.d.ts +7 -0
  15. package/dist/components/Button/ButtonLabel.d.ts +8 -0
  16. package/dist/components/Button/ComboButton.d.ts +10 -0
  17. package/dist/components/Button/IconButton.d.ts +14 -0
  18. package/dist/components/ContextMenu/ContextMenu.d.ts +8 -0
  19. package/dist/components/ContextMenu/ContextMenuBase.d.ts +9 -0
  20. package/dist/components/Datepicker/index.d.ts +1 -0
  21. package/dist/components/Dialog/Dialog.d.ts +54 -0
  22. package/dist/components/Dialog/DialogActions.d.ts +16 -0
  23. package/dist/components/Dialog/DialogActivityLog.d.ts +10 -0
  24. package/dist/components/Dialog/DialogArticleBase.d.ts +6 -0
  25. package/dist/components/Dialog/DialogAttachments.d.ts +6 -0
  26. package/dist/components/Dialog/DialogBase.d.ts +5 -0
  27. package/dist/components/Dialog/DialogBodyBase.d.ts +5 -0
  28. package/dist/components/Dialog/DialogBorder.d.ts +9 -0
  29. package/dist/components/Dialog/DialogContent.d.ts +9 -0
  30. package/dist/components/Dialog/DialogFooter.d.ts +4 -0
  31. package/dist/components/Dialog/DialogGroup.d.ts +6 -0
  32. package/dist/components/Dialog/DialogHeader.d.ts +10 -0
  33. package/dist/components/Dialog/DialogHeaderBase.d.ts +5 -0
  34. package/dist/components/Dialog/DialogHeadings.d.ts +24 -0
  35. package/dist/components/Dialog/DialogHistory.d.ts +6 -0
  36. package/dist/components/Dialog/DialogList.d.ts +7 -0
  37. package/dist/components/Dialog/DialogListItem.d.ts +59 -0
  38. package/dist/components/Dialog/DialogListItemBase.d.ts +28 -0
  39. package/dist/components/Dialog/DialogMetadata.d.ts +22 -0
  40. package/dist/components/Dialog/DialogNav.d.ts +21 -0
  41. package/dist/components/Dialog/DialogSectionBase.d.ts +6 -0
  42. package/dist/components/Dialog/DialogSeenBy.d.ts +19 -0
  43. package/dist/components/Dialog/DialogSelect.d.ts +10 -0
  44. package/dist/components/Dialog/DialogStatus.d.ts +25 -0
  45. package/dist/components/Dialog/DialogTitle.d.ts +20 -0
  46. package/dist/components/Dialog/DialogTouchedBy.d.ts +10 -0
  47. package/dist/components/Dropdown/Backdrop.d.ts +6 -0
  48. package/dist/components/Dropdown/DrawerBase.d.ts +9 -0
  49. package/dist/components/Dropdown/DrawerBody.d.ts +6 -0
  50. package/dist/components/Dropdown/DrawerButton.d.ts +7 -0
  51. package/dist/components/Dropdown/DrawerFooter.d.ts +6 -0
  52. package/dist/components/Dropdown/DrawerHeader.d.ts +7 -0
  53. package/dist/components/Dropdown/DrawerOrDropdown.d.ts +10 -0
  54. package/dist/components/Dropdown/DropdownBase.d.ts +10 -0
  55. package/{lib/components/Dropdown/index.ts → dist/components/Dropdown/index.d.ts} +0 -1
  56. package/dist/components/Footer/Footer.d.ts +6 -0
  57. package/dist/components/Footer/FooterAddress.d.ts +6 -0
  58. package/dist/components/Footer/FooterBase.d.ts +6 -0
  59. package/dist/components/Footer/FooterLogo.d.ts +5 -0
  60. package/dist/components/Footer/FooterMenu.d.ts +14 -0
  61. package/dist/components/GlobalMenu/AccountButton.d.ts +14 -0
  62. package/dist/components/GlobalMenu/AccountMenu.d.ts +20 -0
  63. package/dist/components/GlobalMenu/BackButton.d.ts +5 -0
  64. package/dist/components/GlobalMenu/GlobalMenu.d.ts +16 -0
  65. package/dist/components/GlobalMenu/GlobalMenuBase.d.ts +7 -0
  66. package/dist/components/GlobalMenu/LogoutButton.d.ts +7 -0
  67. package/dist/components/Header/DigdirLogomark.d.ts +5 -0
  68. package/dist/components/Header/Header.d.ts +9 -0
  69. package/dist/components/Header/HeaderBase.d.ts +9 -0
  70. package/dist/components/Header/HeaderButton.d.ts +15 -0
  71. package/dist/components/Header/HeaderLogo.d.ts +9 -0
  72. package/dist/components/Header/HeaderMenu.d.ts +7 -0
  73. package/dist/components/Header/HeaderSearch.d.ts +7 -0
  74. package/dist/components/History/HistoryAttachments.d.ts +6 -0
  75. package/dist/components/History/HistoryBorder.d.ts +7 -0
  76. package/dist/components/History/HistoryItem.d.ts +14 -0
  77. package/dist/components/History/HistoryList.d.ts +6 -0
  78. package/dist/components/Icon/CheckboxCheckedIcon.d.ts +8 -0
  79. package/dist/components/Icon/CheckboxIcon.d.ts +10 -0
  80. package/dist/components/Icon/CheckboxUncheckedIcon.d.ts +9 -0
  81. package/dist/components/Icon/Icon.d.ts +9 -0
  82. package/dist/components/Icon/ProgressIcon.d.ts +6 -0
  83. package/dist/components/Icon/RadioCheckedIcon.d.ts +8 -0
  84. package/dist/components/Icon/RadioIcon.d.ts +10 -0
  85. package/dist/components/Icon/RadioUncheckedIcon.d.ts +9 -0
  86. package/dist/components/Icon/SvgIcon.d.ts +9 -0
  87. package/dist/components/Icon/iconsMap.d.ts +1911 -0
  88. package/dist/components/Layout/Layout.d.ts +24 -0
  89. package/dist/components/Layout/LayoutBase.d.ts +21 -0
  90. package/dist/components/Layout/LayoutBody.d.ts +7 -0
  91. package/dist/components/Layout/LayoutContent.d.ts +7 -0
  92. package/dist/components/Layout/LayoutSidebar.d.ts +13 -0
  93. package/dist/components/LayoutAction/ActionFooter.d.ts +6 -0
  94. package/dist/components/LayoutAction/ActionHeader.d.ts +7 -0
  95. package/dist/components/LayoutAction/ActionMenu.d.ts +6 -0
  96. package/dist/components/List/List.d.ts +10 -0
  97. package/dist/components/List/ListBase.d.ts +9 -0
  98. package/dist/components/List/ListItem.d.ts +46 -0
  99. package/dist/components/List/ListItemBase.d.ts +27 -0
  100. package/dist/components/List/ListItemLabel.d.ts +9 -0
  101. package/dist/components/List/ListItemMedia.d.ts +14 -0
  102. package/dist/components/Menu/Menu.d.ts +8 -0
  103. package/dist/components/Menu/MenuBase.d.ts +27 -0
  104. package/dist/components/Menu/MenuHeader.d.ts +4 -0
  105. package/dist/components/Menu/MenuInputField.d.ts +12 -0
  106. package/dist/components/Menu/MenuItem.d.ts +35 -0
  107. package/dist/components/Menu/MenuItemBase.d.ts +23 -0
  108. package/dist/components/Menu/MenuItemLabel.d.ts +10 -0
  109. package/dist/components/Menu/MenuItemMedia.d.ts +14 -0
  110. package/dist/components/Menu/MenuItems.d.ts +17 -0
  111. package/dist/components/Menu/MenuOption.d.ts +19 -0
  112. package/dist/components/Menu/MenuSearch.d.ts +8 -0
  113. package/{lib/components/Menu/index.ts → dist/components/Menu/index.d.ts} +1 -0
  114. package/dist/components/Meta/MetaBase.d.ts +7 -0
  115. package/dist/components/Meta/MetaItem.d.ts +18 -0
  116. package/dist/components/Meta/MetaItemBase.d.ts +15 -0
  117. package/dist/components/Meta/MetaItemLabel.d.ts +11 -0
  118. package/dist/components/Meta/MetaItemMedia.d.ts +9 -0
  119. package/dist/components/Meta/MetaList.d.ts +12 -0
  120. package/dist/components/Meta/MetaProgress.d.ts +13 -0
  121. package/dist/components/Meta/MetaTimestamp.d.ts +16 -0
  122. package/dist/components/Page/PageBase.d.ts +6 -0
  123. package/dist/components/Page/PageHeader.d.ts +7 -0
  124. package/dist/components/Page/PageHeaderMedia.d.ts +10 -0
  125. package/dist/components/Page/PageNav.d.ts +14 -0
  126. package/dist/components/Page/SectionBase.d.ts +19 -0
  127. package/dist/components/Page/SectionFooter.d.ts +6 -0
  128. package/dist/components/Page/SectionHeader.d.ts +7 -0
  129. package/dist/components/RootProvider/RootProvider.d.ts +19 -0
  130. package/dist/components/Searchbar/Autocomplete.d.ts +9 -0
  131. package/dist/components/Searchbar/AutocompleteBase.d.ts +7 -0
  132. package/dist/components/Searchbar/AutocompleteGroup.d.ts +6 -0
  133. package/dist/components/Searchbar/AutocompleteItem.d.ts +13 -0
  134. package/dist/components/Searchbar/SearchField.d.ts +16 -0
  135. package/dist/components/Searchbar/Searchbar.d.ts +9 -0
  136. package/dist/components/Searchbar/SearchbarBase.d.ts +8 -0
  137. package/dist/components/Snackbar/Snackbar.d.ts +21 -0
  138. package/dist/components/Snackbar/SnackbarBase.d.ts +13 -0
  139. package/dist/components/Snackbar/SnackbarLabel.d.ts +5 -0
  140. package/dist/components/Snackbar/SnackbarMedia.d.ts +6 -0
  141. package/dist/components/Toolbar/Toolbar.d.ts +15 -0
  142. package/dist/components/Toolbar/ToolbarAdd.d.ts +10 -0
  143. package/dist/components/Toolbar/ToolbarBase.d.ts +7 -0
  144. package/dist/components/Toolbar/ToolbarButton.d.ts +14 -0
  145. package/dist/components/Toolbar/ToolbarFilter.d.ts +23 -0
  146. package/dist/components/Toolbar/ToolbarFilterBase.d.ts +6 -0
  147. package/dist/components/Toolbar/ToolbarMenu.d.ts +13 -0
  148. package/dist/components/Toolbar/ToolbarOptions.d.ts +18 -0
  149. package/dist/components/Toolbar/ToolbarSearch.d.ts +8 -0
  150. package/dist/components/Typography/Heading.d.ts +10 -0
  151. package/dist/components/Typography/Typography.d.ts +11 -0
  152. package/{lib/components/index.ts → dist/components/index.d.ts} +3 -1
  153. package/dist/hooks/useClickOutside.d.ts +2 -0
  154. package/dist/hooks/useEscapeKey.d.ts +1 -0
  155. package/dist/hooks/useMenu.d.ts +21 -0
  156. package/dist/index.css +1 -0
  157. package/dist/index.es.js +3340 -0
  158. package/package.json +27 -19
  159. package/.github/workflows/ci-cd-main.yml +0 -47
  160. package/.github/workflows/ci-cd-pull-request.yml +0 -39
  161. package/.github/workflows/workflow-deploy-storybook.yml +0 -35
  162. package/.node-version +0 -1
  163. package/.storybook/StoryDecorator.tsx +0 -29
  164. package/.storybook/ThemeProvider.tsx +0 -16
  165. package/.storybook/main.ts +0 -20
  166. package/.storybook/preview.tsx +0 -63
  167. package/.storybook/storyDecorator.module.css +0 -20
  168. package/.storybook/theme.module.css +0 -3
  169. package/CHANGELOG.md +0 -90
  170. package/CONTRIBUTING.MD +0 -59
  171. package/biome.jsonc +0 -65
  172. package/lib/components/Attachment/AttachmentLink.stories.ts +0 -19
  173. package/lib/components/Attachment/AttachmentLink.tsx +0 -20
  174. package/lib/components/Attachment/AttachmentList.stories.ts +0 -39
  175. package/lib/components/Attachment/AttachmentList.tsx +0 -26
  176. package/lib/components/Attachment/attachmentLink.module.css +0 -20
  177. package/lib/components/Attachment/attachmentList.module.css +0 -12
  178. package/lib/components/Avatar/Avatar.tsx +0 -83
  179. package/lib/components/Avatar/AvatarGroup.stories.ts +0 -66
  180. package/lib/components/Avatar/AvatarGroup.tsx +0 -60
  181. package/lib/components/Avatar/avatar.module.css +0 -61
  182. package/lib/components/Avatar/avatar.stories.tsx +0 -40
  183. package/lib/components/Avatar/avatarGroup.module.css +0 -78
  184. package/lib/components/Avatar/color.ts +0 -71
  185. package/lib/components/Badge/Badge.stories.ts +0 -32
  186. package/lib/components/Badge/Badge.tsx +0 -22
  187. package/lib/components/Badge/badge.module.css +0 -27
  188. package/lib/components/Button/Button.stories.ts +0 -50
  189. package/lib/components/Button/Button.tsx +0 -60
  190. package/lib/components/Button/ButtonBase.tsx +0 -53
  191. package/lib/components/Button/ButtonIcon.tsx +0 -16
  192. package/lib/components/Button/ButtonLabel.tsx +0 -18
  193. package/lib/components/Button/Buttons.stories.tsx +0 -64
  194. package/lib/components/Button/ComboButton.stories.ts +0 -45
  195. package/lib/components/Button/ComboButton.tsx +0 -46
  196. package/lib/components/Button/IconButton.stories.tsx +0 -47
  197. package/lib/components/Button/IconButton.tsx +0 -31
  198. package/lib/components/Button/button.module.css +0 -22
  199. package/lib/components/Button/buttonBase.module.css +0 -142
  200. package/lib/components/Button/buttonIcon.module.css +0 -17
  201. package/lib/components/Button/buttonLabel.module.css +0 -17
  202. package/lib/components/Button/comboButton.module.css +0 -35
  203. package/lib/components/Button/iconButton.module.css +0 -31
  204. package/lib/components/ContextMenu/ContextMenu.stories.ts +0 -49
  205. package/lib/components/ContextMenu/ContextMenu.tsx +0 -20
  206. package/lib/components/ContextMenu/ContextMenuBase.tsx +0 -33
  207. package/lib/components/ContextMenu/contextMenuBase.module.css +0 -35
  208. package/lib/components/Dialog/Dialog.stories.ts +0 -331
  209. package/lib/components/Dialog/Dialog.tsx +0 -111
  210. package/lib/components/Dialog/DialogActions.stories.ts +0 -60
  211. package/lib/components/Dialog/DialogActions.tsx +0 -80
  212. package/lib/components/Dialog/DialogActivityLog.tsx +0 -18
  213. package/lib/components/Dialog/DialogArticleBase.tsx +0 -10
  214. package/lib/components/Dialog/DialogAttachments.stories.ts +0 -38
  215. package/lib/components/Dialog/DialogAttachments.tsx +0 -25
  216. package/lib/components/Dialog/DialogBase.tsx +0 -10
  217. package/lib/components/Dialog/DialogBodyBase.tsx +0 -17
  218. package/lib/components/Dialog/DialogBorder.tsx +0 -19
  219. package/lib/components/Dialog/DialogContent.stories.ts +0 -26
  220. package/lib/components/Dialog/DialogContent.tsx +0 -23
  221. package/lib/components/Dialog/DialogFooter.tsx +0 -14
  222. package/lib/components/Dialog/DialogGroup.tsx +0 -24
  223. package/lib/components/Dialog/DialogHeader.stories.ts +0 -24
  224. package/lib/components/Dialog/DialogHeader.tsx +0 -23
  225. package/lib/components/Dialog/DialogHeaderBase.tsx +0 -10
  226. package/lib/components/Dialog/DialogHeadings.stories.ts +0 -35
  227. package/lib/components/Dialog/DialogHeadings.tsx +0 -77
  228. package/lib/components/Dialog/DialogHistory.stories.ts +0 -67
  229. package/lib/components/Dialog/DialogHistory.tsx +0 -19
  230. package/lib/components/Dialog/DialogList.stories.ts +0 -65
  231. package/lib/components/Dialog/DialogList.tsx +0 -35
  232. package/lib/components/Dialog/DialogListItem.stories.tsx +0 -238
  233. package/lib/components/Dialog/DialogListItem.tsx +0 -126
  234. package/lib/components/Dialog/DialogListItemBase.tsx +0 -52
  235. package/lib/components/Dialog/DialogMetadata.stories.ts +0 -75
  236. package/lib/components/Dialog/DialogMetadata.tsx +0 -56
  237. package/lib/components/Dialog/DialogNav.stories.ts +0 -88
  238. package/lib/components/Dialog/DialogNav.tsx +0 -56
  239. package/lib/components/Dialog/DialogSectionBase.tsx +0 -20
  240. package/lib/components/Dialog/DialogSeenBy.stories.tsx +0 -56
  241. package/lib/components/Dialog/DialogSeenBy.tsx +0 -36
  242. package/lib/components/Dialog/DialogSelect.tsx +0 -23
  243. package/lib/components/Dialog/DialogStatus.stories.ts +0 -57
  244. package/lib/components/Dialog/DialogStatus.tsx +0 -61
  245. package/lib/components/Dialog/DialogTitle.stories.ts +0 -31
  246. package/lib/components/Dialog/DialogTitle.tsx +0 -31
  247. package/lib/components/Dialog/DialogTouchedBy.stories.tsx +0 -27
  248. package/lib/components/Dialog/DialogTouchedBy.tsx +0 -19
  249. package/lib/components/Dialog/dialog.module.css +0 -21
  250. package/lib/components/Dialog/dialogAction.module.css +0 -26
  251. package/lib/components/Dialog/dialogArticleBase.module.css +0 -5
  252. package/lib/components/Dialog/dialogBodyBase.module.css +0 -13
  253. package/lib/components/Dialog/dialogBorder.module.css +0 -42
  254. package/lib/components/Dialog/dialogGroup.module.css +0 -35
  255. package/lib/components/Dialog/dialogHeaderBase.module.css +0 -6
  256. package/lib/components/Dialog/dialogHeadings.module.css +0 -24
  257. package/lib/components/Dialog/dialogHistory.module.css +0 -12
  258. package/lib/components/Dialog/dialogListItem.module.css +0 -81
  259. package/lib/components/Dialog/dialogListItemBase.module.css +0 -28
  260. package/lib/components/Dialog/dialogNav.module.css +0 -12
  261. package/lib/components/Dialog/dialogSectionBase.module.css +0 -11
  262. package/lib/components/Dialog/dialogSelect.module.css +0 -34
  263. package/lib/components/Dialog/dialogTitle.module.css +0 -47
  264. package/lib/components/Dropdown/Backdrop.tsx +0 -12
  265. package/lib/components/Dropdown/DrawerBase.tsx +0 -20
  266. package/lib/components/Dropdown/DrawerBody.tsx +0 -12
  267. package/lib/components/Dropdown/DrawerButton.tsx +0 -17
  268. package/lib/components/Dropdown/DrawerFooter.tsx +0 -12
  269. package/lib/components/Dropdown/DrawerHeader.tsx +0 -19
  270. package/lib/components/Dropdown/DrawerOrDropdown.tsx +0 -29
  271. package/lib/components/Dropdown/DropdownBase.tsx +0 -32
  272. package/lib/components/Dropdown/backdrop.module.css +0 -11
  273. package/lib/components/Dropdown/drawerBase.module.css +0 -17
  274. package/lib/components/Dropdown/drawerBody.module.css +0 -5
  275. package/lib/components/Dropdown/drawerButton.module.css +0 -6
  276. package/lib/components/Dropdown/drawerFooter.module.css +0 -13
  277. package/lib/components/Dropdown/drawerHeader.module.css +0 -17
  278. package/lib/components/Dropdown/drawerOrDropdown.module.css +0 -19
  279. package/lib/components/Dropdown/dropdownBase.module.css +0 -34
  280. package/lib/components/Footer/Footer.stories.ts +0 -37
  281. package/lib/components/Footer/Footer.tsx +0 -21
  282. package/lib/components/Footer/FooterAddress.tsx +0 -12
  283. package/lib/components/Footer/FooterBase.tsx +0 -16
  284. package/lib/components/Footer/FooterLogo.tsx +0 -17
  285. package/lib/components/Footer/FooterMenu.tsx +0 -43
  286. package/lib/components/Footer/footerAddress.module.css +0 -8
  287. package/lib/components/Footer/footerBase.module.css +0 -28
  288. package/lib/components/Footer/footerLogo.module.css +0 -12
  289. package/lib/components/Footer/footerMenu.module.css +0 -35
  290. package/lib/components/GlobalMenu/AccountButton.tsx +0 -30
  291. package/lib/components/GlobalMenu/AccountMenu.stories.tsx +0 -65
  292. package/lib/components/GlobalMenu/AccountMenu.tsx +0 -82
  293. package/lib/components/GlobalMenu/BackButton.tsx +0 -10
  294. package/lib/components/GlobalMenu/GlobalMenu.stories.tsx +0 -181
  295. package/lib/components/GlobalMenu/GlobalMenu.tsx +0 -81
  296. package/lib/components/GlobalMenu/GlobalMenuBase.tsx +0 -22
  297. package/lib/components/GlobalMenu/LogoutButton.tsx +0 -19
  298. package/lib/components/GlobalMenu/globalMenuBase.module.css +0 -39
  299. package/lib/components/GlobalMenu/logoutButton.module.css +0 -9
  300. package/lib/components/Header/DigdirLogomark.tsx +0 -23
  301. package/lib/components/Header/Header.stories.tsx +0 -188
  302. package/lib/components/Header/Header.tsx +0 -74
  303. package/lib/components/Header/HeaderBase.tsx +0 -21
  304. package/lib/components/Header/HeaderButton.stories.ts +0 -70
  305. package/lib/components/Header/HeaderButton.tsx +0 -67
  306. package/lib/components/Header/HeaderLogo.stories.ts +0 -17
  307. package/lib/components/Header/HeaderLogo.tsx +0 -22
  308. package/lib/components/Header/HeaderMenu.tsx +0 -17
  309. package/lib/components/Header/header.module.css +0 -45
  310. package/lib/components/Header/headerBase.module.css +0 -51
  311. package/lib/components/Header/headerButton.module.css +0 -37
  312. package/lib/components/Header/headerLogo.module.css +0 -24
  313. package/lib/components/Header/headerMenu.module.css +0 -3
  314. package/lib/components/Header/mobileMenu.module.css +0 -28
  315. package/lib/components/History/HistoryAttachments.tsx +0 -22
  316. package/lib/components/History/HistoryBorder.tsx +0 -17
  317. package/lib/components/History/HistoryItem.stories.ts +0 -56
  318. package/lib/components/History/HistoryItem.tsx +0 -56
  319. package/lib/components/History/HistoryList.stories.ts +0 -70
  320. package/lib/components/History/HistoryList.tsx +0 -26
  321. package/lib/components/History/historyBorder.module.css +0 -8
  322. package/lib/components/History/historyItem.module.css +0 -19
  323. package/lib/components/History/historyList.module.css +0 -12
  324. package/lib/components/Icon/CheckboxCheckedIcon.tsx +0 -28
  325. package/lib/components/Icon/CheckboxIcon.stories.ts +0 -32
  326. package/lib/components/Icon/CheckboxIcon.tsx +0 -17
  327. package/lib/components/Icon/CheckboxUncheckedIcon.tsx +0 -38
  328. package/lib/components/Icon/Icon.stories.ts +0 -24
  329. package/lib/components/Icon/Icon.tsx +0 -23
  330. package/lib/components/Icon/ProgressIcon.stories.ts +0 -43
  331. package/lib/components/Icon/ProgressIcon.tsx +0 -44
  332. package/lib/components/Icon/RadioCheckedIcon.tsx +0 -29
  333. package/lib/components/Icon/RadioIcon.stories.ts +0 -32
  334. package/lib/components/Icon/RadioIcon.tsx +0 -17
  335. package/lib/components/Icon/RadioUncheckedIcon.tsx +0 -30
  336. package/lib/components/Icon/SvgIcon.tsx +0 -18
  337. package/lib/components/Icon/__AkselIcon.tsx +0 -37
  338. package/lib/components/Icon/checkboxIcon.module.css +0 -23
  339. package/lib/components/Icon/icon.module.css +0 -4
  340. package/lib/components/Icon/iconsMap.tsx +0 -2078
  341. package/lib/components/Icon/progressIcon.module.css +0 -29
  342. package/lib/components/Icon/radioIcon.module.css +0 -21
  343. package/lib/components/Layout/Layout.stories.tsx +0 -308
  344. package/lib/components/Layout/Layout.tsx +0 -46
  345. package/lib/components/Layout/LayoutBase.stories.ts +0 -17
  346. package/lib/components/Layout/LayoutBase.tsx +0 -31
  347. package/lib/components/Layout/LayoutBody.stories.ts +0 -17
  348. package/lib/components/Layout/LayoutBody.tsx +0 -16
  349. package/lib/components/Layout/LayoutContent.stories.ts +0 -17
  350. package/lib/components/Layout/LayoutContent.tsx +0 -15
  351. package/lib/components/Layout/LayoutSidebar.stories.ts +0 -17
  352. package/lib/components/Layout/LayoutSidebar.tsx +0 -23
  353. package/lib/components/Layout/layoutBase.module.css +0 -22
  354. package/lib/components/Layout/layoutBody.module.css +0 -15
  355. package/lib/components/Layout/layoutContent.module.css +0 -13
  356. package/lib/components/Layout/layoutSidebar.module.css +0 -20
  357. package/lib/components/LayoutAction/ActionFooter.stories.tsx +0 -70
  358. package/lib/components/LayoutAction/ActionFooter.tsx +0 -15
  359. package/lib/components/LayoutAction/ActionHeader.stories.ts +0 -20
  360. package/lib/components/LayoutAction/ActionHeader.tsx +0 -19
  361. package/lib/components/LayoutAction/ActionMenu.stories.tsx +0 -40
  362. package/lib/components/LayoutAction/ActionMenu.tsx +0 -23
  363. package/lib/components/LayoutAction/actionFooter.module.css +0 -28
  364. package/lib/components/LayoutAction/actionHeader.module.css +0 -55
  365. package/lib/components/LayoutAction/actionMenu.module.css +0 -30
  366. package/lib/components/List/List.stories.tsx +0 -43
  367. package/lib/components/List/List.tsx +0 -20
  368. package/lib/components/List/ListBase.tsx +0 -19
  369. package/lib/components/List/ListItem.stories.tsx +0 -208
  370. package/lib/components/List/ListItem.tsx +0 -73
  371. package/lib/components/List/ListItemBase.tsx +0 -78
  372. package/lib/components/List/ListItemLabel.tsx +0 -29
  373. package/lib/components/List/ListItemMedia.tsx +0 -59
  374. package/lib/components/List/listBase.module.css +0 -16
  375. package/lib/components/List/listItemBase.module.css +0 -90
  376. package/lib/components/List/listItemLabel.module.css +0 -55
  377. package/lib/components/List/listItemMedia.module.css +0 -41
  378. package/lib/components/Menu/Menu.stories.ts +0 -514
  379. package/lib/components/Menu/Menu.tsx +0 -24
  380. package/lib/components/Menu/MenuBase.tsx +0 -63
  381. package/lib/components/Menu/MenuHeader.tsx +0 -13
  382. package/lib/components/Menu/MenuItem.stories.tsx +0 -164
  383. package/lib/components/Menu/MenuItem.tsx +0 -63
  384. package/lib/components/Menu/MenuItemBase.tsx +0 -77
  385. package/lib/components/Menu/MenuItemLabel.tsx +0 -30
  386. package/lib/components/Menu/MenuItemMedia.tsx +0 -42
  387. package/lib/components/Menu/MenuItems.stories.ts +0 -438
  388. package/lib/components/Menu/MenuItems.tsx +0 -96
  389. package/lib/components/Menu/MenuOption.stories.ts +0 -52
  390. package/lib/components/Menu/MenuOption.tsx +0 -48
  391. package/lib/components/Menu/MenuSearch.stories.ts +0 -18
  392. package/lib/components/Menu/MenuSearch.tsx +0 -25
  393. package/lib/components/Menu/menu.module.css +0 -25
  394. package/lib/components/Menu/menuBase.module.css +0 -25
  395. package/lib/components/Menu/menuHeader.module.css +0 -12
  396. package/lib/components/Menu/menuItemBase.module.css +0 -72
  397. package/lib/components/Menu/menuItemLabel.module.css +0 -32
  398. package/lib/components/Menu/menuItemMedia.module.css +0 -38
  399. package/lib/components/Menu/menuOption.module.css +0 -27
  400. package/lib/components/Menu/menuSearch.module.css +0 -30
  401. package/lib/components/Meta/MetaBase.tsx +0 -15
  402. package/lib/components/Meta/MetaItem.stories.ts +0 -25
  403. package/lib/components/Meta/MetaItem.tsx +0 -31
  404. package/lib/components/Meta/MetaItemBase.tsx +0 -46
  405. package/lib/components/Meta/MetaItemLabel.tsx +0 -20
  406. package/lib/components/Meta/MetaItemMedia.tsx +0 -22
  407. package/lib/components/Meta/MetaList.stories.ts +0 -29
  408. package/lib/components/Meta/MetaList.tsx +0 -43
  409. package/lib/components/Meta/MetaProgress.stories.ts +0 -29
  410. package/lib/components/Meta/MetaProgress.tsx +0 -26
  411. package/lib/components/Meta/MetaTimestamp.stories.ts +0 -33
  412. package/lib/components/Meta/MetaTimestamp.tsx +0 -29
  413. package/lib/components/Meta/meta.module.css +0 -6
  414. package/lib/components/Meta/metaItem.module.css +0 -107
  415. package/lib/components/Meta/metaList.module.css +0 -15
  416. package/lib/components/Page/PageBase.tsx +0 -14
  417. package/lib/components/Page/PageHeader.tsx +0 -21
  418. package/lib/components/Page/PageHeaderMedia.tsx +0 -25
  419. package/lib/components/Page/SectionBase.tsx +0 -52
  420. package/lib/components/Page/SectionFooter.tsx +0 -15
  421. package/lib/components/Page/SectionHeader.tsx +0 -16
  422. package/lib/components/Page/pageHeader.module.css +0 -5
  423. package/lib/components/Page/sectionBase.module.css +0 -82
  424. package/lib/components/Page/sectionFooter.module.css +0 -8
  425. package/lib/components/Page/sectionHeader.module.css +0 -9
  426. package/lib/components/RootProvider/RootProvider.tsx +0 -55
  427. package/lib/components/Searchbar/Autocomplete.stories.tsx +0 -77
  428. package/lib/components/Searchbar/Autocomplete.tsx +0 -44
  429. package/lib/components/Searchbar/AutocompleteBase.tsx +0 -16
  430. package/lib/components/Searchbar/AutocompleteGroup.tsx +0 -17
  431. package/lib/components/Searchbar/AutocompleteItem.tsx +0 -23
  432. package/lib/components/Searchbar/SearchField.tsx +0 -78
  433. package/lib/components/Searchbar/Searchbar.stories.tsx +0 -151
  434. package/lib/components/Searchbar/Searchbar.tsx +0 -18
  435. package/lib/components/Searchbar/SearchbarBase.tsx +0 -23
  436. package/lib/components/Searchbar/autocompleteBase.module.css +0 -17
  437. package/lib/components/Searchbar/autocompleteGroup.module.css +0 -3
  438. package/lib/components/Searchbar/autocompleteItem.module.css +0 -19
  439. package/lib/components/Searchbar/searchField.module.css +0 -54
  440. package/lib/components/Searchbar/searchbarBase.module.css +0 -20
  441. package/lib/components/Snackbar/Snackbar.stories.tsx +0 -21
  442. package/lib/components/Snackbar/Snackbar.tsx +0 -32
  443. package/lib/components/Snackbar/SnackbarBase.tsx +0 -39
  444. package/lib/components/Snackbar/SnackbarLabel.tsx +0 -10
  445. package/lib/components/Snackbar/SnackbarMedia.tsx +0 -14
  446. package/lib/components/Snackbar/snackbarBase.module.css +0 -55
  447. package/lib/components/Snackbar/snackbarLabel.module.css +0 -6
  448. package/lib/components/Snackbar/snackbarMedia.module.css +0 -10
  449. package/lib/components/Toolbar/Toolbar.stories.tsx +0 -188
  450. package/lib/components/Toolbar/Toolbar.tsx +0 -156
  451. package/lib/components/Toolbar/ToolbarAdd.stories.ts +0 -23
  452. package/lib/components/Toolbar/ToolbarAdd.tsx +0 -26
  453. package/lib/components/Toolbar/ToolbarBase.tsx +0 -12
  454. package/lib/components/Toolbar/ToolbarButton.stories.ts +0 -32
  455. package/lib/components/Toolbar/ToolbarButton.tsx +0 -65
  456. package/lib/components/Toolbar/ToolbarFilter.stories.ts +0 -64
  457. package/lib/components/Toolbar/ToolbarFilter.tsx +0 -75
  458. package/lib/components/Toolbar/ToolbarMenu.stories.ts +0 -37
  459. package/lib/components/Toolbar/ToolbarMenu.tsx +0 -29
  460. package/lib/components/Toolbar/ToolbarOptions.stories.ts +0 -108
  461. package/lib/components/Toolbar/ToolbarOptions.tsx +0 -74
  462. package/lib/components/Toolbar/ToolbarSearch.stories.ts +0 -19
  463. package/lib/components/Toolbar/ToolbarSearch.tsx +0 -24
  464. package/lib/components/Toolbar/toolbarAdd.module.css +0 -7
  465. package/lib/components/Toolbar/toolbarBase.module.css +0 -19
  466. package/lib/components/Toolbar/toolbarButton.module.css +0 -3
  467. package/lib/components/Toolbar/toolbarFilter.module.css +0 -25
  468. package/lib/components/Toolbar/toolbarMenu.module.css +0 -7
  469. package/lib/components/Toolbar/toolbarSearch.module.css +0 -28
  470. package/lib/components/Typography/Heading.tsx +0 -23
  471. package/lib/components/Typography/Typography.tsx +0 -24
  472. package/lib/components/Typography/heading.module.css +0 -21
  473. package/lib/components/Typography/typography.module.css +0 -64
  474. package/lib/css/colors.css +0 -113
  475. package/lib/css/global.css +0 -15
  476. package/lib/css/shadows.css +0 -7
  477. package/lib/css/theme-article.css +0 -15
  478. package/lib/css/theme-company.css +0 -15
  479. package/lib/css/theme-global-dark.css +0 -19
  480. package/lib/css/theme-global.css +0 -15
  481. package/lib/css/theme-neutral.css +0 -15
  482. package/lib/css/theme-person.css +0 -15
  483. package/lib/css/theme.css +0 -22
  484. package/lib/hooks/useClickOutside.ts +0 -22
  485. package/lib/hooks/useEscapeKey.ts +0 -17
  486. package/lib/hooks/useMenu.tsx +0 -80
  487. package/lib/stories/Color/MenuItem.stories.tsx +0 -43
  488. package/lib/stories/Color/Swatches.stories.tsx +0 -19
  489. package/lib/stories/Color/Swatches.tsx +0 -42
  490. package/lib/stories/Color/colors.json +0 -62
  491. package/lib/stories/Color/swatches.module.css +0 -14
  492. package/lib/stories/Inbox/BookmarksPage.tsx +0 -52
  493. package/lib/stories/Inbox/DialogPage.tsx +0 -15
  494. package/lib/stories/Inbox/Inbox.stories.tsx +0 -55
  495. package/lib/stories/Inbox/Inbox.tsx +0 -12
  496. package/lib/stories/Inbox/InboxLayout.tsx +0 -51
  497. package/lib/stories/Inbox/InboxPage.tsx +0 -50
  498. package/lib/stories/Inbox/InboxProvider.tsx +0 -135
  499. package/lib/stories/Inbox/InboxSection.tsx +0 -39
  500. package/lib/stories/Inbox/InboxToolbar.tsx +0 -94
  501. package/lib/stories/Inbox/ProfilePage.tsx +0 -35
  502. package/lib/stories/Inbox/SettingsPage.tsx +0 -19
  503. package/lib/stories/Inbox/accounts/accounts.ts +0 -24
  504. package/lib/stories/Inbox/accounts/index.ts +0 -1
  505. package/lib/stories/Inbox/actionMenu.ts +0 -24
  506. package/lib/stories/Inbox/dialogs/brreg-completed.json +0 -35
  507. package/lib/stories/Inbox/dialogs/brreg-draft.json +0 -45
  508. package/lib/stories/Inbox/dialogs/index.ts +0 -10
  509. package/lib/stories/Inbox/dialogs/skatt-2023.json +0 -33
  510. package/lib/stories/Inbox/groupBy.ts +0 -19
  511. package/lib/stories/Inbox/inboxSection.module.css +0 -19
  512. package/lib/stories/Inbox/index.ts +0 -15
  513. package/lib/stories/Inbox/layout/footer.ts +0 -27
  514. package/lib/stories/Inbox/layout/header.ts +0 -11
  515. package/lib/stories/Inbox/layout/index.ts +0 -3
  516. package/lib/stories/Inbox/layout/menu.ts +0 -64
  517. package/renovate.json +0 -4
  518. package/tsconfig.json +0 -28
  519. package/tsconfig.node.json +0 -11
  520. package/typings.d.ts +0 -1
  521. package/vite.config.ts +0 -20
  522. /package/{lib/components/Attachment/index.ts → dist/components/Attachment/index.d.ts} +0 -0
  523. /package/{lib/components/Avatar/index.ts → dist/components/Avatar/index.d.ts} +0 -0
  524. /package/{lib/components/Badge/index.tsx → dist/components/Badge/index.d.ts} +0 -0
  525. /package/{lib/components/Button/index.ts → dist/components/Button/index.d.ts} +0 -0
  526. /package/{lib/components/ContextMenu/index.ts → dist/components/ContextMenu/index.d.ts} +0 -0
  527. /package/{lib/components/Dialog/index.ts → dist/components/Dialog/index.d.ts} +0 -0
  528. /package/{lib/components/Footer/index.ts → dist/components/Footer/index.d.ts} +0 -0
  529. /package/{lib/components/GlobalMenu/index.tsx → dist/components/GlobalMenu/index.d.ts} +0 -0
  530. /package/{lib/components/Header/index.tsx → dist/components/Header/index.d.ts} +0 -0
  531. /package/{lib/components/History/index.ts → dist/components/History/index.d.ts} +0 -0
  532. /package/{lib/components/Icon/index.ts → dist/components/Icon/index.d.ts} +0 -0
  533. /package/{lib/components/Layout/index.tsx → dist/components/Layout/index.d.ts} +0 -0
  534. /package/{lib/components/LayoutAction/index.ts → dist/components/LayoutAction/index.d.ts} +0 -0
  535. /package/{lib/components/List/index.ts → dist/components/List/index.d.ts} +0 -0
  536. /package/{lib/components/Meta/index.ts → dist/components/Meta/index.d.ts} +0 -0
  537. /package/{lib/components/Page/index.ts → dist/components/Page/index.d.ts} +0 -0
  538. /package/{lib/components/RootProvider/index.ts → dist/components/RootProvider/index.d.ts} +0 -0
  539. /package/{lib/components/Searchbar/index.ts → dist/components/Searchbar/index.d.ts} +0 -0
  540. /package/{lib/components/Snackbar/index.ts → dist/components/Snackbar/index.d.ts} +0 -0
  541. /package/{lib/components/Toolbar/index.ts → dist/components/Toolbar/index.d.ts} +0 -0
  542. /package/{lib/components/Typography/index.ts → dist/components/Typography/index.d.ts} +0 -0
  543. /package/{lib/hooks/index.ts → dist/hooks/index.d.ts} +0 -0
  544. /package/{lib/index.ts → dist/index.d.ts} +0 -0
@@ -0,0 +1,3340 @@
1
+ import { jsx as o, jsxs as r, Fragment as ao } from "react/jsx-runtime";
2
+ import { isValidElement as Je, cloneElement as Ye, createElement as A, useState as x, useMemo as X, useContext as on, createContext as en, useEffect as Ho, useCallback as nn, Fragment as ye, useRef as ln } from "react";
3
+ import { ZoomPlusIcon as tn, ZoomPlusFillIcon as cn, ZoomMinusIcon as sn, ZoomMinusFillIcon as rn, XMarkOctagonIcon as an, XMarkOctagonFillIcon as dn, XMarkIcon as un, WrenchIcon as In, WrenchFillIcon as hn, WheelchairIcon as mn, WheelchairFillIcon as pn, WeightIcon as gn, WavesIcon as _n, WaveformIcon as Fn, WateringCanIcon as bn, WateringCanFillIcon as kn, WalletIcon as fn, WalletFillIcon as Cn, WaitingRoomIcon as yn, WaitingRoomFillIcon as vn, VitalsIcon as wn, VirusIcon as Nn, VirusFillIcon as $n, VideoplayerIcon as xn, VideoplayerFillIcon as Sn, VideoSlashIcon as Ln, VideoSlashFillIcon as Pn, VideoIcon as Mn, VideoFillIcon as Bn, UploadIcon as Tn, UmbrellaIcon as Hn, UmbrellaFillIcon as Rn, TruckIcon as Dn, TruckFillIcon as zn, TriangleIcon as En, TriangleFillIcon as An, TrendUpIcon as qn, TrendFlatIcon as Un, TrendDownIcon as jn, TrayFoodIcon as On, TrayFoodFillIcon as Gn, TrashIcon as Vn, TrashFillIcon as Wn, TramIcon as Zn, TramFillIcon as Kn, TrainIcon as Qn, TrainFillIcon as Xn, ToothIcon as Jn, ToothFillIcon as Yn, TokenIcon as ol, TokenFillIcon as el, ToiletIcon as nl, ToiletFillIcon as ll, TimerStartIcon as il, TimerStartFillIcon as tl, TimerPauseIcon as cl, TimerPauseFillIcon as sl, TimerIcon as rl, TimerFillIcon as al, ThumbUpIcon as dl, ThumbUpFillIcon as ul, ThumbDownIcon as Il, ThumbDownFillIcon as hl, ThermometerIcon as ml, ThermometerFillIcon as pl, TestFlaskIcon as gl, TestFlaskFillIcon as _l, TerminalIcon as Fl, TerminalFillIcon as bl, TenancyIcon as kl, TenancyFillIcon as fl, TeddyBearIcon as Cl, TeddyBearFillIcon as yl, TasklistStartIcon as vl, TasklistStartFillIcon as wl, TasklistSendIcon as Nl, TasklistSendFillIcon as $l, TasklistSaveIcon as xl, TasklistSaveFillIcon as Sl, TasklistIcon as Ll, TasklistFillIcon as Pl, TapWaterIcon as Ml, TapWaterFillIcon as Bl, TagIcon as Tl, TagFillIcon as Hl, TabsRemoveIcon as Rl, TabsRemoveFillIcon as Dl, TabsIcon as zl, TabsFillIcon as El, TabsAddIcon as Al, TabsAddFillIcon as ql, TabletIcon as Ul, TabletFillIcon as jl, TableIcon as Ol, TableFillIcon as Gl, SunIcon as Vl, SunFillIcon as Wl, StrollerIcon as Zl, StrollerFillIcon as Kl, StopIcon as Ql, StopFillIcon as Xl, StethoscopeIcon as Jl, StarsEuIcon as Yl, StarOfLifeIcon as oi, StarOfLifeFillIcon as ei, StarIcon as ni, StarFillIcon as li, StaircaseIcon as ii, SquarerootIcon as ti, SquareIcon as ci, SquareFillIcon as si, SpoonIcon as ri, SpoonFillIcon as ai, SplitVerticalIcon as di, SplitVerticalFillIcon as ui, SplitHorizontalIcon as Ii, SplitHorizontalFillIcon as hi, SpeakerSoundWave3Icon as mi, SpeakerSoundWave3FillIcon as pi, SpeakerSoundWave2Icon as gi, SpeakerSoundWave2FillIcon as _i, SpeakerSoundWave1Icon as Fi, SpeakerSoundWave1FillIcon as bi, SpeakerSlashIcon as ki, SpeakerSlashFillIcon as fi, SpeakerIcon as Ci, SpeakerFillIcon as yi, SparklesIcon as vi, SparklesFillIcon as wi, SparkSmallIcon as Ni, SparkLargeIcon as $i, SnowIcon as xi, SkipForwardIcon as Si, SkipForwardFillIcon as Li, SkipBackwardIcon as Pi, SkipBackwardFillIcon as Mi, SilhouetteIcon as Bi, SilhouetteFillIcon as Ti, SignLanguageTwoHandsIcon as Hi, SignLanguageTwoHandsFillIcon as Ri, SignLanguageSingleHandIcon as Di, SignLanguageSingleHandFillIcon as zi, SidebarRightIcon as Ei, SidebarRightFillIcon as Ai, SidebarLeftIcon as qi, SidebarLeftFillIcon as Ui, SidebarBothIcon as ji, SidebarBothFillIcon as Oi, ShrinkIcon as Gi, ShowerIcon as Vi, ShowerFillIcon as Wi, ShoppingBasketIcon as Zi, ShoppingBasketFillIcon as Ki, ShieldLockIcon as Qi, ShieldLockFillIcon as Xi, ShieldIcon as Ji, ShieldFillIcon as Yi, SectorChartIcon as ot, SectorChartFillIcon as et, SealXMarkIcon as nt, SealXMarkFillIcon as lt, SealIcon as it, SealFillIcon as tt, SealCheckmarkIcon as ct, SealCheckmarkFillIcon as st, ScissorsIcon as rt, ScissorsFillIcon as at, SandboxIcon as dt, SandboxFillIcon as ut, SackPensionIcon as It, SackPensionFillIcon as ht, SackKronerIcon as mt, SackKronerFillIcon as pt, SackIcon as gt, SackFillIcon as _t, RulersIcon as Ft, RulersFillIcon as bt, RulerIcon as kt, RulerFillIcon as ft, RouterIcon as Ct, RotateRightIcon as yt, RotateRightFillIcon as vt, RotateLeftIcon as wt, RotateLeftFillIcon as Nt, RockingHorseIcon as $t, RockingHorseFillIcon as xt, RocketIcon as St, RocketFillIcon as Lt, RobotSmileIcon as Pt, RobotSmileFillIcon as Mt, RobotFrownIcon as Bt, RobotFrownFillIcon as Tt, RobotIcon as Ht, RobotFillIcon as Rt, RoadblockIcon as Dt, RoadblockFillIcon as zt, RefrigeratorIcon as Et, RefrigeratorFillIcon as At, RecycleIcon as qt, RecycleFillIcon as Ut, RectangleSectionsIcon as jt, RectangleSectionsFillIcon as Ot, RecordIcon as Gt, RecordFillIcon as Vt, ReceptionIcon as Wt, ReceptionFillIcon as Zt, ReceiptIcon as Kt, ReceiptFillIcon as Qt, RaindropIcon as Xt, RaindropFillIcon as Jt, QuietZoneIcon as Yt, QuietZoneFillIcon as oc, QuestionmarkIcon as ec, QuestionmarkDiamondIcon as nc, QuestionmarkDiamondFillIcon as lc, QrCodeScanningIcon as ic, QrCodeScanningFillIcon as tc, QrCodeIcon as cc, QrCodeFillIcon as sc, PuzzlePieceIcon as rc, PuzzlePieceFillIcon as ac, PushPinIcon as dc, PushPinFillIcon as uc, PrinterSmallTriangleIcon as Ic, PrinterSmallTriangleFillIcon as hc, PrinterSmallIcon as mc, PrinterSmallFillIcon as pc, PrinterLargeTriangleIcon as gc, PrinterLargeTriangleFillIcon as _c, PrinterLargeIcon as Fc, PrinterLargeFillIcon as bc, PresentationIcon as kc, PresentationFillIcon as fc, PortalIcon as Cc, PortalFillIcon as yc, PlusMinusSlashIcon as vc, PlusIcon as wc, PlusCircleIcon as Nc, PlusCircleFillIcon as $c, PlayIcon as xc, PlayFillIcon as Sc, PlateIcon as Lc, PlateFillIcon as Pc, PlantIcon as Mc, PlantFillIcon as Bc, PinIcon as Tc, PinFillIcon as Hc, PillRectangleIcon as Rc, PillRectangleFillIcon as Dc, PillCircleRectangleIcon as zc, PillCircleRectangleFillIcon as Ec, PillCircleIcon as Ac, PillCircleFillIcon as qc, PiggybankIcon as Uc, PiggybankFillIcon as jc, PieChartIcon as Oc, PieChartFillIcon as Gc, PhoneIcon as Vc, PhoneFillIcon as Wc, PersonTallShortIcon as Zc, PersonTallShortFillIcon as Kc, PersonSuitIcon as Qc, PersonSuitFillIcon as Xc, PersonRectangleIcon as Jc, PersonRectangleFillIcon as Yc, PersonPregnantIcon as os, PersonPregnantFillIcon as es, PersonPlusIcon as ns, PersonPlusFillIcon as ls, PersonPencilIcon as is, PersonPencilFillIcon as ts, PersonMinusIcon as cs, PersonMinusFillIcon as ss, PersonHeadsetIcon as rs, PersonHeadsetFillIcon as as, PersonGroupIcon as ds, PersonGroupFillIcon as us, PersonGavelIcon as Is, PersonGavelFillIcon as hs, PersonIcon as ms, PersonFillIcon as ps, PersonEnvelopeIcon as gs, PersonEnvelopeFillIcon as _s, PersonCrossIcon as Fs, PersonCrossFillIcon as bs, PersonCircleIcon as ks, PersonCircleFillIcon as fs, PersonCheckmarkIcon as Cs, PersonCheckmarkFillIcon as ys, PersonChatIcon as vs, PersonChatFillIcon as ws, PercentIcon as Ns, PentagonIcon as $s, PentagonFillIcon as xs, PencilWritingIcon as Ss, PencilWritingFillIcon as Ls, PencilLineIcon as Ps, PencilLineFillIcon as Ms, PencilIcon as Bs, PencilFillIcon as Ts, PencilBoardIcon as Hs, PencilBoardFillIcon as Rs, PauseIcon as Ds, PauseFillIcon as zs, PasswordHiddenIcon as Es, PassportIcon as As, PassportFillIcon as qs, ParkingIcon as Us, ParkingFillIcon as js, ParasolBeachIcon as Os, ParasolBeachFillIcon as Gs, ParagraphIcon as Vs, PaperplaneIcon as Ws, PaperplaneFillIcon as Zs, PaperclipIcon as Ks, PaletteIcon as Qs, PaletteFillIcon as Xs, PadlockUnlockedIcon as Js, PadlockUnlockedFillIcon as Ys, PadlockLockedIcon as or, PadlockLockedFillIcon as er, PackageIcon as nr, PackageFillIcon as lr, Over18Icon as ir, Over18FillIcon as tr, OpenSourceIcon as cr, OpenSourceFillIcon as sr, NumberListIcon as rr, NotePencilIcon as ar, NotePencilFillIcon as dr, NotePencilDashIcon as ur, NokIcon as Ir, NoSmokingIcon as hr, NoSmokingFillIcon as mr, NewspaperIcon as pr, NewspaperFillIcon as gr, MultiplyIcon as _r, MugIcon as Fr, MugFillIcon as br, MountainIcon as kr, MountainFillIcon as fr, MotorcycleIcon as Cr, MotorcycleFillIcon as yr, MoonIcon as vr, MoonFillIcon as wr, MonitorTriangleIcon as Nr, MonitorTriangleFillIcon as $r, MonitorIcon as xr, MonitorFillIcon as Sr, MobileTriangleIcon as Lr, MobileTriangleFillIcon as Pr, MobileSmallIcon as Mr, MobileSmallFillIcon as Br, MobileIcon as Tr, MobileFillIcon as Hr, MinusIcon as Rr, MinusCircleIcon as Dr, MinusCircleFillIcon as zr, MigrationIcon as Er, MicrophoneSlashIcon as Ar, MicrophoneSlashFillIcon as qr, MicrophoneIcon as Ur, MicrophoneFillIcon as jr, MicrobeIcon as Or, MicrobeFillIcon as Gr, MenuHamburgerIcon as Vr, MenuGridIcon as Wr, MenuElipsisVerticalSquareIcon as Zr, MenuElipsisVerticalSquareFillIcon as Kr, MenuElipsisVerticalIcon as Qr, MenuElipsisVerticalCircleIcon as Xr, MenuElipsisVerticalCircleFillIcon as Jr, MenuElipsisHorizontalSquareIcon as Yr, MenuElipsisHorizontalSquareFillIcon as oa, MenuElipsisHorizontalIcon as ea, MenuElipsisHorizontalCircleIcon as na, MenuElipsisHorizontalCircleFillIcon as la, MegaphoneSpeakingIcon as ia, MegaphoneSpeakingFillIcon as ta, MegaphoneIcon as ca, MegaphoneFillIcon as sa, MeetingSmallIcon as ra, MeetingSmallFillIcon as aa, MeetingLargeIcon as da, MeetingLargeFillIcon as ua, MedicineBottleIcon as Ia, MedicineBottleFillIcon as ha, MeasuringTapeIcon as ma, MeasuringTapeFillIcon as pa, MagnifyingGlassIcon as ga, MagnifyingGlassFillIcon as _a, LocationPinIcon as Fa, LocationPinFillIcon as ba, LinkIcon as ka, LinkBrokenIcon as fa, LineGraphStackedIcon as Ca, LineGraphIcon as ya, LineGraphDotIcon as va, LightningIcon as wa, LightningFillIcon as Na, LightBulbIcon as $a, LightBulbFillIcon as xa, LeaveIcon as Sa, LayersPlusIcon as La, LayersPlusFillIcon as Pa, LayersIcon as Ma, LayersFillIcon as Ba, LayerMinusIcon as Ta, LayerMinusFillIcon as Ha, LaptopTriangleIcon as Ra, LaptopTriangleFillIcon as Da, LaptopIcon as za, LaptopFillIcon as Ea, LanguageIcon as Aa, KronerIcon as qa, KnifeIcon as Ua, KnifeFillIcon as ja, KeyVerticalIcon as Oa, KeyVerticalFillIcon as Ga, KeyHorizontalIcon as Va, KeyHorizontalFillIcon as Wa, IvFluidBagIcon as Za, IvFluidBagFillIcon as Ka, InformationSquareIcon as Qa, InformationSquareFillIcon as Xa, InformationIcon as Ja, InboxUpIcon as Ya, InboxUpFillIcon as od, InboxIcon as ed, InboxFillIcon as nd, InboxDownIcon as ld, InboxDownFillIcon as id, ImageIcon as td, ImageFillIcon as cd, HouseHeartIcon as sd, HouseHeartFillIcon as rd, HouseIcon as ad, HouseFillIcon as dd, HourglassTopFilledIcon as ud, HourglassIcon as Id, HourglassBottomFilledIcon as hd, HospitalIcon as md, HospitalFillIcon as pd, HikingTrailSignIcon as gd, HikingTrailSignFillIcon as _d, HexagonGridIcon as Fd, HexagonGridFillIcon as bd, HeartIcon as kd, HeartFillIcon as fd, HeartBrokenIcon as Cd, HeartBrokenFillIcon as yd, HearingLoopRadioIcon as vd, HearingLoopRadioFillIcon as wd, HearingLoopIcon as Nd, HearingLoopFillIcon as $d, HeadHeartIcon as xd, HeadHeartFillIcon as Sd, HeadIcon as Ld, HeadFillIcon as Pd, HeadCloudIcon as Md, HeadCloudFillIcon as Bd, HddUpIcon as Td, HddUpFillIcon as Hd, HddDownIcon as Rd, HddDownFillIcon as Dd, HatSchoolIcon as zd, HatSchoolFillIcon as Ed, HashtagIcon as Ad, HardHatIcon as qd, HardHatFillIcon as Ud, HangerIcon as jd, HandshakeIcon as Od, HandshakeFillIcon as Gd, HandShakeHeartIcon as Vd, HandShakeHeartFillIcon as Wd, HandKnotIcon as Zd, HandKnotFilledIcon as Kd, HandHeartIcon as Qd, HandHeartFillIcon as Xd, HandFingerIcon as Jd, HandFingerFillIcon as Yd, HandBandageIcon as ou, HandBandageFillIcon as eu, GlobeSlashIcon as nu, GlobeSlashFillIcon as lu, GlobeIcon as iu, GlobeFillIcon as tu, GlassesIcon as cu, GlassesFillIcon as su, GlassIcon as ru, GlassFillIcon as au, GavelSoundBlockIcon as du, GavelSoundBlockFillIcon as uu, GavelIcon as Iu, GavelFillIcon as hu, FunnelIcon as mu, FunnelFillIcon as pu, FreezerIcon as gu, FreezerFillIcon as _u, ForwardIcon as Fu, ForwardFillIcon as bu, ForkIcon as ku, ForkFillIcon as fu, FolderPlusIcon as Cu, FolderPlusFillIcon as yu, FolderMinusIcon as vu, FolderMinusFillIcon as wu, FolderIcon as Nu, FolderFillIcon as $u, FolderFileIcon as xu, FolderFileFillIcon as Su, FlowerPetalsIcon as Lu, FlowerPetalsFillIcon as Pu, FlowerPetalFallingIcon as Mu, FlowerPetalFallingFillIcon as Bu, FlowerPensionIcon as Tu, FlowerPensionFillIcon as Hu, FlowerIcon as Ru, FlowerFillIcon as Du, FloppydiskIcon as zu, FloppydiskFillIcon as Eu, FlagCrossIcon as Au, FlagCrossFillIcon as qu, FirstAidKitIcon as Uu, FirstAidKitFillIcon as ju, FirstAidIcon as Ou, FirstAidFillIcon as Gu, FingerMobileIcon as Vu, FingerMobileFillIcon as Wu, FingerButtonIcon as Zu, FingerButtonFillIcon as Ku, FilterIcon as Qu, FilesIcon as Xu, FilesFillIcon as Ju, FileXMarkIcon as Yu, FileXMarkFillIcon as oI, FileWordIcon as eI, FileWordFillIcon as nI, FileTextIcon as lI, FileTextFillIcon as iI, FileShredderIcon as tI, FileShredderFillIcon as cI, FileSearchIcon as sI, FileSearchFillIcon as rI, FileResetIcon as aI, FileResetFillIcon as dI, FilePlusIcon as uI, FilePlusFillIcon as II, FilePdfIcon as hI, FilePdfFillIcon as mI, FileParagraphIcon as pI, FileParagraphFillIcon as gI, FileLoadingIcon as _I, FileLoadingFillIcon as FI, FileJsonIcon as bI, FileJsonFillIcon as kI, FileImportIcon as fI, FileImportFillIcon as CI, FileImageIcon as yI, FileImageFillIcon as vI, FileIcon as wI, FileFillIcon as NI, FileExportIcon as $I, FileExportFillIcon as xI, FileExcelIcon as SI, FileExcelFillIcon as LI, FileCsvIcon as PI, FileCsvFillIcon as MI, FileCodeIcon as BI, FileCodeFillIcon as TI, FileCheckmarkIcon as HI, FileCheckmarkFillIcon as RI, FigureOutwardIcon as DI, FigureOutwardFillIcon as zI, FigureInwardIcon as EI, FigureInwardFillIcon as AI, FigureIcon as qI, FigureFillIcon as UI, FigureCombinationIcon as jI, FigureCombinationFillIcon as OI, FigureChildIcon as GI, FigureChildFillIcon as VI, FeedingBottleIcon as WI, FeedingBottleFillIcon as ZI, FaceSmileIcon as KI, FaceSmileFillIcon as QI, FaceLaughIcon as XI, FaceLaughFillIcon as JI, FaceFrownIcon as YI, FaceFrownFillIcon as oh, FaceIcon as eh, FaceFillIcon as nh, FaceCryIcon as lh, FaceCryFillIcon as ih, EyeWithPupilIcon as th, EyeWithPupilFillIcon as ch, EyeSlashIcon as sh, EyeSlashFillIcon as rh, EyeObfuscatedIcon as ah, EyeObfuscatedFillIcon as dh, EyeIcon as uh, EyeFillIcon as Ih, EyeClosedIcon as hh, ExternalLinkIcon as mh, ExternalLinkFillIcon as ph, ExpandIcon as gh, ExclamationmarkTriangleIcon as _h, ExclamationmarkTriangleFillIcon as Fh, ExclamationmarkIcon as bh, EthernetIcon as kh, EscalatorIcon as fh, EraserIcon as Ch, EraserFillIcon as yh, EqualsIcon as vh, EnvelopeOpenIcon as wh, EnvelopeOpenFillIcon as Nh, EnvelopeClosedIcon as $h, EnvelopeClosedFillIcon as xh, EnterIcon as Sh, ElevatorIcon as Lh, ElevatorFillIcon as Ph, EarthIcon as Mh, EarthFillIcon as Bh, EarSoundwavesIcon as Th, EarSoundwavesFillIcon as Hh, EarSlashIcon as Rh, EarSlashFillIcon as Dh, EarIcon as zh, EarFillIcon as Eh, DragVerticalIcon as Ah, DragHorizontalIcon as qh, DownloadIcon as Uh, DoorOpenIcon as jh, DoorOpenFillIcon as Oh, DoorIcon as Gh, DoorFillIcon as Vh, DonutsIcon as Wh, DonutsFillIcon as Zh, DonutChartIcon as Kh, DonutChartFillIcon as Qh, DogHarnessIcon as Xh, DogHarnessFillIcon as Jh, DogIcon as Yh, DogFillIcon as om, DocPencilIcon as em, DocPencilFillIcon as nm, DivideIcon as lm, DishwasherIcon as im, DishwasherFillIcon as tm, DiamondIcon as cm, DiamondFillIcon as sm, Density3Icon as rm, Density2Icon as am, Density2FillIcon as dm, Density1Icon as um, Density1FillIcon as Im, DatabaseIcon as hm, DatabaseFillIcon as mm, CutleryIcon as pm, CutleryFillIcon as gm, CurrencyExchangeIcon as _m, ComponentIcon as Fm, ComponentFillIcon as bm, CompassIcon as km, CompassFillIcon as fm, Combifridge2Icon as Cm, Combifridge2FillIcon as ym, Combifridge1Icon as vm, Combifridge1FillIcon as wm, CogRotationIcon as Nm, CogRotationFillIcon as $m, CogIcon as xm, CogFillIcon as Sm, CoffeeIcon as Lm, CoffeeFillIcon as Pm, CodeIcon as Mm, CloudUpIcon as Bm, CloudUpFillIcon as Tm, CloudSlashIcon as Hm, CloudSlashFillIcon as Rm, CloudIcon as Dm, CloudFillIcon as zm, CloudDownIcon as Em, CloudDownFillIcon as Am, ClothingHangerIcon as qm, ClothingHangerFillIcon as Um, ClockIcon as jm, ClockFillIcon as Om, ClockDashedIcon as Gm, ClipboardXMarkIcon as Vm, ClipboardXMarkFillIcon as Wm, ClipboardLinkIcon as Zm, ClipboardLinkFillIcon as Km, ClipboardIcon as Qm, ClipboardFillIcon as Xm, ClipboardCheckmarkIcon as Jm, ClipboardCheckmarkFillIcon as Ym, CircleSlashIcon as op, CircleSlashFillIcon as ep, CircleIcon as np, CircleFillIcon as lp, CircleBrokenIcon as ip, CigaretteIcon as tp, CigaretteFillIcon as cp, ChildHairEyesIcon as sp, ChildHairEyesFillIcon as rp, ChildEyesIcon as ap, ChildEyesFillIcon as dp, ChevronUpIcon as up, ChevronUpDownIcon as Ip, ChevronUpDoubleIcon as hp, ChevronUpDoubleCircleIcon as mp, ChevronUpDoubleCircleFillIcon as pp, ChevronUpCircleIcon as gp, ChevronUpCircleFillIcon as _p, ChevronRightLastIcon as Fp, ChevronRightLastCircleIcon as bp, ChevronRightLastCircleFillIcon as kp, ChevronRightIcon as fp, ChevronRightDoubleIcon as Cp, ChevronRightDoubleCircleIcon as yp, ChevronRightDoubleCircleFillIcon as vp, ChevronRightCircleIcon as wp, ChevronRightCircleFillIcon as Np, ChevronLeftIcon as $p, ChevronLeftFirstIcon as xp, ChevronLeftFirstCircleIcon as Sp, ChevronLeftFirstCircleFillIcon as Lp, ChevronLeftDoubleIcon as Pp, ChevronLeftDoubleCircleIcon as Mp, ChevronLeftDoubleCircleFillIcon as Bp, ChevronLeftCircleIcon as Tp, ChevronLeftCircleFillIcon as Hp, ChevronDownUpIcon as Rp, ChevronDownIcon as Dp, ChevronDownDoubleIcon as zp, ChevronDownDoubleCircleIcon as Ep, ChevronDownDoubleCircleFillIcon as Ap, ChevronDownCircleIcon as qp, ChevronDownCircleFillIcon as Up, ChefHatIcon as jp, ChefHatFillIcon as Op, CheckmarkIcon as Gp, CheckmarkCircleIcon as Vp, CheckmarkCircleFillIcon as Wp, ChatIcon as Zp, ChatFillIcon as Kp, ChatExclamationmarkIcon as Qp, ChatExclamationmarkFillIcon as Xp, ChatElipsisIcon as Jp, ChatElipsisFillIcon as Yp, ChatCheckmarkIcon as o1, ChatCheckmarkFillIcon as e1, Chat2Icon as n1, Chat2FillIcon as l1, ChangingRoomIcon as i1, ChangingRoomFillIcon as t1, CaretUpIcon as c1, CaretUpFillIcon as s1, CaretUpDownFilledUpIcon as r1, CaretUpDownFilledDownIcon as a1, CaretUpDownIcon as d1, CaretUpDownFillIcon as u1, CaretUpCircleIcon as I1, CaretUpCircleFillIcon as h1, CaretRightIcon as m1, CaretRightFillIcon as p1, CaretRightCircleIcon as g1, CaretRightCircleFillIcon as _1, CaretLeftRightIcon as F1, CaretLeftRightFillIcon as b1, CaretLeftIcon as k1, CaretLeftFillIcon as f1, CaretLeftCircleIcon as C1, CaretLeftCircleFillIcon as y1, CaretDownIcon as v1, CaretDownFillIcon as w1, CaretDownCircleIcon as N1, CaretDownCircleFillIcon as $1, CardIcon as x1, CardFillIcon as S1, CarIcon as L1, CarFillIcon as P1, CaptionsIcon as M1, CaptionsFillIcon as B1, CandleIcon as T1, CandleFillIcon as H1, CameraTriangleIcon as R1, CameraTriangleFillIcon as D1, CameraIcon as z1, CameraFillIcon as E1, CalendarIcon as A1, CalendarFillIcon as q1, CalculatorIcon as U1, CalculatorFillIcon as j1, BusIcon as O1, BusFillIcon as G1, BulletListIcon as V1, Buildings3Icon as W1, Buildings3FillIcon as Z1, Buildings2Icon as K1, Buildings2FillIcon as Q1, BugIcon as X1, BugFillIcon as J1, BucketMopIcon as Y1, BucketMopFillIcon as og, BucketIcon as eg, BucketFillIcon as ng, BubbleChartIcon as lg, BubbleChartFillIcon as ig, BroadcastPlusCircleIcon as tg, BroadcastPlusCircleFillIcon as cg, BroadcastMinusCircleIcon as sg, BroadcastMinusCircleFillIcon as rg, BroadcastIcon as ag, BriefcaseIcon as dg, BriefcaseFillIcon as ug, BriefcaseClockIcon as Ig, BriefcaseClockFillIcon as hg, BranchingIcon as mg, BrailleIcon as pg, BrailleFillIcon as gg, BowlIcon as _g, BowlFillIcon as Fg, BooksIcon as bg, BooksFillIcon as kg, BookmarkIcon as fg, BookmarkFillIcon as Cg, BookmarkDashIcon as yg, BookIcon as vg, BookFillIcon as wg, BoneIcon as Ng, BoneFillIcon as $g, BoneBrokenIcon as xg, BoatIcon as Sg, BoatFillIcon as Lg, BicycleIcon as Pg, BellIcon as Mg, BellFillIcon as Bg, BellDotIcon as Tg, BellDotFillIcon as Hg, BedIcon as Rg, BedFillIcon as Dg, BarChartIcon as zg, BarChartFillIcon as Eg, BankNoteIcon as Ag, BankNoteFillIcon as qg, BandageIcon as Ug, BandageFillIcon as jg, BaggageIcon as Og, BaggageFillIcon as Gg, BagdeIcon as Vg, BagdeFillIcon as Wg, BacteriaIcon as Zg, BacteriaFillIcon as Kg, BackwardIcon as Qg, BackwardFillIcon as Xg, BackpackIcon as Jg, BackpackFillIcon as Yg, BabyWrappedIcon as o_, BabyWrappedFillIcon as e_, ArrowsUpDownIcon as n_, ArrowsSquarepathIcon as l_, ArrowsCirclepathIcon as i_, ArrowUpIcon as t_, ArrowUndoIcon as c_, ArrowRightLeftIcon as s_, ArrowRightIcon as r_, ArrowRedoIcon as a_, ArrowLeftIcon as d_, ArrowForwardIcon as u_, ArrowForwardFillIcon as I_, ArrowDownRightIcon as h_, ArrowDownIcon as m_, ArrowCirclepathIcon as p_, AreaChartIcon as g_, AreaChartFillIcon as __, ArchiveIcon as F_, ArchiveFillIcon as b_, AngleRulerTriangleIcon as k_, AngleRulerTriangleFillIcon as f_, AngleRulerCircleIcon as C_, AngleRulerCircleFillIcon as y_, AngleIcon as v_, AllergensIcon as w_, AllergensFillIcon as N_, AlignTopIcon as $_, AlignTopFillIcon as x_, AlignRightIcon as S_, AlignRightFillIcon as L_, AlignMiddleIcon as P_, AlignMiddleFillIcon as M_, AlignLeftIcon as B_, AlignLeftFillIcon as T_, AlignCenterIcon as H_, AlignCenterFillIcon as R_, AlignBottomIcon as D_, AlignBottomFillIcon as z_, AirplaneIcon as E_, AirplaneFillIcon as A_ } from "@navikt/aksel-icons";
4
+ function q_(e) {
5
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
6
+ }
7
+ var ve = { exports: {} };
8
+ /*!
9
+ Copyright (c) 2018 Jed Watson.
10
+ Licensed under the MIT License (MIT), see
11
+ http://jedwatson.github.io/classnames
12
+ */
13
+ (function(e) {
14
+ (function() {
15
+ var n = {}.hasOwnProperty;
16
+ function l() {
17
+ for (var c = "", s = 0; s < arguments.length; s++) {
18
+ var a = arguments[s];
19
+ a && (c = t(c, i(a)));
20
+ }
21
+ return c;
22
+ }
23
+ function i(c) {
24
+ if (typeof c == "string" || typeof c == "number")
25
+ return c;
26
+ if (typeof c != "object")
27
+ return "";
28
+ if (Array.isArray(c))
29
+ return l.apply(null, c);
30
+ if (c.toString !== Object.prototype.toString && !c.toString.toString().includes("[native code]"))
31
+ return c.toString();
32
+ var s = "";
33
+ for (var a in c)
34
+ n.call(c, a) && c[a] && (s = t(s, a));
35
+ return s;
36
+ }
37
+ function t(c, s) {
38
+ return s ? c ? c + " " + s : c + s : c;
39
+ }
40
+ e.exports ? (l.default = l, e.exports = l) : window.classNames = l;
41
+ })();
42
+ })(ve);
43
+ var U_ = ve.exports;
44
+ const m = /* @__PURE__ */ q_(U_), we = ({ svgIconComponent: e, ...n }) => Je(e) ? Ye(e, { ...n }) : null;
45
+ we.displayName = "SvgIcon";
46
+ const j_ = "_icon_1z0mb_1", oe = {
47
+ icon: j_
48
+ }, v = ({ name: e, variant: n = "outline", className: l }) => {
49
+ var t, c;
50
+ const i = ((t = ne[e]) == null ? void 0 : t[n]) ?? ((c = ne[e]) == null ? void 0 : c.outline);
51
+ return i ? /* @__PURE__ */ o(we, { svgIconComponent: i, className: m([oe.icon], l) }) : /* @__PURE__ */ o("span", { className: m([oe.icon], l) });
52
+ }, O_ = ({ title: e = "Checkbox", className: n }) => /* @__PURE__ */ r(
53
+ "svg",
54
+ {
55
+ width: "1em",
56
+ height: "1em",
57
+ viewBox: "0 0 24 24",
58
+ fill: "none",
59
+ xmlns: "http://www.w3.org/2000/svg",
60
+ className: n,
61
+ children: [
62
+ /* @__PURE__ */ o("title", { children: e }),
63
+ /* @__PURE__ */ o(
64
+ "path",
65
+ {
66
+ fillRule: "evenodd",
67
+ clipRule: "evenodd",
68
+ d: "M2.5 0C1.11929 0 0 1.11929 0 2.5V21.5C0 22.8807 1.11929 24 2.5 24H21.5C22.8807 24 24 22.8807 24 21.5V2.5C24 1.11929 22.8807 0 21.5 0H2.5ZM18.5547 5.76815C19.0142 6.07451 19.1384 6.69538 18.8321 7.1549L11.6321 17.9549C11.4659 18.2042 11.1967 18.3658 10.8985 18.3953C10.6004 18.4249 10.3047 18.3192 10.0929 18.1073L5.29289 13.3073C4.90237 12.9168 4.90237 12.2836 5.29289 11.8931C5.68342 11.5026 6.31658 11.5026 6.70711 11.8931L10.6446 15.8306L17.1679 6.0455C17.4743 5.58598 18.0952 5.4618 18.5547 5.76815Z",
69
+ fill: "black"
70
+ }
71
+ )
72
+ ]
73
+ }
74
+ ), G_ = ({ title: e = "Checkbox", className: n, hover: l = !1 }) => /* @__PURE__ */ r(
75
+ "svg",
76
+ {
77
+ width: "1em",
78
+ height: "1em",
79
+ viewBox: "0 0 24 24",
80
+ fill: "none",
81
+ xmlns: "http://www.w3.org/2000/svg",
82
+ className: n,
83
+ children: [
84
+ /* @__PURE__ */ o("title", { children: e }),
85
+ /* @__PURE__ */ o(
86
+ "path",
87
+ {
88
+ fillRule: "evenodd",
89
+ clipRule: "evenodd",
90
+ d: "M21.5 2.5H2.5V21.5H21.5V2.5ZM2.5 0C1.11929 0 0 1.11929 0 2.5V21.5C0 22.8807 1.11929 24 2.5 24H21.5C22.8807 24 24 22.8807 24 21.5V2.5C24 1.11929 22.8807 0 21.5 0H2.5Z",
91
+ fill: "black"
92
+ }
93
+ ),
94
+ l && /* @__PURE__ */ o(
95
+ "path",
96
+ {
97
+ "data-hover": !0,
98
+ fillRule: "evenodd",
99
+ clipRule: "evenodd",
100
+ d: "M18.5547 5.76815C19.0142 6.07451 19.1384 6.69538 18.8321 7.1549L11.6321 17.9549C11.4659 18.2042 11.1967 18.3658 10.8985 18.3953C10.6004 18.4249 10.3047 18.3192 10.0929 18.1073L5.29289 13.3073C4.90237 12.9168 4.90237 12.2836 5.29289 11.8931C5.68342 11.5026 6.31658 11.5026 6.70711 11.8931L10.6446 15.8306L17.1679 6.0455C17.4743 5.58598 18.0952 5.4618 18.5547 5.76815Z",
101
+ fill: "currentColor"
102
+ }
103
+ )
104
+ ]
105
+ }
106
+ ), Ne = ({ checked: e, title: n = "checkbox", hover: l = !1, className: i }) => {
107
+ const t = { title: n, className: i };
108
+ return e ? /* @__PURE__ */ o(O_, { ...t }) : /* @__PURE__ */ o(G_, { ...t, hover: l });
109
+ }, V_ = ({ title: e = "Radio", className: n }) => /* @__PURE__ */ r(
110
+ "svg",
111
+ {
112
+ width: "1em",
113
+ height: "1em",
114
+ viewBox: "0 0 24 24",
115
+ fill: "none",
116
+ xmlns: "http://www.w3.org/2000/svg",
117
+ className: n,
118
+ children: [
119
+ /* @__PURE__ */ o("title", { children: e }),
120
+ /* @__PURE__ */ o(
121
+ "path",
122
+ {
123
+ fillRule: "evenodd",
124
+ clipRule: "evenodd",
125
+ d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 17C14.7614 17 17 14.7614 17 12C17 9.23858 14.7614 7 12 7C9.23858 7 7 9.23858 7 12C7 14.7614 9.23858 17 12 17Z",
126
+ fill: "black"
127
+ }
128
+ )
129
+ ]
130
+ }
131
+ ), W_ = ({ title: e = "Radio", className: n, hover: l = !1 }) => /* @__PURE__ */ r(
132
+ "svg",
133
+ {
134
+ width: "1em",
135
+ height: "1em",
136
+ viewBox: "0 0 24 24",
137
+ fill: "none",
138
+ xmlns: "http://www.w3.org/2000/svg",
139
+ className: n,
140
+ children: [
141
+ /* @__PURE__ */ o("title", { children: e }),
142
+ /* @__PURE__ */ o(
143
+ "path",
144
+ {
145
+ fillRule: "evenodd",
146
+ clipRule: "evenodd",
147
+ d: "M12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5ZM12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
148
+ fill: "black"
149
+ }
150
+ ),
151
+ l && /* @__PURE__ */ o("circle", { "data-hover": !0, cx: "12", cy: "12", r: "5", fill: "black" })
152
+ ]
153
+ }
154
+ ), Z_ = ({ checked: e, title: n = "Radio", hover: l = !1, className: i }) => {
155
+ const t = { title: n, className: i };
156
+ return e ? /* @__PURE__ */ o(V_, { ...t }) : /* @__PURE__ */ o(W_, { ...t, hover: l });
157
+ }, K_ = "_progress_1uknp_1", Q_ = "_complete_1uknp_25", ee = {
158
+ progress: K_,
159
+ complete: Q_
160
+ }, X_ = ({ value: e = 0, total: n = 100, className: l }) => {
161
+ const i = Math.round(e / n * 100);
162
+ if (e === n)
163
+ return /* @__PURE__ */ r(
164
+ "svg",
165
+ {
166
+ width: "16",
167
+ height: "16",
168
+ viewBox: "0 0 16 16",
169
+ fill: "none",
170
+ xmlns: "http://www.w3.org/2000/svg",
171
+ className: ee.complete,
172
+ children: [
173
+ /* @__PURE__ */ r("title", { children: [
174
+ "Progress ",
175
+ e,
176
+ " of ",
177
+ n
178
+ ] }),
179
+ /* @__PURE__ */ o(
180
+ "path",
181
+ {
182
+ fill: "currentColor",
183
+ fillRule: "evenodd",
184
+ clipRule: "evenodd",
185
+ d: "M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM11.1751 5.11246C11.3892 4.87167 11.7579 4.84998 11.9987 5.06402C12.2395 5.27805 12.2612 5.64676 12.0471 5.88755L7.60268 10.8876C7.49595 11.0076 7.34442 11.0784 7.18383 11.0831C7.02324 11.0878 6.86782 11.0261 6.75421 10.9125L3.97644 8.13471C3.74863 7.9069 3.74863 7.53756 3.97644 7.30975C4.20424 7.08194 4.57359 7.08194 4.80139 7.30975L7.14172 9.65007L11.1751 5.11246Z"
186
+ }
187
+ )
188
+ ]
189
+ }
190
+ );
191
+ const t = {
192
+ "--progress": `${i}%`
193
+ };
194
+ return /* @__PURE__ */ o("div", { className: m(ee.progress, l), style: t, "data-value": `${i}%` });
195
+ }, ne = {
196
+ airplane: { solid: /* @__PURE__ */ o(A_, {}), outline: /* @__PURE__ */ o(E_, {}) },
197
+ "align-bottom": {
198
+ solid: /* @__PURE__ */ o(z_, {}),
199
+ outline: /* @__PURE__ */ o(D_, {})
200
+ },
201
+ "align-center": {
202
+ solid: /* @__PURE__ */ o(R_, {}),
203
+ outline: /* @__PURE__ */ o(H_, {})
204
+ },
205
+ "align-left": {
206
+ solid: /* @__PURE__ */ o(T_, {}),
207
+ outline: /* @__PURE__ */ o(B_, {})
208
+ },
209
+ "align-middle": {
210
+ solid: /* @__PURE__ */ o(M_, {}),
211
+ outline: /* @__PURE__ */ o(P_, {})
212
+ },
213
+ "align-right": {
214
+ solid: /* @__PURE__ */ o(L_, {}),
215
+ outline: /* @__PURE__ */ o(S_, {})
216
+ },
217
+ "align-top": { solid: /* @__PURE__ */ o(x_, {}), outline: /* @__PURE__ */ o($_, {}) },
218
+ allergens: { solid: /* @__PURE__ */ o(N_, {}), outline: /* @__PURE__ */ o(w_, {}) },
219
+ angle: { outline: /* @__PURE__ */ o(v_, {}) },
220
+ "angle-ruler-circle": {
221
+ solid: /* @__PURE__ */ o(y_, {}),
222
+ outline: /* @__PURE__ */ o(C_, {})
223
+ },
224
+ "angle-ruler-triangle": {
225
+ solid: /* @__PURE__ */ o(f_, {}),
226
+ outline: /* @__PURE__ */ o(k_, {})
227
+ },
228
+ archive: { solid: /* @__PURE__ */ o(b_, {}), outline: /* @__PURE__ */ o(F_, {}) },
229
+ "area-chart": {
230
+ solid: /* @__PURE__ */ o(__, {}),
231
+ outline: /* @__PURE__ */ o(g_, {})
232
+ },
233
+ "arrow-circlepath": { outline: /* @__PURE__ */ o(p_, {}) },
234
+ "arrow-down": { outline: /* @__PURE__ */ o(m_, {}) },
235
+ "arrow-down-right": { outline: /* @__PURE__ */ o(h_, {}) },
236
+ "arrow-forward": {
237
+ solid: /* @__PURE__ */ o(I_, {}),
238
+ outline: /* @__PURE__ */ o(u_, {})
239
+ },
240
+ "arrow-left": { outline: /* @__PURE__ */ o(d_, {}) },
241
+ "arrow-redo": { outline: /* @__PURE__ */ o(a_, {}) },
242
+ "arrow-right": { outline: /* @__PURE__ */ o(r_, {}) },
243
+ "arrow-right-left": { outline: /* @__PURE__ */ o(s_, {}) },
244
+ "arrow-undo": { outline: /* @__PURE__ */ o(c_, {}) },
245
+ "arrow-up": { outline: /* @__PURE__ */ o(t_, {}) },
246
+ "arrows-circlepath": { outline: /* @__PURE__ */ o(i_, {}) },
247
+ "arrows-squarepath": { outline: /* @__PURE__ */ o(l_, {}) },
248
+ "arrows-up-down": { outline: /* @__PURE__ */ o(n_, {}) },
249
+ "baby-wrapped": {
250
+ solid: /* @__PURE__ */ o(e_, {}),
251
+ outline: /* @__PURE__ */ o(o_, {})
252
+ },
253
+ backpack: { solid: /* @__PURE__ */ o(Yg, {}), outline: /* @__PURE__ */ o(Jg, {}) },
254
+ backward: { solid: /* @__PURE__ */ o(Xg, {}), outline: /* @__PURE__ */ o(Qg, {}) },
255
+ bacteria: { solid: /* @__PURE__ */ o(Kg, {}), outline: /* @__PURE__ */ o(Zg, {}) },
256
+ bagde: { solid: /* @__PURE__ */ o(Wg, {}), outline: /* @__PURE__ */ o(Vg, {}) },
257
+ baggage: { solid: /* @__PURE__ */ o(Gg, {}), outline: /* @__PURE__ */ o(Og, {}) },
258
+ bandage: { solid: /* @__PURE__ */ o(jg, {}), outline: /* @__PURE__ */ o(Ug, {}) },
259
+ "bank-note": { solid: /* @__PURE__ */ o(qg, {}), outline: /* @__PURE__ */ o(Ag, {}) },
260
+ "bar-chart": { solid: /* @__PURE__ */ o(Eg, {}), outline: /* @__PURE__ */ o(zg, {}) },
261
+ bed: { solid: /* @__PURE__ */ o(Dg, {}), outline: /* @__PURE__ */ o(Rg, {}) },
262
+ "bell-dot": { solid: /* @__PURE__ */ o(Hg, {}), outline: /* @__PURE__ */ o(Tg, {}) },
263
+ bell: { solid: /* @__PURE__ */ o(Bg, {}), outline: /* @__PURE__ */ o(Mg, {}) },
264
+ bicycle: { outline: /* @__PURE__ */ o(Pg, {}) },
265
+ boat: { solid: /* @__PURE__ */ o(Lg, {}), outline: /* @__PURE__ */ o(Sg, {}) },
266
+ "bone-broken": { outline: /* @__PURE__ */ o(xg, {}) },
267
+ bone: { solid: /* @__PURE__ */ o($g, {}), outline: /* @__PURE__ */ o(Ng, {}) },
268
+ book: { solid: /* @__PURE__ */ o(wg, {}), outline: /* @__PURE__ */ o(vg, {}) },
269
+ "bookmark-dash": { outline: /* @__PURE__ */ o(yg, {}) },
270
+ bookmark: { solid: /* @__PURE__ */ o(Cg, {}), outline: /* @__PURE__ */ o(fg, {}) },
271
+ books: { solid: /* @__PURE__ */ o(kg, {}), outline: /* @__PURE__ */ o(bg, {}) },
272
+ bowl: { solid: /* @__PURE__ */ o(Fg, {}), outline: /* @__PURE__ */ o(_g, {}) },
273
+ braille: { solid: /* @__PURE__ */ o(gg, {}), outline: /* @__PURE__ */ o(pg, {}) },
274
+ branching: { outline: /* @__PURE__ */ o(mg, {}) },
275
+ "briefcase-clock": {
276
+ solid: /* @__PURE__ */ o(hg, {}),
277
+ outline: /* @__PURE__ */ o(Ig, {})
278
+ },
279
+ briefcase: { solid: /* @__PURE__ */ o(ug, {}), outline: /* @__PURE__ */ o(dg, {}) },
280
+ broadcast: { outline: /* @__PURE__ */ o(ag, {}) },
281
+ "broadcast-minus-circle": {
282
+ solid: /* @__PURE__ */ o(rg, {}),
283
+ outline: /* @__PURE__ */ o(sg, {})
284
+ },
285
+ "broadcast-plus-circle": {
286
+ solid: /* @__PURE__ */ o(cg, {}),
287
+ outline: /* @__PURE__ */ o(tg, {})
288
+ },
289
+ "bubble-chart": {
290
+ solid: /* @__PURE__ */ o(ig, {}),
291
+ outline: /* @__PURE__ */ o(lg, {})
292
+ },
293
+ bucket: { solid: /* @__PURE__ */ o(ng, {}), outline: /* @__PURE__ */ o(eg, {}) },
294
+ "bucket-mop": {
295
+ solid: /* @__PURE__ */ o(og, {}),
296
+ outline: /* @__PURE__ */ o(Y1, {})
297
+ },
298
+ bug: { solid: /* @__PURE__ */ o(J1, {}), outline: /* @__PURE__ */ o(X1, {}) },
299
+ buildings2: {
300
+ solid: /* @__PURE__ */ o(Q1, {}),
301
+ outline: /* @__PURE__ */ o(K1, {})
302
+ },
303
+ buildings3: {
304
+ solid: /* @__PURE__ */ o(Z1, {}),
305
+ outline: /* @__PURE__ */ o(W1, {})
306
+ },
307
+ "bullet-list": { outline: /* @__PURE__ */ o(V1, {}) },
308
+ bus: { solid: /* @__PURE__ */ o(G1, {}), outline: /* @__PURE__ */ o(O1, {}) },
309
+ calculator: {
310
+ solid: /* @__PURE__ */ o(j1, {}),
311
+ outline: /* @__PURE__ */ o(U1, {})
312
+ },
313
+ calendar: { solid: /* @__PURE__ */ o(q1, {}), outline: /* @__PURE__ */ o(A1, {}) },
314
+ camera: { solid: /* @__PURE__ */ o(E1, {}), outline: /* @__PURE__ */ o(z1, {}) },
315
+ "camera-triangle": {
316
+ solid: /* @__PURE__ */ o(D1, {}),
317
+ outline: /* @__PURE__ */ o(R1, {})
318
+ },
319
+ candle: { solid: /* @__PURE__ */ o(H1, {}), outline: /* @__PURE__ */ o(T1, {}) },
320
+ captions: { solid: /* @__PURE__ */ o(B1, {}), outline: /* @__PURE__ */ o(M1, {}) },
321
+ car: { solid: /* @__PURE__ */ o(P1, {}), outline: /* @__PURE__ */ o(L1, {}) },
322
+ card: { solid: /* @__PURE__ */ o(S1, {}), outline: /* @__PURE__ */ o(x1, {}) },
323
+ "caret-down-circle": {
324
+ solid: /* @__PURE__ */ o($1, {}),
325
+ outline: /* @__PURE__ */ o(N1, {})
326
+ },
327
+ "caret-down": {
328
+ solid: /* @__PURE__ */ o(w1, {}),
329
+ outline: /* @__PURE__ */ o(v1, {})
330
+ },
331
+ "caret-left-circle": {
332
+ solid: /* @__PURE__ */ o(y1, {}),
333
+ outline: /* @__PURE__ */ o(C1, {})
334
+ },
335
+ "caret-left": {
336
+ solid: /* @__PURE__ */ o(f1, {}),
337
+ outline: /* @__PURE__ */ o(k1, {})
338
+ },
339
+ "caret-left-right": {
340
+ solid: /* @__PURE__ */ o(b1, {}),
341
+ outline: /* @__PURE__ */ o(F1, {})
342
+ },
343
+ "caret-right-circle": {
344
+ solid: /* @__PURE__ */ o(_1, {}),
345
+ outline: /* @__PURE__ */ o(g1, {})
346
+ },
347
+ "caret-right": {
348
+ solid: /* @__PURE__ */ o(p1, {}),
349
+ outline: /* @__PURE__ */ o(m1, {})
350
+ },
351
+ "caret-up-circle": {
352
+ solid: /* @__PURE__ */ o(h1, {}),
353
+ outline: /* @__PURE__ */ o(I1, {})
354
+ },
355
+ "caret-up-down": {
356
+ solid: /* @__PURE__ */ o(u1, {}),
357
+ outline: /* @__PURE__ */ o(d1, {})
358
+ },
359
+ "caret-up-down-filled-down": { outline: /* @__PURE__ */ o(a1, {}) },
360
+ "caret-up-down-filled-up": { outline: /* @__PURE__ */ o(r1, {}) },
361
+ "caret-up": { solid: /* @__PURE__ */ o(s1, {}), outline: /* @__PURE__ */ o(c1, {}) },
362
+ "changing-room": {
363
+ solid: /* @__PURE__ */ o(t1, {}),
364
+ outline: /* @__PURE__ */ o(i1, {})
365
+ },
366
+ chat2: { solid: /* @__PURE__ */ o(l1, {}), outline: /* @__PURE__ */ o(n1, {}) },
367
+ "chat-checkmark": {
368
+ solid: /* @__PURE__ */ o(e1, {}),
369
+ outline: /* @__PURE__ */ o(o1, {})
370
+ },
371
+ "chat-elipsis": {
372
+ solid: /* @__PURE__ */ o(Yp, {}),
373
+ outline: /* @__PURE__ */ o(Jp, {})
374
+ },
375
+ "chat-exclamationmark": {
376
+ solid: /* @__PURE__ */ o(Xp, {}),
377
+ outline: /* @__PURE__ */ o(Qp, {})
378
+ },
379
+ chat: { solid: /* @__PURE__ */ o(Kp, {}), outline: /* @__PURE__ */ o(Zp, {}) },
380
+ "checkmark-circle": {
381
+ solid: /* @__PURE__ */ o(Wp, {}),
382
+ outline: /* @__PURE__ */ o(Vp, {})
383
+ },
384
+ checkmark: { outline: /* @__PURE__ */ o(Gp, {}) },
385
+ "chef-hat": { solid: /* @__PURE__ */ o(Op, {}), outline: /* @__PURE__ */ o(jp, {}) },
386
+ "chevron-down-circle": {
387
+ solid: /* @__PURE__ */ o(Up, {}),
388
+ outline: /* @__PURE__ */ o(qp, {})
389
+ },
390
+ "chevron-down-double-circle": {
391
+ solid: /* @__PURE__ */ o(Ap, {}),
392
+ outline: /* @__PURE__ */ o(Ep, {})
393
+ },
394
+ "chevron-down-double": { outline: /* @__PURE__ */ o(zp, {}) },
395
+ "chevron-down": { outline: /* @__PURE__ */ o(Dp, {}) },
396
+ "chevron-down-up": { outline: /* @__PURE__ */ o(Rp, {}) },
397
+ "chevron-left-circle": {
398
+ solid: /* @__PURE__ */ o(Hp, {}),
399
+ outline: /* @__PURE__ */ o(Tp, {})
400
+ },
401
+ "chevron-left-double-circle": {
402
+ solid: /* @__PURE__ */ o(Bp, {}),
403
+ outline: /* @__PURE__ */ o(Mp, {})
404
+ },
405
+ "chevron-left-double": { outline: /* @__PURE__ */ o(Pp, {}) },
406
+ "chevron-left-first-circle": {
407
+ solid: /* @__PURE__ */ o(Lp, {}),
408
+ outline: /* @__PURE__ */ o(Sp, {})
409
+ },
410
+ "chevron-left-first": { outline: /* @__PURE__ */ o(xp, {}) },
411
+ "chevron-left": { outline: /* @__PURE__ */ o($p, {}) },
412
+ "chevron-right-circle": {
413
+ solid: /* @__PURE__ */ o(Np, {}),
414
+ outline: /* @__PURE__ */ o(wp, {})
415
+ },
416
+ "chevron-right-double-circle": {
417
+ solid: /* @__PURE__ */ o(vp, {}),
418
+ outline: /* @__PURE__ */ o(yp, {})
419
+ },
420
+ "chevron-right-double": { outline: /* @__PURE__ */ o(Cp, {}) },
421
+ "chevron-right": { outline: /* @__PURE__ */ o(fp, {}) },
422
+ "chevron-right-last-circle": {
423
+ solid: /* @__PURE__ */ o(kp, {}),
424
+ outline: /* @__PURE__ */ o(bp, {})
425
+ },
426
+ "chevron-right-last": { outline: /* @__PURE__ */ o(Fp, {}) },
427
+ "chevron-up-circle": {
428
+ solid: /* @__PURE__ */ o(_p, {}),
429
+ outline: /* @__PURE__ */ o(gp, {})
430
+ },
431
+ "chevron-up-double-circle": {
432
+ solid: /* @__PURE__ */ o(pp, {}),
433
+ outline: /* @__PURE__ */ o(mp, {})
434
+ },
435
+ "chevron-up-double": { outline: /* @__PURE__ */ o(hp, {}) },
436
+ "chevron-up-down": { outline: /* @__PURE__ */ o(Ip, {}) },
437
+ "chevron-up": { outline: /* @__PURE__ */ o(up, {}) },
438
+ "child-eyes": {
439
+ solid: /* @__PURE__ */ o(dp, {}),
440
+ outline: /* @__PURE__ */ o(ap, {})
441
+ },
442
+ "child-hair-eyes": {
443
+ solid: /* @__PURE__ */ o(rp, {}),
444
+ outline: /* @__PURE__ */ o(sp, {})
445
+ },
446
+ cigarette: { solid: /* @__PURE__ */ o(cp, {}), outline: /* @__PURE__ */ o(tp, {}) },
447
+ "circle-broken": { outline: /* @__PURE__ */ o(ip, {}) },
448
+ circle: { solid: /* @__PURE__ */ o(lp, {}), outline: /* @__PURE__ */ o(np, {}) },
449
+ "circle-slash": {
450
+ solid: /* @__PURE__ */ o(ep, {}),
451
+ outline: /* @__PURE__ */ o(op, {})
452
+ },
453
+ "clipboard-checkmark": {
454
+ solid: /* @__PURE__ */ o(Ym, {}),
455
+ outline: /* @__PURE__ */ o(Jm, {})
456
+ },
457
+ clipboard: { solid: /* @__PURE__ */ o(Xm, {}), outline: /* @__PURE__ */ o(Qm, {}) },
458
+ "clipboard-link": {
459
+ solid: /* @__PURE__ */ o(Km, {}),
460
+ outline: /* @__PURE__ */ o(Zm, {})
461
+ },
462
+ "clipboard-x-mark": {
463
+ solid: /* @__PURE__ */ o(Wm, {}),
464
+ outline: /* @__PURE__ */ o(Vm, {})
465
+ },
466
+ "clock-dashed": { outline: /* @__PURE__ */ o(Gm, {}) },
467
+ clock: { solid: /* @__PURE__ */ o(Om, {}), outline: /* @__PURE__ */ o(jm, {}) },
468
+ "clothing-hanger": {
469
+ solid: /* @__PURE__ */ o(Um, {}),
470
+ outline: /* @__PURE__ */ o(qm, {})
471
+ },
472
+ "cloud-down": {
473
+ solid: /* @__PURE__ */ o(Am, {}),
474
+ outline: /* @__PURE__ */ o(Em, {})
475
+ },
476
+ cloud: { solid: /* @__PURE__ */ o(zm, {}), outline: /* @__PURE__ */ o(Dm, {}) },
477
+ "cloud-slash": {
478
+ solid: /* @__PURE__ */ o(Rm, {}),
479
+ outline: /* @__PURE__ */ o(Hm, {})
480
+ },
481
+ "cloud-up": { solid: /* @__PURE__ */ o(Tm, {}), outline: /* @__PURE__ */ o(Bm, {}) },
482
+ code: { outline: /* @__PURE__ */ o(Mm, {}) },
483
+ coffee: { solid: /* @__PURE__ */ o(Pm, {}), outline: /* @__PURE__ */ o(Lm, {}) },
484
+ cog: { solid: /* @__PURE__ */ o(Sm, {}), outline: /* @__PURE__ */ o(xm, {}) },
485
+ "cog-rotation": {
486
+ solid: /* @__PURE__ */ o($m, {}),
487
+ outline: /* @__PURE__ */ o(Nm, {})
488
+ },
489
+ combifridge1: {
490
+ solid: /* @__PURE__ */ o(wm, {}),
491
+ outline: /* @__PURE__ */ o(vm, {})
492
+ },
493
+ combifridge2: {
494
+ solid: /* @__PURE__ */ o(ym, {}),
495
+ outline: /* @__PURE__ */ o(Cm, {})
496
+ },
497
+ compass: { solid: /* @__PURE__ */ o(fm, {}), outline: /* @__PURE__ */ o(km, {}) },
498
+ component: { solid: /* @__PURE__ */ o(bm, {}), outline: /* @__PURE__ */ o(Fm, {}) },
499
+ "currency-exchange": { outline: /* @__PURE__ */ o(_m, {}) },
500
+ cutlery: { solid: /* @__PURE__ */ o(gm, {}), outline: /* @__PURE__ */ o(pm, {}) },
501
+ database: { solid: /* @__PURE__ */ o(mm, {}), outline: /* @__PURE__ */ o(hm, {}) },
502
+ density1: { solid: /* @__PURE__ */ o(Im, {}), outline: /* @__PURE__ */ o(um, {}) },
503
+ density2: { solid: /* @__PURE__ */ o(dm, {}), outline: /* @__PURE__ */ o(am, {}) },
504
+ density3: { outline: /* @__PURE__ */ o(rm, {}) },
505
+ diamond: { solid: /* @__PURE__ */ o(sm, {}), outline: /* @__PURE__ */ o(cm, {}) },
506
+ dishwasher: {
507
+ solid: /* @__PURE__ */ o(tm, {}),
508
+ outline: /* @__PURE__ */ o(im, {})
509
+ },
510
+ divide: { outline: /* @__PURE__ */ o(lm, {}) },
511
+ "doc-pencil": {
512
+ solid: /* @__PURE__ */ o(nm, {}),
513
+ outline: /* @__PURE__ */ o(em, {})
514
+ },
515
+ dog: { solid: /* @__PURE__ */ o(om, {}), outline: /* @__PURE__ */ o(Yh, {}) },
516
+ "dog-harness": {
517
+ solid: /* @__PURE__ */ o(Jh, {}),
518
+ outline: /* @__PURE__ */ o(Xh, {})
519
+ },
520
+ "donut-chart": {
521
+ solid: /* @__PURE__ */ o(Qh, {}),
522
+ outline: /* @__PURE__ */ o(Kh, {})
523
+ },
524
+ donuts: { solid: /* @__PURE__ */ o(Zh, {}), outline: /* @__PURE__ */ o(Wh, {}) },
525
+ door: { solid: /* @__PURE__ */ o(Vh, {}), outline: /* @__PURE__ */ o(Gh, {}) },
526
+ "door-open": { solid: /* @__PURE__ */ o(Oh, {}), outline: /* @__PURE__ */ o(jh, {}) },
527
+ download: { outline: /* @__PURE__ */ o(Uh, {}) },
528
+ "drag-horizontal": { outline: /* @__PURE__ */ o(qh, {}) },
529
+ "drag-vertical": { outline: /* @__PURE__ */ o(Ah, {}) },
530
+ ear: { solid: /* @__PURE__ */ o(Eh, {}), outline: /* @__PURE__ */ o(zh, {}) },
531
+ "ear-slash": { solid: /* @__PURE__ */ o(Dh, {}), outline: /* @__PURE__ */ o(Rh, {}) },
532
+ "ear-soundwaves": {
533
+ solid: /* @__PURE__ */ o(Hh, {}),
534
+ outline: /* @__PURE__ */ o(Th, {})
535
+ },
536
+ earth: { solid: /* @__PURE__ */ o(Bh, {}), outline: /* @__PURE__ */ o(Mh, {}) },
537
+ elevator: { solid: /* @__PURE__ */ o(Ph, {}), outline: /* @__PURE__ */ o(Lh, {}) },
538
+ enter: { outline: /* @__PURE__ */ o(Sh, {}) },
539
+ "envelope-closed": {
540
+ solid: /* @__PURE__ */ o(xh, {}),
541
+ outline: /* @__PURE__ */ o($h, {})
542
+ },
543
+ "envelope-open": {
544
+ solid: /* @__PURE__ */ o(Nh, {}),
545
+ outline: /* @__PURE__ */ o(wh, {})
546
+ },
547
+ equals: { outline: /* @__PURE__ */ o(vh, {}) },
548
+ eraser: { solid: /* @__PURE__ */ o(yh, {}), outline: /* @__PURE__ */ o(Ch, {}) },
549
+ escalator: { outline: /* @__PURE__ */ o(fh, {}) },
550
+ ethernet: { outline: /* @__PURE__ */ o(kh, {}) },
551
+ exclamationmark: { outline: /* @__PURE__ */ o(bh, {}) },
552
+ "exclamationmark-triangle": {
553
+ solid: /* @__PURE__ */ o(Fh, {}),
554
+ outline: /* @__PURE__ */ o(_h, {})
555
+ },
556
+ expand: { outline: /* @__PURE__ */ o(gh, {}) },
557
+ "external-link": {
558
+ solid: /* @__PURE__ */ o(ph, {}),
559
+ outline: /* @__PURE__ */ o(mh, {})
560
+ },
561
+ "eye-closed": { outline: /* @__PURE__ */ o(hh, {}) },
562
+ eye: { solid: /* @__PURE__ */ o(Ih, {}), outline: /* @__PURE__ */ o(uh, {}) },
563
+ "eye-obfuscated": {
564
+ solid: /* @__PURE__ */ o(dh, {}),
565
+ outline: /* @__PURE__ */ o(ah, {})
566
+ },
567
+ "eye-slash": { solid: /* @__PURE__ */ o(rh, {}), outline: /* @__PURE__ */ o(sh, {}) },
568
+ "eye-with-pupil": {
569
+ solid: /* @__PURE__ */ o(ch, {}),
570
+ outline: /* @__PURE__ */ o(th, {})
571
+ },
572
+ "face-cry": { solid: /* @__PURE__ */ o(ih, {}), outline: /* @__PURE__ */ o(lh, {}) },
573
+ face: { solid: /* @__PURE__ */ o(nh, {}), outline: /* @__PURE__ */ o(eh, {}) },
574
+ "face-frown": {
575
+ solid: /* @__PURE__ */ o(oh, {}),
576
+ outline: /* @__PURE__ */ o(YI, {})
577
+ },
578
+ "face-laugh": {
579
+ solid: /* @__PURE__ */ o(JI, {}),
580
+ outline: /* @__PURE__ */ o(XI, {})
581
+ },
582
+ "face-smile": {
583
+ solid: /* @__PURE__ */ o(QI, {}),
584
+ outline: /* @__PURE__ */ o(KI, {})
585
+ },
586
+ "feeding-bottle": {
587
+ solid: /* @__PURE__ */ o(ZI, {}),
588
+ outline: /* @__PURE__ */ o(WI, {})
589
+ },
590
+ "figure-child": {
591
+ solid: /* @__PURE__ */ o(VI, {}),
592
+ outline: /* @__PURE__ */ o(GI, {})
593
+ },
594
+ "figure-combination": {
595
+ solid: /* @__PURE__ */ o(OI, {}),
596
+ outline: /* @__PURE__ */ o(jI, {})
597
+ },
598
+ figure: { solid: /* @__PURE__ */ o(UI, {}), outline: /* @__PURE__ */ o(qI, {}) },
599
+ "figure-inward": {
600
+ solid: /* @__PURE__ */ o(AI, {}),
601
+ outline: /* @__PURE__ */ o(EI, {})
602
+ },
603
+ "figure-outward": {
604
+ solid: /* @__PURE__ */ o(zI, {}),
605
+ outline: /* @__PURE__ */ o(DI, {})
606
+ },
607
+ "file-checkmark": {
608
+ solid: /* @__PURE__ */ o(RI, {}),
609
+ outline: /* @__PURE__ */ o(HI, {})
610
+ },
611
+ "file-code": { solid: /* @__PURE__ */ o(TI, {}), outline: /* @__PURE__ */ o(BI, {}) },
612
+ "file-csv": { solid: /* @__PURE__ */ o(MI, {}), outline: /* @__PURE__ */ o(PI, {}) },
613
+ "file-excel": {
614
+ solid: /* @__PURE__ */ o(LI, {}),
615
+ outline: /* @__PURE__ */ o(SI, {})
616
+ },
617
+ "file-export": {
618
+ solid: /* @__PURE__ */ o(xI, {}),
619
+ outline: /* @__PURE__ */ o($I, {})
620
+ },
621
+ file: { solid: /* @__PURE__ */ o(NI, {}), outline: /* @__PURE__ */ o(wI, {}) },
622
+ "file-image": {
623
+ solid: /* @__PURE__ */ o(vI, {}),
624
+ outline: /* @__PURE__ */ o(yI, {})
625
+ },
626
+ "file-import": {
627
+ solid: /* @__PURE__ */ o(CI, {}),
628
+ outline: /* @__PURE__ */ o(fI, {})
629
+ },
630
+ "file-json": { solid: /* @__PURE__ */ o(kI, {}), outline: /* @__PURE__ */ o(bI, {}) },
631
+ "file-loading": {
632
+ solid: /* @__PURE__ */ o(FI, {}),
633
+ outline: /* @__PURE__ */ o(_I, {})
634
+ },
635
+ "file-paragraph": {
636
+ solid: /* @__PURE__ */ o(gI, {}),
637
+ outline: /* @__PURE__ */ o(pI, {})
638
+ },
639
+ "file-pdf": { solid: /* @__PURE__ */ o(mI, {}), outline: /* @__PURE__ */ o(hI, {}) },
640
+ "file-plus": { solid: /* @__PURE__ */ o(II, {}), outline: /* @__PURE__ */ o(uI, {}) },
641
+ "file-reset": {
642
+ solid: /* @__PURE__ */ o(dI, {}),
643
+ outline: /* @__PURE__ */ o(aI, {})
644
+ },
645
+ "file-search": {
646
+ solid: /* @__PURE__ */ o(rI, {}),
647
+ outline: /* @__PURE__ */ o(sI, {})
648
+ },
649
+ "file-shredder": {
650
+ solid: /* @__PURE__ */ o(cI, {}),
651
+ outline: /* @__PURE__ */ o(tI, {})
652
+ },
653
+ "file-text": { solid: /* @__PURE__ */ o(iI, {}), outline: /* @__PURE__ */ o(lI, {}) },
654
+ "file-word": { solid: /* @__PURE__ */ o(nI, {}), outline: /* @__PURE__ */ o(eI, {}) },
655
+ "file-x-mark": {
656
+ solid: /* @__PURE__ */ o(oI, {}),
657
+ outline: /* @__PURE__ */ o(Yu, {})
658
+ },
659
+ files: { solid: /* @__PURE__ */ o(Ju, {}), outline: /* @__PURE__ */ o(Xu, {}) },
660
+ filter: { outline: /* @__PURE__ */ o(Qu, {}) },
661
+ "finger-button": {
662
+ solid: /* @__PURE__ */ o(Ku, {}),
663
+ outline: /* @__PURE__ */ o(Zu, {})
664
+ },
665
+ "finger-mobile": {
666
+ solid: /* @__PURE__ */ o(Wu, {}),
667
+ outline: /* @__PURE__ */ o(Vu, {})
668
+ },
669
+ "first-aid": { solid: /* @__PURE__ */ o(Gu, {}), outline: /* @__PURE__ */ o(Ou, {}) },
670
+ "first-aid-kit": {
671
+ solid: /* @__PURE__ */ o(ju, {}),
672
+ outline: /* @__PURE__ */ o(Uu, {})
673
+ },
674
+ "flag-cross": {
675
+ solid: /* @__PURE__ */ o(qu, {}),
676
+ outline: /* @__PURE__ */ o(Au, {})
677
+ },
678
+ floppydisk: {
679
+ solid: /* @__PURE__ */ o(Eu, {}),
680
+ outline: /* @__PURE__ */ o(zu, {})
681
+ },
682
+ flower: { solid: /* @__PURE__ */ o(Du, {}), outline: /* @__PURE__ */ o(Ru, {}) },
683
+ "flower-pension": {
684
+ solid: /* @__PURE__ */ o(Hu, {}),
685
+ outline: /* @__PURE__ */ o(Tu, {})
686
+ },
687
+ "flower-petal-falling": {
688
+ solid: /* @__PURE__ */ o(Bu, {}),
689
+ outline: /* @__PURE__ */ o(Mu, {})
690
+ },
691
+ "flower-petals": {
692
+ solid: /* @__PURE__ */ o(Pu, {}),
693
+ outline: /* @__PURE__ */ o(Lu, {})
694
+ },
695
+ "folder-file": {
696
+ solid: /* @__PURE__ */ o(Su, {}),
697
+ outline: /* @__PURE__ */ o(xu, {})
698
+ },
699
+ folder: { solid: /* @__PURE__ */ o($u, {}), outline: /* @__PURE__ */ o(Nu, {}) },
700
+ "folder-minus": {
701
+ solid: /* @__PURE__ */ o(wu, {}),
702
+ outline: /* @__PURE__ */ o(vu, {})
703
+ },
704
+ "folder-plus": {
705
+ solid: /* @__PURE__ */ o(yu, {}),
706
+ outline: /* @__PURE__ */ o(Cu, {})
707
+ },
708
+ fork: { solid: /* @__PURE__ */ o(fu, {}), outline: /* @__PURE__ */ o(ku, {}) },
709
+ forward: { solid: /* @__PURE__ */ o(bu, {}), outline: /* @__PURE__ */ o(Fu, {}) },
710
+ freezer: { solid: /* @__PURE__ */ o(_u, {}), outline: /* @__PURE__ */ o(gu, {}) },
711
+ funnel: { solid: /* @__PURE__ */ o(pu, {}), outline: /* @__PURE__ */ o(mu, {}) },
712
+ gavel: { solid: /* @__PURE__ */ o(hu, {}), outline: /* @__PURE__ */ o(Iu, {}) },
713
+ "gavel-sound-block": {
714
+ solid: /* @__PURE__ */ o(uu, {}),
715
+ outline: /* @__PURE__ */ o(du, {})
716
+ },
717
+ glass: { solid: /* @__PURE__ */ o(au, {}), outline: /* @__PURE__ */ o(ru, {}) },
718
+ glasses: { solid: /* @__PURE__ */ o(su, {}), outline: /* @__PURE__ */ o(cu, {}) },
719
+ globe: { solid: /* @__PURE__ */ o(tu, {}), outline: /* @__PURE__ */ o(iu, {}) },
720
+ "globe-slash": {
721
+ solid: /* @__PURE__ */ o(lu, {}),
722
+ outline: /* @__PURE__ */ o(nu, {})
723
+ },
724
+ "hand-bandage": {
725
+ solid: /* @__PURE__ */ o(eu, {}),
726
+ outline: /* @__PURE__ */ o(ou, {})
727
+ },
728
+ "hand-finger": {
729
+ solid: /* @__PURE__ */ o(Yd, {}),
730
+ outline: /* @__PURE__ */ o(Jd, {})
731
+ },
732
+ "hand-heart": {
733
+ solid: /* @__PURE__ */ o(Xd, {}),
734
+ outline: /* @__PURE__ */ o(Qd, {})
735
+ },
736
+ "hand-knot-filled": { outline: /* @__PURE__ */ o(Kd, {}) },
737
+ "hand-knot": { outline: /* @__PURE__ */ o(Zd, {}) },
738
+ "hand-shake-heart": {
739
+ solid: /* @__PURE__ */ o(Wd, {}),
740
+ outline: /* @__PURE__ */ o(Vd, {})
741
+ },
742
+ handshake: { solid: /* @__PURE__ */ o(Gd, {}), outline: /* @__PURE__ */ o(Od, {}) },
743
+ hanger: { outline: /* @__PURE__ */ o(jd, {}) },
744
+ "hard-hat": { solid: /* @__PURE__ */ o(Ud, {}), outline: /* @__PURE__ */ o(qd, {}) },
745
+ hashtag: { outline: /* @__PURE__ */ o(Ad, {}) },
746
+ "hat-school": {
747
+ solid: /* @__PURE__ */ o(Ed, {}),
748
+ outline: /* @__PURE__ */ o(zd, {})
749
+ },
750
+ "hdd-down": { solid: /* @__PURE__ */ o(Dd, {}), outline: /* @__PURE__ */ o(Rd, {}) },
751
+ "hdd-up": { solid: /* @__PURE__ */ o(Hd, {}), outline: /* @__PURE__ */ o(Td, {}) },
752
+ "head-cloud": {
753
+ solid: /* @__PURE__ */ o(Bd, {}),
754
+ outline: /* @__PURE__ */ o(Md, {})
755
+ },
756
+ head: { solid: /* @__PURE__ */ o(Pd, {}), outline: /* @__PURE__ */ o(Ld, {}) },
757
+ "head-heart": {
758
+ solid: /* @__PURE__ */ o(Sd, {}),
759
+ outline: /* @__PURE__ */ o(xd, {})
760
+ },
761
+ "hearing-loop": {
762
+ solid: /* @__PURE__ */ o($d, {}),
763
+ outline: /* @__PURE__ */ o(Nd, {})
764
+ },
765
+ "hearing-loop-radio": {
766
+ solid: /* @__PURE__ */ o(wd, {}),
767
+ outline: /* @__PURE__ */ o(vd, {})
768
+ },
769
+ "heart-broken": {
770
+ solid: /* @__PURE__ */ o(yd, {}),
771
+ outline: /* @__PURE__ */ o(Cd, {})
772
+ },
773
+ heart: { solid: /* @__PURE__ */ o(fd, {}), outline: /* @__PURE__ */ o(kd, {}) },
774
+ "hexagon-grid": {
775
+ solid: /* @__PURE__ */ o(bd, {}),
776
+ outline: /* @__PURE__ */ o(Fd, {})
777
+ },
778
+ "hiking-trail-sign": {
779
+ solid: /* @__PURE__ */ o(_d, {}),
780
+ outline: /* @__PURE__ */ o(gd, {})
781
+ },
782
+ hospital: { solid: /* @__PURE__ */ o(pd, {}), outline: /* @__PURE__ */ o(md, {}) },
783
+ "hourglass-bottom-filled": { outline: /* @__PURE__ */ o(hd, {}) },
784
+ hourglass: { outline: /* @__PURE__ */ o(Id, {}) },
785
+ "hourglass-top-filled": { outline: /* @__PURE__ */ o(ud, {}) },
786
+ house: { solid: /* @__PURE__ */ o(dd, {}), outline: /* @__PURE__ */ o(ad, {}) },
787
+ "house-heart": {
788
+ solid: /* @__PURE__ */ o(rd, {}),
789
+ outline: /* @__PURE__ */ o(sd, {})
790
+ },
791
+ image: { solid: /* @__PURE__ */ o(cd, {}), outline: /* @__PURE__ */ o(td, {}) },
792
+ "inbox-down": {
793
+ solid: /* @__PURE__ */ o(id, {}),
794
+ outline: /* @__PURE__ */ o(ld, {})
795
+ },
796
+ inbox: { solid: /* @__PURE__ */ o(nd, {}), outline: /* @__PURE__ */ o(ed, {}) },
797
+ "inbox-up": { solid: /* @__PURE__ */ o(od, {}), outline: /* @__PURE__ */ o(Ya, {}) },
798
+ information: { outline: /* @__PURE__ */ o(Ja, {}) },
799
+ "information-square": {
800
+ solid: /* @__PURE__ */ o(Xa, {}),
801
+ outline: /* @__PURE__ */ o(Qa, {})
802
+ },
803
+ "iv-fluid-bag": {
804
+ solid: /* @__PURE__ */ o(Ka, {}),
805
+ outline: /* @__PURE__ */ o(Za, {})
806
+ },
807
+ "key-horizontal": {
808
+ solid: /* @__PURE__ */ o(Wa, {}),
809
+ outline: /* @__PURE__ */ o(Va, {})
810
+ },
811
+ "key-vertical": {
812
+ solid: /* @__PURE__ */ o(Ga, {}),
813
+ outline: /* @__PURE__ */ o(Oa, {})
814
+ },
815
+ knife: { solid: /* @__PURE__ */ o(ja, {}), outline: /* @__PURE__ */ o(Ua, {}) },
816
+ kroner: { outline: /* @__PURE__ */ o(qa, {}) },
817
+ language: { outline: /* @__PURE__ */ o(Aa, {}) },
818
+ laptop: { solid: /* @__PURE__ */ o(Ea, {}), outline: /* @__PURE__ */ o(za, {}) },
819
+ "laptop-triangle": {
820
+ solid: /* @__PURE__ */ o(Da, {}),
821
+ outline: /* @__PURE__ */ o(Ra, {})
822
+ },
823
+ "layer-minus": {
824
+ solid: /* @__PURE__ */ o(Ha, {}),
825
+ outline: /* @__PURE__ */ o(Ta, {})
826
+ },
827
+ layers: { solid: /* @__PURE__ */ o(Ba, {}), outline: /* @__PURE__ */ o(Ma, {}) },
828
+ "layers-plus": {
829
+ solid: /* @__PURE__ */ o(Pa, {}),
830
+ outline: /* @__PURE__ */ o(La, {})
831
+ },
832
+ leave: { outline: /* @__PURE__ */ o(Sa, {}) },
833
+ "light-bulb": {
834
+ solid: /* @__PURE__ */ o(xa, {}),
835
+ outline: /* @__PURE__ */ o($a, {})
836
+ },
837
+ lightning: { solid: /* @__PURE__ */ o(Na, {}), outline: /* @__PURE__ */ o(wa, {}) },
838
+ "line-graph-dot": { outline: /* @__PURE__ */ o(va, {}) },
839
+ "line-graph": { outline: /* @__PURE__ */ o(ya, {}) },
840
+ "line-graph-stacked": { outline: /* @__PURE__ */ o(Ca, {}) },
841
+ "link-broken": { outline: /* @__PURE__ */ o(fa, {}) },
842
+ link: { outline: /* @__PURE__ */ o(ka, {}) },
843
+ "location-pin": {
844
+ solid: /* @__PURE__ */ o(ba, {}),
845
+ outline: /* @__PURE__ */ o(Fa, {})
846
+ },
847
+ "magnifying-glass": {
848
+ solid: /* @__PURE__ */ o(_a, {}),
849
+ outline: /* @__PURE__ */ o(ga, {})
850
+ },
851
+ "measuring-tape": {
852
+ solid: /* @__PURE__ */ o(pa, {}),
853
+ outline: /* @__PURE__ */ o(ma, {})
854
+ },
855
+ "medicine-bottle": {
856
+ solid: /* @__PURE__ */ o(ha, {}),
857
+ outline: /* @__PURE__ */ o(Ia, {})
858
+ },
859
+ "meeting-large": {
860
+ solid: /* @__PURE__ */ o(ua, {}),
861
+ outline: /* @__PURE__ */ o(da, {})
862
+ },
863
+ "meeting-small": {
864
+ solid: /* @__PURE__ */ o(aa, {}),
865
+ outline: /* @__PURE__ */ o(ra, {})
866
+ },
867
+ megaphone: { solid: /* @__PURE__ */ o(sa, {}), outline: /* @__PURE__ */ o(ca, {}) },
868
+ "megaphone-speaking": {
869
+ solid: /* @__PURE__ */ o(ta, {}),
870
+ outline: /* @__PURE__ */ o(ia, {})
871
+ },
872
+ "menu-elipsis-horizontal-circle": {
873
+ solid: /* @__PURE__ */ o(la, {}),
874
+ outline: /* @__PURE__ */ o(na, {})
875
+ },
876
+ "menu-elipsis-horizontal": { outline: /* @__PURE__ */ o(ea, {}) },
877
+ "menu-elipsis-horizontal-square": {
878
+ solid: /* @__PURE__ */ o(oa, {}),
879
+ outline: /* @__PURE__ */ o(Yr, {})
880
+ },
881
+ "menu-elipsis-vertical-circle": {
882
+ solid: /* @__PURE__ */ o(Jr, {}),
883
+ outline: /* @__PURE__ */ o(Xr, {})
884
+ },
885
+ "menu-elipsis-vertical": { outline: /* @__PURE__ */ o(Qr, {}) },
886
+ "menu-elipsis-vertical-square": {
887
+ solid: /* @__PURE__ */ o(Kr, {}),
888
+ outline: /* @__PURE__ */ o(Zr, {})
889
+ },
890
+ "menu-grid": { outline: /* @__PURE__ */ o(Wr, {}) },
891
+ "menu-hamburger": { outline: /* @__PURE__ */ o(Vr, {}) },
892
+ microbe: { solid: /* @__PURE__ */ o(Gr, {}), outline: /* @__PURE__ */ o(Or, {}) },
893
+ microphone: {
894
+ solid: /* @__PURE__ */ o(jr, {}),
895
+ outline: /* @__PURE__ */ o(Ur, {})
896
+ },
897
+ "microphone-slash": {
898
+ solid: /* @__PURE__ */ o(qr, {}),
899
+ outline: /* @__PURE__ */ o(Ar, {})
900
+ },
901
+ migration: { outline: /* @__PURE__ */ o(Er, {}) },
902
+ "minus-circle": {
903
+ solid: /* @__PURE__ */ o(zr, {}),
904
+ outline: /* @__PURE__ */ o(Dr, {})
905
+ },
906
+ minus: { outline: /* @__PURE__ */ o(Rr, {}) },
907
+ mobile: { solid: /* @__PURE__ */ o(Hr, {}), outline: /* @__PURE__ */ o(Tr, {}) },
908
+ "mobile-small": {
909
+ solid: /* @__PURE__ */ o(Br, {}),
910
+ outline: /* @__PURE__ */ o(Mr, {})
911
+ },
912
+ "mobile-triangle": {
913
+ solid: /* @__PURE__ */ o(Pr, {}),
914
+ outline: /* @__PURE__ */ o(Lr, {})
915
+ },
916
+ monitor: { solid: /* @__PURE__ */ o(Sr, {}), outline: /* @__PURE__ */ o(xr, {}) },
917
+ "monitor-triangle": {
918
+ solid: /* @__PURE__ */ o($r, {}),
919
+ outline: /* @__PURE__ */ o(Nr, {})
920
+ },
921
+ moon: { solid: /* @__PURE__ */ o(wr, {}), outline: /* @__PURE__ */ o(vr, {}) },
922
+ motorcycle: {
923
+ solid: /* @__PURE__ */ o(yr, {}),
924
+ outline: /* @__PURE__ */ o(Cr, {})
925
+ },
926
+ mountain: { solid: /* @__PURE__ */ o(fr, {}), outline: /* @__PURE__ */ o(kr, {}) },
927
+ mug: { solid: /* @__PURE__ */ o(br, {}), outline: /* @__PURE__ */ o(Fr, {}) },
928
+ multiply: { outline: /* @__PURE__ */ o(_r, {}) },
929
+ newspaper: { solid: /* @__PURE__ */ o(gr, {}), outline: /* @__PURE__ */ o(pr, {}) },
930
+ "no-smoking": {
931
+ solid: /* @__PURE__ */ o(mr, {}),
932
+ outline: /* @__PURE__ */ o(hr, {})
933
+ },
934
+ nok: { outline: /* @__PURE__ */ o(Ir, {}) },
935
+ "note-pencil-dash": { outline: /* @__PURE__ */ o(ur, {}) },
936
+ "note-pencil": {
937
+ solid: /* @__PURE__ */ o(dr, {}),
938
+ outline: /* @__PURE__ */ o(ar, {})
939
+ },
940
+ "number-list": { outline: /* @__PURE__ */ o(rr, {}) },
941
+ "open-source": {
942
+ solid: /* @__PURE__ */ o(sr, {}),
943
+ outline: /* @__PURE__ */ o(cr, {})
944
+ },
945
+ over18: { solid: /* @__PURE__ */ o(tr, {}), outline: /* @__PURE__ */ o(ir, {}) },
946
+ package: { solid: /* @__PURE__ */ o(lr, {}), outline: /* @__PURE__ */ o(nr, {}) },
947
+ "padlock-locked": {
948
+ solid: /* @__PURE__ */ o(er, {}),
949
+ outline: /* @__PURE__ */ o(or, {})
950
+ },
951
+ "padlock-unlocked": {
952
+ solid: /* @__PURE__ */ o(Ys, {}),
953
+ outline: /* @__PURE__ */ o(Js, {})
954
+ },
955
+ palette: { solid: /* @__PURE__ */ o(Xs, {}), outline: /* @__PURE__ */ o(Qs, {}) },
956
+ paperclip: { outline: /* @__PURE__ */ o(Ks, {}) },
957
+ paperplane: {
958
+ solid: /* @__PURE__ */ o(Zs, {}),
959
+ outline: /* @__PURE__ */ o(Ws, {})
960
+ },
961
+ paragraph: { outline: /* @__PURE__ */ o(Vs, {}) },
962
+ "parasol-beach": {
963
+ solid: /* @__PURE__ */ o(Gs, {}),
964
+ outline: /* @__PURE__ */ o(Os, {})
965
+ },
966
+ parking: { solid: /* @__PURE__ */ o(js, {}), outline: /* @__PURE__ */ o(Us, {}) },
967
+ passport: { solid: /* @__PURE__ */ o(qs, {}), outline: /* @__PURE__ */ o(As, {}) },
968
+ "password-hidden": { outline: /* @__PURE__ */ o(Es, {}) },
969
+ pause: { solid: /* @__PURE__ */ o(zs, {}), outline: /* @__PURE__ */ o(Ds, {}) },
970
+ "pencil-board": {
971
+ solid: /* @__PURE__ */ o(Rs, {}),
972
+ outline: /* @__PURE__ */ o(Hs, {})
973
+ },
974
+ pencil: { solid: /* @__PURE__ */ o(Ts, {}), outline: /* @__PURE__ */ o(Bs, {}) },
975
+ "pencil-line": {
976
+ solid: /* @__PURE__ */ o(Ms, {}),
977
+ outline: /* @__PURE__ */ o(Ps, {})
978
+ },
979
+ "pencil-writing": {
980
+ solid: /* @__PURE__ */ o(Ls, {}),
981
+ outline: /* @__PURE__ */ o(Ss, {})
982
+ },
983
+ pentagon: { solid: /* @__PURE__ */ o(xs, {}), outline: /* @__PURE__ */ o($s, {}) },
984
+ percent: { outline: /* @__PURE__ */ o(Ns, {}) },
985
+ "person-chat": {
986
+ solid: /* @__PURE__ */ o(ws, {}),
987
+ outline: /* @__PURE__ */ o(vs, {})
988
+ },
989
+ "person-checkmark": {
990
+ solid: /* @__PURE__ */ o(ys, {}),
991
+ outline: /* @__PURE__ */ o(Cs, {})
992
+ },
993
+ "person-circle": {
994
+ solid: /* @__PURE__ */ o(fs, {}),
995
+ outline: /* @__PURE__ */ o(ks, {})
996
+ },
997
+ "person-cross": {
998
+ solid: /* @__PURE__ */ o(bs, {}),
999
+ outline: /* @__PURE__ */ o(Fs, {})
1000
+ },
1001
+ "person-envelope": {
1002
+ solid: /* @__PURE__ */ o(_s, {}),
1003
+ outline: /* @__PURE__ */ o(gs, {})
1004
+ },
1005
+ person: { solid: /* @__PURE__ */ o(ps, {}), outline: /* @__PURE__ */ o(ms, {}) },
1006
+ "person-gavel": {
1007
+ solid: /* @__PURE__ */ o(hs, {}),
1008
+ outline: /* @__PURE__ */ o(Is, {})
1009
+ },
1010
+ "person-group": {
1011
+ solid: /* @__PURE__ */ o(us, {}),
1012
+ outline: /* @__PURE__ */ o(ds, {})
1013
+ },
1014
+ "person-headset": {
1015
+ solid: /* @__PURE__ */ o(as, {}),
1016
+ outline: /* @__PURE__ */ o(rs, {})
1017
+ },
1018
+ "person-minus": {
1019
+ solid: /* @__PURE__ */ o(ss, {}),
1020
+ outline: /* @__PURE__ */ o(cs, {})
1021
+ },
1022
+ "person-pencil": {
1023
+ solid: /* @__PURE__ */ o(ts, {}),
1024
+ outline: /* @__PURE__ */ o(is, {})
1025
+ },
1026
+ "person-plus": {
1027
+ solid: /* @__PURE__ */ o(ls, {}),
1028
+ outline: /* @__PURE__ */ o(ns, {})
1029
+ },
1030
+ "person-pregnant": {
1031
+ solid: /* @__PURE__ */ o(es, {}),
1032
+ outline: /* @__PURE__ */ o(os, {})
1033
+ },
1034
+ "person-rectangle": {
1035
+ solid: /* @__PURE__ */ o(Yc, {}),
1036
+ outline: /* @__PURE__ */ o(Jc, {})
1037
+ },
1038
+ "person-suit": {
1039
+ solid: /* @__PURE__ */ o(Xc, {}),
1040
+ outline: /* @__PURE__ */ o(Qc, {})
1041
+ },
1042
+ "person-tall-short": {
1043
+ solid: /* @__PURE__ */ o(Kc, {}),
1044
+ outline: /* @__PURE__ */ o(Zc, {})
1045
+ },
1046
+ phone: { solid: /* @__PURE__ */ o(Wc, {}), outline: /* @__PURE__ */ o(Vc, {}) },
1047
+ "pie-chart": { solid: /* @__PURE__ */ o(Gc, {}), outline: /* @__PURE__ */ o(Oc, {}) },
1048
+ piggybank: { solid: /* @__PURE__ */ o(jc, {}), outline: /* @__PURE__ */ o(Uc, {}) },
1049
+ "pill-circle": {
1050
+ solid: /* @__PURE__ */ o(qc, {}),
1051
+ outline: /* @__PURE__ */ o(Ac, {})
1052
+ },
1053
+ "pill-circle-rectangle": {
1054
+ solid: /* @__PURE__ */ o(Ec, {}),
1055
+ outline: /* @__PURE__ */ o(zc, {})
1056
+ },
1057
+ "pill-rectangle": {
1058
+ solid: /* @__PURE__ */ o(Dc, {}),
1059
+ outline: /* @__PURE__ */ o(Rc, {})
1060
+ },
1061
+ pin: { solid: /* @__PURE__ */ o(Hc, {}), outline: /* @__PURE__ */ o(Tc, {}) },
1062
+ plant: { solid: /* @__PURE__ */ o(Bc, {}), outline: /* @__PURE__ */ o(Mc, {}) },
1063
+ plate: { solid: /* @__PURE__ */ o(Pc, {}), outline: /* @__PURE__ */ o(Lc, {}) },
1064
+ play: { solid: /* @__PURE__ */ o(Sc, {}), outline: /* @__PURE__ */ o(xc, {}) },
1065
+ "plus-circle": {
1066
+ solid: /* @__PURE__ */ o($c, {}),
1067
+ outline: /* @__PURE__ */ o(Nc, {})
1068
+ },
1069
+ plus: { outline: /* @__PURE__ */ o(wc, {}) },
1070
+ "plus-minus-slash": { outline: /* @__PURE__ */ o(vc, {}) },
1071
+ portal: { solid: /* @__PURE__ */ o(yc, {}), outline: /* @__PURE__ */ o(Cc, {}) },
1072
+ presentation: {
1073
+ solid: /* @__PURE__ */ o(fc, {}),
1074
+ outline: /* @__PURE__ */ o(kc, {})
1075
+ },
1076
+ "printer-large": {
1077
+ solid: /* @__PURE__ */ o(bc, {}),
1078
+ outline: /* @__PURE__ */ o(Fc, {})
1079
+ },
1080
+ "printer-large-triangle": {
1081
+ solid: /* @__PURE__ */ o(_c, {}),
1082
+ outline: /* @__PURE__ */ o(gc, {})
1083
+ },
1084
+ "printer-small": {
1085
+ solid: /* @__PURE__ */ o(pc, {}),
1086
+ outline: /* @__PURE__ */ o(mc, {})
1087
+ },
1088
+ "printer-small-triangle": {
1089
+ solid: /* @__PURE__ */ o(hc, {}),
1090
+ outline: /* @__PURE__ */ o(Ic, {})
1091
+ },
1092
+ "push-pin": { solid: /* @__PURE__ */ o(uc, {}), outline: /* @__PURE__ */ o(dc, {}) },
1093
+ "puzzle-piece": {
1094
+ solid: /* @__PURE__ */ o(ac, {}),
1095
+ outline: /* @__PURE__ */ o(rc, {})
1096
+ },
1097
+ "qr-code": { solid: /* @__PURE__ */ o(sc, {}), outline: /* @__PURE__ */ o(cc, {}) },
1098
+ "qr-code-scanning": {
1099
+ solid: /* @__PURE__ */ o(tc, {}),
1100
+ outline: /* @__PURE__ */ o(ic, {})
1101
+ },
1102
+ "questionmark-diamond": {
1103
+ solid: /* @__PURE__ */ o(lc, {}),
1104
+ outline: /* @__PURE__ */ o(nc, {})
1105
+ },
1106
+ questionmark: { outline: /* @__PURE__ */ o(ec, {}) },
1107
+ "quiet-zone": {
1108
+ solid: /* @__PURE__ */ o(oc, {}),
1109
+ outline: /* @__PURE__ */ o(Yt, {})
1110
+ },
1111
+ raindrop: { solid: /* @__PURE__ */ o(Jt, {}), outline: /* @__PURE__ */ o(Xt, {}) },
1112
+ receipt: { solid: /* @__PURE__ */ o(Qt, {}), outline: /* @__PURE__ */ o(Kt, {}) },
1113
+ reception: { solid: /* @__PURE__ */ o(Zt, {}), outline: /* @__PURE__ */ o(Wt, {}) },
1114
+ record: { solid: /* @__PURE__ */ o(Vt, {}), outline: /* @__PURE__ */ o(Gt, {}) },
1115
+ "rectangle-sections": {
1116
+ solid: /* @__PURE__ */ o(Ot, {}),
1117
+ outline: /* @__PURE__ */ o(jt, {})
1118
+ },
1119
+ recycle: { solid: /* @__PURE__ */ o(Ut, {}), outline: /* @__PURE__ */ o(qt, {}) },
1120
+ refrigerator: {
1121
+ solid: /* @__PURE__ */ o(At, {}),
1122
+ outline: /* @__PURE__ */ o(Et, {})
1123
+ },
1124
+ roadblock: { solid: /* @__PURE__ */ o(zt, {}), outline: /* @__PURE__ */ o(Dt, {}) },
1125
+ robot: { solid: /* @__PURE__ */ o(Rt, {}), outline: /* @__PURE__ */ o(Ht, {}) },
1126
+ "robot-frown": {
1127
+ solid: /* @__PURE__ */ o(Tt, {}),
1128
+ outline: /* @__PURE__ */ o(Bt, {})
1129
+ },
1130
+ "robot-smile": {
1131
+ solid: /* @__PURE__ */ o(Mt, {}),
1132
+ outline: /* @__PURE__ */ o(Pt, {})
1133
+ },
1134
+ rocket: { solid: /* @__PURE__ */ o(Lt, {}), outline: /* @__PURE__ */ o(St, {}) },
1135
+ "rocking-horse": {
1136
+ solid: /* @__PURE__ */ o(xt, {}),
1137
+ outline: /* @__PURE__ */ o($t, {})
1138
+ },
1139
+ "rotate-left": {
1140
+ solid: /* @__PURE__ */ o(Nt, {}),
1141
+ outline: /* @__PURE__ */ o(wt, {})
1142
+ },
1143
+ "rotate-right": {
1144
+ solid: /* @__PURE__ */ o(vt, {}),
1145
+ outline: /* @__PURE__ */ o(yt, {})
1146
+ },
1147
+ router: { outline: /* @__PURE__ */ o(Ct, {}) },
1148
+ ruler: { solid: /* @__PURE__ */ o(ft, {}), outline: /* @__PURE__ */ o(kt, {}) },
1149
+ rulers: { solid: /* @__PURE__ */ o(bt, {}), outline: /* @__PURE__ */ o(Ft, {}) },
1150
+ sack: { solid: /* @__PURE__ */ o(_t, {}), outline: /* @__PURE__ */ o(gt, {}) },
1151
+ "sack-kroner": {
1152
+ solid: /* @__PURE__ */ o(pt, {}),
1153
+ outline: /* @__PURE__ */ o(mt, {})
1154
+ },
1155
+ "sack-pension": {
1156
+ solid: /* @__PURE__ */ o(ht, {}),
1157
+ outline: /* @__PURE__ */ o(It, {})
1158
+ },
1159
+ sandbox: { solid: /* @__PURE__ */ o(ut, {}), outline: /* @__PURE__ */ o(dt, {}) },
1160
+ scissors: { solid: /* @__PURE__ */ o(at, {}), outline: /* @__PURE__ */ o(rt, {}) },
1161
+ "seal-checkmark": {
1162
+ solid: /* @__PURE__ */ o(st, {}),
1163
+ outline: /* @__PURE__ */ o(ct, {})
1164
+ },
1165
+ seal: { solid: /* @__PURE__ */ o(tt, {}), outline: /* @__PURE__ */ o(it, {}) },
1166
+ "seal-x-mark": {
1167
+ solid: /* @__PURE__ */ o(lt, {}),
1168
+ outline: /* @__PURE__ */ o(nt, {})
1169
+ },
1170
+ "sector-chart": {
1171
+ solid: /* @__PURE__ */ o(et, {}),
1172
+ outline: /* @__PURE__ */ o(ot, {})
1173
+ },
1174
+ shield: { solid: /* @__PURE__ */ o(Yi, {}), outline: /* @__PURE__ */ o(Ji, {}) },
1175
+ "shield-lock": {
1176
+ solid: /* @__PURE__ */ o(Xi, {}),
1177
+ outline: /* @__PURE__ */ o(Qi, {})
1178
+ },
1179
+ "shopping-basket": {
1180
+ solid: /* @__PURE__ */ o(Ki, {}),
1181
+ outline: /* @__PURE__ */ o(Zi, {})
1182
+ },
1183
+ shower: { solid: /* @__PURE__ */ o(Wi, {}), outline: /* @__PURE__ */ o(Vi, {}) },
1184
+ shrink: { outline: /* @__PURE__ */ o(Gi, {}) },
1185
+ "sidebar-both": {
1186
+ solid: /* @__PURE__ */ o(Oi, {}),
1187
+ outline: /* @__PURE__ */ o(ji, {})
1188
+ },
1189
+ "sidebar-left": {
1190
+ solid: /* @__PURE__ */ o(Ui, {}),
1191
+ outline: /* @__PURE__ */ o(qi, {})
1192
+ },
1193
+ "sidebar-right": {
1194
+ solid: /* @__PURE__ */ o(Ai, {}),
1195
+ outline: /* @__PURE__ */ o(Ei, {})
1196
+ },
1197
+ "sign-language-single-hand": {
1198
+ solid: /* @__PURE__ */ o(zi, {}),
1199
+ outline: /* @__PURE__ */ o(Di, {})
1200
+ },
1201
+ "sign-language-two-hands": {
1202
+ solid: /* @__PURE__ */ o(Ri, {}),
1203
+ outline: /* @__PURE__ */ o(Hi, {})
1204
+ },
1205
+ silhouette: {
1206
+ solid: /* @__PURE__ */ o(Ti, {}),
1207
+ outline: /* @__PURE__ */ o(Bi, {})
1208
+ },
1209
+ "skip-backward": {
1210
+ solid: /* @__PURE__ */ o(Mi, {}),
1211
+ outline: /* @__PURE__ */ o(Pi, {})
1212
+ },
1213
+ "skip-forward": {
1214
+ solid: /* @__PURE__ */ o(Li, {}),
1215
+ outline: /* @__PURE__ */ o(Si, {})
1216
+ },
1217
+ snow: { outline: /* @__PURE__ */ o(xi, {}) },
1218
+ "spark-large": { outline: /* @__PURE__ */ o($i, {}) },
1219
+ "spark-small": { outline: /* @__PURE__ */ o(Ni, {}) },
1220
+ sparkles: { solid: /* @__PURE__ */ o(wi, {}), outline: /* @__PURE__ */ o(vi, {}) },
1221
+ speaker: { solid: /* @__PURE__ */ o(yi, {}), outline: /* @__PURE__ */ o(Ci, {}) },
1222
+ "speaker-slash": {
1223
+ solid: /* @__PURE__ */ o(fi, {}),
1224
+ outline: /* @__PURE__ */ o(ki, {})
1225
+ },
1226
+ "speaker-sound-wave1": {
1227
+ solid: /* @__PURE__ */ o(bi, {}),
1228
+ outline: /* @__PURE__ */ o(Fi, {})
1229
+ },
1230
+ "speaker-sound-wave2": {
1231
+ solid: /* @__PURE__ */ o(_i, {}),
1232
+ outline: /* @__PURE__ */ o(gi, {})
1233
+ },
1234
+ "speaker-sound-wave3": {
1235
+ solid: /* @__PURE__ */ o(pi, {}),
1236
+ outline: /* @__PURE__ */ o(mi, {})
1237
+ },
1238
+ "split-horizontal": {
1239
+ solid: /* @__PURE__ */ o(hi, {}),
1240
+ outline: /* @__PURE__ */ o(Ii, {})
1241
+ },
1242
+ "split-vertical": {
1243
+ solid: /* @__PURE__ */ o(ui, {}),
1244
+ outline: /* @__PURE__ */ o(di, {})
1245
+ },
1246
+ spoon: { solid: /* @__PURE__ */ o(ai, {}), outline: /* @__PURE__ */ o(ri, {}) },
1247
+ square: { solid: /* @__PURE__ */ o(si, {}), outline: /* @__PURE__ */ o(ci, {}) },
1248
+ squareroot: { outline: /* @__PURE__ */ o(ti, {}) },
1249
+ staircase: { outline: /* @__PURE__ */ o(ii, {}) },
1250
+ star: { solid: /* @__PURE__ */ o(li, {}), outline: /* @__PURE__ */ o(ni, {}) },
1251
+ "star-of-life": {
1252
+ solid: /* @__PURE__ */ o(ei, {}),
1253
+ outline: /* @__PURE__ */ o(oi, {})
1254
+ },
1255
+ "stars-eu": { outline: /* @__PURE__ */ o(Yl, {}) },
1256
+ stethoscope: { outline: /* @__PURE__ */ o(Jl, {}) },
1257
+ stop: { solid: /* @__PURE__ */ o(Xl, {}), outline: /* @__PURE__ */ o(Ql, {}) },
1258
+ stroller: { solid: /* @__PURE__ */ o(Kl, {}), outline: /* @__PURE__ */ o(Zl, {}) },
1259
+ sun: { solid: /* @__PURE__ */ o(Wl, {}), outline: /* @__PURE__ */ o(Vl, {}) },
1260
+ table: { solid: /* @__PURE__ */ o(Gl, {}), outline: /* @__PURE__ */ o(Ol, {}) },
1261
+ tablet: { solid: /* @__PURE__ */ o(jl, {}), outline: /* @__PURE__ */ o(Ul, {}) },
1262
+ "tabs-add": { solid: /* @__PURE__ */ o(ql, {}), outline: /* @__PURE__ */ o(Al, {}) },
1263
+ tabs: { solid: /* @__PURE__ */ o(El, {}), outline: /* @__PURE__ */ o(zl, {}) },
1264
+ "tabs-remove": {
1265
+ solid: /* @__PURE__ */ o(Dl, {}),
1266
+ outline: /* @__PURE__ */ o(Rl, {})
1267
+ },
1268
+ tag: { solid: /* @__PURE__ */ o(Hl, {}), outline: /* @__PURE__ */ o(Tl, {}) },
1269
+ "tap-water": { solid: /* @__PURE__ */ o(Bl, {}), outline: /* @__PURE__ */ o(Ml, {}) },
1270
+ tasklist: { solid: /* @__PURE__ */ o(Pl, {}), outline: /* @__PURE__ */ o(Ll, {}) },
1271
+ "tasklist-save": {
1272
+ solid: /* @__PURE__ */ o(Sl, {}),
1273
+ outline: /* @__PURE__ */ o(xl, {})
1274
+ },
1275
+ "tasklist-send": {
1276
+ solid: /* @__PURE__ */ o($l, {}),
1277
+ outline: /* @__PURE__ */ o(Nl, {})
1278
+ },
1279
+ "tasklist-start": {
1280
+ solid: /* @__PURE__ */ o(wl, {}),
1281
+ outline: /* @__PURE__ */ o(vl, {})
1282
+ },
1283
+ "teddy-bear": {
1284
+ solid: /* @__PURE__ */ o(yl, {}),
1285
+ outline: /* @__PURE__ */ o(Cl, {})
1286
+ },
1287
+ tenancy: { solid: /* @__PURE__ */ o(fl, {}), outline: /* @__PURE__ */ o(kl, {}) },
1288
+ terminal: { solid: /* @__PURE__ */ o(bl, {}), outline: /* @__PURE__ */ o(Fl, {}) },
1289
+ "test-flask": {
1290
+ solid: /* @__PURE__ */ o(_l, {}),
1291
+ outline: /* @__PURE__ */ o(gl, {})
1292
+ },
1293
+ thermometer: {
1294
+ solid: /* @__PURE__ */ o(pl, {}),
1295
+ outline: /* @__PURE__ */ o(ml, {})
1296
+ },
1297
+ "thumb-down": {
1298
+ solid: /* @__PURE__ */ o(hl, {}),
1299
+ outline: /* @__PURE__ */ o(Il, {})
1300
+ },
1301
+ "thumb-up": { solid: /* @__PURE__ */ o(ul, {}), outline: /* @__PURE__ */ o(dl, {}) },
1302
+ timer: { solid: /* @__PURE__ */ o(al, {}), outline: /* @__PURE__ */ o(rl, {}) },
1303
+ "timer-pause": {
1304
+ solid: /* @__PURE__ */ o(sl, {}),
1305
+ outline: /* @__PURE__ */ o(cl, {})
1306
+ },
1307
+ "timer-start": {
1308
+ solid: /* @__PURE__ */ o(tl, {}),
1309
+ outline: /* @__PURE__ */ o(il, {})
1310
+ },
1311
+ toilet: { solid: /* @__PURE__ */ o(ll, {}), outline: /* @__PURE__ */ o(nl, {}) },
1312
+ token: { solid: /* @__PURE__ */ o(el, {}), outline: /* @__PURE__ */ o(ol, {}) },
1313
+ tooth: { solid: /* @__PURE__ */ o(Yn, {}), outline: /* @__PURE__ */ o(Jn, {}) },
1314
+ train: { solid: /* @__PURE__ */ o(Xn, {}), outline: /* @__PURE__ */ o(Qn, {}) },
1315
+ tram: { solid: /* @__PURE__ */ o(Kn, {}), outline: /* @__PURE__ */ o(Zn, {}) },
1316
+ trash: { solid: /* @__PURE__ */ o(Wn, {}), outline: /* @__PURE__ */ o(Vn, {}) },
1317
+ "tray-food": { solid: /* @__PURE__ */ o(Gn, {}), outline: /* @__PURE__ */ o(On, {}) },
1318
+ "trend-down": { outline: /* @__PURE__ */ o(jn, {}) },
1319
+ "trend-flat": { outline: /* @__PURE__ */ o(Un, {}) },
1320
+ "trend-up": { outline: /* @__PURE__ */ o(qn, {}) },
1321
+ triangle: { solid: /* @__PURE__ */ o(An, {}), outline: /* @__PURE__ */ o(En, {}) },
1322
+ truck: { solid: /* @__PURE__ */ o(zn, {}), outline: /* @__PURE__ */ o(Dn, {}) },
1323
+ umbrella: { solid: /* @__PURE__ */ o(Rn, {}), outline: /* @__PURE__ */ o(Hn, {}) },
1324
+ upload: { outline: /* @__PURE__ */ o(Tn, {}) },
1325
+ video: { solid: /* @__PURE__ */ o(Bn, {}), outline: /* @__PURE__ */ o(Mn, {}) },
1326
+ "video-slash": {
1327
+ solid: /* @__PURE__ */ o(Pn, {}),
1328
+ outline: /* @__PURE__ */ o(Ln, {})
1329
+ },
1330
+ videoplayer: {
1331
+ solid: /* @__PURE__ */ o(Sn, {}),
1332
+ outline: /* @__PURE__ */ o(xn, {})
1333
+ },
1334
+ virus: { solid: /* @__PURE__ */ o($n, {}), outline: /* @__PURE__ */ o(Nn, {}) },
1335
+ vitals: { outline: /* @__PURE__ */ o(wn, {}) },
1336
+ "waiting-room": {
1337
+ solid: /* @__PURE__ */ o(vn, {}),
1338
+ outline: /* @__PURE__ */ o(yn, {})
1339
+ },
1340
+ wallet: { solid: /* @__PURE__ */ o(Cn, {}), outline: /* @__PURE__ */ o(fn, {}) },
1341
+ "watering-can": {
1342
+ solid: /* @__PURE__ */ o(kn, {}),
1343
+ outline: /* @__PURE__ */ o(bn, {})
1344
+ },
1345
+ waveform: { outline: /* @__PURE__ */ o(Fn, {}) },
1346
+ waves: { outline: /* @__PURE__ */ o(_n, {}) },
1347
+ weight: { outline: /* @__PURE__ */ o(gn, {}) },
1348
+ wheelchair: {
1349
+ solid: /* @__PURE__ */ o(pn, {}),
1350
+ outline: /* @__PURE__ */ o(mn, {})
1351
+ },
1352
+ wrench: { solid: /* @__PURE__ */ o(hn, {}), outline: /* @__PURE__ */ o(In, {}) },
1353
+ "x-mark": { outline: /* @__PURE__ */ o(un, {}) },
1354
+ "x-mark-octagon": {
1355
+ solid: /* @__PURE__ */ o(dn, {}),
1356
+ outline: /* @__PURE__ */ o(an, {})
1357
+ },
1358
+ "zoom-minus": {
1359
+ solid: /* @__PURE__ */ o(rn, {}),
1360
+ outline: /* @__PURE__ */ o(sn, {})
1361
+ },
1362
+ "zoom-plus": { solid: /* @__PURE__ */ o(cn, {}), outline: /* @__PURE__ */ o(tn, {}) }
1363
+ }, J_ = "_link_dd2g5_1", Y_ = "_label_dd2g5_12", oF = "_icon_dd2g5_18", bo = {
1364
+ link: J_,
1365
+ label: Y_,
1366
+ icon: oF
1367
+ }, eF = ({ icon: e = "file", href: n, label: l }) => /* @__PURE__ */ r("a", { href: n, className: bo.link, children: [
1368
+ /* @__PURE__ */ o(v, { name: e, className: bo.icon }),
1369
+ /* @__PURE__ */ o("span", { className: bo.label, children: l })
1370
+ ] }), nF = "_list_xei16_1", lF = "_item_xei16_9", le = {
1371
+ list: nF,
1372
+ item: lF
1373
+ }, $e = ({ size: e, items: n }) => n.length ? /* @__PURE__ */ o("ul", { className: le.list, "data-size": e, children: n.map((l, i) => /* @__PURE__ */ o("li", { className: le.item, children: /* @__PURE__ */ A(eF, { ...l, key: "attachment" + i }) }, i)) }) : null, iF = "_avatar_6t4ka_1", tF = "_circle_6t4ka_15", cF = "_square_6t4ka_19", sF = "_outline_6t4ka_23", rF = "_xs_6t4ka_28", aF = "_sm_6t4ka_34", dF = "_md_6t4ka_40", uF = "_lg_6t4ka_46", IF = "_xl_6t4ka_52", hF = "_image_6t4ka_58", G = {
1374
+ avatar: iF,
1375
+ circle: tF,
1376
+ square: cF,
1377
+ outline: sF,
1378
+ xs: rF,
1379
+ sm: aF,
1380
+ md: dF,
1381
+ lg: uF,
1382
+ xl: IF,
1383
+ image: hF
1384
+ };
1385
+ function mF(e) {
1386
+ return e.split("").reduce((n, l) => l.charCodeAt(0) + ((n << 5) - n), 0);
1387
+ }
1388
+ function pF(e) {
1389
+ return (e & 16777215).toString(16).toUpperCase().padStart(6, "0");
1390
+ }
1391
+ function gF(e) {
1392
+ const { r: n, g: l, b: i } = Ro(e), [t, c, s] = [n, l, i].map((a) => {
1393
+ const d = a / 255;
1394
+ return d <= 0.03928 ? d / 12.92 : ((d + 0.055) / 1.055) ** 2.4;
1395
+ });
1396
+ return t * 0.2126 + c * 0.7152 + s * 0.0722;
1397
+ }
1398
+ function Ro(e) {
1399
+ const n = Number.parseInt(e, 16);
1400
+ return {
1401
+ r: n >> 16 & 255,
1402
+ g: n >> 8 & 255,
1403
+ b: n & 255
1404
+ };
1405
+ }
1406
+ function xe(e, n, l) {
1407
+ return ((e << 16) + (n << 8) + l).toString(16).padStart(6, "0");
1408
+ }
1409
+ function _F(e) {
1410
+ const { r: n, g: l, b: i } = Ro(e), t = Math.floor(n * 0.5), c = Math.floor(l * 0.5), s = Math.floor(i * 0.5);
1411
+ return xe(t, c, s);
1412
+ }
1413
+ function FF(e) {
1414
+ const { r: n, g: l, b: i } = Ro(e), t = Math.min(255, Math.floor(n + (255 - n) * 0.5)), c = Math.min(255, Math.floor(l + (255 - l) * 0.5)), s = Math.min(255, Math.floor(i + (255 - i) * 0.5));
1415
+ return xe(t, c, s);
1416
+ }
1417
+ function bF(e, n) {
1418
+ const l = mF(e);
1419
+ let i = pF(l);
1420
+ const t = gF(i);
1421
+ return n === "light" && t <= 0.7 && (i = FF(i)), n === "dark" && t > 0.1 && (i = _F(i)), {
1422
+ backgroundColor: `#${i}`,
1423
+ foregroundColor: n === "light" ? "#000000" : "#ffffff"
1424
+ };
1425
+ }
1426
+ const M = ({
1427
+ type: e = "person",
1428
+ size: n = "sm",
1429
+ name: l = "Avatar",
1430
+ outline: i = !1,
1431
+ imageUrl: t,
1432
+ imageUrlAlt: c,
1433
+ customLabel: s,
1434
+ className: a
1435
+ }) => {
1436
+ const [d, I] = x(!1), u = e === "person" ? "circle" : "square", _ = e === "person" ? "light" : "dark", { backgroundColor: g, foregroundColor: h } = bF(l, _), F = (l[0] ?? "").toUpperCase(), b = t && !d, C = b ? void 0 : {
1437
+ backgroundColor: g,
1438
+ color: h
1439
+ };
1440
+ return /* @__PURE__ */ o(
1441
+ "div",
1442
+ {
1443
+ className: m(G.avatar, G[u], G[n], { [G.outline]: i }, a),
1444
+ style: C,
1445
+ "aria-hidden": !0,
1446
+ children: b ? /* @__PURE__ */ o(
1447
+ "img",
1448
+ {
1449
+ src: t,
1450
+ className: G.image,
1451
+ alt: c || t,
1452
+ onError: () => {
1453
+ I(!0);
1454
+ }
1455
+ }
1456
+ ) : /* @__PURE__ */ o("span", { children: s || F })
1457
+ }
1458
+ );
1459
+ }, kF = "_group_1k49o_1", fF = "_reset_1k49o_5", CF = "_item_1k49o_12", yF = "_xs_1k49o_16", vF = "_sm_1k49o_32", wF = "_md_1k49o_48", NF = "_lg_1k49o_64", T = {
1460
+ group: kF,
1461
+ reset: fF,
1462
+ item: CF,
1463
+ xs: yF,
1464
+ sm: vF,
1465
+ md: wF,
1466
+ lg: NF
1467
+ }, j = ({
1468
+ items: e = [],
1469
+ maxItemsCount: n = 4,
1470
+ defaultType: l,
1471
+ size: i = "sm",
1472
+ className: t
1473
+ }) => {
1474
+ const c = X(() => e.slice(0, n), [e, n]);
1475
+ return (e == null ? void 0 : e.length) === 0 ? /* @__PURE__ */ o("div", { className: T.avatarGroup }) : /* @__PURE__ */ o("ul", { className: m(T.reset, T.group, T[i], t), "data-count": c == null ? void 0 : c.length, children: c.map((s, a) => {
1476
+ const d = a === n - 1, I = s.customLabel || d ? e.length.toString() : void 0;
1477
+ return /* @__PURE__ */ o("li", { className: m(T.reset, T.item), children: /* @__PURE__ */ o(
1478
+ M,
1479
+ {
1480
+ name: s.name,
1481
+ customLabel: I,
1482
+ imageUrl: s.imageUrl,
1483
+ imageUrlAlt: s.imageUrlAlt,
1484
+ type: (s == null ? void 0 : s.type) || l,
1485
+ size: i,
1486
+ outline: !0
1487
+ }
1488
+ ) }, s.name);
1489
+ }) });
1490
+ }, $F = "_badge_34f60_1", ie = {
1491
+ badge: $F
1492
+ }, Se = ({ label: e, color: n = "subtle", size: l = "sm", className: i, children: t }) => /* @__PURE__ */ o("span", { className: m(ie.badge, i), "data-color": n, "data-size": l, children: /* @__PURE__ */ o("span", { className: ie.label, children: e || t }) }), xF = "_label_1ul7e_1", SF = "_group_1ul7e_9", LF = "_plus_1ul7e_15", PF = "_item_1ul7e_19", co = {
1493
+ label: xF,
1494
+ group: SF,
1495
+ plus: LF,
1496
+ item: PF
1497
+ }, MF = ({ type: e = "search", label: n }) => /* @__PURE__ */ o("mark", { className: co.item, "data-type": e, children: n }), BF = ({ params: e = [] }) => /* @__PURE__ */ o("div", { className: co.label, children: e.map((n, l) => /* @__PURE__ */ r("div", { className: co.group, children: [
1498
+ /* @__PURE__ */ o(MF, { ...n }),
1499
+ e[l + 1] && /* @__PURE__ */ o("span", { className: co.plus, children: "+" })
1500
+ ] }, l)) }), TF = ({ size: e = "sm", title: n, description: l, params: i, ...t }) => /* @__PURE__ */ r(Ko, { size: e, linkIcon: "chevron-right", ...t, children: [
1501
+ /* @__PURE__ */ o(We, { size: e, icon: "magnifying-glass" }),
1502
+ /* @__PURE__ */ o(Qo, { title: n, size: e, children: !n && /* @__PURE__ */ o(BF, { params: i }) })
1503
+ ] }), hy = ({ items: e, spacing: n }) => /* @__PURE__ */ o(Xo, { spacing: n, children: e == null ? void 0 : e.map((l) => /* @__PURE__ */ A(TF, { ...l, key: l.id })) }), HF = "_button_1pg7d_1", RF = {
1504
+ button: HF
1505
+ }, y = ({
1506
+ as: e,
1507
+ color: n,
1508
+ className: l,
1509
+ children: i,
1510
+ disabled: t = !1,
1511
+ size: c,
1512
+ selected: s,
1513
+ variant: a,
1514
+ tabIndex: d = 0,
1515
+ ...I
1516
+ }) => /* @__PURE__ */ o(
1517
+ e || "button",
1518
+ {
1519
+ tabIndex: d,
1520
+ "data-size": c,
1521
+ "data-variant": a,
1522
+ "data-color": n,
1523
+ "aria-selected": s,
1524
+ "aria-disabled": t,
1525
+ disabled: t,
1526
+ className: m(RF.button, l),
1527
+ ...I,
1528
+ children: i
1529
+ }
1530
+ ), DF = "_label_18deq_1", zF = {
1531
+ label: DF
1532
+ }, uo = ({ className: e, size: n, children: l }) => /* @__PURE__ */ o("span", { className: m(zF.label, e), "data-size": n, children: l }), EF = "_icon_15eox_1", AF = {
1533
+ icon: EF
1534
+ }, Do = ({ size: e, icon: n }) => /* @__PURE__ */ o("span", { className: AF.icon, "data-size": e, children: /* @__PURE__ */ o(v, { name: n }) }), qF = "_button_1ysmx_1", UF = "_reverse_1ysmx_8", H = {
1535
+ button: qF,
1536
+ reverse: UF
1537
+ }, q = ({
1538
+ variant: e = "solid",
1539
+ color: n = "primary",
1540
+ size: l = "md",
1541
+ reverse: i = !1,
1542
+ selected: t = !1,
1543
+ icon: c,
1544
+ href: s,
1545
+ children: a,
1546
+ className: d,
1547
+ loading: I,
1548
+ ...u
1549
+ }) => I ? /* @__PURE__ */ o(
1550
+ y,
1551
+ {
1552
+ variant: e,
1553
+ color: n,
1554
+ size: l,
1555
+ selected: t,
1556
+ href: s,
1557
+ className: m(H.button, { [H.reverse]: i }, d),
1558
+ ...u,
1559
+ disabled: !0,
1560
+ children: /* @__PURE__ */ o("span", { className: H.label, "data-size": l, children: /* @__PURE__ */ o("span", { className: H.loading, children: "Loading...." }) })
1561
+ }
1562
+ ) : /* @__PURE__ */ r(
1563
+ y,
1564
+ {
1565
+ variant: e,
1566
+ color: n,
1567
+ size: l,
1568
+ selected: t,
1569
+ href: s,
1570
+ className: m(H.button, { [H.reverse]: i }),
1571
+ ...u,
1572
+ children: [
1573
+ /* @__PURE__ */ o(uo, { size: l, children: a }),
1574
+ c && /* @__PURE__ */ o(Do, { size: l, icon: c })
1575
+ ]
1576
+ }
1577
+ ), jF = "_button_tbm58_1", OF = "_divider_tbm58_8", GF = "_primary_tbm58_15", VF = "_secondary_tbm58_16", Y = {
1578
+ button: jF,
1579
+ divider: OF,
1580
+ primary: GF,
1581
+ secondary: VF
1582
+ }, Le = ({
1583
+ variant: e = "solid",
1584
+ color: n = "primary",
1585
+ size: l = "md",
1586
+ selected: i = !1,
1587
+ icon: t,
1588
+ children: c,
1589
+ className: s,
1590
+ onLabelClick: a,
1591
+ onIconClick: d
1592
+ }) => /* @__PURE__ */ r(
1593
+ y,
1594
+ {
1595
+ as: "div",
1596
+ size: l,
1597
+ variant: e,
1598
+ color: n,
1599
+ selected: i,
1600
+ className: m(Y.button, s),
1601
+ children: [
1602
+ /* @__PURE__ */ o(y, { size: l, onClick: d, className: Y.secondary, children: /* @__PURE__ */ o(Do, { icon: t, size: l }) }),
1603
+ /* @__PURE__ */ o("span", { "data-size": l, className: Y.divider }),
1604
+ /* @__PURE__ */ o(y, { size: l, onClick: a, className: Y.primary, children: /* @__PURE__ */ o(uo, { size: l, children: c }) })
1605
+ ]
1606
+ }
1607
+ ), WF = "_button_1vbf2_1", ZF = "_icon_1vbf2_8", KF = {
1608
+ button: WF,
1609
+ icon: ZF
1610
+ }, U = ({
1611
+ variant: e = "solid",
1612
+ color: n = "primary",
1613
+ size: l = "md",
1614
+ icon: i,
1615
+ iconSize: t,
1616
+ className: c,
1617
+ onClick: s
1618
+ }) => /* @__PURE__ */ o(y, { variant: e, color: n, size: l, className: m(KF.button, c), onClick: s, children: /* @__PURE__ */ o(Do, { icon: i, size: t || l }) }), QF = {
1619
+ currentId: ""
1620
+ }, Pe = en(QF), my = ({ children: e, initialValue: n }) => {
1621
+ const [l, i] = x((n == null ? void 0 : n.currentId) || "");
1622
+ return /* @__PURE__ */ o(
1623
+ Pe.Provider,
1624
+ {
1625
+ value: {
1626
+ currentId: l,
1627
+ setCurrentId: i
1628
+ },
1629
+ children: e
1630
+ }
1631
+ );
1632
+ }, Io = () => {
1633
+ const { currentId: e, setCurrentId: n } = on(Pe);
1634
+ return {
1635
+ currentId: e,
1636
+ toggleId: (c) => n(e === c ? "" : c),
1637
+ closeAll: () => {
1638
+ n("");
1639
+ },
1640
+ openId: (c) => n(c)
1641
+ };
1642
+ }, XF = "_toggle_ya7jy_1", JF = "_button_ya7jy_5", YF = "_icon_ya7jy_14", ob = "_dropdown_ya7jy_18", ko = {
1643
+ toggle: XF,
1644
+ button: JF,
1645
+ icon: YF,
1646
+ dropdown: ob
1647
+ }, eb = ({
1648
+ placement: e = "right",
1649
+ expanded: n = !1,
1650
+ onToggle: l,
1651
+ children: i
1652
+ }) => /* @__PURE__ */ r("div", { className: ko.toggle, "data-theme": "neutral", children: [
1653
+ /* @__PURE__ */ o(
1654
+ U,
1655
+ {
1656
+ className: ko.button,
1657
+ size: "sm",
1658
+ icon: "menu-elipsis-horizontal",
1659
+ iconSize: "md",
1660
+ variant: "text",
1661
+ color: "secondary",
1662
+ onClick: l
1663
+ }
1664
+ ),
1665
+ /* @__PURE__ */ o(Vo, { className: ko.dropdown, placement: e, expanded: n, children: i })
1666
+ ] }), Me = ({ id: e = "context-menu", placement: n = "right", groups: l = {}, items: i }) => {
1667
+ const { currentId: t, toggleId: c } = Io();
1668
+ return /* @__PURE__ */ o(eb, { placement: n, expanded: t === e, onToggle: () => c(e), children: /* @__PURE__ */ o(Oo, { groups: l, items: i }) });
1669
+ }, nb = "_meta_17kd2_1", lb = {
1670
+ meta: nb
1671
+ }, ho = ({ size: e = "xs", children: n }) => /* @__PURE__ */ o("div", { className: lb.meta, "data-size": e, children: n }), ib = "_item_92ojr_1", tb = "_label_92ojr_17", cb = "_media_92ojr_39", Q = {
1672
+ item: ib,
1673
+ label: tb,
1674
+ media: cb
1675
+ }, zo = ({
1676
+ as: e,
1677
+ variant: n = "text",
1678
+ size: l,
1679
+ color: i,
1680
+ progress: t,
1681
+ datetime: c,
1682
+ className: s,
1683
+ children: a,
1684
+ ...d
1685
+ }) => /* @__PURE__ */ o(
1686
+ e || "span",
1687
+ {
1688
+ "data-size": l,
1689
+ "data-color": i,
1690
+ "data-variant": n,
1691
+ "data-progress": t,
1692
+ dateTime: c,
1693
+ className: m(Q.item, s),
1694
+ ...d,
1695
+ children: a
1696
+ }
1697
+ ), Eo = ({ size: e = "xs", variant: n = "text", children: l }) => /* @__PURE__ */ o("span", { className: Q.label, "data-variant": n, "data-size": e, children: l }), Ao = ({ size: e = "xs", icon: n, progress: l }) => !n && typeof l != "number" ? !1 : /* @__PURE__ */ r("span", { className: Q.media, "data-size": e, children: [
1698
+ n && /* @__PURE__ */ o(v, { name: n, className: Q.icon }),
1699
+ l && /* @__PURE__ */ o(X_, { value: l, className: Q.icon })
1700
+ ] }), $ = ({ size: e = "xs", variant: n = "text", icon: l, children: i, ...t }) => /* @__PURE__ */ r(zo, { variant: n, size: e, ...t, children: [
1701
+ l && /* @__PURE__ */ o(Ao, { icon: l, size: e }),
1702
+ /* @__PURE__ */ o(Eo, { variant: n, size: e, children: i })
1703
+ ] }), Mo = ({ size: e = "xs", variant: n = "text", progress: l = 0, children: i }) => /* @__PURE__ */ r(zo, { variant: n, size: e, children: [
1704
+ /* @__PURE__ */ o(Ao, { size: e, progress: l }),
1705
+ /* @__PURE__ */ o(Eo, { variant: n, size: e, children: i })
1706
+ ] }), J = ({ size: e = "xs", variant: n = "text", datetime: l, icon: i, children: t }) => /* @__PURE__ */ r(zo, { as: "time", variant: n, datetime: l, size: e, children: [
1707
+ i && /* @__PURE__ */ o(Ao, { size: e, icon: i }),
1708
+ /* @__PURE__ */ o(Eo, { variant: n, size: e, children: t })
1709
+ ] }), sb = "_list_m42t7_1", rb = "_item_m42t7_13", te = {
1710
+ list: sb,
1711
+ item: rb
1712
+ }, ab = ({ type: e = "default", label: n, ...l }) => {
1713
+ switch (e) {
1714
+ case "progress":
1715
+ return /* @__PURE__ */ o(Mo, { ...l, children: n });
1716
+ case "timestamp":
1717
+ return /* @__PURE__ */ o(J, { ...l, children: n });
1718
+ default:
1719
+ return /* @__PURE__ */ o($, { ...l, children: n });
1720
+ }
1721
+ }, py = ({ size: e = "xs", items: n = [] }) => /* @__PURE__ */ o(ho, { size: e, children: /* @__PURE__ */ o("ul", { className: te.list, children: n.map((l, i) => /* @__PURE__ */ o("li", { className: te.item, children: /* @__PURE__ */ o(ab, { ...l }) }, "meta-" + i)) }) }), db = ({ size: e = "xs", label: n = "Activity log", ...l }) => /* @__PURE__ */ o($, { ...l, size: e, icon: "clock-dashed", children: n }), ub = "_article_2xah9_1", Ib = {
1722
+ article: ub
1723
+ }, hb = ({ children: e }) => /* @__PURE__ */ o("article", { className: Ib.article, children: e }), mb = "_typography_rbtyp_1", pb = "_item_rbtyp_7", gb = {
1724
+ typography: mb,
1725
+ item: pb
1726
+ }, mo = ({ as: e = "div", size: n = "md", theme: l, className: i, children: t }) => /* @__PURE__ */ o(e, { className: m(gb.typography, i), "data-size": n, "data-theme": l, children: t }), _b = "_heading_1kfgw_1", Fb = {
1727
+ heading: _b
1728
+ }, Be = ({ as: e = "h2", size: n = "md", className: l, children: i }) => /* @__PURE__ */ o(e, { className: m(Fb.heading, l), "data-size": n, children: i }), bb = ({ title: e = "Attachments", items: n }) => n != null && n.length ? /* @__PURE__ */ r("section", { children: [
1729
+ /* @__PURE__ */ o($, { as: "h2", size: "xs", children: e }),
1730
+ /* @__PURE__ */ o(mo, { size: "lg", children: /* @__PURE__ */ o($e, { size: "lg", items: n }) })
1731
+ ] }) : null, kb = "_dialog_1hmc1_1", fb = "_nav_1hmc1_9", Cb = "_header_1hmc1_16", yb = {
1732
+ dialog: kb,
1733
+ nav: fb,
1734
+ header: Cb
1735
+ }, vb = ({ children: e }) => /* @__PURE__ */ o("div", { className: yb.dialog, children: e }), wb = "_border_1yyjs_1", Nb = {
1736
+ border: wb
1737
+ }, Te = ({ seen: e = !0, size: n = "lg", className: l, children: i }) => /* @__PURE__ */ o("div", { className: m(Nb.border, l), "data-size": n, "data-seen": e, children: i }), $b = "_border_tqcvm_1", xb = "_body_tqcvm_9", ce = {
1738
+ border: $b,
1739
+ body: xb
1740
+ }, Sb = ({ children: e }) => /* @__PURE__ */ o(Te, { className: ce.border, children: /* @__PURE__ */ o("div", { className: ce.body, "data-theme": "article", children: e }) }), He = ({
1741
+ size: e = "xs",
1742
+ label: n = "Seen by label",
1743
+ seenByEndUser: l = !1,
1744
+ seenByOthersCount: i = 0,
1745
+ ...t
1746
+ }) => {
1747
+ const s = l || i > 0 ? "eye" : "eye-closed";
1748
+ return /* @__PURE__ */ o($, { size: e, icon: s, ...t, children: n });
1749
+ };
1750
+ var Lb = /* @__PURE__ */ ((e) => (e.draft = "DRAFT", e.sent = "SENT", e.new = "NEW", e.completed = "COMPLETED", e["in-progress"] = "IN_PROGRESS", e["requires-attention"] = "REQUIRES_ATTENTION", e))(Lb || {});
1751
+ const Re = ({ size: e = "xs", value: n = "new", label: l }) => {
1752
+ switch (n) {
1753
+ case "new":
1754
+ return null;
1755
+ case "draft":
1756
+ return /* @__PURE__ */ o($, { size: e, variant: "dotted", children: l || n });
1757
+ case "requires-attention":
1758
+ return /* @__PURE__ */ o($, { variant: "solid", children: l || n });
1759
+ case "in-progress":
1760
+ return /* @__PURE__ */ o(Mo, { size: e, variant: "outline", progress: 75, children: l || n });
1761
+ case "completed":
1762
+ return /* @__PURE__ */ o(Mo, { size: e, variant: "outline", progress: 100, children: l || n });
1763
+ default:
1764
+ return /* @__PURE__ */ o($, { size: e, variant: "outline", children: l || n });
1765
+ }
1766
+ }, De = ({
1767
+ status: e,
1768
+ updatedAt: n,
1769
+ updatedAtLabel: l,
1770
+ dueAt: i,
1771
+ dueAtLabel: t,
1772
+ seenBy: c,
1773
+ attachmentsCount: s = 0
1774
+ }) => /* @__PURE__ */ r(ho, { size: "xs", children: [
1775
+ e && /* @__PURE__ */ o(Re, { size: "xs", ...e }),
1776
+ n && /* @__PURE__ */ o(J, { datetime: n, size: "xs", children: l }),
1777
+ i && t && /* @__PURE__ */ o(J, { datetime: i, size: "xs", icon: "clock-dashed", children: t }),
1778
+ c && /* @__PURE__ */ o(He, { size: "xs", ...c }),
1779
+ s > 0 && /* @__PURE__ */ o($, { size: "xs", icon: "paperclip", children: s })
1780
+ ] }), Pb = ({ updatedAt: e, updatedAtLabel: n, summary: l, body: i }) => /* @__PURE__ */ r("section", { children: [
1781
+ /* @__PURE__ */ o(De, { updatedAt: e, updatedAtLabel: n }),
1782
+ /* @__PURE__ */ r(mo, { size: "lg", children: [
1783
+ /* @__PURE__ */ o("p", { children: l }),
1784
+ i
1785
+ ] })
1786
+ ] }), Mb = "_section_1mmel_1", Bb = "_title_1mmel_7", se = {
1787
+ section: Mb,
1788
+ title: Bb
1789
+ }, ze = ({ title: e, children: n }) => n ? /* @__PURE__ */ r("section", { className: se.section, children: [
1790
+ e && /* @__PURE__ */ o("h2", { className: se.title, children: e }),
1791
+ n
1792
+ ] }) : null, Tb = ({ additionalInfo: e }) => /* @__PURE__ */ o(ze, { children: /* @__PURE__ */ o(mo, { size: "md", children: e }) }), Hb = "_header_e6sit_1", Rb = {
1793
+ header: Hb
1794
+ }, Db = ({ children: e }) => /* @__PURE__ */ o("header", { className: Rb.header, children: e }), zb = "_headings_1dhfw_1", Eb = "_text_1dhfw_16", Ab = "_sender_1dhfw_21", V = {
1795
+ headings: zb,
1796
+ text: Eb,
1797
+ sender: Ab
1798
+ }, R = {
1799
+ avatar: {
1800
+ xs: "xs",
1801
+ sm: "xs",
1802
+ md: "xs",
1803
+ lg: "xs",
1804
+ xl: "lg"
1805
+ }
1806
+ }, Ee = ({
1807
+ grouped: e,
1808
+ size: n = "lg",
1809
+ sender: l = { type: "company", name: "Sender" },
1810
+ recipient: i = { type: "person", name: "Recipient" }
1811
+ }) => /* @__PURE__ */ r("div", { className: V.headings, "data-size": n, children: [
1812
+ e ? /* @__PURE__ */ o(
1813
+ j,
1814
+ {
1815
+ items: [{ ...l, type: "company" }, i],
1816
+ size: R == null ? void 0 : R.avatar[n],
1817
+ className: V.avatar
1818
+ }
1819
+ ) : /* @__PURE__ */ o(
1820
+ M,
1821
+ {
1822
+ type: "company",
1823
+ imageUrl: l == null ? void 0 : l.imageUrl,
1824
+ name: l.name,
1825
+ size: R == null ? void 0 : R.avatar[n],
1826
+ className: V.avatar
1827
+ }
1828
+ ),
1829
+ /* @__PURE__ */ r($, { size: "xs", className: V.text, children: [
1830
+ /* @__PURE__ */ o("span", { className: V.sender, children: l.name }),
1831
+ (i == null ? void 0 : i.name) && /* @__PURE__ */ r("span", { children: [
1832
+ " til ",
1833
+ /* @__PURE__ */ o("span", { children: i.name })
1834
+ ] })
1835
+ ] })
1836
+ ] }), qb = "_title_ls5lr_1", re = {
1837
+ title: qb
1838
+ }, Ae = ({ size: e = "sm", seen: n = !1, variant: l, icon: i, children: t }) => /* @__PURE__ */ r("h2", { className: re.title, "data-seen": n, "data-size": e, "data-variant": l, children: [
1839
+ /* @__PURE__ */ o("span", { children: t }),
1840
+ i && /* @__PURE__ */ o(v, { name: i, className: re.icon })
1841
+ ] }), Ub = ({ title: e, sender: n, recipient: l, seen: i, variant: t }) => /* @__PURE__ */ r(Db, { children: [
1842
+ /* @__PURE__ */ o(Ae, { seen: i, size: "xl", variant: t, children: e }),
1843
+ /* @__PURE__ */ o(Ee, { size: "xl", sender: n, recipient: l })
1844
+ ] }), jb = "_item_1qa8m_1", Ob = "_content_1qa8m_31", Gb = "_action_1qa8m_39", Vb = "_linkText_1qa8m_46", Wb = "_linkIcon_1qa8m_51", Zb = "_media_1qa8m_71", W = {
1845
+ item: jb,
1846
+ content: Ob,
1847
+ action: Gb,
1848
+ linkText: Vb,
1849
+ linkIcon: Wb,
1850
+ media: Zb
1851
+ }, so = ({
1852
+ as: e,
1853
+ onClick: n,
1854
+ size: l,
1855
+ color: i,
1856
+ linkIcon: t,
1857
+ linkText: c,
1858
+ badge: s,
1859
+ tabIndex: a = 0,
1860
+ active: d = !1,
1861
+ collapsible: I = !1,
1862
+ expanded: u = !1,
1863
+ selected: _ = !1,
1864
+ disabled: g = !1,
1865
+ className: h,
1866
+ children: F,
1867
+ ...b
1868
+ }) => {
1869
+ const C = e || "a", k = I && u ? "chevron-up" : I ? "chevron-down" : t && "chevron-right";
1870
+ return /* @__PURE__ */ r(
1871
+ C,
1872
+ {
1873
+ role: "menuitem",
1874
+ tabIndex: g ? "-1" : a ?? 0,
1875
+ "data-size": l,
1876
+ "data-color": i,
1877
+ "data-active": d,
1878
+ "aria-expanded": u,
1879
+ "aria-disabled": g,
1880
+ "aria-selected": _,
1881
+ onClick: n,
1882
+ className: m(W.item, h),
1883
+ ...b,
1884
+ children: [
1885
+ /* @__PURE__ */ r("div", { className: W.content, children: [
1886
+ F,
1887
+ s && /* @__PURE__ */ o(Se, { ...s })
1888
+ ] }),
1889
+ k && /* @__PURE__ */ r("div", { className: W.action, children: [
1890
+ /* @__PURE__ */ o("span", { className: W.linkText, children: c }),
1891
+ k && /* @__PURE__ */ o(v, { name: k, className: W.linkIcon })
1892
+ ] })
1893
+ ]
1894
+ }
1895
+ );
1896
+ }, Kb = "_label_1rsak_1", Qb = "_title_1rsak_7", Xb = "_description_1rsak_29", fo = {
1897
+ label: Kb,
1898
+ title: Qb,
1899
+ description: Xb
1900
+ }, ro = ({ size: e = "sm", label: n, title: l, description: i, children: t }) => /* @__PURE__ */ o("span", { className: fo.label, "data-size": e, children: t || /* @__PURE__ */ r(ao, { children: [
1901
+ /* @__PURE__ */ o("strong", { className: fo.title, "data-size": e, children: l || n }),
1902
+ /* @__PURE__ */ o("span", { className: fo.description, "data-size": e, children: i })
1903
+ ] }) }), Jb = "_media_7n7uy_1", Yb = "_icon_7n7uy_16", ae = {
1904
+ media: Jb,
1905
+ icon: Yb
1906
+ }, D = {
1907
+ avatar: {
1908
+ sm: "sm",
1909
+ md: "md",
1910
+ lg: "lg"
1911
+ },
1912
+ avatarGroup: {
1913
+ sm: "xs",
1914
+ md: "sm",
1915
+ lg: "md"
1916
+ }
1917
+ }, Bo = ({ size: e = "sm", color: n, icon: l, avatar: i, avatarGroup: t, children: c }) => !l && !i && !t && !c ? !1 : /* @__PURE__ */ r("div", { className: ae.media, "data-size": e, "data-color": l ? n : null, children: [
1918
+ l && /* @__PURE__ */ o(v, { name: l, variant: n === "strong" ? "solid" : "outline", className: ae.icon }),
1919
+ i && /* @__PURE__ */ o(M, { ...i, size: D == null ? void 0 : D.avatar[e] }),
1920
+ t && /* @__PURE__ */ o(j, { ...t, size: D == null ? void 0 : D.avatarGroup[e] }),
1921
+ c
1922
+ ] }), qo = ({
1923
+ as: e = "a",
1924
+ color: n = "neutral",
1925
+ size: l = "sm",
1926
+ children: i,
1927
+ selected: t,
1928
+ disabled: c,
1929
+ icon: s,
1930
+ avatar: a,
1931
+ avatarGroup: d,
1932
+ badge: I,
1933
+ label: u,
1934
+ title: _,
1935
+ description: g,
1936
+ ...h
1937
+ }) => /* @__PURE__ */ r(so, { as: e, size: l, badge: I, color: n, selected: t, disabled: c, ...h, children: [
1938
+ /* @__PURE__ */ o(Bo, { color: n, size: l, icon: s, avatar: a, avatarGroup: d }),
1939
+ /* @__PURE__ */ o(ro, { title: _, description: g, size: l, children: u || i })
1940
+ ] }), ok = "_field_159h8_1", ek = "_label_159h8_9", nk = "_input_159h8_17", lk = "_button_159h8_37", ik = "_close_159h8_42", tk = "_icon_159h8_46", Co = {
1941
+ field: ok,
1942
+ label: ek,
1943
+ input: nk,
1944
+ button: lk,
1945
+ close: ik,
1946
+ icon: tk
1947
+ }, gy = ({
1948
+ label: e,
1949
+ type: n = "text",
1950
+ value: l,
1951
+ name: i,
1952
+ placeholder: t = "Søk",
1953
+ onChange: c
1954
+ }) => /* @__PURE__ */ r("label", { className: Co.field, children: [
1955
+ e && /* @__PURE__ */ o("span", { className: Co.label, children: e }),
1956
+ /* @__PURE__ */ o(
1957
+ "input",
1958
+ {
1959
+ "data-value": l && !0,
1960
+ type: n,
1961
+ value: l,
1962
+ name: i,
1963
+ placeholder: t,
1964
+ className: Co.input,
1965
+ onChange: c,
1966
+ autoComplete: "off"
1967
+ }
1968
+ )
1969
+ ] }), ck = "_label_1am63_1", sk = "_input_1am63_5", rk = "_icon_1am63_10", oo = {
1970
+ label: ck,
1971
+ input: sk,
1972
+ icon: rk
1973
+ }, ak = ({
1974
+ size: e = "sm",
1975
+ type: n,
1976
+ name: l,
1977
+ value: i,
1978
+ label: t,
1979
+ title: c,
1980
+ description: s,
1981
+ badge: a,
1982
+ checked: d = !1,
1983
+ disabled: I,
1984
+ onChange: u
1985
+ }) => /* @__PURE__ */ r(so, { className: oo.label, disabled: I, selected: d, size: e, badge: a, as: "label", children: [
1986
+ /* @__PURE__ */ o("input", { className: oo.input, name: l, value: i, type: n, checked: d, onChange: u }),
1987
+ n === "checkbox" && /* @__PURE__ */ o(Ne, { checked: d, hover: !0, className: oo.icon }),
1988
+ n === "radio" && /* @__PURE__ */ o(Z_, { checked: d, hover: !0, className: oo.icon }),
1989
+ /* @__PURE__ */ o(ro, { title: c, description: s, size: e, children: t })
1990
+ ] }), dk = "_input_73dww_1", uk = "_button_73dww_13", Ik = "_close_73dww_18", hk = "_icon_73dww_22", de = {
1991
+ input: dk,
1992
+ button: uk,
1993
+ close: Ik,
1994
+ icon: hk
1995
+ }, qe = ({ value: e, name: n, placeholder: l = "Søk", onChange: i }) => /* @__PURE__ */ o("div", { className: de.field, children: /* @__PURE__ */ o(
1996
+ "input",
1997
+ {
1998
+ type: "search",
1999
+ value: e,
2000
+ name: n,
2001
+ placeholder: l,
2002
+ className: de.input,
2003
+ onChange: i,
2004
+ autoComplete: "off"
2005
+ }
2006
+ ) }), mk = "_header_i1dql_1", pk = "_title_i1dql_6", ue = {
2007
+ header: mk,
2008
+ title: pk
2009
+ }, Uo = ({ title: e }) => /* @__PURE__ */ o("header", { className: ue.header, children: /* @__PURE__ */ o("h2", { className: ue.title, children: e }) }), _y = (e, n) => (Ho(() => {
2010
+ const l = (i) => {
2011
+ e.current && !e.current.contains(i.target) && n();
2012
+ };
2013
+ return document.addEventListener("mouseup", l), document.addEventListener("touchend", l), () => {
2014
+ document.removeEventListener("mouseup", l), document.removeEventListener("touchend", l);
2015
+ };
2016
+ }, [n, e]), e), gk = (e) => {
2017
+ Ho(() => {
2018
+ const n = (l) => {
2019
+ l.key === "Escape" && (e == null || e());
2020
+ };
2021
+ return document.addEventListener("keydown", n), () => {
2022
+ document.removeEventListener("keydown", n);
2023
+ };
2024
+ }, [e]);
2025
+ }, jo = ({
2026
+ items: e,
2027
+ groups: n,
2028
+ groupByKey: l,
2029
+ keyboardEvents: i = !1
2030
+ }) => {
2031
+ const [t, c] = x(-1), s = X(() => {
2032
+ const d = [], I = e.reduce(
2033
+ (u, _) => {
2034
+ const g = l && _[l] ? _[l] : "ungrouped";
2035
+ return u[g] = u[g] || [], u[g].push(_), d.push(_), u;
2036
+ },
2037
+ {}
2038
+ );
2039
+ return Object.entries(I).map(([u, _]) => ({
2040
+ items: _.map((g) => ({
2041
+ menuIndex: d.indexOf(g),
2042
+ active: t === d.indexOf(g),
2043
+ props: g
2044
+ })),
2045
+ props: n[u] || {}
2046
+ }));
2047
+ }, [e, l, t, n]), a = nn(
2048
+ (d) => {
2049
+ d.key === "ArrowDown" ? c((I) => (I + 1) % e.length) : d.key === "ArrowUp" && c((I) => (I - 1 + e.length) % e.length);
2050
+ },
2051
+ [e.length]
2052
+ );
2053
+ return Ho(() => {
2054
+ if (i)
2055
+ return c(0), document.addEventListener("keydown", a), () => {
2056
+ document.removeEventListener("keydown", a);
2057
+ };
2058
+ }, [a, i]), { menu: s, activeIndex: t, setActiveIndex: c };
2059
+ }, Oo = ({
2060
+ level: e = 0,
2061
+ expanded: n,
2062
+ items: l,
2063
+ groups: i = {},
2064
+ defaultItemColor: t,
2065
+ defaultItemSize: c
2066
+ }) => {
2067
+ const { menu: s } = jo({
2068
+ items: l,
2069
+ groups: i,
2070
+ groupByKey: "groupId",
2071
+ keyboardEvents: !1
2072
+ });
2073
+ return /* @__PURE__ */ o(Ue, { expanded: n, children: s.map((a, d) => {
2074
+ const I = (a == null ? void 0 : a.props) || {}, { title: u, divider: _ = !0 } = I, g = s[d + 1];
2075
+ return /* @__PURE__ */ r(ye, { children: [
2076
+ (e > 0 || d) && _ ? /* @__PURE__ */ o(L, { role: "separator" }) : "",
2077
+ u && /* @__PURE__ */ o(L, { children: /* @__PURE__ */ o(Uo, { title: u }) }),
2078
+ a == null ? void 0 : a.items.map((h, F) => {
2079
+ const { active: b } = h, { groupId: C, ...k } = h.props || {}, { expanded: N } = k, S = a == null ? void 0 : a.items[F + 1];
2080
+ return /* @__PURE__ */ r(L, { role: "presentation", expanded: N, children: [
2081
+ /* @__PURE__ */ o(
2082
+ qo,
2083
+ {
2084
+ ...k,
2085
+ color: (k == null ? void 0 : k.color) || (I == null ? void 0 : I.defaultItemColor) || t,
2086
+ size: (k == null ? void 0 : k.size) || (I == null ? void 0 : I.defaultItemSize) || c,
2087
+ active: b,
2088
+ tabIndex: k != null && k.disabled ? -1 : 0
2089
+ }
2090
+ ),
2091
+ N && (k == null ? void 0 : k.items) && /* @__PURE__ */ r(ao, { children: [
2092
+ /* @__PURE__ */ o(
2093
+ Oo,
2094
+ {
2095
+ expanded: N,
2096
+ level: e + 1,
2097
+ items: k == null ? void 0 : k.items,
2098
+ groups: i,
2099
+ defaultItemColor: t,
2100
+ defaultItemSize: c
2101
+ }
2102
+ ),
2103
+ (g || S) && /* @__PURE__ */ o(L, { role: "separator" })
2104
+ ] })
2105
+ ] }, F);
2106
+ })
2107
+ ] }, d);
2108
+ }) });
2109
+ }, _k = "_menu_paki4_1", Fk = "_list_paki4_11", bk = "_item_paki4_17", Go = {
2110
+ menu: _k,
2111
+ list: Fk,
2112
+ item: bk
2113
+ }, po = ({ as: e = "nav", theme: n, className: l, children: i }) => /* @__PURE__ */ o(e, { className: m(Go.menu, l), "data-theme": n, role: "menu", children: i }), Ue = ({ as: e = "ul", role: n = "group", expanded: l, className: i, children: t }) => /* @__PURE__ */ o(e, { className: m(Go.list, i), role: n, "aria-expanded": l, children: t }), L = ({
2114
+ as: e = "li",
2115
+ role: n = "presentation",
2116
+ expanded: l,
2117
+ className: i,
2118
+ children: t
2119
+ }) => /* @__PURE__ */ o(e, { className: m(Go.item, i), role: n, "aria-expanded": l, children: t }), P = ({
2120
+ theme: e = "inherit",
2121
+ defaultItemColor: n = "subtle",
2122
+ defaultItemSize: l = "sm",
2123
+ groups: i,
2124
+ items: t = [],
2125
+ search: c
2126
+ }) => /* @__PURE__ */ r(po, { theme: e, children: [
2127
+ c && /* @__PURE__ */ o(qe, { ...c }),
2128
+ /* @__PURE__ */ o(Oo, { items: t, groups: i, defaultItemColor: n, defaultItemSize: l })
2129
+ ] }), kk = "_action_1lkfe_1", fk = "_comboButton_1lkfe_7", Ck = "_dropdown_1lkfe_11", yo = {
2130
+ action: kk,
2131
+ comboButton: fk,
2132
+ dropdown: Ck
2133
+ }, yk = ({ items: e, maxItems: n = 2 }) => {
2134
+ const [l, i] = x(!1), t = X(() => (e || []).sort((c, s) => {
2135
+ const a = ["primary", "secondary", "tertiary"];
2136
+ return a.indexOf(c == null ? void 0 : c.priority) - a.indexOf(s == null ? void 0 : s.priority);
2137
+ }), [e]);
2138
+ if (!t.length || n <= 0)
2139
+ return null;
2140
+ if (t.length > n) {
2141
+ const c = t.slice(1).map((s) => ({
2142
+ id: s.id,
2143
+ title: s.label,
2144
+ onClick: s.onClick,
2145
+ group: s.priority
2146
+ }));
2147
+ return /* @__PURE__ */ r("section", { className: yo.comboButton, children: [
2148
+ /* @__PURE__ */ o(
2149
+ Le,
2150
+ {
2151
+ color: "primary",
2152
+ variant: "solid",
2153
+ icon: l ? "chevron-up" : "chevron-down",
2154
+ size: "lg",
2155
+ onIconClick: () => i((s) => !s),
2156
+ children: t[0].label
2157
+ }
2158
+ ),
2159
+ /* @__PURE__ */ o("div", { className: yo.dropdown, "aria-expanded": l, children: /* @__PURE__ */ o(P, { items: c, theme: "global" }) })
2160
+ ] });
2161
+ }
2162
+ return /* @__PURE__ */ o("section", { className: yo.action, children: t.map((c, s) => /* @__PURE__ */ o(
2163
+ q,
2164
+ {
2165
+ onClick: c.onClick,
2166
+ color: "primary",
2167
+ variant: c.priority === "primary" ? "solid" : "outline",
2168
+ size: "lg",
2169
+ loading: c.loading,
2170
+ children: c.label
2171
+ },
2172
+ "button-" + s
2173
+ )) });
2174
+ }, vk = ({ title: e = "Attachments", items: n }) => n != null && n.length ? /* @__PURE__ */ r("section", { children: [
2175
+ /* @__PURE__ */ o($, { as: "h2", size: "xs", children: e }),
2176
+ /* @__PURE__ */ o($e, { size: "lg", items: n })
2177
+ ] }) : null, wk = "_border_1gycv_1", Nk = {
2178
+ border: wk
2179
+ }, $k = ({ seen: e = !0, className: n, children: l }) => /* @__PURE__ */ o("div", { className: m(Nk.border, n), "data-seen": e, children: l }), xk = "_item_1bsu6_1", Sk = "_header_1bsu6_6", Lk = "_border_1bsu6_10", Pk = "_body_1bsu6_17", eo = {
2180
+ item: xk,
2181
+ header: Sk,
2182
+ border: Lk,
2183
+ body: Pk
2184
+ }, Mk = ({
2185
+ createdBy: e = {
2186
+ type: "person"
2187
+ },
2188
+ createdAt: n,
2189
+ createdAtLabel: l,
2190
+ summary: i,
2191
+ attachments: t
2192
+ }) => /* @__PURE__ */ r("section", { className: eo.item, children: [
2193
+ /* @__PURE__ */ o("header", { className: eo.header, children: /* @__PURE__ */ o(
2194
+ M,
2195
+ {
2196
+ type: e.type || "person",
2197
+ imageUrl: e == null ? void 0 : e.imageUrl,
2198
+ name: e.name || "Unknown name",
2199
+ size: "sm"
2200
+ }
2201
+ ) }),
2202
+ /* @__PURE__ */ o($k, { className: eo.border, children: /* @__PURE__ */ r("article", { className: eo.body, children: [
2203
+ /* @__PURE__ */ o(ho, { children: /* @__PURE__ */ o(J, { datetime: n, size: "xs", children: [e == null ? void 0 : e.name, l].join(", ") }) }),
2204
+ /* @__PURE__ */ r(mo, { size: "lg", children: [
2205
+ /* @__PURE__ */ o("p", { children: i }),
2206
+ t && /* @__PURE__ */ o(vk, { ...t })
2207
+ ] })
2208
+ ] }) })
2209
+ ] }), Bk = "_list_6hz70_1", Tk = "_item_6hz70_10", Ie = {
2210
+ list: Bk,
2211
+ item: Tk
2212
+ }, Hk = ({ items: e, className: n }) => e.length ? /* @__PURE__ */ o("ul", { className: m(Ie.list, n), children: e.map((l, i) => /* @__PURE__ */ o("li", { className: Ie.item, children: /* @__PURE__ */ o(Mk, { ...l }) }, i)) }) : null, Rk = ({ title: e = "History", items: n }) => n ? /* @__PURE__ */ o(ze, { title: e, children: /* @__PURE__ */ o(Hk, { items: n }) }) : null, je = ({ size: e = "sm", touchedBy: n = [], className: l }) => n != null && n.length ? /* @__PURE__ */ o(j, { defaultType: "person", items: n, size: e, className: l }) : null, Dk = "_nav_678a5_1", zk = "_action_678a5_8", he = {
2213
+ nav: Dk,
2214
+ action: zk
2215
+ }, Ek = ({
2216
+ backButton: e = {
2217
+ as: "a",
2218
+ label: "Back"
2219
+ },
2220
+ status: n,
2221
+ dueAt: l,
2222
+ dueAtLabel: i,
2223
+ touchedBy: t,
2224
+ menu: c
2225
+ }) => /* @__PURE__ */ r("nav", { className: he.nav, children: [
2226
+ /* @__PURE__ */ o(q, { ...e, variant: "text", color: "secondary", icon: "arrow-left", reverse: !0, children: (e == null ? void 0 : e.label) || "Back" }),
2227
+ /* @__PURE__ */ r("div", { className: he.action, children: [
2228
+ l && i && /* @__PURE__ */ o(J, { datetime: l, size: "xs", children: i }),
2229
+ n && /* @__PURE__ */ o(Re, { ...n }),
2230
+ t && /* @__PURE__ */ o(je, { touchedBy: t }),
2231
+ c && /* @__PURE__ */ o(Me, { ...c })
2232
+ ] })
2233
+ ] }), Fy = ({
2234
+ backButton: e,
2235
+ menu: n,
2236
+ updatedAt: l,
2237
+ updatedAtLabel: i,
2238
+ dueAt: t,
2239
+ dueAtLabel: c,
2240
+ status: s,
2241
+ title: a,
2242
+ sender: d,
2243
+ recipient: I,
2244
+ summary: u = "Summary.",
2245
+ body: _,
2246
+ actions: g = [],
2247
+ attachments: h,
2248
+ history: F,
2249
+ seenBy: b,
2250
+ activityLog: C,
2251
+ additionalInfo: k
2252
+ }) => /* @__PURE__ */ r(vb, { children: [
2253
+ /* @__PURE__ */ o(Ek, { status: s, dueAt: t, dueAtLabel: c, backButton: e, menu: n }),
2254
+ /* @__PURE__ */ r(hb, { children: [
2255
+ /* @__PURE__ */ o(
2256
+ Ub,
2257
+ {
2258
+ title: a,
2259
+ sender: d,
2260
+ recipient: I,
2261
+ seen: (b == null ? void 0 : b.seenByEndUser) ?? !1,
2262
+ variant: "neutral"
2263
+ }
2264
+ ),
2265
+ /* @__PURE__ */ r(Sb, { children: [
2266
+ /* @__PURE__ */ o(Pb, { updatedAt: l, updatedAtLabel: i, summary: u, body: _ }),
2267
+ h && /* @__PURE__ */ o(bb, { ...h }),
2268
+ (g == null ? void 0 : g.length) > 0 && /* @__PURE__ */ o(yk, { items: g }),
2269
+ /* @__PURE__ */ r(ho, { children: [
2270
+ b && /* @__PURE__ */ o(He, { ...b }),
2271
+ C && /* @__PURE__ */ o(db, { ...C })
2272
+ ] })
2273
+ ] }),
2274
+ k && /* @__PURE__ */ o(Tb, { additionalInfo: k }),
2275
+ F && /* @__PURE__ */ o(Rk, { ...F })
2276
+ ] })
2277
+ ] }), Ak = ({ title: e, children: n }) => /* @__PURE__ */ r(go, { spacing: "md", children: [
2278
+ e && /* @__PURE__ */ r(cy, { padding: !0, margin: !0, children: [
2279
+ /* @__PURE__ */ o(Be, { children: e }),
2280
+ /* @__PURE__ */ o(q, { variant: "text", icon: "checkmark", size: "sm", reverse: !0, children: "Velg alle" })
2281
+ ] }),
2282
+ /* @__PURE__ */ o(Xo, { spacing: "md", children: n })
2283
+ ] }), qk = "_border_6r71i_1", Uk = "_header_6r71i_10", jk = "_summary_6r71i_16", Ok = "_footer_6r71i_30", Gk = "_touchedBy_6r71i_34", Vk = "_link_6r71i_58", Z = {
2284
+ border: qk,
2285
+ header: Uk,
2286
+ summary: jk,
2287
+ footer: Ok,
2288
+ touchedBy: Gk,
2289
+ link: Vk
2290
+ }, Wk = "_label_1hmuj_1", Zk = "_input_1hmuj_15", Kk = "_icon_1hmuj_20", vo = {
2291
+ label: Wk,
2292
+ input: Zk,
2293
+ icon: Kk
2294
+ }, Qk = ({ checked: e = !1, onChange: n, className: l }) => /* @__PURE__ */ r("label", { className: m(vo.label, l), children: [
2295
+ /* @__PURE__ */ o("input", { type: "checkbox", checked: e, onChange: n, className: vo.input, tabIndex: -1 }),
2296
+ /* @__PURE__ */ o(Ne, { hover: !0, checked: e, className: vo.icon })
2297
+ ] }), Xk = "_item_1ate4_1", Jk = "_link_1ate4_13", Yk = "_select_1ate4_23", wo = {
2298
+ item: Xk,
2299
+ link: Jk,
2300
+ select: Yk
2301
+ }, of = ({
2302
+ as: e = "a",
2303
+ size: n,
2304
+ href: l,
2305
+ select: i,
2306
+ selected: t,
2307
+ children: c,
2308
+ onClick: s
2309
+ }) => {
2310
+ const a = e || "button";
2311
+ return /* @__PURE__ */ r("article", { className: wo.item, "data-size": n, "aria-selected": t, children: [
2312
+ /* @__PURE__ */ o(a, { className: wo.link, "data-size": n, href: l, onClick: s, tabIndex: 0, children: c }),
2313
+ i && /* @__PURE__ */ o(Qk, { className: wo.select, ...i })
2314
+ ] });
2315
+ }, ef = ({
2316
+ as: e = "a",
2317
+ size: n = "lg",
2318
+ variant: l = "neutral",
2319
+ href: i,
2320
+ onClick: t,
2321
+ select: c,
2322
+ selected: s,
2323
+ status: a,
2324
+ sender: d,
2325
+ recipient: I,
2326
+ grouped: u,
2327
+ updatedAt: _,
2328
+ updatedAtLabel: g,
2329
+ dueAt: h,
2330
+ dueAtLabel: F,
2331
+ seen: b = !1,
2332
+ seenBy: C,
2333
+ touchedBy: k,
2334
+ attachmentsCount: N,
2335
+ title: S,
2336
+ summary: B
2337
+ }) => /* @__PURE__ */ o(
2338
+ of,
2339
+ {
2340
+ as: e,
2341
+ size: n,
2342
+ href: i,
2343
+ select: c,
2344
+ selected: s,
2345
+ variant: l,
2346
+ onClick: t,
2347
+ children: /* @__PURE__ */ r(Te, { className: Z.border, size: n, seen: b, children: [
2348
+ /* @__PURE__ */ r("header", { "data-size": n, className: Z.header, children: [
2349
+ /* @__PURE__ */ o(Ae, { size: n, seen: b, variant: l, children: S }),
2350
+ /* @__PURE__ */ o(Ee, { size: "xs", grouped: u, sender: d, recipient: I })
2351
+ ] }),
2352
+ /* @__PURE__ */ o("p", { "data-size": n, className: Z.summary, children: B }),
2353
+ /* @__PURE__ */ r("footer", { "data-size": n, className: Z.footer, children: [
2354
+ /* @__PURE__ */ o(
2355
+ De,
2356
+ {
2357
+ status: a,
2358
+ updatedAt: _,
2359
+ updatedAtLabel: g,
2360
+ dueAt: h,
2361
+ dueAtLabel: F,
2362
+ seenBy: C,
2363
+ attachmentsCount: N
2364
+ }
2365
+ ),
2366
+ k && /* @__PURE__ */ o(je, { size: "xs", touchedBy: k, className: Z.touchedBy })
2367
+ ] })
2368
+ ] })
2369
+ }
2370
+ ), by = ({ items: e, groups: n = {} }) => {
2371
+ const { menu: l } = jo({
2372
+ items: e,
2373
+ groups: n,
2374
+ groupByKey: "groupId",
2375
+ keyboardEvents: !1
2376
+ });
2377
+ return /* @__PURE__ */ o(go, { spacing: "none", margin: "md", children: l == null ? void 0 : l.map((i, t) => {
2378
+ const c = i.props || {};
2379
+ return /* @__PURE__ */ A(Ak, { ...c, key: t }, i == null ? void 0 : i.items.map((s, a) => {
2380
+ const d = s.props || {};
2381
+ return /* @__PURE__ */ A(ef, { ...d, key: a });
2382
+ }));
2383
+ }) });
2384
+ }, nf = "_dropdown_tp90e_1", lf = "_drawer_tp90e_33", tf = "_button_tp90e_33", cf = {
2385
+ dropdown: nf,
2386
+ drawer: lf,
2387
+ button: tf
2388
+ }, Vo = ({
2389
+ placement: e = "left",
2390
+ padding: n = !0,
2391
+ expanded: l = !1,
2392
+ className: i,
2393
+ children: t
2394
+ }) => /* @__PURE__ */ o(
2395
+ "div",
2396
+ {
2397
+ className: m(cf.dropdown, i),
2398
+ "data-placement": e,
2399
+ "data-padding": n,
2400
+ "aria-expanded": l,
2401
+ children: t
2402
+ }
2403
+ ), sf = "_backdrop_zeho3_1", rf = {
2404
+ backdrop: sf
2405
+ }, Oe = ({ className: e, onClick: n }) => /* @__PURE__ */ o("div", { className: m(rf.backdrop, e), onMouseDown: n }), af = "_drawer_1vx9q_1", df = {
2406
+ drawer: af
2407
+ }, Ge = ({ placement: e = "inline", expanded: n = !1, className: l, children: i }) => /* @__PURE__ */ o("div", { className: m(df.drawer, l), "data-placement": e, "aria-expanded": n, children: i }), uf = "_header_18gf2_1", If = "_title_18gf2_13", No = {
2408
+ header: uf,
2409
+ title: If
2410
+ }, hf = ({ className: e, title: n, onClose: l }) => /* @__PURE__ */ r("header", { className: m(No.header, e), children: [
2411
+ /* @__PURE__ */ o("h2", { className: No.title, children: n }),
2412
+ /* @__PURE__ */ o(U, { size: "sm", icon: "x-mark", variant: "outline", onClick: l, className: No.close })
2413
+ ] }), mf = "_footer_9sr8v_1", pf = {
2414
+ footer: mf
2415
+ }, gf = ({ className: e, children: n }) => /* @__PURE__ */ o("footer", { className: m(pf.footer, e), children: n }), _f = "_button_19v2d_1", Ff = {
2416
+ button: _f
2417
+ }, bf = ({ label: e, children: n, onClick: l }) => /* @__PURE__ */ o(y, { variant: "solid", size: "md", className: Ff.button, onClick: l, children: /* @__PURE__ */ o(uo, { size: "md", children: n || e }) }), kf = "_body_1rwbe_1", ff = {
2418
+ body: kf
2419
+ }, Cf = ({ className: e, children: n }) => /* @__PURE__ */ o("div", { className: m(ff.body, e), children: n }), yf = "_dropdown_1mzzo_1", vf = "_drawer_1mzzo_5", me = {
2420
+ dropdown: yf,
2421
+ drawer: vf
2422
+ }, Wo = ({ expanded: e = !1, title: n, onClose: l, button: i, children: t }) => /* @__PURE__ */ r(ao, { children: [
2423
+ e && /* @__PURE__ */ o(Oe, { onClick: l }),
2424
+ /* @__PURE__ */ o(Vo, { className: me.dropdown, padding: !0, expanded: e, children: t }),
2425
+ /* @__PURE__ */ r(Ge, { className: me.drawer, placement: "bottom", expanded: e, children: [
2426
+ /* @__PURE__ */ o(hf, { title: n, onClose: l }),
2427
+ /* @__PURE__ */ o(Cf, { children: t }),
2428
+ /* @__PURE__ */ o(gf, { children: i && /* @__PURE__ */ o(bf, { onClick: i == null ? void 0 : i.onClick, children: i == null ? void 0 : i.label }) })
2429
+ ] })
2430
+ ] }), wf = "_address_1v1q3_1", Nf = {
2431
+ address: wf
2432
+ }, $f = ({ className: e, children: n }) => /* @__PURE__ */ o("address", { className: m(Nf.address, e), children: n }), xf = "_footer_z2xgm_1", Sf = "_grid_z2xgm_13", pe = {
2433
+ footer: xf,
2434
+ grid: Sf
2435
+ }, Lf = ({ className: e, children: n }) => /* @__PURE__ */ o("footer", { className: m(pe.footer, e), children: /* @__PURE__ */ r("div", { className: pe.grid, children: [
2436
+ n,
2437
+ " "
2438
+ ] }) }), Ve = ({ className: e, title: n = "Digdir logomark" }) => /* @__PURE__ */ r(
2439
+ "svg",
2440
+ {
2441
+ width: "1em",
2442
+ height: "1em",
2443
+ viewBox: "0 0 24 24",
2444
+ fill: "none",
2445
+ xmlns: "http://www.w3.org/2000/svg",
2446
+ className: e,
2447
+ children: [
2448
+ /* @__PURE__ */ o("title", { children: n }),
2449
+ /* @__PURE__ */ o(
2450
+ "path",
2451
+ {
2452
+ d: "M12.3167 0H0.486059C0.357148 0 0.233518 0.0511029 0.142363 0.142066C0.0512097 0.23303 0 0.356402 0 0.485044V23.515C0 23.6436 0.0512097 23.767 0.142363 23.8579C0.233518 23.9489 0.357148 24 0.486059 24H12.3167C15.4455 23.9112 18.4163 22.6085 20.5979 20.3686C22.7795 18.1288 24 15.1284 24 12.0049C24 8.88133 22.7795 5.88089 20.5979 3.64106C18.4163 1.40122 15.4455 0.0985018 12.3167 0.00970113V0ZM13.4735 20.3815C11.6835 20.689 9.84199 20.4199 8.21543 19.6132C6.58891 18.8066 5.26188 17.5042 4.42651 15.8948C3.59114 14.2853 3.29078 12.4523 3.56892 10.6611C3.84707 8.86999 4.68929 7.2137 5.97362 5.93205C7.25795 4.6504 8.91774 3.80994 10.7126 3.53237C12.5075 3.25481 14.3444 3.55454 15.9572 4.38817C17.57 5.2218 18.875 6.54605 19.6834 8.16918C20.4918 9.79233 20.7614 11.6301 20.4534 13.4163C20.1535 15.1547 19.3216 16.7576 18.0717 18.0049C16.8218 19.2521 15.2155 20.0824 13.4735 20.3815Z",
2453
+ fill: "currentColor"
2454
+ }
2455
+ )
2456
+ ]
2457
+ }
2458
+ ), Pf = "_logo_127g0_1", Mf = "_symbol_127g0_9", ge = {
2459
+ logo: Pf,
2460
+ symbol: Mf
2461
+ }, Bf = ({ className: e, title: n = "Digdir" }) => /* @__PURE__ */ r("div", { className: m(ge.logo, e), children: [
2462
+ /* @__PURE__ */ o(Ve, { className: ge.symbol }),
2463
+ /* @__PURE__ */ o("span", { children: n })
2464
+ ] }), Tf = "_menu_3o631_1", Hf = "_list_3o631_7", Rf = "_item_3o631_28", Df = "_link_3o631_32", To = {
2465
+ menu: Tf,
2466
+ list: Hf,
2467
+ item: Rf,
2468
+ link: Df
2469
+ }, zf = ({ as: e, className: n, title: l, ...i }) => /* @__PURE__ */ o(e || "a", { className: m(To.link, n), ...i, children: l }), Ef = ({ className: e, items: n = [] }) => /* @__PURE__ */ o(po, { className: m(To.menu, e), children: /* @__PURE__ */ o("ul", { className: To.list, children: n.map((l) => /* @__PURE__ */ o("li", { children: /* @__PURE__ */ o(zf, { ...l }) }, l.id)) }) }), Af = ({ address: e, menu: n }) => /* @__PURE__ */ r(Lf, { children: [
2470
+ /* @__PURE__ */ r($f, { children: [
2471
+ /* @__PURE__ */ o(Bf, {}),
2472
+ e
2473
+ ] }),
2474
+ /* @__PURE__ */ o(Ef, { ...n })
2475
+ ] }), qf = ({ account: e, linkText: n, onClick: l, multipleAccounts: i }) => i ? /* @__PURE__ */ r(so, { size: "lg", onClick: l, linkText: n, linkIcon: "arrow-right", as: "button", children: [
2476
+ /* @__PURE__ */ o(
2477
+ Bo,
2478
+ {
2479
+ size: "lg",
2480
+ avatar: {
2481
+ name: e.name,
2482
+ type: e.type
2483
+ }
2484
+ }
2485
+ ),
2486
+ /* @__PURE__ */ o(ro, { size: "lg", title: e == null ? void 0 : e.name, description: e == null ? void 0 : e.description })
2487
+ ] }) : /* @__PURE__ */ r(so, { size: "lg", as: "div", children: [
2488
+ /* @__PURE__ */ o(
2489
+ Bo,
2490
+ {
2491
+ size: "lg",
2492
+ avatar: {
2493
+ name: e.name,
2494
+ type: e.type
2495
+ }
2496
+ }
2497
+ ),
2498
+ /* @__PURE__ */ o(ro, { size: "lg", title: e == null ? void 0 : e.name, description: e == null ? void 0 : e.description })
2499
+ ] }), Uf = (e) => `${e} hits`, jf = ({
2500
+ accounts: e = [],
2501
+ accountGroups: n = {},
2502
+ accountSearch: l,
2503
+ onSelectAccount: i,
2504
+ currentAccount: t
2505
+ }) => {
2506
+ var g;
2507
+ const c = e.map((h) => ({
2508
+ id: h.id || h.name,
2509
+ groupId: h.groupId || "search",
2510
+ selected: h.selected ?? (t == null ? void 0 : t.id) === h.id,
2511
+ title: h.name,
2512
+ avatar: {
2513
+ type: h.type,
2514
+ name: h.name
2515
+ },
2516
+ onClick: () => i == null ? void 0 : i(h.id || h.name)
2517
+ })), [s, a] = x(""), d = s ? c.filter((h) => {
2518
+ var F;
2519
+ return (F = h == null ? void 0 : h.title) == null ? void 0 : F.toLowerCase().includes(s.toLowerCase());
2520
+ }).map((h) => ({
2521
+ ...h,
2522
+ groupId: "search"
2523
+ })) : c, I = s ? {
2524
+ search: {
2525
+ title: ((g = l == null ? void 0 : l.getResultsLabel) == null ? void 0 : g.call(l, d.length)) ?? Uf(d.length)
2526
+ }
2527
+ } : n, u = {
2528
+ name: "account-search",
2529
+ value: s,
2530
+ placeholder: (l == null ? void 0 : l.placeholder) ?? "Find account",
2531
+ onChange: (h) => a(h.target.value)
2532
+ }, _ = [
2533
+ ...d.length > 0 ? d : [{ id: "search", groupId: "search", hidden: !0 }]
2534
+ ];
2535
+ return /* @__PURE__ */ o(P, { theme: "global", search: u, groups: I, items: _ });
2536
+ }, Of = ({ label: e, onClick: n }) => /* @__PURE__ */ o(qo, { id: "back", icon: "arrow-left", title: e, onClick: n }), Gf = "_nav_gzloq_1", Vf = "_header_gzloq_8", Wf = "_footer_gzloq_12", Zf = "_drawer_gzloq_20", Kf = "_dropdown_gzloq_26", Zo = {
2537
+ nav: Gf,
2538
+ header: Vf,
2539
+ footer: Wf,
2540
+ drawer: Zf,
2541
+ dropdown: Kf
2542
+ }, $o = ({ children: e }) => /* @__PURE__ */ o("nav", { className: Zo.nav, "data-theme": "global", children: e }), Qf = ({ children: e }) => /* @__PURE__ */ o("header", { className: Zo.header, children: e }), Xf = ({ children: e }) => /* @__PURE__ */ o("footer", { className: Zo.footer, children: e }), Jf = "_button_1260s_1", Yf = "_label_1260s_5", _e = {
2543
+ button: Jf,
2544
+ label: Yf
2545
+ }, o2 = ({ label: e = "Logout", children: n, onClick: l }) => /* @__PURE__ */ o(y, { className: _e.button, variant: "outline", size: "lg", onClick: l, children: /* @__PURE__ */ o(uo, { className: _e.label, size: "lg", children: n || e }) }), Fe = ({
2546
+ accounts: e = [],
2547
+ accountGroups: n = {},
2548
+ accountSearch: l,
2549
+ items: i = [],
2550
+ groups: t,
2551
+ changeLabel: c = "Change",
2552
+ backLabel: s = "Back",
2553
+ currentAccount: a,
2554
+ changeCurrentAccount: d,
2555
+ logoutButton: I
2556
+ }) => {
2557
+ const [u, _] = x(!1), g = () => {
2558
+ _((F) => !F);
2559
+ }, h = (F) => {
2560
+ g(), d == null || d(F);
2561
+ };
2562
+ return u ? /* @__PURE__ */ r($o, { children: [
2563
+ /* @__PURE__ */ o(Of, { onClick: g, label: s }),
2564
+ /* @__PURE__ */ o(
2565
+ jf,
2566
+ {
2567
+ currentAccount: a,
2568
+ accounts: e,
2569
+ accountGroups: n,
2570
+ accountSearch: l,
2571
+ onSelectAccount: h
2572
+ }
2573
+ )
2574
+ ] }) : a ? /* @__PURE__ */ r($o, { children: [
2575
+ /* @__PURE__ */ o(Qf, { children: /* @__PURE__ */ o(
2576
+ qf,
2577
+ {
2578
+ account: a,
2579
+ linkText: c,
2580
+ multipleAccounts: e.length > 1,
2581
+ onClick: g
2582
+ }
2583
+ ) }),
2584
+ /* @__PURE__ */ o(P, { groups: t, items: i }),
2585
+ I && /* @__PURE__ */ o(Xf, { children: /* @__PURE__ */ o(o2, { ...I }) })
2586
+ ] }) : /* @__PURE__ */ o($o, { children: /* @__PURE__ */ o(P, { groups: t, items: i }) });
2587
+ }, e2 = "_autocomplete_1ccsg_1", n2 = {
2588
+ autocomplete: e2
2589
+ }, l2 = ({ expanded: e, children: n, className: l }) => /* @__PURE__ */ o("nav", { className: m(n2.autocomplete, l), "aria-expanded": e, children: n }), i2 = "_group_da4mp_1", t2 = {
2590
+ group: i2
2591
+ }, c2 = ({ title: e, children: n }) => /* @__PURE__ */ r("section", { className: t2.group, children: [
2592
+ e && /* @__PURE__ */ o(Uo, { title: e }),
2593
+ n
2594
+ ] }), s2 = "_item_2cjkt_3", r2 = "_content_2cjkt_50", a2 = "_action_2cjkt_60", d2 = "_linkIcon_2cjkt_67", no = {
2595
+ item: s2,
2596
+ content: r2,
2597
+ action: a2,
2598
+ linkIcon: d2
2599
+ }, Ko = ({
2600
+ as: e,
2601
+ children: n,
2602
+ className: l,
2603
+ href: i,
2604
+ size: t,
2605
+ color: c,
2606
+ active: s = !1,
2607
+ hidden: a = !1,
2608
+ collapsible: d,
2609
+ selected: I,
2610
+ expanded: u,
2611
+ linkIcon: _,
2612
+ menu: g,
2613
+ badge: h,
2614
+ onClick: F,
2615
+ onKeyPress: b,
2616
+ style: C
2617
+ }) => {
2618
+ const k = e || "a", N = d && u ? "chevron-up" : d ? "chevron-down" : i ? "chevron-right" : _;
2619
+ return /* @__PURE__ */ r(
2620
+ k,
2621
+ {
2622
+ className: m(no.item, l),
2623
+ "data-color": c,
2624
+ "data-size": t,
2625
+ "data-active": s,
2626
+ "aria-hidden": a,
2627
+ "aria-selected": I,
2628
+ "aria-expanded": u,
2629
+ href: i,
2630
+ onKeyPress: (S) => {
2631
+ S.key === "Enter" && (F == null || F()), b == null || b(S);
2632
+ },
2633
+ onClick: F,
2634
+ tabIndex: -1,
2635
+ style: C,
2636
+ children: [
2637
+ /* @__PURE__ */ o("div", { className: no.content, "data-size": t, children: n }),
2638
+ /* @__PURE__ */ r("div", { className: no.action, children: [
2639
+ h && /* @__PURE__ */ o(Se, { ...h }),
2640
+ g && /* @__PURE__ */ o(Me, { ...g }),
2641
+ N && /* @__PURE__ */ o(v, { name: N, className: no.linkIcon })
2642
+ ] })
2643
+ ]
2644
+ }
2645
+ );
2646
+ }, u2 = "_label_1ajdw_3", I2 = "_title_1ajdw_33", h2 = "_description_1ajdw_46", xo = {
2647
+ label: u2,
2648
+ title: I2,
2649
+ description: h2
2650
+ }, Qo = ({ size: e = "sm", title: n, description: l, children: i }) => /* @__PURE__ */ o("span", { className: xo.label, "data-size": e, children: i || /* @__PURE__ */ r(ao, { children: [
2651
+ /* @__PURE__ */ o("strong", { className: xo.title, "data-size": e, children: n }),
2652
+ /* @__PURE__ */ o("span", { className: xo.description, "data-size": e, children: l })
2653
+ ] }) }), m2 = "_media_pfuu4_3", p2 = "_icon_pfuu4_23", lo = {
2654
+ media: m2,
2655
+ icon: p2
2656
+ }, z = {
2657
+ avatar: {
2658
+ xs: "xs",
2659
+ sm: "sm",
2660
+ md: "md",
2661
+ lg: "lg",
2662
+ xl: "xl"
2663
+ },
2664
+ avatarGroup: {
2665
+ xs: "xs",
2666
+ sm: "xs",
2667
+ md: "sm",
2668
+ lg: "md",
2669
+ xl: "lg"
2670
+ }
2671
+ }, We = ({
2672
+ size: e = "sm",
2673
+ color: n = "default",
2674
+ icon: l,
2675
+ avatar: i,
2676
+ avatarGroup: t,
2677
+ children: c
2678
+ }) => !l && !i && !t && !c ? !1 : /* @__PURE__ */ r("div", { className: lo.media, "data-size": e, "data-color": l ? n : null, children: [
2679
+ l && /* @__PURE__ */ o(v, { name: l, variant: "outline", className: lo.icon }) || i && /* @__PURE__ */ o(M, { ...i, size: z == null ? void 0 : z.avatar[e], className: lo.avatar }) || t && /* @__PURE__ */ o(
2680
+ j,
2681
+ {
2682
+ ...t,
2683
+ size: z == null ? void 0 : z.avatarGroup[e],
2684
+ className: lo.avatarGroup
2685
+ }
2686
+ ),
2687
+ c
2688
+ ] }), g2 = ({
2689
+ as: e = "a",
2690
+ color: n,
2691
+ children: l,
2692
+ selected: i,
2693
+ disabled: t,
2694
+ size: c = "sm",
2695
+ icon: s,
2696
+ avatar: a,
2697
+ avatarGroup: d,
2698
+ badge: I,
2699
+ title: u,
2700
+ description: _,
2701
+ ...g
2702
+ }) => /* @__PURE__ */ r(Ko, { as: e, size: c, badge: I, color: n, selected: i, ...g, children: [
2703
+ /* @__PURE__ */ o(We, { color: n, size: c, icon: s, avatar: a, avatarGroup: d }),
2704
+ /* @__PURE__ */ o(Qo, { title: u, description: _, size: c, children: l })
2705
+ ] }), _2 = "_list_18nep_1", F2 = {
2706
+ list: _2
2707
+ }, Xo = ({ theme: e = "inherit", spacing: n = "md", children: l }) => /* @__PURE__ */ o("div", { className: F2.list, "data-theme": e, "data-spacing": n, children: l }), ky = ({ theme: e, size: n = "md", spacing: l = "md", items: i = [] }) => /* @__PURE__ */ o(Xo, { theme: e, spacing: l, children: i.map((t, c) => /* @__PURE__ */ A(g2, { ...t, size: n, key: "item" + c })) }), b2 = "_item_1a3bc_1", k2 = {
2708
+ item: b2
2709
+ }, f2 = ({ as: e = "a", label: n, active: l, ...i }) => /* @__PURE__ */ o(Ko, { className: k2.item, as: e, size: "sm", active: l, linkIcon: "chevron-right", ...i, children: /* @__PURE__ */ o(Qo, { size: "sm", children: typeof n == "function" ? n() : n }) }), C2 = ({ className: e, items: n, groups: l = {}, expanded: i }) => {
2710
+ const { menu: t, setActiveIndex: c } = jo({
2711
+ items: n,
2712
+ groups: l,
2713
+ groupByKey: "groupId",
2714
+ keyboardEvents: !0
2715
+ });
2716
+ return /* @__PURE__ */ o(l2, { className: e, expanded: i, children: t.map((s, a) => /* @__PURE__ */ A(c2, { ...s.props, key: a }, /* @__PURE__ */ o("ul", { children: s.items.map((d, I) => {
2717
+ const {
2718
+ active: u,
2719
+ menuIndex: _,
2720
+ props: { groupId: g, ...h }
2721
+ } = d;
2722
+ return /* @__PURE__ */ o("li", { tabIndex: -1, onMouseEnter: () => c(_), children: /* @__PURE__ */ o(f2, { ...h, active: u }) }, I);
2723
+ }) }))) });
2724
+ }, y2 = "_field_1wjpq_1", v2 = "_icon_1wjpq_10", w2 = "_input_1wjpq_17", N2 = "_dismiss_1wjpq_41", $2 = "_clear_1wjpq_47", K = {
2725
+ field: y2,
2726
+ icon: v2,
2727
+ input: w2,
2728
+ dismiss: N2,
2729
+ clear: $2
2730
+ }, x2 = ({
2731
+ className: e,
2732
+ expanded: n,
2733
+ name: l = "q",
2734
+ value: i,
2735
+ placeholder: t = "Søk",
2736
+ onFocus: c,
2737
+ onBlur: s,
2738
+ onChange: a,
2739
+ onClear: d,
2740
+ onClose: I,
2741
+ onEnter: u,
2742
+ tabIndex: _
2743
+ }) => {
2744
+ const g = ln(null), h = (F) => {
2745
+ var b;
2746
+ F.key === "Escape" && ((b = g.current) == null || b.blur()), F.key === "Enter" && (u == null || u());
2747
+ };
2748
+ return /* @__PURE__ */ r("div", { className: m(K.field, e), "aria-expanded": n, children: [
2749
+ /* @__PURE__ */ o(
2750
+ "input",
2751
+ {
2752
+ ref: g,
2753
+ onFocus: c,
2754
+ onBlur: s,
2755
+ name: l,
2756
+ value: i,
2757
+ onChange: a,
2758
+ placeholder: t,
2759
+ className: K.input,
2760
+ onKeyUp: h,
2761
+ type: "search",
2762
+ "aria-haspopup": !0,
2763
+ autoComplete: "off",
2764
+ "aria-autocomplete": "list",
2765
+ "aria-expanded": n,
2766
+ tabIndex: _ ?? 0
2767
+ }
2768
+ ),
2769
+ /* @__PURE__ */ o(v, { name: "magnifying-glass", className: K.icon }),
2770
+ i && /* @__PURE__ */ o(
2771
+ U,
2772
+ {
2773
+ icon: "x-mark",
2774
+ color: "secondary",
2775
+ variant: "solid",
2776
+ size: "custom",
2777
+ className: K.clear,
2778
+ onClick: d
2779
+ }
2780
+ ) || n && /* @__PURE__ */ o(U, { icon: "x-mark", variant: "text", className: K.dismiss, onClick: I })
2781
+ ] });
2782
+ }, S2 = "_searchbar_1jrvc_1", L2 = {
2783
+ searchbar: S2
2784
+ }, P2 = ({ className: e, children: n, expanded: l = !1, autocomplete: i = !1 }) => /* @__PURE__ */ o(
2785
+ "div",
2786
+ {
2787
+ className: m(L2.searchbar, e),
2788
+ "aria-expanded": l,
2789
+ "data-autocomplete": i,
2790
+ "data-theme": "neutral",
2791
+ children: n
2792
+ }
2793
+ ), M2 = ({
2794
+ className: e,
2795
+ autocomplete: n,
2796
+ expanded: l = !1,
2797
+ onClose: i,
2798
+ tabIndex: t,
2799
+ ...c
2800
+ }) => /* @__PURE__ */ r(P2, { className: e, expanded: l, autocomplete: !!n, children: [
2801
+ /* @__PURE__ */ o(x2, { ...c, expanded: l, onClose: i, tabIndex: t }),
2802
+ n && /* @__PURE__ */ o(C2, { ...n, expanded: l })
2803
+ ] }), B2 = "_header_5ao8r_1", T2 = "_backdrop_5ao8r_11", be = {
2804
+ header: B2,
2805
+ backdrop: T2
2806
+ }, H2 = ({ currentId: e, className: n, children: l, open: i, onClose: t }) => /* @__PURE__ */ r("header", { className: m(be.header, n), "data-current-id": e, children: [
2807
+ i && /* @__PURE__ */ o(Oe, { className: be.backdrop, onClick: t }),
2808
+ l
2809
+ ] }), R2 = "_button_t01b4_1", D2 = "_label_t01b4_14", z2 = "_icon_t01b4_20", E2 = "_loginIcon_t01b4_30", A2 = "_closeIcon_t01b4_35", w = {
2810
+ button: R2,
2811
+ label: D2,
2812
+ icon: z2,
2813
+ loginIcon: E2,
2814
+ closeIcon: A2
2815
+ }, q2 = ({
2816
+ className: e,
2817
+ as: n = "button",
2818
+ avatar: l,
2819
+ avatarGroup: i,
2820
+ icon: t = "padlock-locked",
2821
+ expanded: c,
2822
+ label: s = "Menu",
2823
+ ...a
2824
+ }) => c ? /* @__PURE__ */ r(y, { ...a, as: n, className: m(w.button, e), children: [
2825
+ /* @__PURE__ */ o("span", { className: w.label, children: s }),
2826
+ /* @__PURE__ */ o("span", { className: m(w.icon, w.closeIcon), children: /* @__PURE__ */ o(v, { name: "x-mark" }) })
2827
+ ] }) : i ? /* @__PURE__ */ r(y, { ...a, as: n, className: m(w.button, e), children: [
2828
+ /* @__PURE__ */ o("span", { className: w.label, children: s }),
2829
+ /* @__PURE__ */ o(j, { ...i, size: "sm" })
2830
+ ] }) : l ? /* @__PURE__ */ r(y, { ...a, as: n, className: m(w.button, e), children: [
2831
+ /* @__PURE__ */ o("span", { className: w.label, children: s }),
2832
+ /* @__PURE__ */ o(M, { type: l == null ? void 0 : l.type, name: l == null ? void 0 : l.name, size: "lg" })
2833
+ ] }) : /* @__PURE__ */ r(y, { ...a, as: n, className: m(w.button, e), children: [
2834
+ /* @__PURE__ */ o("span", { className: w.label, children: s }),
2835
+ /* @__PURE__ */ o("span", { className: m(w.icon, w.loginIcon), children: /* @__PURE__ */ o(v, { name: t }) })
2836
+ ] }), U2 = "_logo_y48xn_1", j2 = "_symbol_y48xn_8", O2 = "_riksSymbol_y48xn_14", G2 = "_text_y48xn_20", So = {
2837
+ logo: U2,
2838
+ symbol: j2,
2839
+ riksSymbol: O2,
2840
+ text: G2
2841
+ }, V2 = ({ className: e, as: n = "a", title: l = "Altinn", href: i = "/" }) => /* @__PURE__ */ r(y, { as: n, className: m(So.logo, e), href: i, children: [
2842
+ /* @__PURE__ */ o(Ve, { className: So.symbol }),
2843
+ /* @__PURE__ */ o("span", { className: So.text, children: l })
2844
+ ] }), W2 = "_menu_1cafh_1", Z2 = {
2845
+ menu: W2
2846
+ }, K2 = ({ expanded: e = !1, className: n, children: l }) => /* @__PURE__ */ o("div", { className: m(Z2.menu, n), "aria-expanded": e, children: l }), Q2 = "_search_15b0s_1", X2 = {
2847
+ search: Q2
2848
+ }, J2 = ({ expanded: e = !1, className: n, children: l }) => /* @__PURE__ */ o("div", { className: m(X2.search, n), "aria-expanded": e, children: l }), Y2 = "_drawer_1wgf5_1", oC = "_dropdown_1wgf5_5", io = {
2849
+ drawer: Y2,
2850
+ dropdown: oC
2851
+ }, eC = ({ search: e, menu: n, currentAccount: l }) => {
2852
+ const { currentId: i, toggleId: t, openId: c, closeAll: s } = Io();
2853
+ gk(s);
2854
+ const a = () => {
2855
+ c("search");
2856
+ }, d = () => {
2857
+ t("search");
2858
+ }, I = () => {
2859
+ t("menu");
2860
+ };
2861
+ return /* @__PURE__ */ r(H2, { currentId: i, open: i === "search" || i === "menu", onClose: s, children: [
2862
+ /* @__PURE__ */ o(V2, { className: io.logo }),
2863
+ /* @__PURE__ */ r(K2, { className: io.menu, children: [
2864
+ /* @__PURE__ */ o(
2865
+ q2,
2866
+ {
2867
+ avatar: l && {
2868
+ type: l.type,
2869
+ name: l.name
2870
+ },
2871
+ onClick: I,
2872
+ expanded: i === "menu",
2873
+ label: n == null ? void 0 : n.menuLabel
2874
+ }
2875
+ ),
2876
+ n && /* @__PURE__ */ o(Vo, { padding: !1, placement: "right", expanded: i === "menu", className: io.dropdown, children: /* @__PURE__ */ o(Fe, { ...n, currentAccount: l }) })
2877
+ ] }),
2878
+ e && /* @__PURE__ */ o(J2, { expanded: i === "search", children: /* @__PURE__ */ o(M2, { ...e, expanded: i === "search", onClose: d, onFocus: a }) }),
2879
+ n && /* @__PURE__ */ o(Ge, { expanded: i === "menu", className: io.drawer, children: /* @__PURE__ */ o(Fe, { ...n, currentAccount: l }) })
2880
+ ] });
2881
+ }, nC = "_base_1401f_1", lC = {
2882
+ base: nC
2883
+ }, iC = ({ currentId: e, theme: n, children: l }) => /* @__PURE__ */ o("div", { className: lC.base, "data-theme": n, "data-current-id": e, children: l }), tC = "_body_3cqh5_1", cC = {
2884
+ body: tC
2885
+ }, sC = ({ theme: e, children: n }) => /* @__PURE__ */ o("div", { className: cC.body, "data-theme": e, children: n }), rC = "_content_1wkbr_1", aC = {
2886
+ content: rC
2887
+ }, dC = ({ theme: e, children: n }) => /* @__PURE__ */ o("main", { className: aC.content, "data-theme": e, children: n }), uC = "_sidebar_zsh57_1", IC = {
2888
+ sidebar: uC
2889
+ }, hC = ({ theme: e, hidden: n = !1, children: l }) => /* @__PURE__ */ o("aside", { className: IC.sidebar, "data-theme": e, "aria-hidden": n, children: l }), fy = ({ theme: e = "global", header: n, footer: l, sidebar: i = {}, content: t = {}, children: c }) => {
2890
+ const { currentId: s } = Io(), { menu: a, ...d } = i;
2891
+ return /* @__PURE__ */ r(iC, { theme: e, currentId: s, children: [
2892
+ n && /* @__PURE__ */ o(eC, { ...n }),
2893
+ /* @__PURE__ */ r(sC, { children: [
2894
+ i && /* @__PURE__ */ r(hC, { hidden: i == null ? void 0 : i.hidden, theme: i == null ? void 0 : i.theme, ...d, children: [
2895
+ a && /* @__PURE__ */ o(P, { ...a }),
2896
+ i == null ? void 0 : i.children
2897
+ ] }),
2898
+ /* @__PURE__ */ o(dC, { theme: t == null ? void 0 : t.theme, children: c })
2899
+ ] }),
2900
+ l && /* @__PURE__ */ o(Af, { ...l })
2901
+ ] });
2902
+ }, mC = "_header_ldd78_1", pC = "_title_ldd78_34", gC = "_button_ldd78_39", _C = "_icon_ldd78_53", Lo = {
2903
+ header: mC,
2904
+ title: pC,
2905
+ button: gC,
2906
+ icon: _C
2907
+ }, Cy = ({ hidden: e = !1, title: n, dismissable: l = !0, onDismiss: i }) => /* @__PURE__ */ r("header", { className: Lo.header, "aria-hidden": e, "data-theme": "global-dark", children: [
2908
+ /* @__PURE__ */ o("h2", { className: Lo.title, children: n }),
2909
+ l && /* @__PURE__ */ o(U, { icon: "x-mark", variant: "outline", onClick: i, className: Lo.dismiss })
2910
+ ] }), FC = "_footer_t35ns_1", bC = {
2911
+ footer: FC
2912
+ }, yy = ({ hidden: e = !1, children: n }) => /* @__PURE__ */ o("footer", { className: bC.footer, "aria-hidden": e, children: n }), kC = "_menu_12gbo_1", fC = "_list_12gbo_14", Po = {
2913
+ menu: kC,
2914
+ list: fC
2915
+ }, vy = ({ theme: e = "inherit", items: n = [] }) => /* @__PURE__ */ o(po, { theme: e, className: Po.menu, children: /* @__PURE__ */ o("ul", { className: Po.list, children: n.map((l) => /* @__PURE__ */ o("li", { children: /* @__PURE__ */ o(qo, { ...l, className: Po.item }) }, l.id)) }) }), CC = "_item_1dlhj_1", yC = "_content_1dlhj_26", vC = "_action_1dlhj_34", to = {
2916
+ item: CC,
2917
+ content: yC,
2918
+ action: vC
2919
+ }, wC = ({
2920
+ as: e,
2921
+ children: n,
2922
+ className: l,
2923
+ color: i,
2924
+ dismissable: t = !0,
2925
+ onDismiss: c,
2926
+ ...s
2927
+ }) => /* @__PURE__ */ r(e || "div", { className: m(to.item, l), "data-color": i, ...s, children: [
2928
+ /* @__PURE__ */ o("div", { className: to.content, children: n }),
2929
+ t && /* @__PURE__ */ o("div", { className: to.action, children: /* @__PURE__ */ o(U, { icon: "x-mark", variant: "text", onClick: c, className: to.dismiss }) })
2930
+ ] }), NC = "_label_1n332_3", $C = {
2931
+ label: NC
2932
+ }, xC = ({ children: e }) => /* @__PURE__ */ o("span", { className: $C.label, children: e }), SC = "_media_td38q_1", LC = "_icon_td38q_7", ke = {
2933
+ media: SC,
2934
+ icon: LC
2935
+ }, PC = ({ icon: e = "bell" }) => /* @__PURE__ */ o("div", { className: ke.media, children: /* @__PURE__ */ o(v, { name: e, variant: "solid", className: ke.icon }) }), wy = ({ as: e = "a", color: n, message: l, icon: i, ...t }) => /* @__PURE__ */ r(wC, { as: e, color: n, ...t, children: [
2936
+ /* @__PURE__ */ o(PC, { icon: i }),
2937
+ /* @__PURE__ */ o(xC, { children: l })
2938
+ ] }), MC = "_toolbar_1krmm_1", BC = {
2939
+ toolbar: MC
2940
+ }, TC = ({ children: e }) => /* @__PURE__ */ o("div", { className: BC.toolbar, children: e }), HC = "_removeButton_fxc8_1", RC = {
2941
+ removeButton: HC
2942
+ }, Jo = ({
2943
+ type: e = "select",
2944
+ selected: n = !1,
2945
+ removable: l = !1,
2946
+ active: i,
2947
+ children: t,
2948
+ onToggle: c,
2949
+ onRemove: s
2950
+ }) => l ? /* @__PURE__ */ o(
2951
+ Le,
2952
+ {
2953
+ className: RC.removeButton,
2954
+ variant: i ? "solid" : "outline",
2955
+ color: "primary",
2956
+ size: "sm",
2957
+ icon: "x-mark",
2958
+ selected: n,
2959
+ onLabelClick: c,
2960
+ onIconClick: s,
2961
+ children: t
2962
+ }
2963
+ ) : e === "add" ? /* @__PURE__ */ o(q, { reverse: !0, variant: "dotted", color: "primary", size: "sm", icon: "plus", selected: n, onClick: c, children: t }) : /* @__PURE__ */ o(
2964
+ q,
2965
+ {
2966
+ variant: i ? "solid" : "outline",
2967
+ color: "primary",
2968
+ size: "sm",
2969
+ icon: "chevron-up-down",
2970
+ selected: n,
2971
+ onClick: c,
2972
+ children: t
2973
+ }
2974
+ ), DC = "_base_l7znv_1", zC = {
2975
+ base: DC
2976
+ }, Yo = ({ expanded: e = !1, children: n }) => /* @__PURE__ */ o("div", { className: zC.base, "aria-expanded": e, children: n }), EC = ({ expanded: e = !1, onToggle: n, label: l = "Legg til", items: i }) => /* @__PURE__ */ r(Yo, { expanded: e, children: [
2977
+ /* @__PURE__ */ o(Jo, { type: "add", onToggle: n, children: l }),
2978
+ /* @__PURE__ */ o(Wo, { title: l, onClose: n, expanded: e, children: /* @__PURE__ */ o(P, { theme: "global", items: i }) })
2979
+ ] }), AC = ({ search: e, optionGroups: n = {}, options: l, onChange: i, optionType: t }) => {
2980
+ var s;
2981
+ const c = l.reduce(
2982
+ (a, d) => {
2983
+ const I = d.groupId || "";
2984
+ return a[I] = a[I] || [], a[I].push(d), a;
2985
+ },
2986
+ {}
2987
+ );
2988
+ return /* @__PURE__ */ r(po, { theme: "global", children: [
2989
+ e && /* @__PURE__ */ o(qe, { ...e }),
2990
+ /* @__PURE__ */ o(Ue, { children: (s = Object.keys(c)) == null ? void 0 : s.map((a, d) => {
2991
+ var g;
2992
+ const I = n[a] || {}, { title: u, divider: _ = !0 } = I;
2993
+ return /* @__PURE__ */ r(ye, { children: [
2994
+ d && _ ? /* @__PURE__ */ o(L, { role: "separator" }) : "",
2995
+ u && /* @__PURE__ */ o(L, { children: /* @__PURE__ */ o(Uo, { title: u }) }),
2996
+ (g = c[a]) == null ? void 0 : g.map((h) => {
2997
+ var F;
2998
+ return /* @__PURE__ */ o(L, { children: /* @__PURE__ */ o(
2999
+ ak,
3000
+ {
3001
+ onChange: i,
3002
+ label: h.label,
3003
+ badge: h.badge,
3004
+ type: h.type || ((F = n == null ? void 0 : n[a]) == null ? void 0 : F.optionType) || t,
3005
+ value: h.value,
3006
+ checked: h.checked
3007
+ }
3008
+ ) }, h.value);
3009
+ })
3010
+ ] }, a);
3011
+ }) })
3012
+ ] });
3013
+ }, qC = (e, n) => Array.isArray(n) ? n.join(", ") : n, UC = ({
3014
+ expanded: e = !1,
3015
+ removable: n,
3016
+ label: l,
3017
+ name: i,
3018
+ value: t,
3019
+ options: c,
3020
+ optionGroups: s,
3021
+ onToggle: a,
3022
+ onChange: d,
3023
+ onRemove: I,
3024
+ getSelectedLabel: u,
3025
+ optionType: _
3026
+ }) => {
3027
+ const g = (c ?? []).map(
3028
+ (F) => ({
3029
+ ...F,
3030
+ name: i,
3031
+ checked: Array.isArray(t) ? t.includes(F.value) : F.value === t
3032
+ })
3033
+ ), h = (u == null ? void 0 : u(i, t)) ?? qC(i, t);
3034
+ return /* @__PURE__ */ r(Yo, { expanded: e, children: [
3035
+ /* @__PURE__ */ o(
3036
+ Jo,
3037
+ {
3038
+ type: "select",
3039
+ removable: n,
3040
+ active: Array.isArray(t) ? t.length > 0 : typeof t < "u",
3041
+ onToggle: a,
3042
+ onRemove: I,
3043
+ children: h || l
3044
+ }
3045
+ ),
3046
+ /* @__PURE__ */ o(
3047
+ Wo,
3048
+ {
3049
+ expanded: e,
3050
+ title: l,
3051
+ onClose: a,
3052
+ button: { onClick: a, label: "Vis X treff" },
3053
+ children: /* @__PURE__ */ o(
3054
+ AC,
3055
+ {
3056
+ options: g,
3057
+ optionGroups: s,
3058
+ onChange: d,
3059
+ optionType: _
3060
+ }
3061
+ )
3062
+ }
3063
+ )
3064
+ ] });
3065
+ }, jC = ({ expanded: e = !1, onToggle: n, label: l, value: i, groups: t, search: c, items: s }) => /* @__PURE__ */ r(Yo, { expanded: e, children: [
3066
+ /* @__PURE__ */ o(Jo, { type: "switch", onToggle: n, active: !!i, children: l }),
3067
+ /* @__PURE__ */ o(Wo, { expanded: e, title: "Endre konto", onClose: n, children: /* @__PURE__ */ o(P, { theme: "global", defaultItemColor: "subtle", groups: t, search: c, items: s }) })
3068
+ ] }), OC = "_input_cwjz7_1", GC = "_button_cwjz7_11", VC = "_close_cwjz7_16", WC = "_icon_cwjz7_20", fe = {
3069
+ input: OC,
3070
+ button: GC,
3071
+ close: VC,
3072
+ icon: WC
3073
+ }, ZC = ({ value: e, name: n, placeholder: l = "Søk", onChange: i }) => /* @__PURE__ */ o("div", { className: fe.field, children: /* @__PURE__ */ o(
3074
+ "input",
3075
+ {
3076
+ type: "search",
3077
+ value: e,
3078
+ name: n,
3079
+ placeholder: l,
3080
+ className: fe.input,
3081
+ onChange: i
3082
+ }
3083
+ ) }), Ny = ({
3084
+ filters: e = [],
3085
+ filterState: n,
3086
+ onFilterStateChange: l,
3087
+ search: i,
3088
+ menu: t,
3089
+ getFilterLabel: c,
3090
+ children: s
3091
+ }) => {
3092
+ const { currentId: a, openId: d, closeAll: I } = Io(), [u, _] = x(null), [g, h] = x(
3093
+ n ?? {}
3094
+ ), F = typeof l == "function" ? l : h, b = n || g, [C, k] = x(
3095
+ (e == null ? void 0 : e.filter((p) => !(p.removable && typeof b[p.name] > "u")).map((p) => p.name)) ?? []
3096
+ ), N = e == null ? void 0 : e.filter((p) => !C.includes(p.name)), S = X(
3097
+ () => C.map((p) => e.find((f) => f.name === p)).filter((p) => typeof p < "u"),
3098
+ [e, C]
3099
+ ), B = X(
3100
+ () => e.filter((p) => N.includes(p)),
3101
+ [e, N]
3102
+ ), O = (p, f) => {
3103
+ (u == null ? void 0 : u.name) === f && u.type === p ? (I(), _(null)) : (d("toolbar"), _({ name: f, type: p }));
3104
+ }, Ze = () => {
3105
+ _(null), I();
3106
+ }, Ke = (p, f, _o) => {
3107
+ _o === "radio" ? (F({
3108
+ ...b,
3109
+ [p]: f
3110
+ }), O("filter", p)) : F({
3111
+ ...b,
3112
+ [p]: b[p] ? b[p].some((Fo) => f == null ? void 0 : f.includes(Fo)) ? b[p].filter((Fo) => !(f || []).includes(Fo)) : [...b[p], ...f || []] : f
3113
+ });
3114
+ }, Qe = (p) => {
3115
+ k((f) => f.filter((_o) => _o !== p)), F({
3116
+ ...b,
3117
+ [p]: void 0
3118
+ });
3119
+ }, Xe = (p) => {
3120
+ k((f) => [...f, p]), O("filter", p);
3121
+ };
3122
+ return /* @__PURE__ */ r(TC, { open: a === "toolbar", onClose: Ze, children: [
3123
+ t && /* @__PURE__ */ o(jC, { onToggle: () => O("menu", ""), expanded: (u == null ? void 0 : u.type) === "menu", ...t }),
3124
+ S.map((p) => /* @__PURE__ */ o(
3125
+ UC,
3126
+ {
3127
+ onToggle: () => O("filter", p.name),
3128
+ expanded: a === "toolbar" && p.name === (u == null ? void 0 : u.name) && (u == null ? void 0 : u.type) === "filter",
3129
+ onRemove: () => {
3130
+ Qe(p.name);
3131
+ },
3132
+ onChange: (f) => {
3133
+ Ke(p.name, [f.target.value], p.optionType);
3134
+ },
3135
+ name: p.name,
3136
+ options: p.options,
3137
+ label: p.label,
3138
+ value: b[p.name],
3139
+ optionType: p.optionType,
3140
+ removable: p.removable,
3141
+ getSelectedLabel: c
3142
+ },
3143
+ p.name
3144
+ )),
3145
+ (B == null ? void 0 : B.length) > 0 && /* @__PURE__ */ o(
3146
+ EC,
3147
+ {
3148
+ expanded: a === "toolbar" && (u == null ? void 0 : u.type) === "add-filter",
3149
+ onToggle: () => O("add-filter", ""),
3150
+ items: B.map((p) => ({
3151
+ id: p.name,
3152
+ label: p.label,
3153
+ name: p.name,
3154
+ onClick: () => {
3155
+ Xe(p.name);
3156
+ }
3157
+ }))
3158
+ }
3159
+ ),
3160
+ i && /* @__PURE__ */ o(ZC, { ...i }),
3161
+ s
3162
+ ] });
3163
+ }, KC = "_section_1kbyo_1", QC = {
3164
+ section: KC
3165
+ }, go = ({
3166
+ as: e = "section",
3167
+ color: n = "transparent",
3168
+ padding: l = !1,
3169
+ spacing: i = "none",
3170
+ margin: t = "none",
3171
+ shadow: c = "none",
3172
+ inset: s = !1,
3173
+ className: a,
3174
+ style: d,
3175
+ children: I
3176
+ }) => /* @__PURE__ */ o(
3177
+ e,
3178
+ {
3179
+ className: m(QC.section, a),
3180
+ style: d,
3181
+ "data-color": n,
3182
+ "data-inset": s,
3183
+ "data-padding": l,
3184
+ "data-spacing": i,
3185
+ "data-margin": t,
3186
+ "data-shadow": c,
3187
+ children: I
3188
+ }
3189
+ ), $y = ({ children: e, ...n }) => /* @__PURE__ */ o(go, { as: "main", ...n, children: e }), XC = "_header_4gbqj_1", JC = "_title_4gbqj_9", YC = "_description_4gbqj_16", E = {
3190
+ header: XC,
3191
+ title: JC,
3192
+ description: YC
3193
+ }, oy = ({ icon: e, avatar: n, avatarGroup: l }) => !e && !n && !l ? !1 : /* @__PURE__ */ o("div", { className: E.media, children: e && /* @__PURE__ */ o(v, { name: e, variant: "outline", className: E.icon }) || n && /* @__PURE__ */ o(M, { ...n, size: "xl", className: E.avatar }) || l && /* @__PURE__ */ o(j, { ...l, size: "lg", className: E.avatarGroup }) }), ey = "_nav_678a5_1", ny = "_action_678a5_8", Ce = {
3194
+ nav: ey,
3195
+ action: ny
3196
+ }, ly = ({
3197
+ backButton: e = {
3198
+ as: "a",
3199
+ label: "Back"
3200
+ },
3201
+ children: n
3202
+ }) => /* @__PURE__ */ r("nav", { className: Ce.nav, children: [
3203
+ /* @__PURE__ */ o(q, { ...e, variant: "text", color: "secondary", icon: "arrow-left", reverse: !0, children: (e == null ? void 0 : e.label) || "Back" }),
3204
+ /* @__PURE__ */ o("div", { className: Ce.action, children: n })
3205
+ ] }), xy = ({ title: e, description: n, icon: l, avatar: i, avatarGroup: t, children: c, ...s }) => /* @__PURE__ */ r(go, { as: "header", ...s, children: [
3206
+ /* @__PURE__ */ o(ly, {}),
3207
+ /* @__PURE__ */ r("section", { className: E.header, children: [
3208
+ /* @__PURE__ */ o(oy, { icon: l, avatar: i, avatarGroup: t }),
3209
+ /* @__PURE__ */ r("div", { className: E.title, children: [
3210
+ /* @__PURE__ */ o(Be, { size: "md", children: e }),
3211
+ /* @__PURE__ */ o("div", { className: "description", children: n })
3212
+ ] })
3213
+ ] })
3214
+ ] }), iy = "_header_77w1b_1", ty = {
3215
+ header: iy
3216
+ }, cy = ({ margin: e = !1, children: n }) => /* @__PURE__ */ o("header", { "data-margin": e, className: ty.header, children: n }), sy = "_footer_7dw8g_1", ry = "_header_7dw8g_6", ay = {
3217
+ footer: sy,
3218
+ header: ry
3219
+ }, Sy = ({ margin: e = !1, children: n }) => /* @__PURE__ */ o("footer", { "data-margin": e, className: ay.footer, children: n });
3220
+ export {
3221
+ yy as ActionFooter,
3222
+ Cy as ActionHeader,
3223
+ vy as ActionMenu,
3224
+ eF as AttachmentLink,
3225
+ $e as AttachmentList,
3226
+ M as Avatar,
3227
+ j as AvatarGroup,
3228
+ Oe as Backdrop,
3229
+ Se as Badge,
3230
+ hy as BookmarksList,
3231
+ TF as BookmarksListItem,
3232
+ q as Button,
3233
+ y as ButtonBase,
3234
+ Do as ButtonIcon,
3235
+ uo as ButtonLabel,
3236
+ Ne as CheckboxIcon,
3237
+ Le as ComboButton,
3238
+ Me as ContextMenu,
3239
+ Fy as Dialog,
3240
+ yk as DialogActions,
3241
+ db as DialogActivityLog,
3242
+ hb as DialogArticleBase,
3243
+ vb as DialogBase,
3244
+ Sb as DialogBodyBase,
3245
+ Te as DialogBorder,
3246
+ Pb as DialogContent,
3247
+ Tb as DialogFooter,
3248
+ Ub as DialogHeader,
3249
+ Db as DialogHeaderBase,
3250
+ Ee as DialogHeadings,
3251
+ Rk as DialogHistory,
3252
+ by as DialogList,
3253
+ ef as DialogListItem,
3254
+ of as DialogListItemBase,
3255
+ De as DialogMetadata,
3256
+ Ek as DialogNav,
3257
+ ze as DialogSectionBase,
3258
+ He as DialogSeenBy,
3259
+ Qk as DialogSelect,
3260
+ Re as DialogStatus,
3261
+ Lb as DialogStatusEnum,
3262
+ Ae as DialogTitle,
3263
+ je as DialogTouchedBy,
3264
+ Ge as DrawerBase,
3265
+ Cf as DrawerBody,
3266
+ bf as DrawerButton,
3267
+ gf as DrawerFooter,
3268
+ hf as DrawerHeader,
3269
+ Wo as DrawerOrDropdown,
3270
+ Vo as DropdownBase,
3271
+ Af as Footer,
3272
+ Fe as GlobalMenu,
3273
+ eC as Header,
3274
+ H2 as HeaderBase,
3275
+ q2 as HeaderButton,
3276
+ V2 as HeaderLogo,
3277
+ Be as Heading,
3278
+ Mk as HistoryItem,
3279
+ Hk as HistoryList,
3280
+ v as Icon,
3281
+ U as IconButton,
3282
+ fy as Layout,
3283
+ iC as LayoutBase,
3284
+ sC as LayoutBody,
3285
+ dC as LayoutContent,
3286
+ hC as LayoutSidebar,
3287
+ ky as List,
3288
+ Xo as ListBase,
3289
+ g2 as ListItem,
3290
+ Ko as ListItemBase,
3291
+ Qo as ListItemLabel,
3292
+ We as ListItemMedia,
3293
+ P as Menu,
3294
+ po as MenuBase,
3295
+ Uo as MenuHeader,
3296
+ gy as MenuInputField,
3297
+ qo as MenuItem,
3298
+ so as MenuItemBase,
3299
+ ro as MenuItemLabel,
3300
+ Bo as MenuItemMedia,
3301
+ Oo as MenuItems,
3302
+ Ue as MenuList,
3303
+ L as MenuListItem,
3304
+ ak as MenuOption,
3305
+ qe as MenuSearch,
3306
+ ho as MetaBase,
3307
+ $ as MetaItem,
3308
+ zo as MetaItemBase,
3309
+ Eo as MetaItemLabel,
3310
+ Ao as MetaItemMedia,
3311
+ py as MetaList,
3312
+ ab as MetaListItem,
3313
+ Mo as MetaProgress,
3314
+ J as MetaTimestamp,
3315
+ $y as PageBase,
3316
+ xy as PageHeader,
3317
+ X_ as ProgressIcon,
3318
+ MF as QueryItem,
3319
+ BF as QueryLabel,
3320
+ Z_ as RadioIcon,
3321
+ my as RootProvider,
3322
+ M2 as Searchbar,
3323
+ go as SectionBase,
3324
+ Sy as SectionFooter,
3325
+ cy as SectionHeader,
3326
+ wy as Snackbar,
3327
+ wC as SnackbarBase,
3328
+ xC as SnackbarLabel,
3329
+ PC as SnackbarMedia,
3330
+ we as SvgIcon,
3331
+ Ny as Toolbar,
3332
+ TC as ToolbarBase,
3333
+ Jo as ToolbarButton,
3334
+ mo as Typography,
3335
+ ne as iconsMap,
3336
+ _y as useClickOutside,
3337
+ gk as useEscapeKey,
3338
+ jo as useMenu,
3339
+ Io as useRootContext
3340
+ };