@edifice.io/react 1.7.4-develop-pedago.20241211160712

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 (1334) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +110 -0
  3. package/dist/audience.js +16 -0
  4. package/dist/comments.js +4 -0
  5. package/dist/components/ActionBar/ActionBar.d.ts +9 -0
  6. package/dist/components/ActionBar/ActionBar.js +8 -0
  7. package/dist/components/ActionBar/index.d.ts +2 -0
  8. package/dist/components/Alert/Alert.d.ts +60 -0
  9. package/dist/components/Alert/Alert.js +81 -0
  10. package/dist/components/Alert/index.d.ts +2 -0
  11. package/dist/components/AppHeader/AppHeader.d.ts +17 -0
  12. package/dist/components/AppHeader/AppHeader.js +22 -0
  13. package/dist/components/AppHeader/index.d.ts +2 -0
  14. package/dist/components/AppIcon/AppIcon.d.ts +45 -0
  15. package/dist/components/AppIcon/AppIcon.js +51 -0
  16. package/dist/components/AppIcon/index.d.ts +1 -0
  17. package/dist/components/Attachment/Attachment.d.ts +14 -0
  18. package/dist/components/Attachment/Attachment.js +18 -0
  19. package/dist/components/Attachment/index.d.ts +2 -0
  20. package/dist/components/Avatar/Avatar.d.ts +31 -0
  21. package/dist/components/Avatar/Avatar.js +33 -0
  22. package/dist/components/Avatar/index.d.ts +2 -0
  23. package/dist/components/Badge/Badge.d.ts +49 -0
  24. package/dist/components/Badge/Badge.js +18 -0
  25. package/dist/components/Badge/index.d.ts +2 -0
  26. package/dist/components/Breadcrumb/Breadcrumb.d.ts +13 -0
  27. package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
  28. package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
  29. package/dist/components/Breadcrumb/BreadcrumbItem.js +14 -0
  30. package/dist/components/Breadcrumb/BreadcrumbList.d.ts +13 -0
  31. package/dist/components/Breadcrumb/BreadcrumbList.js +13 -0
  32. package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +18 -0
  33. package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
  34. package/dist/components/Breadcrumb/index.d.ts +2 -0
  35. package/dist/components/Button/Button.d.ts +63 -0
  36. package/dist/components/Button/Button.js +35 -0
  37. package/dist/components/Button/IconButton.d.ts +11 -0
  38. package/dist/components/Button/IconButton.js +18 -0
  39. package/dist/components/Button/SearchButton.d.ts +21 -0
  40. package/dist/components/Button/SearchButton.js +17 -0
  41. package/dist/components/Button/index.d.ts +6 -0
  42. package/dist/components/Card/Card.d.ts +87 -0
  43. package/dist/components/Card/Card.js +53 -0
  44. package/dist/components/Card/CardBody.d.ts +10 -0
  45. package/dist/components/Card/CardBody.js +18 -0
  46. package/dist/components/Card/CardContext.d.ts +12 -0
  47. package/dist/components/Card/CardContext.js +11 -0
  48. package/dist/components/Card/CardFooter.d.ts +8 -0
  49. package/dist/components/Card/CardFooter.js +7 -0
  50. package/dist/components/Card/CardHeader.d.ts +5 -0
  51. package/dist/components/Card/CardHeader.js +22 -0
  52. package/dist/components/Card/CardImage.d.ts +9 -0
  53. package/dist/components/Card/CardImage.js +21 -0
  54. package/dist/components/Card/CardText.d.ts +9 -0
  55. package/dist/components/Card/CardText.js +12 -0
  56. package/dist/components/Card/CardTitle.d.ts +9 -0
  57. package/dist/components/Card/CardTitle.js +12 -0
  58. package/dist/components/Card/CardUser.d.ts +8 -0
  59. package/dist/components/Card/CardUser.js +10 -0
  60. package/dist/components/Card/index.d.ts +2 -0
  61. package/dist/components/Checkbox/Checkbox.d.ts +20 -0
  62. package/dist/components/Checkbox/Checkbox.js +35 -0
  63. package/dist/components/Checkbox/index.d.ts +2 -0
  64. package/dist/components/ColorPicker/ColorPalette.d.ts +46 -0
  65. package/dist/components/ColorPicker/ColorPalette.js +171 -0
  66. package/dist/components/ColorPicker/ColorPicker.d.ts +18 -0
  67. package/dist/components/ColorPicker/ColorPicker.js +38 -0
  68. package/dist/components/ColorPicker/ColorPickerItem.d.ts +20 -0
  69. package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
  70. package/dist/components/ColorPicker/index.d.ts +5 -0
  71. package/dist/components/Combobox/Combobox.d.ts +31 -0
  72. package/dist/components/Combobox/Combobox.js +40 -0
  73. package/dist/components/Combobox/ComboboxTrigger.d.ts +9 -0
  74. package/dist/components/Combobox/ComboboxTrigger.js +30 -0
  75. package/dist/components/Combobox/index.d.ts +2 -0
  76. package/dist/components/Dropdown/Dropdown.d.ts +79 -0
  77. package/dist/components/Dropdown/Dropdown.js +60 -0
  78. package/dist/components/Dropdown/DropdownCheckboxItem.d.ts +24 -0
  79. package/dist/components/Dropdown/DropdownCheckboxItem.js +34 -0
  80. package/dist/components/Dropdown/DropdownContext.d.ts +8 -0
  81. package/dist/components/Dropdown/DropdownContext.js +11 -0
  82. package/dist/components/Dropdown/DropdownItem.d.ts +29 -0
  83. package/dist/components/Dropdown/DropdownItem.js +33 -0
  84. package/dist/components/Dropdown/DropdownMenu.d.ts +35 -0
  85. package/dist/components/Dropdown/DropdownMenu.js +26 -0
  86. package/dist/components/Dropdown/DropdownMenuGroup.d.ts +13 -0
  87. package/dist/components/Dropdown/DropdownMenuGroup.js +12 -0
  88. package/dist/components/Dropdown/DropdownRadioItem.d.ts +24 -0
  89. package/dist/components/Dropdown/DropdownRadioItem.js +34 -0
  90. package/dist/components/Dropdown/DropdownSeparator.d.ts +5 -0
  91. package/dist/components/Dropdown/DropdownSeparator.js +5 -0
  92. package/dist/components/Dropdown/DropdownTrigger.d.ts +37 -0
  93. package/dist/components/Dropdown/DropdownTrigger.js +34 -0
  94. package/dist/components/Dropdown/index.d.ts +2 -0
  95. package/dist/components/Dropzone/Dropzone.d.ts +52 -0
  96. package/dist/components/Dropzone/Dropzone.js +55 -0
  97. package/dist/components/Dropzone/DropzoneContext.d.ts +9 -0
  98. package/dist/components/Dropzone/DropzoneContext.js +12 -0
  99. package/dist/components/Dropzone/DropzoneDrag.d.ts +5 -0
  100. package/dist/components/Dropzone/DropzoneDrag.js +11 -0
  101. package/dist/components/Dropzone/DropzoneFile.d.ts +9 -0
  102. package/dist/components/Dropzone/DropzoneFile.js +30 -0
  103. package/dist/components/Dropzone/DropzoneImport.d.ts +5 -0
  104. package/dist/components/Dropzone/DropzoneImport.js +28 -0
  105. package/dist/components/Dropzone/index.d.ts +3 -0
  106. package/dist/components/EmptyScreen/EmptyScreen.d.ts +31 -0
  107. package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
  108. package/dist/components/EmptyScreen/index.d.ts +2 -0
  109. package/dist/components/Form/FormContext.d.ts +6 -0
  110. package/dist/components/Form/FormContext.js +11 -0
  111. package/dist/components/Form/FormControl.d.ts +42 -0
  112. package/dist/components/Form/FormControl.js +32 -0
  113. package/dist/components/Form/FormText.d.ts +8 -0
  114. package/dist/components/Form/FormText.js +17 -0
  115. package/dist/components/Form/index.d.ts +3 -0
  116. package/dist/components/Grid/Grid.d.ts +56 -0
  117. package/dist/components/Grid/Grid.js +32 -0
  118. package/dist/components/Grid/index.d.ts +1 -0
  119. package/dist/components/Heading/Heading.d.ts +27 -0
  120. package/dist/components/Heading/Heading.js +16 -0
  121. package/dist/components/Heading/index.d.ts +2 -0
  122. package/dist/components/Image/Image.d.ts +28 -0
  123. package/dist/components/Image/Image.js +41 -0
  124. package/dist/components/Image/index.d.ts +2 -0
  125. package/dist/components/Input/Input.d.ts +33 -0
  126. package/dist/components/Input/Input.js +31 -0
  127. package/dist/components/Input/index.d.ts +2 -0
  128. package/dist/components/Label/Label.d.ts +26 -0
  129. package/dist/components/Label/Label.js +37 -0
  130. package/dist/components/Label/index.d.ts +2 -0
  131. package/dist/components/Layout/Layout.d.ts +12 -0
  132. package/dist/components/Layout/Layout.js +44 -0
  133. package/dist/components/Layout/components/Header.d.ts +9 -0
  134. package/dist/components/Layout/components/Header.js +189 -0
  135. package/dist/components/Layout/components/Help.d.ts +8 -0
  136. package/dist/components/Layout/components/Help.js +25 -0
  137. package/dist/components/Layout/components/Main.d.ts +16 -0
  138. package/dist/components/Layout/components/NavItem.d.ts +6 -0
  139. package/dist/components/Layout/components/NavItem.js +14 -0
  140. package/dist/components/Layout/components/NavLink.d.ts +24 -0
  141. package/dist/components/Layout/components/NavLink.js +19 -0
  142. package/dist/components/Layout/components/Navbar.d.ts +6 -0
  143. package/dist/components/Layout/components/Navbar.js +13 -0
  144. package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
  145. package/dist/components/Layout/components/NavbarNav.js +13 -0
  146. package/dist/components/Layout/components/SearchEngine.d.ts +5 -0
  147. package/dist/components/Layout/components/SearchEngine.js +33 -0
  148. package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
  149. package/dist/components/Layout/components/WidgetApps.js +23 -0
  150. package/dist/components/Layout/hooks/index.d.ts +2 -0
  151. package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
  152. package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
  153. package/dist/components/Layout/hooks/useHelp.js +85 -0
  154. package/dist/components/Layout/index.d.ts +1 -0
  155. package/dist/components/List/List.d.ts +23 -0
  156. package/dist/components/List/List.js +50 -0
  157. package/dist/components/List/index.d.ts +1 -0
  158. package/dist/components/Loading/Loading.d.ts +29 -0
  159. package/dist/components/Loading/Loading.js +27 -0
  160. package/dist/components/Loading/index.d.ts +2 -0
  161. package/dist/components/LoadingScreen/LoadingScreen.d.ts +6 -0
  162. package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
  163. package/dist/components/LoadingScreen/index.d.ts +1 -0
  164. package/dist/components/Logo/Logo.d.ts +7 -0
  165. package/dist/components/Logo/Logo.js +14 -0
  166. package/dist/components/Logo/index.d.ts +2 -0
  167. package/dist/components/Menu/components/Menu.d.ts +14 -0
  168. package/dist/components/Menu/components/Menu.js +27 -0
  169. package/dist/components/Menu/components/MenuButton.d.ts +5 -0
  170. package/dist/components/Menu/components/MenuButton.js +21 -0
  171. package/dist/components/Menu/components/MenuContext.d.ts +10 -0
  172. package/dist/components/Menu/components/MenuContext.js +12 -0
  173. package/dist/components/Menu/components/MenuItem.d.ts +4 -0
  174. package/dist/components/Menu/components/MenuItem.js +19 -0
  175. package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
  176. package/dist/components/Menu/hooks/useMenu.js +50 -0
  177. package/dist/components/Menu/index.d.ts +2 -0
  178. package/dist/components/Modal/Modal.d.ts +55 -0
  179. package/dist/components/Modal/Modal.js +72 -0
  180. package/dist/components/Modal/ModalBody.d.ts +19 -0
  181. package/dist/components/Modal/ModalBody.js +15 -0
  182. package/dist/components/Modal/ModalContext.d.ts +7 -0
  183. package/dist/components/Modal/ModalContext.js +15 -0
  184. package/dist/components/Modal/ModalFooter.d.ts +12 -0
  185. package/dist/components/Modal/ModalFooter.js +5 -0
  186. package/dist/components/Modal/ModalHeader.d.ts +19 -0
  187. package/dist/components/Modal/ModalHeader.js +27 -0
  188. package/dist/components/Modal/ModalSubtitle.d.ts +12 -0
  189. package/dist/components/Modal/ModalSubtitle.js +5 -0
  190. package/dist/components/Modal/index.d.ts +2 -0
  191. package/dist/components/Popover/Popover.d.ts +33 -0
  192. package/dist/components/Popover/Popover.js +51 -0
  193. package/dist/components/Popover/index.d.ts +1 -0
  194. package/dist/components/Radio/Radio.d.ts +25 -0
  195. package/dist/components/Radio/Radio.js +31 -0
  196. package/dist/components/Radio/index.d.ts +2 -0
  197. package/dist/components/SearchBar/SearchBar.d.ts +51 -0
  198. package/dist/components/SearchBar/SearchBar.js +36 -0
  199. package/dist/components/SearchBar/index.d.ts +2 -0
  200. package/dist/components/Select/Select.d.ts +39 -0
  201. package/dist/components/Select/Select.js +37 -0
  202. package/dist/components/Select/SelectTrigger.d.ts +8 -0
  203. package/dist/components/Select/SelectTrigger.js +6 -0
  204. package/dist/components/Select/index.d.ts +2 -0
  205. package/dist/components/Table/components/Table.d.ts +30 -0
  206. package/dist/components/Table/components/Table.js +19 -0
  207. package/dist/components/Table/components/TableTbody.d.ts +6 -0
  208. package/dist/components/Table/components/TableTbody.js +11 -0
  209. package/dist/components/Table/components/TableTd.d.ts +4 -0
  210. package/dist/components/Table/components/TableTd.js +11 -0
  211. package/dist/components/Table/components/TableTh.d.ts +4 -0
  212. package/dist/components/Table/components/TableTh.js +11 -0
  213. package/dist/components/Table/components/TableThead.d.ts +4 -0
  214. package/dist/components/Table/components/TableThead.js +11 -0
  215. package/dist/components/Table/components/TableTr.d.ts +4 -0
  216. package/dist/components/Table/components/TableTr.js +11 -0
  217. package/dist/components/Table/index.d.ts +2 -0
  218. package/dist/components/Tabs/components/Tabs.d.ts +42 -0
  219. package/dist/components/Tabs/components/Tabs.js +45 -0
  220. package/dist/components/Tabs/components/TabsItem.d.ts +26 -0
  221. package/dist/components/Tabs/components/TabsItem.js +26 -0
  222. package/dist/components/Tabs/components/TabsList.d.ts +6 -0
  223. package/dist/components/Tabs/components/TabsList.js +24 -0
  224. package/dist/components/Tabs/components/TabsPanel.d.ts +17 -0
  225. package/dist/components/Tabs/components/TabsPanel.js +14 -0
  226. package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
  227. package/dist/components/Tabs/context/TabsContext.js +12 -0
  228. package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
  229. package/dist/components/Tabs/hooks/useTabs.js +61 -0
  230. package/dist/components/Tabs/index.d.ts +2 -0
  231. package/dist/components/TextArea/TextArea.d.ts +33 -0
  232. package/dist/components/TextArea/TextArea.js +34 -0
  233. package/dist/components/TextArea/TextareaCounter.d.ts +4 -0
  234. package/dist/components/TextArea/TextareaCounter.js +8 -0
  235. package/dist/components/TextArea/index.d.ts +2 -0
  236. package/dist/components/Toolbar/Toolbar.d.ts +76 -0
  237. package/dist/components/Toolbar/Toolbar.js +78 -0
  238. package/dist/components/Toolbar/index.d.ts +1 -0
  239. package/dist/components/Tooltip/Tooltip.d.ts +22 -0
  240. package/dist/components/Tooltip/Tooltip.js +41 -0
  241. package/dist/components/Tooltip/index.d.ts +2 -0
  242. package/dist/components/Tree/components/DndTree.d.ts +3 -0
  243. package/dist/components/Tree/components/DndTree.js +61 -0
  244. package/dist/components/Tree/components/SortableTree.d.ts +9 -0
  245. package/dist/components/Tree/components/SortableTree.js +138 -0
  246. package/dist/components/Tree/components/Tree.d.ts +7 -0
  247. package/dist/components/Tree/components/Tree.js +86 -0
  248. package/dist/components/Tree/hooks/useTree.d.ts +31 -0
  249. package/dist/components/Tree/hooks/useTree.js +85 -0
  250. package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
  251. package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
  252. package/dist/components/Tree/index.d.ts +6 -0
  253. package/dist/components/Tree/types/index.d.ts +174 -0
  254. package/dist/components/Tree/utilities/tree-sortable.d.ts +30 -0
  255. package/dist/components/Tree/utilities/tree-sortable.js +160 -0
  256. package/dist/components/Tree/utilities/tree.d.ts +34 -0
  257. package/dist/components/Tree/utilities/tree.js +44 -0
  258. package/dist/components/TreeView/TreeNode.d.ts +48 -0
  259. package/dist/components/TreeView/TreeNode.js +69 -0
  260. package/dist/components/TreeView/TreeView.d.ts +56 -0
  261. package/dist/components/TreeView/TreeView.js +37 -0
  262. package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
  263. package/dist/components/TreeView/hooks/useTreeView.js +105 -0
  264. package/dist/components/TreeView/index.d.ts +5 -0
  265. package/dist/components/TreeView/utilities/index.d.ts +1 -0
  266. package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
  267. package/dist/components/TreeView/utilities/treeview.js +177 -0
  268. package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
  269. package/dist/components/VisuallyHidden/VisuallyHidden.js +8 -0
  270. package/dist/components/VisuallyHidden/index.d.ts +1 -0
  271. package/dist/components/index.d.ts +41 -0
  272. package/dist/editor.js +58 -0
  273. package/dist/hooks/index.d.ts +39 -0
  274. package/dist/hooks/useAvatar/index.d.ts +1 -0
  275. package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
  276. package/dist/hooks/useAvatar/useAvatar.js +30 -0
  277. package/dist/hooks/useBookmark/index.d.ts +1 -0
  278. package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
  279. package/dist/hooks/useBookmark/useBookmark.js +14 -0
  280. package/dist/hooks/useBreakpoint/index.d.ts +1 -0
  281. package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
  282. package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
  283. package/dist/hooks/useBrowserInfo/index.d.ts +1 -0
  284. package/dist/hooks/useBrowserInfo/useBrowserInfo.d.ts +9 -0
  285. package/dist/hooks/useBrowserInfo/useBrowserInfo.js +16 -0
  286. package/dist/hooks/useCantoo/index.d.ts +1 -0
  287. package/dist/hooks/useCantoo/useCantoo.d.ts +1 -0
  288. package/dist/hooks/useCantoo/useCantoo.js +18 -0
  289. package/dist/hooks/useCheckable/index.d.ts +1 -0
  290. package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
  291. package/dist/hooks/useCheckable/useCheckable.js +21 -0
  292. package/dist/hooks/useClickOutside/index.d.ts +1 -0
  293. package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -0
  294. package/dist/hooks/useClickOutside/useClickOutside.js +26 -0
  295. package/dist/hooks/useConf/index.d.ts +1 -0
  296. package/dist/hooks/useConf/useConf.d.ts +4 -0
  297. package/dist/hooks/useConf/useConf.js +13 -0
  298. package/dist/hooks/useConversation/index.d.ts +1 -0
  299. package/dist/hooks/useConversation/useConversation.d.ts +6 -0
  300. package/dist/hooks/useConversation/useConversation.js +43 -0
  301. package/dist/hooks/useCookiesConsent/index.d.ts +1 -0
  302. package/dist/hooks/useCookiesConsent/useCookiesConsent.d.ts +5 -0
  303. package/dist/hooks/useCookiesConsent/useCookiesConsent.js +29 -0
  304. package/dist/hooks/useDate/index.d.ts +2 -0
  305. package/dist/hooks/useDate/useDate.d.ts +14 -0
  306. package/dist/hooks/useDate/useDate.js +65 -0
  307. package/dist/hooks/useDebounce/index.d.ts +1 -0
  308. package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
  309. package/dist/hooks/useDebounce/useDebounce.js +15 -0
  310. package/dist/hooks/useDirectory/index.d.ts +1 -0
  311. package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
  312. package/dist/hooks/useDirectory/useDirectory.js +16 -0
  313. package/dist/hooks/useDropdown/index.d.ts +1 -0
  314. package/dist/hooks/useDropdown/useDropdown.d.ts +32 -0
  315. package/dist/hooks/useDropdown/useDropdown.js +158 -0
  316. package/dist/hooks/useDropzone/index.d.ts +1 -0
  317. package/dist/hooks/useDropzone/useDropzone.d.ts +34 -0
  318. package/dist/hooks/useDropzone/useDropzone.js +78 -0
  319. package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
  320. package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
  321. package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
  322. package/dist/hooks/useHasWorkflow/index.d.ts +1 -0
  323. package/dist/hooks/useHasWorkflow/useHasWorkflow.d.ts +1 -0
  324. package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
  325. package/dist/hooks/useHeader/index.d.ts +1 -0
  326. package/dist/hooks/useHeader/useHeader.d.ts +5 -0
  327. package/dist/hooks/useHeader/useHeader.js +46 -0
  328. package/dist/hooks/useHover/index.d.ts +1 -0
  329. package/dist/hooks/useHover/useHover.d.ts +2 -0
  330. package/dist/hooks/useHover/useHover.js +22 -0
  331. package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
  332. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
  333. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
  334. package/dist/hooks/useImage/index.d.ts +1 -0
  335. package/dist/hooks/useImage/useImage.d.ts +9 -0
  336. package/dist/hooks/useImage/useImage.js +18 -0
  337. package/dist/hooks/useIsAdml/index.d.ts +1 -0
  338. package/dist/hooks/useIsAdml/useIsAdml.d.ts +3 -0
  339. package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
  340. package/dist/hooks/useKeyPress/index.d.ts +1 -0
  341. package/dist/hooks/useKeyPress/useKeyPress.d.ts +1 -0
  342. package/dist/hooks/useKeyPress/useKeyPress.js +14 -0
  343. package/dist/hooks/useLibraryUrl/index.d.ts +1 -0
  344. package/dist/hooks/useLibraryUrl/useLibraryUrl.d.ts +7 -0
  345. package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
  346. package/dist/hooks/useMediaLibrary/index.d.ts +1 -0
  347. package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
  348. package/dist/hooks/useMediaLibrary/useMediaLibrary.js +58 -0
  349. package/dist/hooks/usePreferences/index.d.ts +1 -0
  350. package/dist/hooks/usePreferences/usePreferences.d.ts +4 -0
  351. package/dist/hooks/usePreferences/usePreferences.js +10 -0
  352. package/dist/hooks/useResource/index.d.ts +1 -0
  353. package/dist/hooks/useResource/useResource.d.ts +3 -0
  354. package/dist/hooks/useResource/useResource.js +25 -0
  355. package/dist/hooks/useResourceSearch/index.d.ts +1 -0
  356. package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
  357. package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
  358. package/dist/hooks/useScrollToTop/index.d.ts +1 -0
  359. package/dist/hooks/useScrollToTop/useScrollToTop.d.ts +1 -0
  360. package/dist/hooks/useScrollToTop/useScrollToTop.js +9 -0
  361. package/dist/hooks/useSession/index.d.ts +1 -0
  362. package/dist/hooks/useSession/useSession.d.ts +1 -0
  363. package/dist/hooks/useSession/useSession.js +11 -0
  364. package/dist/hooks/useThumbnail/index.d.ts +1 -0
  365. package/dist/hooks/useThumbnail/useThumbnail.d.ts +14 -0
  366. package/dist/hooks/useThumbnail/useThumbnail.js +29 -0
  367. package/dist/hooks/useTitle/index.d.ts +1 -0
  368. package/dist/hooks/useTitle/useTitle.d.ts +1 -0
  369. package/dist/hooks/useTitle/useTitle.js +10 -0
  370. package/dist/hooks/useToast/index.d.ts +1 -0
  371. package/dist/hooks/useToast/useToast.d.ts +17 -0
  372. package/dist/hooks/useToast/useToast.js +34 -0
  373. package/dist/hooks/useToggle/index.d.ts +1 -0
  374. package/dist/hooks/useToggle/useToggle.d.ts +1 -0
  375. package/dist/hooks/useToggle/useToggle.js +10 -0
  376. package/dist/hooks/useTrapFocus/index.d.ts +1 -0
  377. package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +1 -0
  378. package/dist/hooks/useTrapFocus/useTrapFocus.js +16 -0
  379. package/dist/hooks/useTrashedResource/index.d.ts +1 -0
  380. package/dist/hooks/useTrashedResource/useTrashedResource.d.ts +6 -0
  381. package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
  382. package/dist/hooks/useUpload/index.d.ts +1 -0
  383. package/dist/hooks/useUpload/useUpload.d.ts +18 -0
  384. package/dist/hooks/useUpload/useUpload.js +106 -0
  385. package/dist/hooks/useUploadFiles/index.d.ts +1 -0
  386. package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
  387. package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
  388. package/dist/hooks/useUser/index.d.ts +1 -0
  389. package/dist/hooks/useUser/useUser.d.ts +7 -0
  390. package/dist/hooks/useUser/useUser.js +22 -0
  391. package/dist/hooks/useWorkspaceFile/index.d.ts +1 -0
  392. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
  393. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
  394. package/dist/hooks/useWorkspaceSearch/index.d.ts +1 -0
  395. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
  396. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
  397. package/dist/hooks/useXitiTrackPageLoad/index.d.ts +1 -0
  398. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +4 -0
  399. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
  400. package/dist/hooks/useZendeskGuide/index.d.ts +1 -0
  401. package/dist/hooks/useZendeskGuide/useZendeskGuide.d.ts +2 -0
  402. package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
  403. package/dist/icons-apps.js +232 -0
  404. package/dist/icons-audience.js +28 -0
  405. package/dist/icons-nav.js +28 -0
  406. package/dist/icons.js +300 -0
  407. package/dist/index.d.ts +5 -0
  408. package/dist/index.js +236 -0
  409. package/dist/modals.js +18 -0
  410. package/dist/modules/audience/ReactionChoice.d.ts +11 -0
  411. package/dist/modules/audience/ReactionChoice.js +33 -0
  412. package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
  413. package/dist/modules/audience/ReactionModal.Card.js +33 -0
  414. package/dist/modules/audience/ReactionModal.d.ts +20 -0
  415. package/dist/modules/audience/ReactionModal.js +72 -0
  416. package/dist/modules/audience/ReactionSummary.d.ts +10 -0
  417. package/dist/modules/audience/ReactionSummary.js +27 -0
  418. package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
  419. package/dist/modules/audience/ViewsByProfileCard.js +40 -0
  420. package/dist/modules/audience/ViewsCounter.d.ts +10 -0
  421. package/dist/modules/audience/ViewsCounter.js +18 -0
  422. package/dist/modules/audience/ViewsModal.d.ts +11 -0
  423. package/dist/modules/audience/ViewsModal.js +41 -0
  424. package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
  425. package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
  426. package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
  427. package/dist/modules/audience/hooks/useReactions.js +35 -0
  428. package/dist/modules/audience/hooks/useViews.d.ts +11 -0
  429. package/dist/modules/audience/index.d.ts +12 -0
  430. package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
  431. package/dist/modules/comments/components/BadgeProfile.js +18 -0
  432. package/dist/modules/comments/components/Comment.d.ts +7 -0
  433. package/dist/modules/comments/components/Comment.js +72 -0
  434. package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
  435. package/dist/modules/comments/components/CommentAvatar.js +17 -0
  436. package/dist/modules/comments/components/CommentDate.d.ts +4 -0
  437. package/dist/modules/comments/components/CommentDate.js +27 -0
  438. package/dist/modules/comments/components/CommentForm.d.ts +3 -0
  439. package/dist/modules/comments/components/CommentForm.js +37 -0
  440. package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
  441. package/dist/modules/comments/components/CommentHeader.js +8 -0
  442. package/dist/modules/comments/components/CommentList.d.ts +1 -0
  443. package/dist/modules/comments/components/CommentList.js +22 -0
  444. package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
  445. package/dist/modules/comments/components/CommentTitle.js +7 -0
  446. package/dist/modules/comments/components/TextCounter.d.ts +4 -0
  447. package/dist/modules/comments/components/TextCounter.js +8 -0
  448. package/dist/modules/comments/constants.d.ts +20 -0
  449. package/dist/modules/comments/constants.js +8 -0
  450. package/dist/modules/comments/context/Context.d.ts +16 -0
  451. package/dist/modules/comments/context/Context.js +5 -0
  452. package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
  453. package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
  454. package/dist/modules/comments/hooks/useComments.d.ts +29 -0
  455. package/dist/modules/comments/hooks/useComments.js +66 -0
  456. package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
  457. package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
  458. package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
  459. package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
  460. package/dist/modules/comments/index.d.ts +1 -0
  461. package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
  462. package/dist/modules/comments/provider/CommentProvider.js +85 -0
  463. package/dist/modules/comments/types.d.ts +102 -0
  464. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
  465. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
  466. package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
  467. package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
  468. package/dist/modules/editor/components/Editor/Editor.js +82 -0
  469. package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
  470. package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
  471. package/dist/modules/editor/components/Editor/index.d.ts +2 -0
  472. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
  473. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
  474. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
  475. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
  476. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
  477. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
  478. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
  479. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
  480. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
  481. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
  482. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
  483. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
  484. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
  485. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
  486. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
  487. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
  488. package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
  489. package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
  490. package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
  491. package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
  492. package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
  493. package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
  494. package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
  495. package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
  496. package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
  497. package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
  498. package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
  499. package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
  500. package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
  501. package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
  502. package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
  503. package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
  504. package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
  505. package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
  506. package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
  507. package/dist/modules/editor/components/Renderer/MediaRenderer.js +70 -0
  508. package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
  509. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
  510. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
  511. package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
  512. package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
  513. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
  514. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
  515. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
  516. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
  517. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
  518. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
  519. package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
  520. package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
  521. package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
  522. package/dist/modules/editor/components/index.d.ts +6 -0
  523. package/dist/modules/editor/hooks/index.d.ts +12 -0
  524. package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
  525. package/dist/modules/editor/hooks/useActionOptions.js +86 -0
  526. package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
  527. package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
  528. package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
  529. package/dist/modules/editor/hooks/useEditorContext.js +12 -0
  530. package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
  531. package/dist/modules/editor/hooks/useImageModal.js +46 -0
  532. package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
  533. package/dist/modules/editor/hooks/useImageSelection.js +46 -0
  534. package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
  535. package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
  536. package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
  537. package/dist/modules/editor/hooks/useMathsModal.js +17 -0
  538. package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
  539. package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
  540. package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
  541. package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
  542. package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
  543. package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
  544. package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
  545. package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
  546. package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
  547. package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
  548. package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
  549. package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
  550. package/dist/modules/editor/index.d.ts +3 -0
  551. package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
  552. package/dist/modules/editor/utilities/has-extension.js +4 -0
  553. package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
  554. package/dist/modules/editor/utilities/has-mark.js +4 -0
  555. package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
  556. package/dist/modules/editor/utilities/has-text-style.js +5 -0
  557. package/dist/modules/icons/components/IconAdd.d.ts +7 -0
  558. package/dist/modules/icons/components/IconAdd.js +12 -0
  559. package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
  560. package/dist/modules/icons/components/IconAddUser.js +12 -0
  561. package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
  562. package/dist/modules/icons/components/IconAlertCircle.js +13 -0
  563. package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
  564. package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
  565. package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
  566. package/dist/modules/icons/components/IconAlignCenter.js +12 -0
  567. package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
  568. package/dist/modules/icons/components/IconAlignJustify.js +12 -0
  569. package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
  570. package/dist/modules/icons/components/IconAlignLeft.js +12 -0
  571. package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
  572. package/dist/modules/icons/components/IconAlignRight.js +12 -0
  573. package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
  574. package/dist/modules/icons/components/IconAnswer.js +13 -0
  575. package/dist/modules/icons/components/IconApplications.d.ts +7 -0
  576. package/dist/modules/icons/components/IconApplications.js +12 -0
  577. package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
  578. package/dist/modules/icons/components/IconArrowDown.js +13 -0
  579. package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
  580. package/dist/modules/icons/components/IconArrowLeft.js +13 -0
  581. package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
  582. package/dist/modules/icons/components/IconArrowRight.js +13 -0
  583. package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
  584. package/dist/modules/icons/components/IconArrowUp.js +13 -0
  585. package/dist/modules/icons/components/IconBlock.d.ts +7 -0
  586. package/dist/modules/icons/components/IconBlock.js +12 -0
  587. package/dist/modules/icons/components/IconBlur.d.ts +7 -0
  588. package/dist/modules/icons/components/IconBlur.js +13 -0
  589. package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
  590. package/dist/modules/icons/components/IconBookmark.js +12 -0
  591. package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
  592. package/dist/modules/icons/components/IconBulletList.js +16 -0
  593. package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
  594. package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
  595. package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
  596. package/dist/modules/icons/components/IconCalendar.js +12 -0
  597. package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
  598. package/dist/modules/icons/components/IconCalendarLight.js +12 -0
  599. package/dist/modules/icons/components/IconCamera.d.ts +7 -0
  600. package/dist/modules/icons/components/IconCamera.js +13 -0
  601. package/dist/modules/icons/components/IconCenter.d.ts +7 -0
  602. package/dist/modules/icons/components/IconCenter.js +12 -0
  603. package/dist/modules/icons/components/IconCheck.d.ts +7 -0
  604. package/dist/modules/icons/components/IconCheck.js +12 -0
  605. package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
  606. package/dist/modules/icons/components/IconChecklist.js +13 -0
  607. package/dist/modules/icons/components/IconClock.d.ts +7 -0
  608. package/dist/modules/icons/components/IconClock.js +12 -0
  609. package/dist/modules/icons/components/IconClose.d.ts +7 -0
  610. package/dist/modules/icons/components/IconClose.js +13 -0
  611. package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
  612. package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
  613. package/dist/modules/icons/components/IconCode.d.ts +7 -0
  614. package/dist/modules/icons/components/IconCode.js +12 -0
  615. package/dist/modules/icons/components/IconCopy.d.ts +7 -0
  616. package/dist/modules/icons/components/IconCopy.js +12 -0
  617. package/dist/modules/icons/components/IconCrop.d.ts +7 -0
  618. package/dist/modules/icons/components/IconCrop.js +13 -0
  619. package/dist/modules/icons/components/IconCut.d.ts +7 -0
  620. package/dist/modules/icons/components/IconCut.js +13 -0
  621. package/dist/modules/icons/components/IconDelete.d.ts +7 -0
  622. package/dist/modules/icons/components/IconDelete.js +12 -0
  623. package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
  624. package/dist/modules/icons/components/IconDeleteColor.js +13 -0
  625. package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
  626. package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
  627. package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
  628. package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
  629. package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
  630. package/dist/modules/icons/components/IconDeleteRow.js +12 -0
  631. package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
  632. package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
  633. package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
  634. package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
  635. package/dist/modules/icons/components/IconDownload.d.ts +7 -0
  636. package/dist/modules/icons/components/IconDownload.js +17 -0
  637. package/dist/modules/icons/components/IconEdit.d.ts +7 -0
  638. package/dist/modules/icons/components/IconEdit.js +13 -0
  639. package/dist/modules/icons/components/IconError.d.ts +7 -0
  640. package/dist/modules/icons/components/IconError.js +12 -0
  641. package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
  642. package/dist/modules/icons/components/IconExternalLink.js +13 -0
  643. package/dist/modules/icons/components/IconFiles.d.ts +7 -0
  644. package/dist/modules/icons/components/IconFiles.js +12 -0
  645. package/dist/modules/icons/components/IconFilter.d.ts +7 -0
  646. package/dist/modules/icons/components/IconFilter.js +12 -0
  647. package/dist/modules/icons/components/IconFlag.d.ts +7 -0
  648. package/dist/modules/icons/components/IconFlag.js +12 -0
  649. package/dist/modules/icons/components/IconFolder.d.ts +7 -0
  650. package/dist/modules/icons/components/IconFolder.js +12 -0
  651. package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
  652. package/dist/modules/icons/components/IconFolderMove.js +17 -0
  653. package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
  654. package/dist/modules/icons/components/IconForgoing.js +12 -0
  655. package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
  656. package/dist/modules/icons/components/IconFullScreen.js +12 -0
  657. package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
  658. package/dist/modules/icons/components/IconGlobe.js +12 -0
  659. package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
  660. package/dist/modules/icons/components/IconHeadphone.js +12 -0
  661. package/dist/modules/icons/components/IconHide.d.ts +7 -0
  662. package/dist/modules/icons/components/IconHide.js +13 -0
  663. package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
  664. package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
  665. package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
  666. package/dist/modules/icons/components/IconHighlightRow.js +12 -0
  667. package/dist/modules/icons/components/IconHome.d.ts +7 -0
  668. package/dist/modules/icons/components/IconHome.js +12 -0
  669. package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
  670. package/dist/modules/icons/components/IconHourglass.js +12 -0
  671. package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
  672. package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
  673. package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
  674. package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
  675. package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
  676. package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
  677. package/dist/modules/icons/components/IconInbox.d.ts +7 -0
  678. package/dist/modules/icons/components/IconInbox.js +12 -0
  679. package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
  680. package/dist/modules/icons/components/IconInfoCircle.js +13 -0
  681. package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
  682. package/dist/modules/icons/components/IconLandscape.js +12 -0
  683. package/dist/modules/icons/components/IconLink.d.ts +7 -0
  684. package/dist/modules/icons/components/IconLink.js +16 -0
  685. package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
  686. package/dist/modules/icons/components/IconListOrder.js +12 -0
  687. package/dist/modules/icons/components/IconLoader.d.ts +7 -0
  688. package/dist/modules/icons/components/IconLoader.js +12 -0
  689. package/dist/modules/icons/components/IconLock.d.ts +7 -0
  690. package/dist/modules/icons/components/IconLock.js +12 -0
  691. package/dist/modules/icons/components/IconMail.d.ts +7 -0
  692. package/dist/modules/icons/components/IconMail.js +13 -0
  693. package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
  694. package/dist/modules/icons/components/IconMergeCells.js +13 -0
  695. package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
  696. package/dist/modules/icons/components/IconMessageInfo.js +13 -0
  697. package/dist/modules/icons/components/IconMic.d.ts +7 -0
  698. package/dist/modules/icons/components/IconMic.js +12 -0
  699. package/dist/modules/icons/components/IconMinus.d.ts +7 -0
  700. package/dist/modules/icons/components/IconMinus.js +12 -0
  701. package/dist/modules/icons/components/IconMove.d.ts +7 -0
  702. package/dist/modules/icons/components/IconMove.js +14 -0
  703. package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
  704. package/dist/modules/icons/components/IconNoColors.js +12 -0
  705. package/dist/modules/icons/components/IconOptions.d.ts +7 -0
  706. package/dist/modules/icons/components/IconOptions.js +14 -0
  707. package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
  708. package/dist/modules/icons/components/IconOrderedList.js +16 -0
  709. package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
  710. package/dist/modules/icons/components/IconPaperclip.js +12 -0
  711. package/dist/modules/icons/components/IconPause.d.ts +7 -0
  712. package/dist/modules/icons/components/IconPause.js +12 -0
  713. package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
  714. package/dist/modules/icons/components/IconPinOff.js +12 -0
  715. package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
  716. package/dist/modules/icons/components/IconPinOn.js +12 -0
  717. package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
  718. package/dist/modules/icons/components/IconPlaceholder.js +16 -0
  719. package/dist/modules/icons/components/IconPlay.d.ts +7 -0
  720. package/dist/modules/icons/components/IconPlay.js +12 -0
  721. package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
  722. package/dist/modules/icons/components/IconPlayFilled.js +12 -0
  723. package/dist/modules/icons/components/IconPlus.d.ts +7 -0
  724. package/dist/modules/icons/components/IconPlus.js +12 -0
  725. package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
  726. package/dist/modules/icons/components/IconPointerDefault.js +12 -0
  727. package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
  728. package/dist/modules/icons/components/IconPointerHand.js +12 -0
  729. package/dist/modules/icons/components/IconPrint.d.ts +7 -0
  730. package/dist/modules/icons/components/IconPrint.js +12 -0
  731. package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
  732. package/dist/modules/icons/components/IconQuestion.js +14 -0
  733. package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
  734. package/dist/modules/icons/components/IconRafterDown.js +12 -0
  735. package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
  736. package/dist/modules/icons/components/IconRafterLeft.js +12 -0
  737. package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
  738. package/dist/modules/icons/components/IconRafterRight.js +12 -0
  739. package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
  740. package/dist/modules/icons/components/IconRafterUp.js +12 -0
  741. package/dist/modules/icons/components/IconReaction.d.ts +7 -0
  742. package/dist/modules/icons/components/IconReaction.js +12 -0
  743. package/dist/modules/icons/components/IconRecord.d.ts +7 -0
  744. package/dist/modules/icons/components/IconRecord.js +12 -0
  745. package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
  746. package/dist/modules/icons/components/IconRecordPause.js +12 -0
  747. package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
  748. package/dist/modules/icons/components/IconRecordStop.js +12 -0
  749. package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
  750. package/dist/modules/icons/components/IconRecordVideo.js +12 -0
  751. package/dist/modules/icons/components/IconRedo.d.ts +7 -0
  752. package/dist/modules/icons/components/IconRedo.js +13 -0
  753. package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
  754. package/dist/modules/icons/components/IconRefresh.js +13 -0
  755. package/dist/modules/icons/components/IconReset.d.ts +7 -0
  756. package/dist/modules/icons/components/IconReset.js +12 -0
  757. package/dist/modules/icons/components/IconRestart.d.ts +7 -0
  758. package/dist/modules/icons/components/IconRestart.js +12 -0
  759. package/dist/modules/icons/components/IconRestore.d.ts +7 -0
  760. package/dist/modules/icons/components/IconRestore.js +12 -0
  761. package/dist/modules/icons/components/IconSave.d.ts +7 -0
  762. package/dist/modules/icons/components/IconSave.js +12 -0
  763. package/dist/modules/icons/components/IconSearch.d.ts +7 -0
  764. package/dist/modules/icons/components/IconSearch.js +12 -0
  765. package/dist/modules/icons/components/IconSee.d.ts +7 -0
  766. package/dist/modules/icons/components/IconSee.js +13 -0
  767. package/dist/modules/icons/components/IconSend.d.ts +7 -0
  768. package/dist/modules/icons/components/IconSend.js +12 -0
  769. package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
  770. package/dist/modules/icons/components/IconSetBackground.js +17 -0
  771. package/dist/modules/icons/components/IconSettings.d.ts +7 -0
  772. package/dist/modules/icons/components/IconSettings.js +16 -0
  773. package/dist/modules/icons/components/IconShare.d.ts +7 -0
  774. package/dist/modules/icons/components/IconShare.js +12 -0
  775. package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
  776. package/dist/modules/icons/components/IconSmartphone.js +13 -0
  777. package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
  778. package/dist/modules/icons/components/IconSmiley.js +13 -0
  779. package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
  780. package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
  781. package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
  782. package/dist/modules/icons/components/IconSortDescending.js +13 -0
  783. package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
  784. package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
  785. package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
  786. package/dist/modules/icons/components/IconSortTime.js +14 -0
  787. package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
  788. package/dist/modules/icons/components/IconSpeechToText.js +12 -0
  789. package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
  790. package/dist/modules/icons/components/IconSplitCells.js +13 -0
  791. package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
  792. package/dist/modules/icons/components/IconSquareRoot.js +12 -0
  793. package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
  794. package/dist/modules/icons/components/IconSubscript.js +12 -0
  795. package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
  796. package/dist/modules/icons/components/IconSuccessFill.js +12 -0
  797. package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
  798. package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
  799. package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
  800. package/dist/modules/icons/components/IconSuperscript.js +12 -0
  801. package/dist/modules/icons/components/IconTable.d.ts +7 -0
  802. package/dist/modules/icons/components/IconTable.js +12 -0
  803. package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
  804. package/dist/modules/icons/components/IconTextBold.js +12 -0
  805. package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
  806. package/dist/modules/icons/components/IconTextColor.js +16 -0
  807. package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
  808. package/dist/modules/icons/components/IconTextHighlight.js +16 -0
  809. package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
  810. package/dist/modules/icons/components/IconTextItalic.js +12 -0
  811. package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
  812. package/dist/modules/icons/components/IconTextPage.js +12 -0
  813. package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
  814. package/dist/modules/icons/components/IconTextSize.js +12 -0
  815. package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
  816. package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
  817. package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
  818. package/dist/modules/icons/components/IconTextTypo.js +12 -0
  819. package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
  820. package/dist/modules/icons/components/IconTextUnderline.js +13 -0
  821. package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
  822. package/dist/modules/icons/components/IconTextVanilla.js +13 -0
  823. package/dist/modules/icons/components/IconTool.d.ts +7 -0
  824. package/dist/modules/icons/components/IconTool.js +12 -0
  825. package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
  826. package/dist/modules/icons/components/IconTrendingUp.js +16 -0
  827. package/dist/modules/icons/components/IconUndo.d.ts +7 -0
  828. package/dist/modules/icons/components/IconUndo.js +13 -0
  829. package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
  830. package/dist/modules/icons/components/IconUnlink.js +13 -0
  831. package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
  832. package/dist/modules/icons/components/IconUnlock.js +13 -0
  833. package/dist/modules/icons/components/IconUpload.d.ts +7 -0
  834. package/dist/modules/icons/components/IconUpload.js +18 -0
  835. package/dist/modules/icons/components/IconUser.d.ts +7 -0
  836. package/dist/modules/icons/components/IconUser.js +12 -0
  837. package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
  838. package/dist/modules/icons/components/IconUserSearch.js +13 -0
  839. package/dist/modules/icons/components/IconUsers.d.ts +7 -0
  840. package/dist/modules/icons/components/IconUsers.js +13 -0
  841. package/dist/modules/icons/components/IconVideo.d.ts +7 -0
  842. package/dist/modules/icons/components/IconVideo.js +12 -0
  843. package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
  844. package/dist/modules/icons/components/IconViewCalendar.js +12 -0
  845. package/dist/modules/icons/components/IconViewList.d.ts +7 -0
  846. package/dist/modules/icons/components/IconViewList.js +15 -0
  847. package/dist/modules/icons/components/IconWand.d.ts +7 -0
  848. package/dist/modules/icons/components/IconWand.js +12 -0
  849. package/dist/modules/icons/components/IconWrite.d.ts +7 -0
  850. package/dist/modules/icons/components/IconWrite.js +12 -0
  851. package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
  852. package/dist/modules/icons/components/IconZoomIn.js +12 -0
  853. package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
  854. package/dist/modules/icons/components/IconZoomOut.js +12 -0
  855. package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
  856. package/dist/modules/icons/components/apps/IconAccount.js +12 -0
  857. package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
  858. package/dist/modules/icons/components/apps/IconActualites.js +12 -0
  859. package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
  860. package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
  861. package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
  862. package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
  863. package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
  864. package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
  865. package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
  866. package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
  867. package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
  868. package/dist/modules/icons/components/apps/IconArchive.js +12 -0
  869. package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
  870. package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
  871. package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
  872. package/dist/modules/icons/components/apps/IconAssr.js +12 -0
  873. package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
  874. package/dist/modules/icons/components/apps/IconAward.js +12 -0
  875. package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
  876. package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
  877. package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
  878. package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
  879. package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
  880. package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
  881. package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
  882. package/dist/modules/icons/components/apps/IconBlog.js +12 -0
  883. package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
  884. package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
  885. package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
  886. package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
  887. package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
  888. package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
  889. package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
  890. package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
  891. package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
  892. package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
  893. package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
  894. package/dist/modules/icons/components/apps/IconCcn.js +12 -0
  895. package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
  896. package/dist/modules/icons/components/apps/IconCerise.js +12 -0
  897. package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
  898. package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
  899. package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
  900. package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
  901. package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
  902. package/dist/modules/icons/components/apps/IconCharte.js +12 -0
  903. package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
  904. package/dist/modules/icons/components/apps/IconChat.js +12 -0
  905. package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
  906. package/dist/modules/icons/components/apps/IconCidj.js +12 -0
  907. package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
  908. package/dist/modules/icons/components/apps/IconCns.js +12 -0
  909. package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
  910. package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
  911. package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
  912. package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
  913. package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
  914. package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
  915. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
  916. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
  917. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
  918. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
  919. package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
  920. package/dist/modules/icons/components/apps/IconConversation.js +12 -0
  921. package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
  922. package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
  923. package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
  924. package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
  925. package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
  926. package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
  927. package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
  928. package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
  929. package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
  930. package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
  931. package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
  932. package/dist/modules/icons/components/apps/IconElectron.js +12 -0
  933. package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
  934. package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
  935. package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
  936. package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
  937. package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
  938. package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
  939. package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
  940. package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
  941. package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
  942. package/dist/modules/icons/components/apps/IconForms.js +16 -0
  943. package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
  944. package/dist/modules/icons/components/apps/IconForum.js +12 -0
  945. package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
  946. package/dist/modules/icons/components/apps/IconGepi.js +12 -0
  947. package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
  948. package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
  949. package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
  950. package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
  951. package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
  952. package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
  953. package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
  954. package/dist/modules/icons/components/apps/IconKne.js +12 -0
  955. package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
  956. package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
  957. package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
  958. package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
  959. package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
  960. package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
  961. package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
  962. package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
  963. package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
  964. package/dist/modules/icons/components/apps/IconLsu.js +12 -0
  965. package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
  966. package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
  967. package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
  968. package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
  969. package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
  970. package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
  971. package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
  972. package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
  973. package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
  974. package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
  975. package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
  976. package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
  977. package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
  978. package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
  979. package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
  980. package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
  981. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
  982. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
  983. package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
  984. package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
  985. package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
  986. package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
  987. package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
  988. package/dist/modules/icons/components/apps/IconNote.js +12 -0
  989. package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
  990. package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
  991. package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
  992. package/dist/modules/icons/components/apps/IconNotes.js +12 -0
  993. package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
  994. package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
  995. package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
  996. package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
  997. package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
  998. package/dist/modules/icons/components/apps/IconPad.js +12 -0
  999. package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
  1000. package/dist/modules/icons/components/apps/IconPages.js +12 -0
  1001. package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
  1002. package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
  1003. package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
  1004. package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
  1005. package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
  1006. package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
  1007. package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
  1008. package/dist/modules/icons/components/apps/IconParcours.js +12 -0
  1009. package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
  1010. package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
  1011. package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
  1012. package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
  1013. package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
  1014. package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
  1015. package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
  1016. package/dist/modules/icons/components/apps/IconPoll.js +12 -0
  1017. package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
  1018. package/dist/modules/icons/components/apps/IconPresences.js +16 -0
  1019. package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
  1020. package/dist/modules/icons/components/apps/IconProeps.js +12 -0
  1021. package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
  1022. package/dist/modules/icons/components/apps/IconPronote.js +12 -0
  1023. package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
  1024. package/dist/modules/icons/components/apps/IconPublic.js +12 -0
  1025. package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
  1026. package/dist/modules/icons/components/apps/IconQwant.js +12 -0
  1027. package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
  1028. package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
  1029. package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
  1030. package/dist/modules/icons/components/apps/IconRack.js +12 -0
  1031. package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
  1032. package/dist/modules/icons/components/apps/IconRbs.js +12 -0
  1033. package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
  1034. package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
  1035. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
  1036. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
  1037. package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
  1038. package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
  1039. package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
  1040. package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
  1041. package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
  1042. package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
  1043. package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
  1044. package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
  1045. package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
  1046. package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
  1047. package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
  1048. package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
  1049. package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
  1050. package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
  1051. package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
  1052. package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
  1053. package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
  1054. package/dist/modules/icons/components/apps/IconStats.js +12 -0
  1055. package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
  1056. package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
  1057. package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
  1058. package/dist/modules/icons/components/apps/IconSupport.js +12 -0
  1059. package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
  1060. package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
  1061. package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
  1062. package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
  1063. package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
  1064. package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
  1065. package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
  1066. package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
  1067. package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
  1068. package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
  1069. package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
  1070. package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
  1071. package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
  1072. package/dist/modules/icons/components/apps/IconVideo.js +12 -0
  1073. package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
  1074. package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
  1075. package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
  1076. package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
  1077. package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
  1078. package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
  1079. package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
  1080. package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
  1081. package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
  1082. package/dist/modules/icons/components/apps/IconWiki.js +13 -0
  1083. package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
  1084. package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
  1085. package/dist/modules/icons/components/apps/index.d.ts +115 -0
  1086. package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
  1087. package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
  1088. package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
  1089. package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
  1090. package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
  1091. package/dist/modules/icons/components/audience/IconGreat.js +16 -0
  1092. package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
  1093. package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
  1094. package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
  1095. package/dist/modules/icons/components/audience/IconGuest.js +12 -0
  1096. package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
  1097. package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
  1098. package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
  1099. package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
  1100. package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
  1101. package/dist/modules/icons/components/audience/IconParent.js +12 -0
  1102. package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
  1103. package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
  1104. package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
  1105. package/dist/modules/icons/components/audience/IconStudent.js +20 -0
  1106. package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
  1107. package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
  1108. package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
  1109. package/dist/modules/icons/components/audience/IconThanks.js +18 -0
  1110. package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
  1111. package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
  1112. package/dist/modules/icons/components/audience/index.d.ts +13 -0
  1113. package/dist/modules/icons/components/index.d.ts +149 -0
  1114. package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
  1115. package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
  1116. package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
  1117. package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
  1118. package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
  1119. package/dist/modules/icons/components/nav/IconHome.js +12 -0
  1120. package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
  1121. package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
  1122. package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
  1123. package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
  1124. package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
  1125. package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
  1126. package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
  1127. package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
  1128. package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
  1129. package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
  1130. package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
  1131. package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
  1132. package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
  1133. package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
  1134. package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
  1135. package/dist/modules/icons/components/nav/IconProfile.js +12 -0
  1136. package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
  1137. package/dist/modules/icons/components/nav/IconSearch.js +12 -0
  1138. package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
  1139. package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
  1140. package/dist/modules/icons/components/nav/index.d.ts +13 -0
  1141. package/dist/modules/modals/OnboardingModal/OnboardingModal.d.ts +42 -0
  1142. package/dist/modules/modals/OnboardingModal/OnboardingModal.js +58 -0
  1143. package/dist/modules/modals/OnboardingModal/index.d.ts +1 -0
  1144. package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
  1145. package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
  1146. package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
  1147. package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
  1148. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.d.ts +7 -0
  1149. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
  1150. package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
  1151. package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
  1152. package/dist/modules/modals/PublishModal/components/LangSelect.d.ts +5 -0
  1153. package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
  1154. package/dist/modules/modals/PublishModal/components/PublishModalFooter.d.ts +1 -0
  1155. package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
  1156. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.d.ts +7 -0
  1157. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
  1158. package/dist/modules/modals/PublishModal/components/ToastError.d.ts +5 -0
  1159. package/dist/modules/modals/PublishModal/components/ToastError.js +24 -0
  1160. package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
  1161. package/dist/modules/modals/PublishModal/components/ToastSuccess.js +18 -0
  1162. package/dist/modules/modals/PublishModal/constants/ageOptions.d.ts +1 -0
  1163. package/dist/modules/modals/PublishModal/constants/ageOptions.js +4 -0
  1164. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.d.ts +4 -0
  1165. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.js +34 -0
  1166. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.d.ts +4 -0
  1167. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.js +43 -0
  1168. package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
  1169. package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
  1170. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.d.ts +4 -0
  1171. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.js +118 -0
  1172. package/dist/modules/modals/PublishModal/index.d.ts +1 -0
  1173. package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
  1174. package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
  1175. package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
  1176. package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
  1177. package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
  1178. package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
  1179. package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
  1180. package/dist/modules/modals/ResourceModal/hooks/useThumb.js +17 -0
  1181. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
  1182. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
  1183. package/dist/modules/modals/ResourceModal/index.d.ts +3 -0
  1184. package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +8 -0
  1185. package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
  1186. package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
  1187. package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
  1188. package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
  1189. package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
  1190. package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
  1191. package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
  1192. package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
  1193. package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
  1194. package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
  1195. package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
  1196. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
  1197. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
  1198. package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
  1199. package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
  1200. package/dist/modules/modals/ShareModal/index.d.ts +3 -0
  1201. package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
  1202. package/dist/modules/modals/ShareModal/utils/hasRight.js +4 -0
  1203. package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
  1204. package/dist/modules/modals/ShareModal/utils/showShareRightLine.js +4 -0
  1205. package/dist/modules/modals/index.d.ts +4 -0
  1206. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
  1207. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
  1208. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.d.ts +10 -0
  1209. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
  1210. package/dist/modules/multimedia/AudioRecorder/index.d.ts +1 -0
  1211. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
  1212. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
  1213. package/dist/modules/multimedia/Embed/Embed.d.ts +5 -0
  1214. package/dist/modules/multimedia/Embed/Embed.js +32 -0
  1215. package/dist/modules/multimedia/Embed/index.d.ts +2 -0
  1216. package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
  1217. package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
  1218. package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
  1219. package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
  1220. package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
  1221. package/dist/modules/multimedia/FileCard/index.d.ts +2 -0
  1222. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.d.ts +27 -0
  1223. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
  1224. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
  1225. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
  1226. package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
  1227. package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
  1228. package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
  1229. package/dist/modules/multimedia/ImageEditor/effects/crop.js +155 -0
  1230. package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
  1231. package/dist/modules/multimedia/ImageEditor/effects/misc.js +162 -0
  1232. package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
  1233. package/dist/modules/multimedia/ImageEditor/effects/resize.js +157 -0
  1234. package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
  1235. package/dist/modules/multimedia/ImageEditor/effects/rotate.js +33 -0
  1236. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
  1237. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.js +66 -0
  1238. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
  1239. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.js +76 -0
  1240. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
  1241. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.js +52 -0
  1242. package/dist/modules/multimedia/ImageEditor/index.d.ts +1 -0
  1243. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.d.ts +9 -0
  1244. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.js +13 -0
  1245. package/dist/modules/multimedia/ImageEditor/utilities/debounceAggregate.d.ts +10 -0
  1246. package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
  1247. package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
  1248. package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
  1249. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
  1250. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
  1251. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
  1252. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
  1253. package/dist/modules/multimedia/Linker/index.d.ts +4 -0
  1254. package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
  1255. package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
  1256. package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
  1257. package/dist/modules/multimedia/LinkerCard/index.d.ts +2 -0
  1258. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
  1259. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
  1260. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
  1261. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.js +12 -0
  1262. package/dist/modules/multimedia/MediaLibrary/index.d.ts +3 -0
  1263. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.d.ts +1 -0
  1264. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.js +19 -0
  1265. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
  1266. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
  1267. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.d.ts +1 -0
  1268. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.js +14 -0
  1269. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
  1270. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
  1271. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.d.ts +1 -0
  1272. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
  1273. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.d.ts +1 -0
  1274. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.js +22 -0
  1275. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.d.ts +1 -0
  1276. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
  1277. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.d.ts +1 -0
  1278. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
  1279. package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +10 -0
  1280. package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +21 -0
  1281. package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
  1282. package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
  1283. package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
  1284. package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
  1285. package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
  1286. package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
  1287. package/dist/modules/multimedia/UploadFiles/index.d.ts +2 -0
  1288. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
  1289. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
  1290. package/dist/modules/multimedia/VideoEmbed/index.d.ts +1 -0
  1291. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
  1292. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
  1293. package/dist/modules/multimedia/VideoRecorder/index.d.ts +1 -0
  1294. package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
  1295. package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
  1296. package/dist/modules/multimedia/Workspace/index.d.ts +2 -0
  1297. package/dist/modules/multimedia/index.d.ts +7 -0
  1298. package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
  1299. package/dist/modules/widgets/BookmarkedApps/index.d.ts +2 -0
  1300. package/dist/modules/widgets/Widget/Widget.d.ts +17 -0
  1301. package/dist/modules/widgets/Widget/index.d.ts +2 -0
  1302. package/dist/modules/widgets/index.d.ts +2 -0
  1303. package/dist/multimedia.js +18 -0
  1304. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
  1305. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
  1306. package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +9 -0
  1307. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
  1308. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
  1309. package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
  1310. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
  1311. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
  1312. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +2 -0
  1313. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
  1314. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
  1315. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
  1316. package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
  1317. package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
  1318. package/dist/providers/MockedDataProvider/index.d.ts +1 -0
  1319. package/dist/providers/index.d.ts +6 -0
  1320. package/dist/types/index.d.ts +3 -0
  1321. package/dist/types/size.d.ts +1 -0
  1322. package/dist/types/status.d.ts +1 -0
  1323. package/dist/types/treedata.d.ts +30 -0
  1324. package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
  1325. package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
  1326. package/dist/utilities/check-user-rights/index.d.ts +1 -0
  1327. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.d.ts +6 -0
  1328. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.js +49 -0
  1329. package/dist/utilities/emptyscreen-mapping/index.d.ts +1 -0
  1330. package/dist/utilities/index.d.ts +3 -0
  1331. package/dist/utilities/refs/index.d.ts +1 -0
  1332. package/dist/utilities/refs/ref.d.ts +5 -0
  1333. package/dist/utilities/refs/ref.js +14 -0
  1334. package/package.json +177 -0
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconUserSearch: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconUserSearch;
@@ -0,0 +1,13 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconUserSearch = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M11 3a8 8 0 1 0 0 16 8 8 0 0 0 0-16M1 11C1 5.477 5.477 1 11 1s10 4.477 10 10-4.477 10-10 10S1 16.523 1 11", clipRule: "evenodd" }),
9
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M17.293 17.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1-1.414 1.414l-4-4a1 1 0 0 1 0-1.414M5.932 14.876C6.552 14.05 7.464 13.5 8.5 13.5h5c1.036 0 1.948.55 2.568 1.376a1 1 0 0 1-1.6 1.2c-.318-.424-.678-.576-.968-.576h-5c-.29 0-.65.152-.968.576a1 1 0 1 1-1.6-1.2M11 6.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0", clipRule: "evenodd" })
10
+ ] });
11
+ export {
12
+ SvgIconUserSearch as default
13
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconUsers: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconUsers;
@@ -0,0 +1,13 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconUsers = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("g", { fill: "currentColor", fillRule: "evenodd", clipPath: "url(#icon-users_svg__a)", clipRule: "evenodd", children: /* @__PURE__ */ jsx("path", { d: "M19.055 12.803a1 1 0 0 1 1.272-.618c1.128.39 2.061 1.247 2.7 2.351.64 1.106.972 2.435.973 3.782V21a1 1 0 1 1-2 0v-2.681c0-1.03-.258-2.009-.704-2.782-.448-.773-1.034-1.258-1.623-1.462a1 1 0 0 1-.618-1.272M15.187 1.384a1 1 0 0 1 1.036-.962 5.129 5.129 0 0 1 2.11 9.71 1 1 0 1 1-.896-1.788 3.129 3.129 0 0 0-1.288-5.924 1 1 0 0 1-.962-1.036M1.505 15.694C2.481 14.622 3.825 14 5.25 14h8.5c1.424 0 2.769.622 3.744 1.694.974 1.068 1.506 2.498 1.506 3.973V22a1 1 0 1 1-2 0v-2.333c0-1.001-.363-1.945-.984-2.627-.618-.679-1.436-1.04-2.266-1.04h-8.5c-.83 0-1.648.361-2.266 1.04-.621.682-.984 1.626-.984 2.627V22a1 1 0 1 1-2 0v-2.333c0-1.475.533-2.905 1.505-3.974M9.5 3a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M4 6.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0" }) }),
9
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-users_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
10
+ ] });
11
+ export {
12
+ SvgIconUsers as default
13
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconVideo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconVideo;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconVideo = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M4 4.962C4 4.376 4.435 4 4.853 4H6.5v2H4zM4 8h2.5v3H4zm-2 4V4.962C2 3.381 3.224 2 4.853 2h13.294C19.776 2 21 3.38 21 4.962v14.076C21 20.619 19.776 22 18.147 22H4.853C3.224 22 2 20.62 2 19.038zm17-6V4.962c0-.586-.435-.962-.853-.962H16.5v2zm0 2h-2.5v3H19zm-2.5 5H19v3h-2.5zm0 5H19v1.038c0 .586-.435.962-.853.962H16.5zm-2-7V4h-6v7zm-6 2h6v7h-6zm-2 5v2H4.853C4.435 20 4 19.624 4 19.038V18zm0-2v-3H4v3z", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconVideo as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconViewCalendar: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconViewCalendar;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconViewCalendar = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M4 5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v3H4zm9 5h7v4h-7zm-2 4v-4H4v4zm-7 2h7v4H5a1 1 0 0 1-1-1zm-2-1V5a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3zm18 1v3a1 1 0 0 1-1 1h-6v-4z", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconViewCalendar as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconViewList: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconViewList;
@@ -0,0 +1,15 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconViewList = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("circle", { cx: 3.5, cy: 5, r: 1.5, fill: "currentColor" }),
9
+ /* @__PURE__ */ jsx("circle", { cx: 3.5, cy: 12, r: 1.5, fill: "currentColor" }),
10
+ /* @__PURE__ */ jsx("circle", { cx: 3.5, cy: 19, r: 1.5, fill: "currentColor" }),
11
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M7 5a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1M7 12a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1M7 19a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1", clipRule: "evenodd" })
12
+ ] });
13
+ export {
14
+ SvgIconViewList as default
15
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWand: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWand;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWand = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M10 0a1 1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 1 1 0 2 1 1 0 0 0-1 1 1 1 0 1 1-2 0 1 1 0 0 0-1-1 1 1 0 0 1 0-2 1 1 0 0 0 1-1 1 1 0 0 1 1-1m9.914 2a2 2 0 0 0-2.828 0L1 18.086a2 2 0 0 0 0 2.828L3.086 23a2 2 0 0 0 2.828 0L22 6.914a2 2 0 0 0 0-2.828zm-3.75 3.75L18.5 3.414 20.586 5.5 18.25 7.836zM14.75 7.164 2.414 19.5 4.5 21.586 16.836 9.25zM21 13a1 1 0 1 0-2 0 1 1 0 0 1-1 1 1 1 0 1 0 0 2 1 1 0 0 1 1 1 1 1 0 1 0 2 0 1 1 0 0 1 1-1 1 1 0 1 0 0-2 1 1 0 0 1-1-1", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconWand as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWrite: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWrite;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWrite = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M11 20a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2h-9a1 1 0 0 1-1-1M18 3.879c-.297 0-.583.118-.793.328L4.903 16.511l-.529 2.115 2.115-.529L18.793 5.793A1.123 1.123 0 0 0 18 3.879m-2.207-1.086a3.121 3.121 0 0 1 4.414 4.414l-12.5 12.5a1 1 0 0 1-.464.263l-4 1a1 1 0 0 1-1.213-1.213l1-4a1 1 0 0 1 .263-.464z", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconWrite as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconZoomIn: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconZoomIn;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconZoomIn = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M3.6 10.95a7.35 7.35 0 1 1 12.644 5.1 1 1 0 0 0-.195.194A7.35 7.35 0 0 1 3.6 10.95m13.249 7.384A9.4 9.4 0 0 1 10.95 20.4a9.45 9.45 0 1 1 9.45-9.45 9.4 9.4 0 0 1-2.066 5.899l3.858 3.858a1.05 1.05 0 0 1-1.485 1.485zM10.95 6.75c.58 0 1.05.47 1.05 1.05v2.1h2.1a1.05 1.05 0 0 1 0 2.1H12v2.1a1.05 1.05 0 1 1-2.1 0V12H7.8a1.05 1.05 0 1 1 0-2.1h2.1V7.8c0-.58.47-1.05 1.05-1.05", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconZoomIn as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconZoomOut: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconZoomOut;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconZoomOut = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M10.95 3.6a7.35 7.35 0 1 0 5.1 12.644 1 1 0 0 1 .194-.195A7.35 7.35 0 0 0 10.95 3.6m0 16.8a9.4 9.4 0 0 0 5.899-2.066l3.858 3.858a1.05 1.05 0 1 0 1.485-1.485l-3.858-3.858A9.4 9.4 0 0 0 20.4 10.95a9.45 9.45 0 1 0-9.45 9.45M7.8 9.9a1.05 1.05 0 0 0 0 2.1h6.3a1.05 1.05 0 1 0 0-2.1z", clipRule: "evenodd" })
9
+ ] });
10
+ export {
11
+ SvgIconZoomOut as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAccount: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAccount;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAccount = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12.01 14.42c2.68 0 8.03 1.31 8.03 3.99v2.02H3.99V18.4c0-2.68 5.35-3.99 8.02-3.99zm0-2.02a4.02 4.02 0 0 1 0-8.02C14.21 4.38 16 6.2 16 8.4s-1.78 4-3.99 4" })
9
+ ] });
10
+ export {
11
+ SvgIconAccount as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconActualites: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconActualites;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconActualites = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M13.73 7.4H8.6v5.15h5.14V7.42zm1.73 8.6v1.7H6.88V16zm0-10.32v8.58H6.88V5.68zm8.59 10.31v1.71h-6.88V16h6.88zm0-3.43v1.7h-6.88v-1.7zm0-3.44v1.73h-6.88V9.12zm0-3.44V7.4h-6.88V5.68zM3.44 18.57V5.67H1.7v12.9q0 .33.26.6t.6.26.6-.26.27-.6zm22.31 0V3.97H5.15v14.6q0 .43-.15.86h19.91q.34 0 .6-.26t.25-.6zM27.5 2.24v16.33q0 1.08-.75 1.83t-1.83.74H2.57q-1.05 0-1.82-.74T0 18.57V3.97h3.44V2.24h24.05z" })
9
+ ] });
10
+ export {
11
+ SvgIconActualites as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAdmin: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAdmin;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAdmin = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12.02 12.56q0-1.42-1-2.43T8.58 9.12t-2.43 1-1.01 2.44 1 2.42T8.6 16t2.4-1 1.01-2.43zm10.32 6.87q0-.7-.53-1.22t-1.2-.5-1.2.5-.5 1.22q0 .7.5 1.2t1.2.51 1.23-.5.5-1.2zm0-13.75q0-.7-.53-1.2t-1.2-.5-1.2.5-.5 1.2q0 .72.5 1.22t1.2.5 1.23-.5.5-1.22m-5.17 5.65v2.48q0 .14-.1.26t-.19.14l-2.09.34q-.14.46-.43 1.01.45.65 1.2 1.54.1.14.1.27 0 .16-.1.26-.29.41-1.1 1.2t-1.04.8q-.17 0-.29-.1l-1.54-1.2q-.5.26-1.03.4-.15 1.45-.32 2.1-.1.31-.4.31h-2.5q-.15 0-.27-.1t-.12-.23l-.31-2.05q-.46-.14-1.01-.43l-1.6 1.2q-.09.1-.26.1-.14 0-.28-.1-1.93-1.8-1.93-2.16 0-.12.1-.24.12-.2.55-.73t.63-.81q-.32-.58-.48-1.1L.3 14.16q-.12-.03-.22-.12t-.1-.27v-2.5q0-.12.1-.24t.22-.14l2.07-.34q.17-.46.43-1.01Q2.35 8.89 1.6 8q-.1-.14-.1-.26 0-.17.1-.3.29-.38 1.1-1.17t1.06-.8q.15 0 .3.1l1.53 1.2q.46-.24 1.04-.43.14-1.44.3-2.07.08-.31.4-.31h2.5q.14 0 .26.1t.14.24l.32 2.04q.45.14 1 .41l1.57-1.18q.12-.1.29-.1.14 0 .26.1 1.95 1.8 1.95 2.17 0 .12-.1.24l-.57.72q-.41.5-.6.82.31.64.45 1.1l2.05.3q.14.04.22.13t.1.27zm8.58 7.16v1.88q0 .22-2 .41-.14.36-.38.7.68 1.51.68 1.85 0 .05-.05.1-1.64.96-1.66.96-.12 0-.63-.65t-.7-.9q-.26.03-.4.03t-.41-.02q-.17.26-.7.89t-.6.65q-.02 0-1.66-.97-.07-.04-.07-.1 0-.33.7-1.84-.24-.34-.41-.7-2-.2-2-.41v-1.88q0-.21 2-.43.17-.38.4-.7-.7-1.51-.7-1.85 0-.05.08-.1l.46-.26.8-.46.4-.21q.1 0 .6.62t.7.91l.4-.02.42.02q.67-.96 1.22-1.51l.1-.02q.05 0 1.66.93.05.05.05.1 0 .34-.68 1.85.22.31.39.7 2 .22 2 .43zm0-13.75v1.88q0 .21-2 .43-.14.36-.38.7.68 1.51.68 1.85 0 .05-.05.1l-1.66.93q-.12 0-.63-.62t-.7-.92q-.26.03-.4.03t-.41-.03q-.17.3-.7.92t-.6.62l-1.66-.94q-.07-.04-.07-.1 0-.33.7-1.84-.24-.34-.41-.7-2-.22-2-.43V4.74q0-.22 2-.4.17-.4.4-.7-.7-1.52-.7-1.86 0-.05.08-.1l.46-.26.8-.46.4-.21q.1 0 .6.62t.7.89l.4-.02.42.02q.67-.94 1.22-1.5l.1-.01q.05 0 1.66.93.05.05.05.1 0 .34-.68 1.85.22.31.39.7 2 .19 2 .4z" })
9
+ ] });
10
+ export {
11
+ SvgIconAdmin as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAdminPortal: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAdminPortal;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAdminPortal = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M24.02 21.91v-1.5h-1.5v-9h1.5V9.9h-4.5v1.5h1.5v9.01h-4.5v-9h1.5V9.9h-4.5v1.5h1.5v9.01H10.5v-9H12V9.9H7.5v1.5H9v9.01H4.5v-9H6V9.9H1.5v1.5H3v9.01H1.5v1.5H0v1.5h25.52v-1.5zM12.02-.6h1.5l12 7.5v1.5H0V6.9L12.01-.6z" })
9
+ ] });
10
+ export {
11
+ SvgIconAdminPortal as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAdmissionPostBac: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAdmissionPostBac;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAdmissionPostBac = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 25 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M4.38 9.12c-.27.62-.44 1.2-.36 1.25.04.05.19-.1.29-.36.14-.32.33-.41.64-.41s.48.1.63.4c.1.27.24.42.29.37a7.2 7.2 0 0 0-.92-2.43c-.07 0-.3.53-.57 1.18m.89.07c0 .1-.15.17-.32.17-.38 0-.43-.12-.14-.65.2-.34.2-.34.31-.03.07.2.15.41.15.5zm.81-.1v1.16h.75c.58 0 .77-.08.98-.36.63-.9-.02-1.95-1.15-1.95h-.58zm1.35-.65c.39.22.43 1.01.05 1.37a1 1 0 0 1-.65.27c-.36 0-.4-.05-.4-.9 0-.8.04-.9.35-.9.17 0 .46.07.65.16m1.18.77v1.28l.1-1.06.1-1.08.4 1.03c.22.58.43.99.5.94.1-.05.27-.46.41-.9.39-1.12.53-1.12.46 0-.05.66 0 1 .12 1 .1 0 .17-.46.17-1.23 0-1.52-.31-1.68-.75-.43-.14.45-.3.86-.38.91-.1.02-.29-.31-.46-.77-.5-1.3-.72-1.2-.67.31m2.76-.02c0 .7.05 1.23.17 1.23.1 0 .15-.53.15-1.23 0-.72-.05-1.25-.15-1.25-.12 0-.17.53-.17 1.25m.92-1.01c-.15.17-.27.34-.27.4 0 .18.41.54.9.75.6.32.43.68-.27.65-.68-.02-.84.2-.3.34.44.14.95-.03 1.14-.39s.07-.55-.6-.91c-.67-.34-.63-.67.1-.67.28 0 .5-.05.48-.17-.1-.27-.9-.27-1.18 0m1.75-.05c-.36.36-.21.8.36 1.08.75.34.72.8-.04.8-.58 0-.7.17-.22.31.36.12.87-.05 1.06-.31.24-.34.1-.6-.46-.94-.74-.43-.77-.87-.07-.77.31.05.48 0 .48-.14 0-.27-.84-.3-1.1-.03zm1.62.94c0 .65.07 1.2.16 1.25.1.07.15-.36.15-1.13 0-.72-.05-1.25-.15-1.25-.12 0-.17.5-.17 1.13zm1.13-.77c-.49.46-.39 1.4.19 1.83.74.55 1.63.02 1.63-.97 0-1.08-1.1-1.6-1.83-.86zm1.3.17c.11.12.18.43.18.72 0 .58-.24.89-.72.89-.5 0-.74-.31-.74-.9 0-.6.24-.9.74-.9.2 0 .41.07.53.19zm.86.72c0 1.42.29 1.66.36.29l.05-.94.62.96c.34.5.68.9.72.84.08-.07.12-2.09.03-2.35 0-.08-.07.31-.12.84l-.1.98-.62-.93c-.34-.5-.7-.94-.77-.94-.12 0-.17.53-.17 1.25M4.1 12.22c-.26.29-.31.55-.31 1.87 0 1.4.02 1.57.36 1.88.27.27.6.36 1.1.36.68 0 .7 0 .58.53l-.12.48.9-.48.9-.53h6.35c7.75 0 7.22.17 7.22-2.21 0-2.43.82-2.21-8.68-2.21-7.75 0-7.99 0-8.3.31m9.5.55c-.34.34-.36.36-.58.05-.28-.36-.04-.58.53-.48l.39.07zm6.88-.21c.07.07.17.72.21 1.44.1 2.09.7 1.92-6.92 1.97-5.58 0-6.57.05-7 .26s-.53.24-.63.05c-.07-.12-.48-.26-.86-.33-.41-.05-.8-.15-.87-.22-.16-.17-.21-2.91-.07-3.15.15-.22 1.08-.27 1.08-.05 0 .1-.07.2-.14.27-.22.12-.34 2.09-.17 2.43.22.4.96.38 1.08-.03.15-.53.58-.55 1.04-.1.48.46.93.56 1.78.34.29-.04.53-.04.53.03 0 .24 1.22.16 1.46-.08.17-.14.3-.16.41-.04.48.48 1.2-.08 1.18-.9-.02-.52.34-1.12.6-.98.07.05.14.46.14.9 0 1.02.34 1.34 1.33 1.14a2.9 2.9 0 0 1 1-.02c.17.02.51-.02.75-.14.36-.22.43-.2.55.04.15.22.25.24.58.12.27-.1.53-.1.8.05.24.1.6.12.81.05.8-.2.7-1.25-.1-1.25-.2 0-.28-.1-.26-.29.05-.14.2-.26.32-.24.14.03.4-.1.57-.29.27-.31.27-.33 0-.65-.4-.45-1.2-.43-1.68.03l-.39.33-.38-.33c-.48-.44-.8-.46-1.18-.03-.29.32-.29.32-.72 0-.2-.19-.58-.33-.84-.36-.31 0-.36-.02-.15-.12.41-.14 5.97-.05 6.14.15m-12.36 0c-.32.07-.65.19-.75.28-.14.1-.4.05-.8-.16l-.57-.3 1.33.03c.98 0 1.17.05.79.14zm2.86-.03c-.72.05-1.35.2-1.4.31-.1.12-.24.1-.52-.12l-.41-.33 1.8.02c1.78.03 1.8.03.53.12m-4.52.5c.77.3.67 1.33-.12 1.33-.34 0-.41.1-.41.4 0 .27-.1.44-.27.44-.19 0-.23-.24-.23-1.15 0-1.25.1-1.37 1.03-1.01zm2.6.18c.38.4.43 1.27.04 1.68-.33.36-1.15.38-1.56.02-.36-.31-.4-1.18-.1-1.56.41-.53 1.16-.6 1.62-.15zm1.82-.17c.2.12.32.12.32.02 0-.07.38-.17.81-.14.6 0 .82.07.82.24 0 .12-.14.21-.31.21-.31 0-.34.12-.34.92 0 .7-.05.91-.24.91s-.26-.22-.26-.89v-.91l-.82.02c-.94 0-1.03.17-.34.53.84.46.58 1.25-.43 1.25-.39 0-.55-.1-.55-.27 0-.21.12-.24.5-.16.39.1.48.04.48-.15 0-.14-.05-.26-.14-.26-.22 0-.84-.6-.84-.8 0-.26.5-.67.76-.67.15 0 .39.07.58.14zm4.04 0c.36.16.41.26.32.67-.05.29 0 .48.07.48.24 0 .19.58-.03.8-.12.11-.52.21-.91.21h-.7v-1.15c0-1.13 0-1.16.39-1.16.24 0 .6.07.86.15m2.05-.1c0 .05.16.55.4 1.15.4 1.06.4 1.11.08 1.11-.17 0-.34-.12-.34-.27 0-.16-.14-.24-.48-.24s-.5.08-.5.24c0 .15-.13.27-.32.27-.26 0-.26-.07.12-1.15.31-.9.48-1.16.72-1.16.17 0 .32.03.32.05m2.35.05c.44.17.12.5-.38.43-.41-.07-.5 0-.6.36-.15.63.12.99.65.96.29-.02.43.05.43.22 0 .14-.17.24-.55.24-1.06 0-1.5-1.32-.65-1.97.45-.36.67-.41 1.1-.24m-13.39.72c0 .24.07.34.29.29.14-.02.29-.17.29-.29 0-.14-.15-.27-.3-.29-.2-.05-.28.05-.28.29m1.88.07c-.12.5 0 .9.33 1.01.41.17.77-.26.72-.82-.04-.4-.14-.53-.5-.55-.36-.05-.48.02-.55.36m6.34-.17c0 .15.15.27.34.27.17 0 .31-.12.31-.27 0-.12-.14-.24-.3-.24-.2 0-.35.12-.35.24m0 .92c0 .26.1.36.39.29.2-.03.36-.15.36-.3 0-.11-.17-.26-.36-.28-.29-.05-.39.02-.39.29m2.34-.8c-.17.46-.1.63.24.63.16 0 .21-.12.12-.46-.15-.6-.2-.65-.37-.17z" })
9
+ ] });
10
+ export {
11
+ SvgIconAdmissionPostBac as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAgenda: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAgenda;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAgenda = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 21 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M0 24.58V8.98h21.47v15.6zM0 7.63V2.3h2.62v3.4h4.81V2.3h6.61v3.4h4.79V2.3h2.64v5.32H0zm4.04-3.35V.53h1.97v3.75zm1.42 14.89q0 2.7 2.96 2.7 1.13 0 2.02-.78.93-.74.93-1.92 0-1.64-1.87-2.17 1.15-.36 1.54-1.15.29-.67-.05-1.75-.65-1.5-2.57-1.5-1.23 0-2.07.63t-.9 1.85H7.2q0-1.08 1.18-1.1 1.03 0 1.08 1.25 0 1.17-2.02 1.13v1.37q1.15 0 1.64.19.55.26.55 1.1 0 1.38-1.3 1.47-1.03 0-1.13-1.32zm6.76-3.51q1.17-.34 2.11-1.13v7.14h1.68v-8.92h-1.53q-.92.89-2.26 1.4v1.5zm3.24-11.38V.53h1.97v3.75z" })
9
+ ] });
10
+ export {
11
+ SvgIconAgenda as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconArchive: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconArchive;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconArchive = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 21 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.59 5.68v-1.7H6.88v1.7h1.7zm1.73 1.73V5.68H8.58V7.4h1.74zM8.59 9.1V7.4H6.88v1.7h1.7zm1.73 1.74V9.12H8.58v1.73h1.74zm9.37-5.22q.39.39.65 1.01t.27 1.2v15.44q0 .55-.36.91t-.92.39H1.3q-.55 0-.91-.39t-.39-.9V1.83q0-.55.4-.91t.9-.39h12.03q.53 0 1.18.27t1.01.65zm-5.96-3.27V7.4h5.05q-.12-.41-.29-.55l-4.2-4.21q-.15-.17-.56-.3zm5.17 20.51V9.12h-5.58q-.55 0-.91-.39t-.39-.89v-5.6h-1.7v1.73H8.59V2.24H1.7v20.63h17.2zm-8.42-9.69 1.45 4.69q.1.36.1.7 0 1.1-.97 1.85t-2.47.72-2.46-.72-.98-1.85q0-.34.12-.7.29-.84 1.6-5.31v-1.71h1.71v1.7h1.06q.32 0 .53.17t.31.46m-1.9 6.25q.73 0 1.23-.26t.5-.6-.5-.6-1.22-.27-1.2.27-.51.6.5.6 1.2.26" })
9
+ ] });
10
+ export {
11
+ SvgIconArchive as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAssistance: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAssistance;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAssistance = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.9 23.5A12.21 12.21 0 0 1 .37 8.8C2.7-.15 13.98-3.21 20.52 3.34s3.5 17.85-5.46 20.17c-1.7.45-4.48.45-6.15 0zm6.34-1.52a10.55 10.55 0 0 0 7.4-10.13c0-5.91-4.72-10.62-10.6-10.62S1.42 5.93 1.42 11.85c0 5.9 4.67 10.6 10.54 10.62 1.22 0 2.3-.15 3.27-.49zm1.56-2.7c-.19-.07-2.14-1.9-4.32-4.05-3.42-3.38-4.09-3.94-4.84-4.06-1.73-.26-3.08-1.5-3.2-2.96-.12-1.63.23-1.82 1.3-.68 1.18 1.24 1.45 1.3 2.35.43.43-.43.79-.88.79-1s-.44-.68-.96-1.23C6.76 4.55 6.82 4 8.12 4c1.71 0 3.33 1.6 3.33 3.27 0 .75.32 1.15 3.75 4.56 3.83 3.81 4.41 4.56 4.41 5.58-.02 1.2-1.69 2.3-2.81 1.87m1.63-1.48c.49-.9-.5-1.88-1.4-1.39-.44.24-.65 1.37-.3 1.7.35.35 1.46.14 1.7-.31M4.54 18.87c-.24-.64 1.47-3.17 2.16-3.17.19 0 .92-.55 1.61-1.2 1.2-1.13 1.3-1.19 1.67-.83.38.37.32.47-.8 1.61a5.8 5.8 0 0 0-1.28 1.7c-.1.48-2.38 2.23-2.93 2.23-.17 0-.35-.15-.43-.34m10.27-8.33c-.1-.15.73-1.15 1.9-2.33 1.12-1.15 1.98-2.14 1.89-2.23s-1.1.76-2.25 1.9C14.6 9.6 14.2 9.9 13.93 9.64c-.3-.24-.04-.6 1.76-2.38 1.17-1.14 2.05-2.16 1.95-2.25s-1.09.77-2.23 1.91c-1.8 1.79-2.12 2.03-2.44 1.77s-.1-.57 1.84-2.5c1.91-1.9 2.3-2.2 3-2.2 1 0 1.8.81 1.8 1.77 0 .56-.4 1.09-2.15 2.85a27 27 0 0 1-2.33 2.18c-.1 0-.23-.13-.32-.26z" })
9
+ ] });
10
+ export {
11
+ SvgIconAssistance as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAssr: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAssr;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAssr = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M3.77 15.22c-.02 0-.14-.02-.3-.02-.37-.02-.63-.1-1.14-.29-.48-.19-.74-.36-1.06-.7a2.54 2.54 0 0 1-.7-1.03c-.07-.24-.09-.36-.09-.74 0-.53.1-.92.39-1.47.26-.5.52-.87.93-1.27a8.9 8.9 0 0 1 4.64-2.26c.68-.1 1.98-.05 2.6.1.82.18 1.52.64 2 1.31.17.24.36.7.36.87s.02.17.43.07c.36-.07.44-.07 1.66-.07 1.25.02 1.3.02 1.5.1.11.04.2.1.2.12 0 .1.18.07.49-.03.5-.17.72-.19 1.95-.19 1.42 0 1.63.02 1.94.34.08.1.15.14.17.14l.24-.1c.24-.11.6-.23.94-.28.39-.08 1.2-.08 1.5 0 .11.02.3.04.42.04.1 0 .2.03.22.05 0 0 .05.03.12.03.05 0 .12.02.2.07l.16.1a.5.5 0 0 1 .17.16c.1.17.12.6 0 .9-.24.64-.39.79-.99.98-.21.07-.33.1-.86.1-.41 0-.65 0-.7.04-.12.05-.17.12-.58 1.16-.45 1.2-.48 1.22-.98 1.54-.36.19-.5.23-.99.23-.38 0-.43 0-.62-.1-.12-.06-.24-.16-.32-.2l-.1-.13-.19.1c-.3.14-.67.29-.86.31-.24.03-2.79.03-2.94 0-.12-.02-.4-.17-.45-.24-.03-.02-.27.03-.34.1-.02.02-.14.05-.26.1-.2.07-.44.07-4.48.07-2.35.02-4.28.02-4.28 0zm8.35-.77c.94-.19 1.75-.9 1.75-1.53 0-.17-.02-.27-.11-.39-.2-.34-.51-.46-1.23-.46-.36 0-.5 0-.6-.04-.17-.1-.2-.24-.07-.41l.1-.08 1.1-.02c1.1-.02 1.13-.02 1.32-.12.12-.05.27-.14.34-.21.19-.22.19-.49-.03-.58-.04-.03-.6-.03-1.25-.03-1.32 0-1.41 0-1.92.24-.34.17-.65.46-.87.8-.16.24-.16.26-.16.55 0 .24.02.29.12.43.16.27.38.34 1.08.39.62.05.74.1.74.26 0 .1-.16.3-.29.32-.04.02-1.8.02-3.94.02l-3.85-.02-.29-.1c-.48-.14-.93-.48-1.1-.86-.2-.41-.17-.8.07-1.3.17-.39.4-.68.77-.99 1.4-1.15 3.6-1.54 4.76-.8.24.17.53.54.6.73.12.43-.02 1.03-.34 1.32-.24.24-.72.34-.84.17-.12-.12-.1-.24.15-.7.12-.24.24-.48.24-.55 0-.27-.39-.58-.85-.67-.33-.1-1.2-.08-1.63.04-.91.24-1.83.92-2.14 1.57-.12.21-.12.29-.12.5 0 .31.05.43.22.65.28.29.67.4 1.25.4.45 0 .7-.04 1.15-.16l.31-.1.3.08c.4.12.62.12 1.12.07a3.37 3.37 0 0 0 1.93-.91l.16-.2c.1-.1.34-.6.46-.91.1-.34.14-.72.07-1.01a2.4 2.4 0 0 0-.4-.77c-.51-.53-1.23-.8-2.34-.84a7.2 7.2 0 0 0-3.22.65.7.7 0 0 1-.22.07 6.5 6.5 0 0 0-2.36 1.83 4 4 0 0 0-.6 1.2c-.19.72.08 1.46.63 1.9.1.05.17.12.17.12.02.05.38.21.6.29.2.07.7.19 1 .21.06 0 1.89.03 4.05.03 3.37 0 3.97 0 4.2-.08zm-6.64-2.4c-.12-.02-.33-.2-.38-.34-.12-.26-.03-.5.29-.74.36-.3 1-.39 1.32-.2.1.05.2.13.22.2.04.1.04.1-.1.4-.22.42-.31.51-.6.6-.22.08-.6.13-.75.08m10.78 2.43a2.6 2.6 0 0 0 1.25-.58c.16-.12.4-.43.5-.62.1-.22.1-.53-.02-.72-.15-.34-.53-.49-1.25-.49-.27 0-.5 0-.56-.02-.12-.07-.19-.2-.16-.31.04-.2.12-.2 1.27-.22l1.1-.02.25-.12c.4-.2.57-.55.36-.72-.1-.07-.15-.07-1.3-.07-1.35 0-1.5.02-1.97.24-.34.19-.75.57-.92.9-.21.4-.17.75.15 1.02.19.17.45.24.84.24.43 0 .7.05.77.12s.1.2.02.29c-.07.17-.24.19-1.27.19h-.99l-.22.12c-.3.14-.43.29-.43.5 0 .17.05.25.24.3.17.02 2.1.02 2.34-.03m2.83-.07c.2-.1.36-.3.46-.5l.43-1.07c.22-.55.39-.93.46-.98.05-.05.17-.15.29-.22l.2-.1.76-.02c.77-.02.8-.02 1.01-.12.34-.17.5-.4.43-.62-.07-.17-.26-.22-1.15-.2-.7.03-.8.03-1.1.13-.53.16-1.06.48-1.42.84-.2.21-.32.4-.44.7l-.14.33-.22.53c-.07.24-.17.46-.17.5-.02.03-.1.2-.14.34-.1.27-.07.39.05.48.1.08.55.05.7-.02z" })
9
+ ] });
10
+ export {
11
+ SvgIconAssr as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconAward: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconAward;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconAward = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 22 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M6.16 12.39q-1.01-2.2-1.01-4.98H1.7v1.27q0 1.06 1.27 2.2t3.17 1.5zm14.45-3.7V7.4h-3.44q0 2.79-.99 4.98 1.9-.39 3.15-1.52t1.28-2.19zm1.73-1.71v1.7q0 .97-.58 1.93t-1.49 1.75-2.33 1.3-2.89.6q-.55.72-1.27 1.28-.5.45-.7.96t-.19 1.2q0 .72.4 1.23t1.3.5q1.02 0 1.81.6t.77 1.54v.87q0 .19-.12.31t-.31.12H5.58q-.2 0-.31-.12t-.12-.31v-.87q0-.94.8-1.54t1.77-.6q.92 0 1.32-.5t.41-1.23q0-.67-.19-1.2t-.7-.96q-.72-.56-1.27-1.28-1.54-.07-2.91-.6t-2.3-1.3-1.52-1.75T0 8.68v-1.7q0-.56.39-.92t.91-.38h3.85V4.4q0-.89.65-1.51t1.52-.65h7.71q.9 0 1.52.65t.62 1.51v1.28h3.88q.53 0 .91.38t.39.92z" })
9
+ ] });
10
+ export {
11
+ SvgIconAward as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconBanquesavoir: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconBanquesavoir;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconBanquesavoir = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M22.8 4.21c-.34 0-.77.1-1.09.29-.62.39-.81 1.06-.81 3 0 2.34-.17 2.77-1.35 3.08-.58.17-.4.63.26.82.37.12.7.34.82.53.1.2.22 1.25.27 2.45.1 2.26.24 2.72 1.1 3.15.2.12.58.2.87.2.39 0 .5-.05.5-.32 0-.21-.12-.29-.36-.29-.77 0-.93-.45-1.03-2.8-.1-2.32-.2-2.63-.91-3.14l-.34-.24.4-.3c.66-.51.85-1.19.85-2.94 0-2.1.17-2.67.82-2.84.26-.07.5-.24.53-.39.04-.19-.2-.28-.53-.26m-14.4.31c-1.21 0-1.16-.04-1.16 2.1 0 1.58.02 1.9.21 1.9s.24-.32.24-1.86V4.81h.6c1.04 0 1.23.34 1.23 2.17 0 .91.07 1.53.17 1.53s.14-.64.14-1.63c0-1.52-.02-1.64-.38-2-.3-.29-.53-.36-1.06-.36zm7.6 0c-.1 0-.18.7-.18 1.83v1.83l-.53.12c-.38.07-.64.02-.91-.14-.36-.24-.39-.34-.43-1.9-.05-2-.32-2.24-.39-.37-.07 1.54.15 2.36.63 2.58.4.21.62.21 1.37.1l.58-.1V6.5c0-1.23-.05-1.98-.15-1.98zm2.06 0c-1.2 0-1.3.15-1.3 2 0 .82.02 1.61.1 1.75.07.2.3.24 1.15.24.67 0 1.03-.07.96-.16-.05-.08-.45-.15-.91-.15h-.84V6.66h.91c.53 0 .94-.07.94-.14 0-.1-.43-.17-.94-.17h-.94l.1-1.44.89-.05c1.1-.07 1-.34-.12-.34m-15.87 0-.3.03-.6.05-.02 1.9c-.04 1.42 0 1.94.15 2.04.31.22 1.66.02 2-.29s.38-1.3.04-1.59c-.19-.16-.19-.21 0-.4.3-.3.3-1.04 0-1.35-.29-.27-.7-.39-1.27-.39m9.43.03c-.08 0-.15 0-.2.02-.91.15-1.13.53-1.1 2 0 1.34.12 1.68.8 1.92.33.12.4.27.4.63 0 .26.07.48.17.48.07 0 .14-.22.14-.48 0-.34.1-.5.39-.6.48-.2.7-.6.8-1.52.18-1.49-.4-2.48-1.4-2.45m-6.2 0c-.42 0-.85.1-1.02.26-.1.1-.2.92-.22 1.95-.04 1.52-.02 1.76.2 1.76.19 0 .24-.2.24-.85v-.84H6.3v.84c0 .46.07.85.17.85.07 0 .14-.7.14-1.78 0-1.71 0-1.76-.38-2-.2-.12-.5-.2-.82-.2zm-3.23.26c1.03 0 1.56.82.86 1.3-.19.15-.57.24-.86.24-.48 0-.5 0-.5-.77 0-.74.02-.77.5-.77m9.35.03c.15 0 .3.04.5.16.51.27.56.41.56 1.62 0 1-.02 1.13-.4 1.41-.44.37-.46.37-.92.17-.5-.19-.67-.62-.67-1.68 0-.8.07-1.01.38-1.32.24-.24.39-.37.55-.37zm-6.13 0c.12 0 .27.02.41.07.34.12.4.24.46.8l.04.64h-1.7v-.6c0-.53.07-.65.38-.8.15-.07.27-.09.41-.11M1.68 6.66h.63c.91 0 1.37.65.89 1.28-.12.14-.48.31-.84.36l-.68.1V6.65zm11.69 2.17c-.07 0-.14.24-.14.53 0 .5-.05.53-.5.53-.3 0-.66.12-.85.24-.7.48-.6 2.26.12 2.64.21.12.58.17.82.12s.5-.07.57-.07c.08 0 .15-.92.15-2 0-1.22-.07-2-.17-2zm2.07 0c-1.2 0-1.3.14-1.3 2 0 .81.05 1.6.1 1.75.07.2.33.24 1.15.24.67 0 1.03-.07.99-.17-.05-.07-.49-.14-.94-.14h-.85v-1.54h.94c.5 0 .92-.07.92-.15 0-.1-.41-.16-.94-.16h-.92l.03-.72.05-.73.89-.04c1.13-.08 1.03-.34-.12-.34m2.74 0h-.15c-.52 0-1.13.19-1.3.48-.28.53-.02.98.9 1.61 1.34.89 1.27 1.59-.12 1.59-.75 0-1.01.21-.49.36.41.12 1.4 0 1.66-.22.12-.1.22-.43.22-.77 0-.55-.05-.62-.91-1.22-.99-.68-1.18-1.09-.6-1.4.19-.1.57-.12.93-.07.46.07.6.05.56-.1-.08-.16-.37-.26-.7-.26m-5.36 1.37c.38 0 .4.02.4 1.13 0 .91-.04 1.15-.23 1.23-.77.28-1.16-.13-1.16-1.2 0-.92.22-1.16.99-1.16m-6.06 2.9-1.09.06c-1 .04-1.13.07-1.41.48-.27.33-.34.65-.34 1.56.02 1.18.22 1.64.91 1.92.17.08.56.1.87.08.29-.05.65-.08.8-.08.23 0 .26-.21.26-2.02zm4.69 0c-.34 0-.68.15-.92.4-.33.33-.38.5-.38 1.53 0 1.28.16 1.8.67 2.07.46.24 1.35.07 1.66-.29.6-.72.53-2.7-.12-3.32a1.22 1.22 0 0 0-.91-.38zm-4.4 0a.05.05 0 0 0-.05.06c-.1.07.91 3.68 1.1 3.99.12.21.49.12.63-.15.29-.52 1.15-3.72 1.06-3.82-.17-.17-.24-.02-.72 1.64-.27.89-.53 1.7-.6 1.8-.08.12-.32-.5-.63-1.54-.43-1.49-.63-1.97-.8-1.97zm6.32.03c-.1 0-.14.75-.14 2 0 1.22.04 2 .14 2s.17-.77.17-2c0-1.25-.07-2-.17-2m-10.7 0H2.5c-.53 0-1.13.2-1.27.48-.3.53-.05.99.89 1.61 1.32.9 1.27 1.6-.15 1.6-.72 0-1 .2-.48.35.44.12 1.42 0 1.66-.21.15-.1.24-.44.24-.77 0-.56-.07-.65-.94-1.23-.98-.67-1.15-1.08-.57-1.4.19-.09.57-.11.93-.07.46.08.58.05.53-.1-.04-.16-.33-.26-.67-.26m15.65 0h-.14c-.53 0-1.13.2-1.27.48-.3.53-.05.99.89 1.61 1.32.9 1.27 1.6-.15 1.6-.72 0-1 .2-.48.35.43.12 1.42 0 1.66-.21.12-.1.24-.44.24-.77 0-.56-.07-.65-.94-1.23-.98-.67-1.15-1.08-.57-1.4.16-.09.57-.11.9-.07.47.08.61.05.56-.1-.05-.16-.33-.26-.7-.26m-4.25.07-.05 1.95c-.02 1.69 0 1.98.2 1.98s.23-.2.23-.85c0-.8.03-.86.36-.86.32 0 .5.19.9.86.28.46.6.85.69.85.26 0 .26-.08-.24-.9l-.46-.72.36-.33c.44-.41.5-1.2.17-1.69-.17-.24-.4-.29-1.2-.29zm.74.22c1.1 0 1.71.87 1.04 1.42-.2.14-.6.29-.87.29h-.53v-.87c0-.8.03-.84.36-.84m-3.39.03c.17 0 .36.1.63.3.36.3.4.42.4 1.43 0 .89-.07 1.18-.28 1.37-.15.14-.5.26-.75.26-.7 0-.96-.45-.96-1.66 0-.81.05-1.03.36-1.34.24-.24.41-.34.6-.36m-5.89 0c.05 0 .1 0 .14.02l.56.05.05 1.63.04 1.66h-.67c-1 0-1.27-.36-1.27-1.73 0-.94.04-1.1.38-1.37.22-.17.48-.27.77-.27zm17.07 4.9-.19.39h.17l.29-.39zm-9.93.2v.18h.22v-.19h-.22zm-8.22 0v1.58h.98v-.2h-.76v-1.39h-.22zm14.09.04v.36h-.12v.15h.12v.64c0 .15.02.25.1.32.07.05.14.1.28.1l.1-.03c.05 0 .1 0 .12-.02v-.17c-.02 0-.05 0-.07.02h-.24c-.02-.02-.05-.05-.05-.07-.02-.02-.02-.07-.02-.1-.03-.04-.03-.1-.03-.14v-.55h.41v-.15h-.4v-.36zm-12.4.31a.58.58 0 0 0-.42.17.6.6 0 0 0-.16.46c0 .21.04.36.16.46.1.12.27.16.46.16l.22-.02.21-.07v-.22H6.6c-.03.03-.1.05-.17.1-.07.02-.17.05-.24.05l-.17-.03c-.05-.02-.1-.05-.12-.1-.05-.02-.07-.07-.1-.11s-.04-.12-.04-.2h.89v-.12a.5.5 0 0 0-.15-.38q-.105-.15-.36-.15m5.7 0a.63.63 0 0 0-.42.17c-.1.12-.14.27-.14.46s.05.34.14.46c.12.12.24.16.41.16s.29-.04.41-.16c.1-.12.14-.27.14-.46s-.04-.34-.14-.46a.63.63 0 0 0-.4-.17m3.72 0c-.07 0-.15.03-.22.05s-.12.07-.19.12v-.12h-.2v1.61h.2v-.5l.17.07.17.02c.07 0 .12-.02.19-.04.07-.03.12-.08.17-.12s.1-.12.12-.22c.02-.07.02-.17.02-.24 0-.2-.02-.36-.12-.46-.07-.12-.17-.16-.31-.16zm5.58 0c-.08 0-.12.03-.2.05s-.12.07-.16.12c-.05.05-.1.12-.12.2s-.05.14-.05.26c0 .17.05.31.12.43a.47.47 0 0 0 .55.1c.05-.03.12-.05.17-.1v.24l-.07.1c-.02.03-.05.05-.1.07l-.17.02-.21-.02-.15-.05h-.02v.2l.2.04h.16c.2 0 .34-.05.43-.14.1-.07.15-.24.15-.44v-1.03h-.2l-.02.05c-.05-.05-.1-.05-.14-.07s-.1-.03-.17-.03m1.4 0a.58.58 0 0 0-.42.17.7.7 0 0 0-.16.46c0 .21.07.36.16.46a.6.6 0 0 0 .46.16l.22-.02.21-.07v-.22l-.19.1c-.07.02-.14.05-.24.05l-.17-.03c-.05-.02-.1-.05-.12-.1-.05-.02-.07-.07-.1-.11s-.02-.12-.02-.2h.87v-.12a.6.6 0 0 0-.12-.38.5.5 0 0 0-.39-.15zm-14.44 0c-.1 0-.14.03-.21.05a.18.18 0 0 0-.15.07c-.04.03-.07.08-.1.12-.02.03-.02.08-.02.12 0 .1.03.15.05.22.05.05.12.07.24.12.03 0 .07 0 .12.02.05 0 .07 0 .1.03.1 0 .14.02.17.05s.02.07.02.12c0 .04-.02.1-.07.12s-.12.04-.2.04c-.07 0-.14-.02-.21-.04-.1-.03-.14-.08-.22-.12H7.6v.24l.2.07.23.02c.17 0 .3-.05.36-.1.1-.07.15-.16.15-.28 0-.08-.03-.15-.08-.2s-.12-.1-.21-.12c-.03 0-.07 0-.12-.02-.05 0-.07 0-.12-.02-.07 0-.12-.03-.14-.05s-.05-.07-.05-.12.02-.1.07-.12.12-.05.2-.05c.06 0 .13.02.2.05s.13.05.2.1V19a2 2 0 0 0-.2-.07c-.07 0-.14-.03-.19-.03m1.13 0-.21.03c-.1.02-.15.02-.17.05v.19c.07-.03.14-.05.2-.05.06-.02.11-.02.18-.02h.12l.1.02.07.07c0 .05.03.07.03.12v.03l-.34.02-.27.07a.24.24 0 0 0-.14.12.39.39 0 0 0 .05.5c.07.08.17.1.26.1.05 0 .12 0 .15-.02l.12-.02c.02-.03.04-.05.1-.05l.06-.07v.14h.2v-.82c0-.07-.03-.12-.05-.2 0-.04-.05-.09-.1-.11l-.14-.07zm7.48 0-.21.03c-.08.02-.12.02-.17.05v.19h.02a.45.45 0 0 1 .2-.05c.04-.02.12-.02.16-.02h.12l.1.02c.05.02.07.05.07.07.03.05.03.07.03.12v.03l-.32.02-.26.07c-.07.02-.12.07-.17.12-.02.07-.05.15-.05.22 0 .12.03.21.1.29s.17.1.29.1c.04 0 .1 0 .14-.03l.12-.02c.02-.03.05-.05.07-.05l.07-.07v.14h.2v-.82c0-.07 0-.12-.03-.2-.02-.04-.05-.09-.1-.11l-.16-.07c-.05 0-.12-.03-.22-.03m3.08 0-.21.03c-.08.02-.12.02-.17.05v.19h.02c.07-.03.12-.05.2-.05.07-.02.11-.02.16-.02h.12l.12.02c.03.02.05.05.05.07.02.05.02.07.02.12v.03l-.31.02-.26.07a.5.5 0 0 0-.17.12c-.03.07-.05.15-.05.22 0 .12.02.21.12.29.07.07.14.1.26.1.05 0 .1 0 .15-.03l.12-.02c.02-.03.05-.05.07-.05.05-.03.07-.05.07-.07v.14h.22v-.82c0-.07-.03-.12-.05-.2-.02-.04-.05-.09-.1-.11l-.16-.07c-.05 0-.12-.03-.22-.03m-9.81.05.48 1.18h.2l.47-1.18h-.21l-.36.94-.37-.94zm2.72 0v1.18h.19v-1.18h-.2zm.57 0v1.18h.2v-.84c.04-.05.12-.07.16-.12.05-.03.12-.03.2-.03h.1c.02 0 .04 0 .06.03h.03v-.22h-.15c-.07 0-.14 0-.19.03-.07.02-.12.07-.21.14v-.17zm4.33 0v1.18h.22v-.84c.05-.05.1-.07.17-.12.04-.03.1-.03.16-.03h.1c.02 0 .05 0 .1.03v-.22h-.15c-.07 0-.12 0-.19.03a.8.8 0 0 0-.2.14v-.17h-.2zm-11.5.12c.13 0 .2.03.25.1.05.05.1.12.1.24h-.7c.02-.1.05-.17.12-.24.05-.07.14-.1.24-.1zm16.43 0c.1 0 .17.03.24.1.05.05.07.12.07.24h-.67c0-.1.05-.17.1-.24.07-.07.14-.1.26-.1m-10.7 0c.1 0 .2.05.24.12.07.07.1.2.1.34s-.03.26-.1.34c-.05.07-.14.12-.24.12s-.2-.05-.24-.12c-.07-.08-.1-.2-.1-.34s.03-.27.1-.34a.3.3 0 0 1 .24-.12m9.33.03h.15l.14.04v.65c-.05.05-.1.08-.15.1-.07.02-.12.02-.19.02-.1 0-.16-.02-.21-.1s-.08-.16-.08-.3c0-.13.03-.25.1-.32.05-.07.14-.1.24-.1zm-5.65 0c.1 0 .17.04.22.1.04.06.07.18.07.33s-.03.24-.1.34c-.07.07-.14.1-.26.1h-.15c-.02-.03-.07-.03-.14-.08v-.65l.17-.1c.07-.02.12-.04.19-.04m-5.96.4v.34l-.17.1c-.05.03-.12.02-.2.02-.06 0-.14 0-.18-.05-.03-.02-.05-.07-.05-.14s0-.12.05-.14c.02-.03.07-.08.14-.08.05-.02.1-.02.2-.02.06-.02.14-.02.2-.02zm7.47 0v.34l-.14.1c-.07.02-.14.02-.2.02-.09 0-.13 0-.18-.05-.05-.02-.08-.07-.08-.14s.03-.12.05-.14c.05-.03.1-.08.15-.08.04-.02.12-.02.19-.02.1-.02.17-.02.21-.02zm3.08 0v.34l-.14.1c-.07.02-.12.02-.2.02-.09 0-.14 0-.18-.05-.05-.02-.08-.07-.08-.14s.03-.12.08-.14c.02-.03.07-.08.12-.08.04-.02.12-.02.21-.02.07-.02.15-.02.2-.02z" })
9
+ ] });
10
+ export {
11
+ SvgIconBanquesavoir as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconBcdi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconBcdi;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconBcdi = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M2.43 19.29c-.07-.24-.1-.5-.03-.53.2-.12 1.93-1.88 2.58-2.65.5-.57.94-1.34.86-1.51 0-.05 0-.07.03-.05.05.03.07-.1.07-.31 0-.24-.02-.34-.07-.31s-.05.02-.03-.05c.03-.05 0-.1-.02-.1s-.05-.05-.05-.1c0-.07-.02-.07-.07 0-.05.05-.05.05-.02-.07 0-.12 0-.14-.08-.12-.04.03-.07-.02-.1-.1s-.06-.09-.09-.09c-.02.03-.05.03-.05-.02 0-.07-.14-.22-.24-.22-.02 0 0-.02.05-.07.12-.05.12-.05 0-.05-.07 0-.21-.1-.34-.24-.12-.12-.26-.26-.36-.33-.1-.05-.21-.15-.29-.22-.04-.05-.14-.1-.16-.1s-.05-.02-.05-.07c0-.02.02-.05.05-.02.04.02.02-.03-.05-.12-.17-.24-.12-.34.26-.5.17-.06.27-.13.24-.18-.02-.02 0-.02.05 0 .07.05.67-.3.87-.52.14-.17.14-.17.05-.39-.05-.14-.15-.26-.22-.29s-.14-.1-.14-.17c-.03-.04-.08-.1-.12-.1L4.5 9.6c-.7-.21-1.61-.31-1.8-.21-.03.02-.1.04-.17.04-.05.03-.27.08-.46.12-.58.12-1.15.12-1.37-.02C.58 9.46.53 9.4.55 9.4s0-.07-.07-.17c-.21-.29 0-.8.44-1 .28-.15.5-.18 1.27-.18.72-.02.84 0 1.01.08.05.02.12.02.12 0 .02 0 .07 0 .12.04.05.03.17.05.31.05s.24.03.24.07c.03.05.07.08.15.05.04 0 .12.03.16.07.03.05.1.08.12.05s.05 0 .08.03c.02.04.07.07.14.07.05 0 .12.02.17.07.02.05.1.1.12.1.05 0 .02-.03 0-.08-.1-.04-.07-.07.07-.02.05.02.07.07.05.1-.03.04 0 .04.02.02.07-.05.41.17.46.26 0 .03.05.03.07 0 .03 0 .05.03.05.08 0 .07.02.1.05.02.05-.07.14 0 .21.27.08.14.08.14.08.02 0-.14 0-.14.1.02.18.32.3.72.3 1.01s0 .34-.21.53c-.12.12-.27.24-.31.27-.15.05-.32.38-.22.5.02.05.05.1.02.12 0 .05 0 .07.05.1.03.05.05.02.03-.03s0 0 .1.08c.06.1.11.19.09.24-.03.02.02.02.07-.03l.07-.05c0 .03.03.1.1.17.31.34.43.5.43.56s.05.14.14.21c.08.07.15.2.17.27s.05.14.08.14c.04 0 .04.05.04.1 0 .07.03.12.05.12.07 0 .2.53.2.89 0 .26-.05.38-.22.67-.12.2-.27.43-.36.5-.08.1-.24.32-.39.46-.31.39-1.32 1.4-1.83 1.83-.19.2-.48.43-.6.55s-.26.22-.31.22-.07.02-.05.02c.05.05-.26.27-.58.39-.21.1-.43.07-.36-.03 0-.02-.02-.04-.07-.04-.07 0-.07.02-.07.07l.02.1c-.02 0-.05-.03-.05-.08zm13.03-.05c-.31-.14-.24-.27.5-.84l.56-.41c.1-.1.29-.24.39-.31.1-.1.24-.22.33-.27l.17-.14c.07 0 1.37-1.25 1.7-1.64.2-.24.54-.65.78-.98.07-.1.16-.41.21-.65.1-.46.1-.46-.02-.94l-.22-.58c-.04-.05-.1-.1-.1-.14 0-.03-.09-.15-.2-.3s-.23-.26-.2-.28c.02-.02-.03-.07-.1-.1-.05 0-.14-.07-.17-.14-.02-.05-.07-.1-.1-.1-.04 0-.11-.04-.18-.12-.08-.04-.2-.14-.27-.21s-.14-.12-.17-.12c-.02 0-.12-.05-.19-.15-.1-.07-.17-.12-.19-.1-.05 0-.07 0-.1-.02a9.3 9.3 0 0 0-1.94-.91c0-.02-.1-.05-.2-.05-.38 0-.86-.17-1.1-.4-.2-.2-.22-.22-.15-.37.08-.21.34-.53.46-.53.05 0 .1-.02.12-.04.07-.15 1.13-.05 1.44.12l.2.04c.07 0 .14.03.16.05s.2.1.39.17a8 8 0 0 1 .8.34c.02 0 .09.04.14.12.04.04.1.1.12.1s.26.14.5.3c.24.17.48.32.5.32s.05.02.03.05c-.02.04 0 .07.05.07s.1.02.12.07.07.1.1.1c.04 0 .21.12.36.26.14.12.33.29.43.34.07.05.14.12.14.17 0 .02.05.07.07.1.05 0 .12.11.2.23.04.12.12.24.16.27s.05.07.05.12c-.02.04-.02.12 0 .14.07.1.2.46.22.77.14 1.1.02 1.73-.6 2.65a1.5 1.5 0 0 0-.15.28c0 .05-.04.08-.1.1s-.06.05-.06.07c0 .05-.08.12-.15.2-.05.07-.24.26-.36.43a14 14 0 0 1-1.7 1.6c0 .08-1.33 1.04-1.43 1.04-.04 0-.5.2-.67.3-.12.06-.36.04-.58-.08m7.05-2.57c0-.03-.05-.05-.12-.03-.1.03-.15 0-.2-.1-.11-.2-.11-.23-.11-2.08 0-.94-.03-1.86-.05-2.03l-.1-.64-.05-.36c-.02-.03-.04-.2-.04-.41a2 2 0 0 0-.1-.44c-.1-.12-.17-.98-.12-1.49.05-.36.1-.5.17-.6.07-.07.12-.14.12-.17 0-.04.5-.21.62-.21.22 0 .46.21.6.5.08.17.12.34.12.39 0 .07.05.12.08.12.04.02.07.4.12 1.1.04.94.04 1.23-.08 2.36a21 21 0 0 1-.33 2.81c-.07.63-.36 1.33-.5 1.33-.05 0-.05-.03-.03-.05m-11.35-.1c-.03-.02-.12-.02-.24-.05-.1 0-.22-.02-.24-.04s-.1-.05-.2-.05a4.3 4.3 0 0 1-.96-.22c-.02 0-.02-.02-.02-.07.05-.05.02-.05-.07-.02-.07 0-.12 0-.15-.05s-.07-.07-.12-.05c-.07.02-.1.02-.04-.05.02-.05.02-.05-.05-.02s-.1 0-.07-.03c.02-.02-.05-.1-.17-.14-.1-.05-.2-.12-.2-.14s-.02-.05-.04-.03c-.05.03-.07.03-.05 0 .02-.05-.24-.4-.26-.36 0 .02-.05 0-.1-.07-.05-.05-.1-.1-.07-.12s-.03-.07-.07-.12c-.08-.05-.12-.12-.1-.15 0-.02 0-.04-.05-.04a.5.5 0 0 1-.07-.12c0-.05-.05-.15-.07-.24a5.1 5.1 0 0 1 0-2.05c.02-.07.02-.1.05-.1.02.03.07-.07.12-.19.07-.24.55-1 .72-1.15.04-.07.1-.14.07-.17s-.03-.05 0-.02c.02.02.12-.03.19-.12a7.6 7.6 0 0 1 1.03-.84c.03 0 .05-.05.03-.08-.03-.04-.03-.04 0-.02a1 1 0 0 0 .26-.12l.58-.36c.2-.1.36-.22.39-.24s.04-.05.04-.02c0 .02.1 0 .2-.05.4-.17.96-.3 1.41-.34.44-.02.46-.02.49.1.04.07.07.1.1.04.04-.07.18.27.16.44 0 .14-.12.36-.17.33s-.05 0-.05.05c0 .03-.07.1-.14.15-.1.02-.17.1-.2.14 0 .05-.04.07-.06.05s-.05 0-.05.02c0 .05-.03.05-.05.05-.02-.02-.1.02-.17.07-.14.17-.96.63-1.03.58-.03 0-.05 0-.05.02s-.14.12-.31.22c-.2.1-.39.22-.48.29s-.2.12-.22.1c-.02 0-.05 0-.05.02 0 .05-.05.07-.07.07-.14 0-.7.4-1.03.77-.51.53-.53.55-.51.6.02.03.02.03-.02.03-.03 0-.08.04-.08.12s.03.07.08 0c.04-.1.07-.05.02.07-.02.05-.07.07-.1.07-.04-.02-.04-.02-.02.05a3.6 3.6 0 0 0-.24 1.15c0 .12.02.24.05.27s.05.04.02.07c-.02.05.03.12.1.19.05.07.1.14.1.17s.02.02.07 0c.02 0 .04 0 .04.02-.04.1.12.3.2.27.04-.03.12.02.19.07.05.07.14.14.21.14.08.03.12.08.1.1s0 .05.05.02c.05-.02.12.03.17.08s.12.07.14.04c.05-.02.07-.02.07.03s.6.21.7.19c0-.02.02 0 .02.02s.17.05.39.05c.21-.02.53 0 .7.05.26.05.3.07.28.17 0 .07.03.12.05.1.07-.03.07.09 0 .19-.07.12-.46.24-.74.24-.17 0-.32 0-.34-.03m4.54-.31c-.24-.41-.36-1.4-.43-3.82-.05-2.12-.07-2.02.36-2.07.17-.03.27 0 .36.1.07.04.12.11.12.14s.05.1.07.14c.17.17.24.9.24 2.21 0 2.38-.04 3.2-.24 3.35-.14.12-.38.1-.48-.05M2.55 14.43c-.07-.05-.15-.07-.17-.05-.02 0-.02-.05-.05-.1 0-.07-.02-.14-.05-.14-.04-.02-.07-.1-.07-.17 0-.1-.02-.19-.05-.21s-.07-.12-.07-.2l-.05-.14-.02-.12c-.02-.29-.17-.8-.22-.81s-.07-.08-.07-.12c0-.17-.1-.63-.12-.7a2.5 2.5 0 0 1-.05-.63v-.6l.22-.02c.14 0 .27.02.34.1s.1.07.07 0c-.02-.05 0-.03.07.04.07.05.12.12.1.17 0 .05 0 .05.07.05.05-.03.07 0 .07.12s0 .14.05.07.07-.05.05.05c0 .05.02.14.07.19.12.17.26 1.35.29 2.28.02.39.05.7.07.7.07 0-.1.22-.22.27a.34.34 0 0 1-.26-.03m1.95-1.95c-.03-.02 0-.02.04 0 .1.03.12.08.05.08-.04 0-.07-.03-.1-.08zM21.69 7.1c-.05 0-.12-.07-.17-.12-.02-.08-.12-.12-.17-.12-.07 0-.12-.03-.12-.05 0-.12 0-.14-.1-.2-.02-.02-.04-.04-.04-.07.02-.02 0-.16-.05-.28-.05-.15-.07-.27-.05-.3.05-.09.46-.23.85-.3a2.7 2.7 0 0 1 1.17.07c.24.1.49.38.49.55 0 .26-.17.46-.58.62-.22.12-.41.17-.46.15-.02-.03-.05 0-.02.02.05.07-.6.1-.75.03" })
9
+ ] });
10
+ export {
11
+ SvgIconBcdi as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconBiblionisep: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconBiblionisep;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconBiblionisep = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12.29 1.4c-8.63 0-8.75.02-9.3.26-.32.15-.73.46-.95.7-.67.77-.74.91-.74 7.5h3.8c-.03 0-.05-.02-.05-.02 0-.07.17-.24.34-.39.29-.21.5-.24 1.8-.24 2.26 0 2.29-.14.31-2.14-1.53-1.6-1.65-1.8-1.22-2.52.24-.41.86-.67 1.32-.55.17.02.94.7 1.68 1.44 1.9 1.9 2.07 1.87 2.07-.43 0-1.6.07-1.78.58-2.07.43-.22.8-.17 1.13.17.29.29.31.38.31 1.75 0 1.52.1 1.95.46 1.95.12 0 .84-.6 1.61-1.37.8-.8 1.54-1.42 1.73-1.47.7-.17 1.47.41 1.47 1.13 0 .55-.17.8-1.61 2.24-1.71 1.75-1.71 1.78.53 1.87 1.25.05 1.63.1 1.82.27.15.12.27.29.27.36 0 0-.02.02-.07.02h3.7c0-5.53-.02-6.27-.22-6.7a3.9 3.9 0 0 0-.67-.97c-.87-.82-.46-.8-10.1-.8zm0 5.91c-.58 0-.82.36-.82 1.2 0 .37-.02.85-.07 1.06l-.07.3h1.9v-.9c0-1.2-.24-1.66-.94-1.66m-11 2.75c0 .79.03 1.63.03 2.62.03 8.05.05 8.56.27 8.97a3.2 3.2 0 0 0 1.97 1.66c.17.04 4.06.1 8.68.1 9.1.01 9.1.01 10-.7.24-.17.58-.63.75-.97l.31-.65v-8.7l-.02-2.34H1.3zm1.33 4.15h.58v1.13l.29-.21c.1-.05.19-.07.31-.07.24 0 .4.1.53.31s.2.5.2.87c0 .38-.1.67-.25.91-.17.22-.36.34-.58.34-.12 0-.19 0-.28-.03-.08-.04-.15-.07-.22-.12l-.02.1h-.56v-3.22zm2.29 0h.62v.56h-.62v-.55zm1.15 0h.58v1.13l.26-.21a.7.7 0 0 1 .34-.07c.21 0 .38.1.5.31.15.22.2.5.2.87 0 .38-.08.67-.24.91-.15.22-.34.34-.58.34-.1 0-.2 0-.27-.03l-.21-.12-.03.1h-.55v-3.22zm2.28 0h.6v3.23h-.6V14.2zm1.13 0h.6v.56h-.6v-.55zm5.73 0h.6v.56h-.6v-.55zm-3.73.82c.31 0 .55.12.72.34s.27.53.27.91c0 .39-.1.68-.27.92-.17.21-.4.31-.72.31s-.58-.1-.74-.31c-.17-.24-.24-.53-.24-.92s.07-.7.24-.91a.93.93 0 0 1 .74-.34m7.72 0c.29 0 .5.1.65.3s.21.47.21.83v.27h-1.32c.03.17.07.31.17.4s.24.15.43.15c.12 0 .24-.02.36-.07.12-.07.22-.12.27-.2h.07v.6a1.4 1.4 0 0 1-.36.15c-.12.03-.24.05-.39.05-.36 0-.65-.1-.84-.31s-.29-.5-.29-.92c0-.38.1-.67.27-.91.19-.22.43-.34.77-.34m-5.12.03c.19 0 .33.07.45.21.1.15.15.36.15.65v1.52h-.58v-1.42c-.02-.1-.02-.17-.05-.22s-.04-.1-.1-.12c-.02-.02-.09-.02-.16-.02-.05 0-.1 0-.17.02l-.17.12v1.64h-.57V15.1h.57v.27c.1-.1.2-.2.3-.24s.2-.07.33-.07m3.07 0a1 1 0 0 1 .39.04c.12.03.22.08.29.12v.58h-.05a1.2 1.2 0 0 0-.29-.2.9.9 0 0 0-.33-.06c-.1 0-.17.02-.24.04-.05.05-.1.1-.1.15 0 .07.02.1.05.14.02.03.1.05.21.08l.17.04c.07.03.15.03.22.05.14.07.26.14.33.24.08.12.12.27.12.43 0 .24-.1.44-.26.58s-.39.22-.67.22c-.17 0-.32-.03-.46-.05l-.31-.15v-.6h.07c.02.03.05.05.1.08.02.04.09.07.14.1l.21.09c.07.03.15.02.24.02.12 0 .2 0 .27-.05.05-.02.07-.07.07-.14 0-.05-.02-.1-.05-.12s-.1-.05-.19-.07l-.17-.05a.45.45 0 0 1-.19-.05.6.6 0 0 1-.36-.26c-.1-.1-.12-.27-.12-.44 0-.21.07-.4.24-.55s.39-.21.67-.21m4.5 0c.22 0 .41.1.53.3s.2.51.2.88a1.66 1.66 0 0 1-.27.93c-.07.1-.15.2-.24.24a.8.8 0 0 1-.31.07c-.12 0-.2 0-.27-.04l-.24-.1v.96h-.58v-3.2h.58v.24l.29-.21c.1-.05.2-.07.31-.07m-16.71.04h.58v2.34h-.58zm4.54 0h.58v2.34h-.58zm5.75 0h.58v2.34h-.58zm3.92.41c-.12 0-.22.03-.29.1-.07.1-.1.2-.12.36h.77a1 1 0 0 0-.1-.34c-.07-.1-.14-.12-.26-.12m-7.67.05c-.07 0-.12 0-.17.02l-.12.12c-.02.05-.05.12-.07.22s-.05.22-.05.36c0 .12.03.24.05.34 0 .1.02.17.07.21.03.05.07.1.12.12s.1.05.17.05c.05 0 .1-.02.14-.05s.1-.04.12-.12a.5.5 0 0 0 .1-.19l.02-.36-.02-.34a.7.7 0 0 0-.1-.24c-.02-.04-.07-.1-.12-.12s-.1-.02-.14-.02m-7.94.05c-.04 0-.1.02-.16.05-.05 0-.1.04-.17.07v1.18c.05.02.1.02.12.04h.14c.15 0 .27-.04.34-.16s.12-.3.12-.53c0-.22-.02-.36-.07-.48-.07-.12-.17-.17-.31-.17zm3.44 0c-.07 0-.12.02-.16.05-.08 0-.12.04-.17.07v1.18l.12.04h.12c.17 0 .29-.04.36-.16s.1-.3.1-.53c0-.22-.03-.36-.08-.48s-.14-.17-.29-.17m14.4 0c-.04 0-.09.02-.16.05-.05 0-.1.04-.17.07v1.18l.15.04h.12c.14 0 .26-.04.33-.16s.12-.3.12-.53c0-.22-.02-.39-.1-.48-.04-.12-.14-.17-.28-.17z" })
9
+ ] });
10
+ export {
11
+ SvgIconBiblionisep as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconBlog: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconBlog;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconBlog = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 29 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M6.04 10.87c.21 0 .38-.21.38-.43s-.17-.39-.38-.39h-2.4c-.23 0-.44.17-.44.39s.22.43.43.43h2.4zm0 1.73c.21 0 .38-.21.38-.4s-.17-.41-.38-.41h-2.4c-.23 0-.44.19-.44.4s.22.41.43.41h2.4zm5.05.34a9.36 9.36 0 0 1 6.97 2.91V6.81a9.17 9.17 0 0 1-6.97 3.03zm11.95-5.29-.8-.82 3.3-3.27.82.77zm.6 4.2V10.7h5.53v1.16h-5.53zm-1.4 4.12.8-.82 3.32 3.32-.82.77zm-3.07-12.4c.48 0 .86.35.86.8v13.88c0 .46-.38.82-.87.82s-.84-.36-.84-.82c-1.42-1.73-3.9-3.96-7.62-3.96H9.16l3.37 5.67-2.04 1.5c-.51.26-1.06-.08-1.35-.44l-4.19-6.73H2.7S.6 13.16.6 11.35s2.1-2.83 2.1-2.83h8c3.73 0 6.2-2.31 7.62-4.14 0-.46.37-.82.85-.82z" })
9
+ ] });
10
+ export {
11
+ SvgIconBlog as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconBookmarkEmpty: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconBookmarkEmpty;