@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,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMindmap = ({
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: "M24.05 17.27v4.3q0 .53-.39.92t-.91.38h-4.28q-.53 0-.91-.38t-.39-.92v-4.3q0-.53.39-.91t.9-.37h1.28v-2.57H12.9V16h1.27q.56 0 .92.37t.38.9v4.31q0 .53-.38.92t-.92.38H9.88q-.55 0-.91-.38t-.39-.92v-4.3q0-.53.39-.91t.91-.37h1.28v-2.57H4.3V16h1.28q.55 0 .91.37t.39.9v4.31q0 .53-.39.92t-.91.38H1.3q-.56 0-.92-.38T0 21.57v-4.3q0-.53.39-.91t.9-.37h1.28v-2.57q0-.7.5-1.22t1.23-.5h6.86V9.11H9.88q-.55 0-.91-.39t-.39-.89v-4.3q0-.53.39-.91t.91-.39h4.28q.55 0 .91.39t.39.91v4.3q0 .53-.39.9t-.9.38h-1.28v2.57h6.85q.7 0 1.23.5t.5 1.23V16h1.28q.55 0 .91.36t.38.9z" })
9
+ ] });
10
+ export {
11
+ SvgIconMindmap 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 SvgIconMonorientationenligne: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMonorientationenligne;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMonorientationenligne = ({
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.14 1.83c-8.6 0-8.72 0-9.3.27-.3.14-.72.45-.94.67-.67.8-.74.91-.72 7.5h3.8c-.05 0-.05 0-.05-.02 0-.05.14-.24.34-.36.29-.24.48-.27 1.78-.27 2.26 0 2.28-.14.33-2.14-1.56-1.59-1.66-1.8-1.22-2.52.24-.41.84-.68 1.32-.56.17.05.91.7 1.66 1.45 1.9 1.9 2.07 1.87 2.07-.44.02-1.58.07-1.78.6-2.06.4-.22.77-.17 1.1.16.3.3.32.39.32 1.76 0 1.51.1 1.95.45 1.95.12 0 .85-.6 1.62-1.37.79-.8 1.53-1.4 1.73-1.45.72-.19 1.46.39 1.46 1.1 0 .56-.16.8-1.6 2.27-1.71 1.73-1.71 1.75.52 1.85 1.28.05 1.64.1 1.85.27.12.12.24.28.24.36l-.04.02h3.7c0-5.53-.05-6.25-.24-6.7a3.8 3.8 0 0 0-.65-.97c-.87-.82-.48-.77-10.12-.77zm0 5.9c-.55 0-.81.38-.81 1.2 0 .35-.03.84-.08 1.05l-.04.3h1.9v-.9c0-1.2-.27-1.66-.97-1.66zM1.18 10.45v2.62c.02 8.06.05 8.56.26 8.97.46.85 1.1 1.4 1.97 1.66.17.05 4.1.1 8.69.1 9.11.02 9.09.02 10-.67.26-.2.58-.65.74-.99l.32-.65V10.46H1.18zM6.76 12c.31 0 .55.07.72.27.19.19.26.43.26.74s-.07.58-.26.75c-.17.19-.41.26-.72.26-.34 0-.58-.07-.75-.26-.19-.17-.26-.44-.26-.75s.07-.57.26-.74c.17-.2.41-.27.75-.27m-3.22 0c.12 0 .21.03.3.07.1.08.18.15.22.27.12-.12.22-.2.34-.24a.6.6 0 0 1 .34-.1c.19 0 .33.05.43.2.12.12.17.28.17.52v1.25h-.6v-1.2c0-.07-.03-.12-.03-.17l-.1-.07c-.05-.03-.09-.02-.16-.02-.05 0-.1 0-.14.02-.05 0-.1.05-.17.07v1.38h-.6v-1.21c0-.08-.03-.12-.05-.16 0-.03-.05-.05-.07-.08-.05-.02-.1-.02-.17-.02s-.12 0-.17.02c-.05.03-.12.05-.14.08v1.37h-.6v-1.93h.6v.22c.1-.1.19-.15.29-.2s.19-.07.3-.07zm5.84 0c.19 0 .36.05.48.17.1.12.17.31.17.55v1.25h-.6v-.96c0-.07 0-.14-.03-.21 0-.1 0-.15-.02-.17-.03-.05-.05-.07-.1-.1s-.1-.02-.17-.02-.12 0-.16.02c-.05 0-.12.05-.2.07v1.37h-.57v-1.92h.57v.22c.12-.1.22-.15.32-.2s.19-.07.31-.07m-2.62.41-.17.02-.12.1-.1.2-.02.28.02.3c.03.06.05.11.1.16.02.05.07.07.12.1s.1.04.17.04c.04 0 .1-.02.14-.05.05 0 .1-.04.12-.1.05-.04.07-.09.1-.16s.02-.17.02-.29 0-.19-.02-.29a.4.4 0 0 0-.1-.17c-.02-.04-.07-.1-.12-.1a.34.34 0 0 0-.14-.04m-.48 2.04h.62v.49h-.62v-.48zm11.03 0h.6v.49h-.6v-.48zm-5.24.2h.6v.55h.56v.43h-.56v.84c0 .04 0 .1.03.15l.07.1c.05.02.1.02.17.02.04 0 .07 0 .12-.03l.12-.02h.04v.4c-.07.03-.14.06-.21.06l-.24.02c-.24 0-.41-.05-.53-.14-.1-.1-.17-.27-.17-.5v-.9h-.24v-.43h.24zm3.75 0h.6v.55h.56v.43h-.56v.84c0 .04 0 .1.03.15l.07.1c.05.02.1.02.17.02.05 0 .07 0 .12-.03l.12-.02h.05v.4c-.08.03-.15.06-.22.06l-.24.02c-.24 0-.4-.05-.53-.14-.1-.1-.17-.27-.17-.5v-.9h-.24v-.43h.24zm-12.62.5c.34 0 .58.07.74.27.2.19.27.43.27.74s-.07.58-.27.75c-.16.19-.4.29-.74.29q-.48 0-.72-.3c-.2-.16-.27-.43-.27-.74s.07-.55.27-.74c.16-.2.4-.27.72-.27m5.14 0c.32 0 .53.07.68.24.16.15.24.39.24.67v.22H7.9c0 .14.05.27.14.34.12.1.27.12.46.12.12 0 .24-.03.36-.07s.22-.1.27-.15h.07v.5c-.12.06-.27.1-.36.13-.12.02-.27.02-.41.02-.36 0-.65-.07-.84-.26a.9.9 0 0 1-.3-.72c0-.34.1-.58.3-.77.17-.17.43-.27.74-.27zm11 0c.3 0 .57.07.74.27s.26.43.26.74-.1.58-.26.75c-.2.19-.43.29-.75.29s-.55-.1-.74-.3c-.17-.16-.27-.43-.27-.74s.1-.55.27-.74c.2-.2.43-.27.74-.27zm-5.03 0c.33 0 .57.05.72.17.14.1.24.26.24.5v1.3h-.6v-.19a.5.5 0 0 1-.12.07c-.03.05-.07.08-.12.1s-.12.05-.17.05c-.07.02-.14.02-.22.02-.16 0-.3-.05-.43-.17s-.17-.26-.17-.43a.7.7 0 0 1 .08-.34c.07-.1.14-.16.26-.21.1-.05.24-.1.4-.1a3 3 0 0 1 .51-.05v-.02c0-.1-.04-.17-.14-.22a.84.84 0 0 0-.67 0c-.1.03-.2.05-.24.08h-.05v-.46a2.8 2.8 0 0 1 .72-.1m-3.44 0c.2 0 .36.05.46.2.12.11.16.28.16.52v1.25h-.57v-.96c0-.07 0-.14-.03-.22 0-.07 0-.14-.02-.16-.02-.05-.05-.08-.1-.1s-.1-.02-.19-.02c-.05 0-.1 0-.14.02l-.2.07v1.37h-.57V15.2h.58v.22c.12-.1.21-.15.3-.2s.2-.07.32-.07m11.1 0c.2 0 .35.05.47.2.12.11.16.28.16.52v1.25H22v-1.18c0-.08-.02-.14-.04-.16a.2.2 0 0 0-.1-.1c-.02-.02-.1-.02-.17-.02-.05 0-.1 0-.17.02l-.16.07v1.37h-.6V15.2h.6v.22c.1-.1.19-.15.28-.2s.22-.07.34-.07zm-16.15.05h.14v.6h-.05c-.02-.02-.07-.02-.12-.02l-.14-.03c-.07 0-.14.03-.22.03-.07.02-.14.02-.21.07v1.27h-.58V15.2h.58v.29c.14-.12.24-.2.34-.24.1-.03.19-.05.26-.05m.48 0h.58v1.93H6.3zm11.01 0h.6v1.93h-.6zm-9.01.34c-.1 0-.2.02-.27.1-.07.04-.12.14-.12.28h.75c0-.14-.03-.24-.08-.29-.07-.07-.16-.1-.29-.1zm-5.1.05c-.05 0-.1 0-.15.02-.04 0-.07.05-.12.1-.04.02-.07.1-.1.16s-.02.17-.02.3c0 .11 0 .18.03.28.02.07.05.12.1.17.02.05.07.1.11.1.05.02.1.04.17.04l.15-.02c.04-.03.1-.07.12-.1a.5.5 0 0 0 .1-.19l.02-.29c0-.1-.03-.19-.03-.29a.4.4 0 0 0-.1-.17c-.02-.04-.07-.07-.11-.1s-.1-.02-.17-.02zm16.13 0c-.04 0-.1 0-.14.02-.05 0-.1.05-.14.1-.03.02-.05.1-.08.16s-.02.17-.02.3c0 .11 0 .18.02.28l.08.17c.04.05.07.1.12.1l.16.04.17-.02.12-.1c.03-.05.05-.12.07-.19s.03-.17.03-.29c0-.1 0-.19-.03-.29l-.07-.17-.12-.1c-.05-.02-.12-.02-.17-.02zm-4.66.64c-.07 0-.17 0-.24.03l-.22.02a.3.3 0 0 0-.14.1c-.02.05-.05.1-.05.14s0 .08.03.1l.04.07c.02.02.05.05.1.05.02.02.07.02.14.02s.12-.02.2-.05c.04-.02.1-.04.14-.1zm4.62 1.38h.24l.16.02v.43h-.02c-.05 0-.07 0-.12-.02-.02 0-.07-.03-.12-.03-.12 0-.2.03-.24.08s-.07.12-.07.26h.45v.43h-.43v1.5h-.58v-1.5h-.26v-.43h.26v-.05c0-.24.05-.4.17-.53s.32-.16.56-.16m-11.21 0h.6v2.66h-.6zm1.13 0h.63v.48H9.2v-.48zm-5.96.7c.29 0 .53.07.67.23.14.15.22.39.22.68v.21H2.79c.02.15.07.27.17.34.1.1.26.12.45.12.12 0 .24-.02.36-.07s.2-.1.27-.15h.07v.5c-.14.06-.26.1-.38.13s-.24.02-.39.02c-.36 0-.65-.07-.84-.26-.2-.17-.29-.41-.29-.72s.1-.58.27-.77c.19-.17.45-.27.77-.27zm12.74 0c.31 0 .53.07.67.23.15.15.24.39.24.68v.21h-1.34c0 .15.04.27.14.34.12.1.27.12.46.12.12 0 .24-.02.36-.07s.22-.1.26-.15h.08v.5c-.12.06-.27.1-.39.13-.1.02-.24.02-.38.02-.37 0-.65-.07-.85-.26-.19-.17-.29-.41-.29-.72s.1-.58.27-.77c.2-.17.46-.27.77-.27zm-10.22 0c.2 0 .36.07.46.19.12.12.17.28.17.52v1.25h-.58v-.93l-.02-.24a.3.3 0 0 0-.05-.17c0-.05-.05-.07-.1-.1-.02-.02-.1-.02-.17-.02-.04 0-.1 0-.16.02l-.17.1v1.35h-.58v-1.93h.58v.22c.1-.07.19-.15.29-.2a.9.9 0 0 1 .33-.07zm5.3 0c.09 0 .18.02.26.04.1.02.16.05.24.1l.02-.1h.55v1.7c0 .18-.02.34-.07.46s-.12.22-.19.3c-.1.07-.2.11-.34.14-.12.05-.26.05-.4.05-.13 0-.27 0-.4-.03-.11 0-.2-.02-.3-.05v-.48h.07c.07.03.17.05.26.07s.2.05.27.05c.12 0 .21-.02.26-.05.08 0 .12-.04.17-.07l.07-.14a.6.6 0 0 0 .03-.22v-.02c-.08.05-.15.1-.24.14a.9.9 0 0 1-.3.05c-.26 0-.45-.07-.6-.24-.11-.17-.19-.4-.19-.74 0-.15.03-.3.05-.41a.9.9 0 0 1 .2-.3c.07-.09.16-.14.26-.18s.22-.08.31-.08zm2.85 0c.2 0 .34.07.46.19s.17.28.17.52v1.25h-.6V19.1a.3.3 0 0 0-.05-.17.2.2 0 0 0-.1-.1c-.02-.02-.1-.02-.17-.02-.04 0-.1 0-.16.02-.05.03-.12.05-.17.1v1.35h-.6v-1.93h.6v.22l.29-.2a.7.7 0 0 1 .33-.07zm7.2.04h.14v.6h-.05c-.03-.02-.07-.02-.12-.02h-.36l-.22.07v1.27h-.57v-1.92h.57v.29c.12-.12.24-.2.34-.24.1-.02.2-.05.26-.05zm-11.89 0h.58v1.92h-.58zm-6.03.34c-.12 0-.22.02-.3.1-.06.04-.09.14-.11.28h.77c0-.12-.02-.21-.1-.29-.04-.07-.14-.1-.26-.1zm12.74 0c-.1 0-.19.02-.26.1-.07.04-.12.14-.12.28h.74c0-.12-.02-.21-.1-.29-.04-.07-.14-.1-.26-.1zm-4.64.07c-.14 0-.26.05-.34.14-.07.08-.12.22-.12.39s.03.31.1.38c.07.08.17.1.29.1.07 0 .12 0 .17-.02l.17-.08v-.86l-.12-.05zm6.04.84h.6v.67h-.6z" })
9
+ ] });
10
+ export {
11
+ SvgIconMonorientationenligne 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 SvgIconMonstageenligne: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMonstageenligne;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMonstageenligne = ({
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.35c-8.63 0-8.75 0-9.3.27a3.9 3.9 0 0 0-.95.67c-.67.8-.74.91-.74 7.5h3.8c-.03 0-.05 0-.05-.02 0-.05.17-.24.34-.36.29-.24.5-.27 1.8-.27C9.45 9.14 9.48 9 7.5 7 5.97 5.41 5.85 5.2 6.28 4.48c.24-.41.86-.68 1.32-.56.17.05.94.7 1.68 1.45 1.9 1.9 2.07 1.87 2.07-.44 0-1.58.07-1.78.58-2.06.43-.22.8-.17 1.13.16.29.3.31.39.31 1.76 0 1.51.1 1.95.46 1.95.12 0 .84-.6 1.61-1.37.8-.8 1.54-1.4 1.73-1.45.7-.19 1.47.39 1.47 1.1 0 .56-.17.8-1.61 2.27-1.71 1.73-1.71 1.75.53 1.85 1.25.05 1.63.1 1.82.27.15.12.27.28.27.36 0 0-.02.02-.07.02h3.7c0-5.53-.02-6.25-.22-6.7a3.9 3.9 0 0 0-.67-.97c-.87-.82-.46-.77-10.1-.77m0 5.9c-.58 0-.82.38-.82 1.2 0 .35-.02.84-.07 1.05l-.07.29h1.9V8.9c0-1.2-.24-1.66-.94-1.66zm-11 2.73c0 .8.03 1.64.03 2.62.03 8.06.05 8.56.27 8.97a3.2 3.2 0 0 0 1.97 1.66c.17.05 4.06.1 8.68.1 9.1.02 9.1.02 10-.67.24-.2.58-.65.75-1l.29-.64.02-8.7-.02-2.34H1.3zm13.11 2.55h.63v.65h.58v.5h-.58v1.06c0 .05 0 .12.02.17s.05.07.1.1c.02.04.1.04.17.04.02 0 .07 0 .12-.02.07-.02.1-.02.12-.05h.04v.53l-.21.03c-.07.02-.17.02-.27.02-.24 0-.43-.05-.55-.17s-.17-.31-.17-.6v-1.1h-.26v-.51h.26zm-7.4.58c.34 0 .6.12.77.34.19.21.29.52.29.9s-.1.68-.3.92c-.16.22-.43.32-.76.32s-.6-.1-.8-.32c-.19-.24-.28-.53-.28-.91s.1-.7.28-.91c.2-.22.46-.34.8-.34m14.81 0c.31 0 .55.1.7.29.17.19.24.48.24.84v.26h-1.42c0 .17.07.32.17.41.12.1.26.15.48.15.12 0 .26-.03.38-.07.12-.08.22-.12.3-.2h.06v.6a1.74 1.74 0 0 1-.82.2c-.38 0-.7-.1-.88-.32-.22-.21-.32-.5-.32-.91 0-.39.1-.67.3-.91.18-.22.45-.34.81-.34m-5.02.02c.33 0 .6.05.74.2.17.11.24.33.24.6v1.58h-.6v-.24a.6.6 0 0 0-.15.12.5.5 0 0 0-.11.1l-.2.07c-.07.02-.14.02-.21.02a.6.6 0 0 1-.48-.21c-.12-.12-.2-.31-.2-.5s.05-.32.1-.44a.7.7 0 0 1 .29-.24c.12-.07.24-.12.43-.14.17-.03.34-.05.53-.05v-.03c0-.12-.05-.21-.14-.26a.95.95 0 0 0-.72 0c-.1.02-.2.07-.25.1h-.04v-.58c.05 0 .17-.03.31-.07.14-.03.29-.03.46-.03m-13.23 0c.12 0 .24.03.34.1s.19.17.24.29q.18-.18.36-.3c.18-.12.24-.09.33-.09.22 0 .39.07.49.22.12.14.16.36.16.65v1.51h-.62v-1.44c0-.1-.03-.14-.05-.2s-.05-.09-.1-.11c-.02-.03-.1-.03-.16-.03-.05 0-.1 0-.17.03-.05.02-.1.05-.17.12v1.63h-.63v-1.44l-.04-.2a.18.18 0 0 0-.1-.11c-.05-.03-.1-.03-.17-.03s-.12 0-.19.05c-.05.03-.1.05-.14.1v1.63H2.3v-2.33h.63v.27c.1-.1.19-.17.31-.24.1-.05.2-.08.31-.08zm6.23 0c.21 0 .38.07.5.22s.17.36.17.65v1.51h-.63v-1.15c0-.1 0-.2-.02-.27 0-.1 0-.16-.02-.21s-.07-.1-.12-.12c-.03-.03-.1-.03-.17-.03s-.12 0-.17.03c-.07.02-.12.07-.2.12v1.63h-.62v-2.33h.63v.26c.1-.1.22-.19.31-.24s.22-.07.34-.07m3.34 0c.14 0 .29 0 .4.05.15.02.25.07.32.12v.58h-.05c-.1-.07-.19-.15-.3-.2a.9.9 0 0 0-.63-.02c-.08.05-.1.1-.1.15 0 .07.02.1.05.14.02.02.1.05.21.07.08.03.15.03.22.05l.21.05c.17.07.3.14.37.24.07.12.12.26.12.43 0 .24-.1.43-.27.58-.2.14-.43.21-.74.21-.17 0-.34-.02-.49-.04-.14-.05-.24-.1-.33-.15v-.6h.07c.02.02.05.05.1.07.04.05.1.07.16.1.08.05.15.07.22.1.1.02.2.02.26.02.15 0 .22 0 .3-.05.04-.02.07-.07.07-.14 0-.05 0-.1-.05-.12a.5.5 0 0 0-.2-.08l-.19-.04c-.07 0-.14-.03-.21-.05a.65.65 0 0 1-.39-.27c-.1-.1-.12-.26-.12-.43 0-.22.07-.4.27-.55.17-.15.4-.22.72-.22m5.96 0c.12 0 .22 0 .3.05.09.02.16.05.23.12l.03-.12h.6v2.07c0 .21-.03.4-.08.55s-.12.27-.21.36h-.03a1 1 0 0 1 .39-.07c.07 0 .17 0 .24.03l.2.02v.53h-.06c-.02 0-.04-.03-.1-.03-.04-.02-.09-.02-.14-.02-.12 0-.21.02-.24.07-.04.05-.07.17-.07.31v.03h.48v.5h-.45v1.83h-.63v-1.83h-.26v-.5h.26v-.07c0-.3.05-.5.2-.65 0 0 0-.03.02-.03l-.15.08c-.14.02-.29.04-.45.04-.15 0-.27 0-.41-.02l-.34-.07v-.6h.07c.07.04.17.07.3.12.09.02.2.02.28.02.12 0 .22 0 .29-.02s.12-.08.17-.12l.07-.17a.9.9 0 0 0 .02-.24v-.05a.7.7 0 0 1-.24.17c-.1.05-.19.07-.31.07-.26 0-.48-.1-.62-.29s-.24-.5-.24-.91c0-.2.02-.36.07-.48.05-.15.12-.27.19-.39.07-.1.17-.17.29-.21s.21-.08.34-.08zm2.67.46c-.12 0-.24.02-.31.1-.07.1-.12.19-.12.36h.82c-.03-.15-.05-.27-.12-.34-.05-.1-.15-.12-.27-.12M7 13.64c-.07 0-.12 0-.17.02s-.1.07-.14.12c-.03.05-.08.12-.1.22l-.02.36.02.33c.02.1.05.17.1.22.02.05.07.1.12.12.07.02.12.05.19.05.05 0 .1-.03.17-.05.04-.02.07-.05.12-.12a.5.5 0 0 0 .1-.2c.02-.09.02-.2.02-.35s0-.24-.03-.34a.7.7 0 0 0-.1-.24.3.3 0 0 0-.11-.12c-.08-.02-.12-.02-.17-.02m12.36.02a.52.52 0 0 0-.39.17.95.95 0 0 0-.12.48c0 .22.05.39.12.48.05.07.17.12.32.12.04 0 .12 0 .16-.02.08-.03.12-.07.17-.1v-1.06a.18.18 0 0 0-.12-.04c-.07 0-.12-.03-.14-.03m-2.19.77-.29.02-.21.05q-.12.045-.15.12c-.03.075-.05.1-.05.17v.12c.03.02.03.05.05.1.05.02.07.04.1.04.04.03.1.03.19.03.05 0 .12-.03.2-.05a.7.7 0 0 0 .16-.12zm-8.75 1.68h.62v3.25h-.62zm1.18 0h.67v.58H9.6zm-6.33.85c.31 0 .55.1.72.28.14.2.22.46.22.82v.27H2.79c0 .17.07.31.17.4.12.1.26.15.48.15.12 0 .26-.02.38-.07.12-.07.22-.12.3-.2h.06v.6a1.4 1.4 0 0 1-.4.15c-.13.05-.27.05-.41.05-.39 0-.7-.1-.9-.31-.21-.22-.3-.5-.3-.9s.09-.69.28-.9c.2-.25.48-.34.82-.34m13.54 0c.34 0 .58.1.72.28.17.2.24.46.24.82v.27h-1.42c0 .17.05.31.17.4q.15.15.48.15c.12 0 .24-.02.39-.07.12-.07.21-.12.28-.2h.08v.6c-.15.08-.3.13-.41.15-.12.05-.27.05-.41.05-.39 0-.7-.1-.92-.31-.19-.22-.3-.5-.3-.9s.11-.69.3-.9c.2-.25.46-.34.8-.34m-10.87 0c.22 0 .39.07.5.21s.17.36.17.65v1.54H6v-1.45l-.05-.2c-.02-.05-.07-.08-.1-.1a.45.45 0 0 0-.19-.05l-.17.02c-.07.03-.12.07-.19.12v1.66h-.62v-2.33h.62v.24c.1-.1.22-.17.32-.24.1-.05.21-.08.33-.08zm5.65 0c.1 0 .2.02.29.04l.22.12.02-.1h.6v2.08c0 .21-.02.38-.07.55a.7.7 0 0 1-.22.34c-.1.1-.19.14-.33.19-.12.02-.3.05-.46.05-.12 0-.27 0-.39-.03l-.33-.07v-.58h.07l.26.1c.12.02.22.05.32.05s.19-.03.26-.05c.07-.03.15-.05.17-.1a.26.26 0 0 0 .07-.17c.03-.07.03-.16.03-.26v-.05c-.08.07-.15.15-.24.2-.1.02-.2.04-.32.04-.26 0-.48-.1-.62-.29s-.22-.5-.22-.89c0-.19.03-.36.07-.5s.1-.27.2-.36c.07-.1.16-.17.26-.24a1 1 0 0 1 .36-.08zm3 0c.22 0 .4.07.51.21s.17.36.17.65v1.54h-.63v-1.45c-.02-.09-.02-.16-.04-.2s-.05-.08-.1-.1a.45.45 0 0 0-.2-.05l-.16.02c-.07.03-.12.07-.2.12v1.66h-.62v-2.33h.63v.24l.31-.24a.85.85 0 0 1 .34-.08zm7.68.04h.07c.03 0 .05 0 .07.03v.7h-.05c-.02 0-.07-.03-.14-.03h-.14c-.1 0-.17 0-.24.03a.4.4 0 0 0-.22.07v1.56h-.63v-2.33h.63v.33c.14-.14.26-.24.36-.28s.2-.08.29-.08m-12.65.03h.62v2.33h-.62zm-6.4.38a.5.5 0 0 0-.31.12c-.07.08-.12.2-.12.36h.82a.65.65 0 0 0-.1-.36.4.4 0 0 0-.29-.12m13.54 0c-.12 0-.22.05-.29.12s-.12.2-.12.36h.8c0-.16-.03-.28-.1-.36-.05-.07-.14-.12-.29-.12m-4.93.1c-.17 0-.29.05-.36.17-.1.1-.12.26-.12.45 0 .24.02.39.1.49s.16.12.3.12c.08 0 .13 0 .2-.03.05-.02.1-.05.15-.1v-1.05c-.03-.03-.08-.03-.12-.05zm6.4 1.03h.65v.82h-.65z" })
9
+ ] });
10
+ export {
11
+ SvgIconMonstageenligne 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 SvgIconMoodle: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMoodle;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMoodle = ({
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: "M16.96 7.87c-1.7 0-2.88.4-3.52 1.21a3.2 3.2 0 0 0-.58-.49 6.8 6.8 0 0 1-2.05 2.13c.59.3.89.96.89 1.98v6.85h3.49V12.7c0-1.44.6-2.15 1.78-2.15s1.77.71 1.77 2.15v6.85h3.5V12.3c0-1.5-.53-2.63-1.57-3.4a6.04 6.04 0 0 0-3.7-1.02zm-12.2 3.49c-.05.3-.08.6-.08.93v7.26h3.5V12.7c0-.39.04-.72.12-1a7.2 7.2 0 0 1-3.54-.34m6.6-4.21 3.47-2.54-.04-.15c-6.26.76-9.1 1.3-14.5 4.43l.06.14h.43c-.04.44-.11 1.5-.02 3.1-.6 1.74-.02 2.91.53 4.2a12.5 12.5 0 0 0-.33-4.24c-.09-1.6-.02-2.64.02-3.05l3.57.03a15 15 0 0 0 .12 2.17l-.01-.07c3.2 1.12 6.4 0 8.1-2.77a14 14 0 0 0-1.4-1.26z" })
9
+ ] });
10
+ export {
11
+ SvgIconMoodle 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 SvgIconMuseefrancaisphoto: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMuseefrancaisphoto;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMuseefrancaisphoto = ({
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: "M.36 5.17c-.02 0-.02 0-.02.03v13.58s0 .03.02.03h23.42c.03 0 .03-.03.03-.03V5.2c0-.03 0-.03-.03-.03zm18.8 1.78c.12 0 .24 0 .37.03s.21.04.28.1v.4h-.04c-.07-.05-.17-.1-.27-.14s-.21-.05-.31-.05h-.12l-.12.02c-.02.03-.05.03-.07.08-.03.02-.05.04-.05.07 0 .04.02.1.07.12l.2.07.19.02c.07.03.12.03.19.05.14.05.24.12.31.2s.1.19.1.3c0 .17-.08.32-.22.44s-.36.17-.63.17a1.9 1.9 0 0 1-.7-.15v-.43h.06c.1.07.19.14.3.17.13.05.25.07.37.07h.1c.04-.02.1-.02.11-.02.05-.03.08-.05.1-.08s.03-.04.03-.1c0-.02 0-.06-.05-.09a.4.4 0 0 0-.15-.07c-.07 0-.14-.02-.21-.05-.07 0-.15-.02-.22-.05a.9.9 0 0 1-.34-.19.7.7 0 0 1-.1-.31c0-.17.08-.31.25-.43.14-.1.34-.15.58-.15zm-5.12.03h.56l.4.91.41-.91h.53V8.8h-.45V7.58l-.34.8h-.31l-.34-.8V8.8h-.46zm2.36 0h.46V8.1c0 .12.02.21.07.29.07.04.14.1.26.1s.2-.03.27-.1c.05-.05.07-.15.07-.3v-1.1h.48v1.15c0 .24-.07.4-.21.53s-.34.17-.6.17c-.27 0-.46-.05-.6-.17s-.2-.29-.2-.53zm3.82 0h1.3v.36h-.84v.31h.8v.34h-.8v.45h.84v.36h-1.3zm1.71 0h1.3v.36h-.84v.31h.8v.34h-.8v.45h.84v.36h-1.3zm-16.52.21a.4.4 0 0 1 .17.03c.14.07 2.98 2.86 3.08 3.05.1.17.1.41 0 .55s-2.53 2.6-2.82 2.84c-.21.17-.43.22-.6.15a.7.7 0 0 1-.21-.2c-.12-.12-.15-.16-.12-.36s.07-.24 1.03-1.2l.99-.99H1.08l-.14-.12c-.14-.12-.14-.16-.14-.38 0-.31.04-.4.21-.5.12-.08.55-.08 3-.08h2.87l-.99-1c-.96-.95-1-1.02-1.03-1.2s0-.23.12-.4c.14-.14.29-.21.43-.19m12.07 2.24h.22c.05.02.12.02.17.05s.1.02.14.04l.12.05v.46h-.05c-.02-.02-.05-.05-.1-.07l-.11-.1a.25.25 0 0 0-.15-.05c-.05-.02-.1-.04-.17-.04a.4.4 0 0 0-.16.04c-.08.03-.12.05-.17.1s-.1.12-.12.2a.9.9 0 0 0-.05.26c0 .12.02.21.05.29s.07.14.12.19l.17.1.16.02c.08 0 .12-.03.17-.03l.17-.07a.4.4 0 0 0 .1-.07l.1-.07h.04v.43l-.17.07c-.07.02-.14.05-.21.05v.05c.02.02.02.05.02.05 0 .14-.05.24-.12.31a.5.5 0 0 1-.34.1h-.12c-.05 0-.1 0-.12-.03v-.24h.03c.02 0 .04.03.07.03.05.02.07.02.12.02s.12-.02.14-.05c.03-.05.05-.1.05-.14v-.07c-.14 0-.26-.03-.36-.05a.9.9 0 0 1-.31-.2.57.57 0 0 1-.17-.28 1 1 0 0 1-.07-.41c0-.15.02-.27.04-.39.05-.12.12-.21.2-.31a1.1 1.1 0 0 1 .67-.24m5.03 0c.12 0 .24.02.36.05.12 0 .21.04.29.07v.4h-.05l-.26-.14a1.4 1.4 0 0 0-.32-.04h-.12l-.12.02-.07.07c-.02.02-.05.05-.05.07 0 .05.03.1.07.12.03.03.1.05.2.08l.19.02.19.07c.14.05.24.1.31.17.08.1.1.2.1.31 0 .2-.07.34-.22.44-.14.12-.36.16-.62.16-.15 0-.3 0-.39-.02-.12-.02-.21-.07-.31-.12v-.43h.05c.1.1.19.14.31.19.12.02.24.05.36.05h.1c.05 0 .1-.03.12-.03.05-.02.07-.02.1-.05s.02-.07.02-.1c0-.04 0-.06-.05-.11-.02-.03-.07-.05-.14-.05-.08-.02-.15-.05-.22-.05l-.22-.07c-.14-.05-.26-.1-.33-.2a.6.6 0 0 1-.1-.3c0-.17.07-.32.24-.41a.87.87 0 0 1 .58-.17m-13.47.02h1.3v.36H9.5v.34h.77v.36H9.5v.77h-.46zm1.61 0h.8c.1 0 .19.03.26.03.1.02.17.04.22.07.07.05.12.1.17.17s.07.14.07.24c0 .14-.05.24-.1.33-.07.08-.17.15-.26.22l.6.77h-.58l-.48-.67h-.22v.67h-.48zm2.43 0h.53l.67 1.83h-.48l-.12-.36h-.67l-.12.36h-.48zm1.47 0h.55l.67 1.06V9.45h.44v1.83h-.46l-.77-1.25v1.25h-.43zm4.4 0h.53l.67 1.83h-.48l-.12-.36h-.67l-.12.36h-.48zm1.4 0h1.05v.34h-.29v1.15h.3v.34h-1.07v-.34h.3V9.8h-.3v-.34zm-9.22.34v.5h.15l.17-.02c.05 0 .1-.02.14-.05l.07-.07c0-.05.03-.07.03-.12s-.03-.1-.05-.12c0-.05-.05-.07-.1-.1-.02 0-.07 0-.1-.02h-.3zm2.22.14-.22.65h.43zm5.86 0-.21.65h.43zm-3.87 2.05H16a1.7 1.7 0 0 1 .65.14c.15.07.24.17.31.32.08.12.1.28.1.45s-.02.32-.12.46a.9.9 0 0 1-.29.31c-.1.05-.2.07-.29.1s-.24.05-.38.05h-.63v-1.83zm2.07 0h1.32v.36h-.86v.31h.8V13h-.8v.46h.86v.36h-1.32v-1.83zm2.55 0h.48v1.46h.84v.37h-1.32zm2.07 0h.53l.67 1.83h-.48l-.12-.39h-.68l-.12.39h-.48zm-6.23.33v1.13h.36c.07-.02.12-.02.17-.07.07-.04.14-.1.19-.19.02-.07.05-.17.05-.29s-.03-.24-.08-.31a.37.37 0 0 0-.19-.2.34.34 0 0 0-.14-.04c-.05-.02-.15-.02-.24-.02h-.12zm6.5.13-.22.64h.43l-.22-.65zm-16.7 1.8c.3 0 .53.1.7.26s.24.39.24.68-.07.53-.24.7-.4.26-.7.26c-.29 0-.53-.1-.67-.27-.17-.16-.26-.4-.26-.7s.1-.5.26-.67a.87.87 0 0 1 .67-.26m3.83 0c.29 0 .53.1.7.26.14.17.23.39.23.68s-.07.53-.24.7c-.16.16-.4.26-.7.26s-.52-.1-.67-.27c-.16-.16-.26-.4-.26-.7s.1-.5.26-.67a.87.87 0 0 1 .68-.26m2.19 0 .33.02q.18.045.36.15v.4h-.04c-.03 0-.05-.02-.1-.07a.5.5 0 0 1-.12-.07l-.17-.07-.21-.02a.7.7 0 0 0-.22.04.7.7 0 0 0-.2.1c-.04.05-.06.12-.11.2-.03.06-.03.16-.03.26 0 .19.05.36.15.45.12.1.26.17.48.17h.12v-.36h-.36v-.36h.84v.91l-.34.1c-.12.02-.26.05-.4.05-.3 0-.54-.1-.73-.27a.92.92 0 0 1-.26-.7c0-.28.1-.5.26-.67.2-.16.44-.26.75-.26m-10.75.05h.77c.1 0 .19 0 .28.02.08.02.15.05.22.1s.12.1.14.16c.05.08.08.17.08.27s-.03.17-.05.24a.4.4 0 0 1-.12.2c-.07.06-.15.14-.24.16-.1.05-.2.05-.34.05h-.29v.6H.87zm1.82 0h.46v.65h.7v-.65h.45v1.8h-.45v-.8h-.7v.8h-.46zm4.02 0h1.61v.33h-.58v1.47H7.3v-1.47h-.6v-.33zm6.03 0h1.06c.08.02.15.05.22.1.07.02.12.07.17.14s.05.14.05.24a.5.5 0 0 1-.1.33.8.8 0 0 1-.27.22l.63.77h-.58l-.5-.67h-.22v.67h-.46zm2.43 0h.53l.68 1.8h-.49l-.12-.36h-.67l-.14.36h-.46zm1.47 0h.77c.12 0 .22 0 .29.02s.14.05.22.1c.07.04.12.1.16.16.03.08.05.17.05.27s0 .17-.05.24c-.02.1-.04.14-.12.2-.07.06-.14.14-.24.16-.07.05-.19.05-.33.05h-.3v.6h-.45zm1.83 0h.46v.65h.7v-.65h.47v1.8h-.48v-.8h-.7v.8h-.45zm2.02 0h1.06v.31h-.32v1.18h.32v.31h-1.06v-.31h.29V14.6h-.3v-.31zm1.44 0h1.3v.33h-.84v.32h.8v.36h-.8v.43h.84v.36h-1.3zm-16.33.29a.4.4 0 0 0-.17.04c-.04 0-.1.05-.14.1s-.07.1-.1.2a.9.9 0 0 0-.04.26.9.9 0 0 0 .14.48l.14.1c.04.02.12.02.17.02.07 0 .12 0 .17-.03a.25.25 0 0 0 .14-.12c.05-.04.1-.12.1-.19.02-.07.05-.17.05-.26s-.03-.2-.05-.27-.05-.14-.1-.2-.1-.06-.14-.09c-.05-.02-.1-.04-.17-.04m3.83 0a.4.4 0 0 0-.17.04c-.05 0-.1.05-.15.1s-.07.1-.1.2a.9.9 0 0 0-.04.26.9.9 0 0 0 .14.48l.15.1c.05.02.12.02.17.02.07 0 .12 0 .16-.03.08-.02.1-.07.15-.12s.07-.12.1-.19c.02-.07.04-.17.04-.26s-.02-.2-.05-.27c-.02-.07-.04-.14-.1-.2s-.09-.06-.14-.09a.4.4 0 0 0-.16-.04m3.77.02v.5h.15c.07 0 .14 0 .19-.02.05 0 .1-.02.12-.05.05-.02.07-.05.07-.07.02-.02.02-.07.02-.12s0-.1-.02-.12c-.02-.05-.05-.07-.1-.07-.02-.03-.07-.03-.12-.03l-.14-.02zm-11.88.02v.53h.34l.12-.07c.02-.02.05-.05.07-.1 0-.02.03-.07.03-.12s-.03-.1-.05-.14c-.03-.02-.05-.05-.1-.07s-.1-.03-.14-.03zm15.78 0v.53h.34l.14-.07c.02-.02.04-.05.04-.1.03-.02.03-.07.03-.12s0-.1-.05-.14c-.02-.02-.05-.05-.1-.07s-.1-.03-.14-.03h-.27zm-1.66.12-.24.65h.46z" })
9
+ ] });
10
+ export {
11
+ SvgIconMuseefrancaisphoto 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 SvgIconMyNetwork: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMyNetwork;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMyNetwork = ({
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: "M5.39 8.85q-.53 0-1.01.24-1.16-1.25-2.22-3.08 1.3-1.77 3.08-2.83 2.21.91 3.66 1.97-.15.38-.15.77 0 .14.1.53-1.5 1.15-2.79 2.5-.38-.1-.67-.1m-2.36 2.36q0 .82.48 1.44-1.44 2.74-1.92 5.58Q0 15.68 0 12.56 0 9.9 1.2 7.6q.92 1.5 2.02 2.7-.19.57-.19.9zm8.08-7.65q-.67 0-1.2.34-1.4-1.01-2.74-1.68 2.02-.73 3.9-.73 2.88 0 5.52 1.5-1.82.33-3.9 1.2-.62-.63-1.58-.63m3.51 11.06q-3.85-.57-6.97-2.69.1-.48.1-.72 0-.58-.34-1.25.91-1.06 2.35-2.17.63.49 1.35.49.34 0 .91-.2 2.26 2.6 3.23 5.77-.39.34-.63.78zm3.08 3.18q.91-.34 1.3-1.45 1.4-.1 2.6-.43-1.11 3.51-4 5.58.15-1.15.15-2.36 0-.24-.03-.67t-.02-.67m-3.6-1.59q-4.58 2.3-7.32 6.54-2.16-.86-3.8-2.64.3-3.47 1.93-6.6.14.06.48.06.72 0 1.25-.34 3.41 2.36 7.45 2.98zm4.42-11.83q3.6 3.27 3.6 8.18 0 .52-.1 1.58-1.53.43-3.12.58-.58-1.35-2.12-1.44-1.15-3.51-3.55-6.35.24-.48.24-1.01v-.24q2.4-1.01 5.05-1.3m-3.27 13.08q.33.24.77.43.04.44.04 1.25 0 1.93-.33 3.47-2.07 1-4.67 1-1.4 0-2.7-.28 2.65-3.85 6.89-5.87" })
9
+ ] });
10
+ export {
11
+ SvgIconMyNetwork 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 SvgIconNetvibes: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconNetvibes;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconNetvibes = ({
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: "M4.33 1.69a2.69 2.69 0 0 0-2.74 2.64v16.3a2.69 2.69 0 0 0 2.74 2.65H20.6a2.7 2.7 0 0 0 2.76-2.65V4.33a2.7 2.7 0 0 0-2.76-2.64zm5.99 3.6h4.18v4.84h4.76v4.18H14.5v4.8h-4.18v-4.8H5.4v-4.18h4.9V5.29z" })
9
+ ] });
10
+ export {
11
+ SvgIconNetvibes 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 SvgIconNote: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconNote;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconNote = ({
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: "m11.93 16.43 1.54-1.57-2.05-2.04-1.54 1.56v.75h1.28v1.3zm5.89-9.67q-.22-.22-.43 0l-4.72 4.71q-.21.22 0 .44t.44 0l4.7-4.72q.23-.21 0-.43zm1.08 7.96v2.55q0 1.61-1.13 2.74t-2.74 1.13H3.87q-1.6 0-2.74-1.13T0 17.27V6.1q0-1.58 1.13-2.7t2.74-1.15h11.16q.84 0 1.56.34.22.1.24.31.05.24-.12.39l-.65.67q-.19.19-.43.1-.31-.08-.6-.08H3.87q-.89 0-1.51.63T1.7 6.1v11.16q0 .89.65 1.52t1.51.64h11.16q.89 0 1.51-.64t.63-1.52v-1.68q0-.17.12-.3l.87-.86q.19-.19.48-.1t.26.4zm-1.3-9.88 3.87 3.84-9.01 9.02H8.58v-3.85zm5.97 1.75-1.23 1.25-3.87-3.87 1.22-1.25q.39-.36.92-.36t.91.36l2.05 2.04q.38.39.38.92t-.38.91" })
9
+ ] });
10
+ export {
11
+ SvgIconNote 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 SvgIconNotebook: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconNotebook;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconNotebook = ({
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.73 17.34v-.1a.32.32 0 0 1 .32-.32h1.36a.32.32 0 0 1 .32.32v.1a.32.32 0 0 1-.32.32H3.05a.32.32 0 0 1-.32-.32m.32-3.01h1.36a.32.32 0 0 0 .32-.32v-.1a.32.32 0 0 0-.32-.32H3.05a.32.32 0 0 0-.32.32v.1a.32.32 0 0 0 .32.32m0-3.32h1.36a.32.32 0 0 0 .32-.32v-.1a.32.32 0 0 0-.32-.32H3.05a.32.32 0 0 0-.32.32v.1a.32.32 0 0 0 .32.32m0-3.37h1.36a.32.32 0 0 0 .32-.32v-.1a.32.32 0 0 0-.32-.31H3.05a.32.32 0 0 0-.32.32v.1a.32.32 0 0 0 .32.31M14.4 4.68l4.39-1.23v4.07a1.8 1.8 0 0 0-1 .05c-.79.27-1.25.96-1.08 1.52s.93.81 1.69.54c.66-.22 1.13-.64 1.13-1.23V1.93c0-.34-.25-.54-.64-.4l-4.74 1.28c-.39.12-.49.34-.49.7v2.07h.74zm-2.35 9.29 4.14 1.14v2.96c-.51.19-1.03.42-1.52.66-.17.1-.22.19-.12.39.22.42.37.88.51 1.32 0 .05.03.1-.02.1l-.05-.05c-.39-.36-.71-.76-1.17-1.13a.95.95 0 0 0-.98-.2c-.71.25-1.45.47-2.16.67-.2.05-.4.12-.6.12-.09-.12-.02-.2 0-.3l1.48-5.41c.07-.3.2-.35.5-.27zm.8 2.55c.35.15.72.05.86-.24s0-.69-.29-.84c-.34-.17-.74-.05-.88.27-.15.27 0 .67.32.81zm-8.12 4.19v-.1a.32.32 0 0 0-.32-.32H3.05a.32.32 0 0 0-.32.32v.1a.32.32 0 0 0 .32.32h1.36a.32.32 0 0 0 .32-.32m16.14-5.02-4.68-1.26v.68l3.85 1.07c.15.02.4 0 .32.27l-1.05 3.87c-.32-.56-.6-1.07-.91-1.54-.71-1.13-.86-1.18-2.14-.74l-.07.03v3.8a.47.47 0 0 1-.47.46h-.58l3.65 1.01c.32.08.44.05.54-.27a560 560 0 0 1 1.86-6.86c.1-.35 0-.42-.32-.52M9.52 20.8c-.32-.1-.42-.17-.35-.51.64-2.28 1.28-4.56 1.9-6.87.07-.32.21-.34.53-.27l4.59 1.27V6.05a.48.48 0 0 0-.47-.47H14.4v3.8c0 .42-.47 1-1.1 1.23-.79.27-1.55.03-1.72-.54s.32-1.25 1.08-1.52a1.8 1.8 0 0 1 1-.05V5.58h-9.3a.48.48 0 0 0-.46.47v.68h.56a.51.51 0 0 1 .47.2c.15.2.17.39.05.61-.1.2-.32.3-.54.3-.17-.03-.34 0-.54 0v2.23h.57c.34 0 .58.22.58.53s-.24.57-.58.57H3.9v2.26h.3c.58 0 .85.17.85.53 0 .4-.25.57-.86.57H3.9v2.23h.56c.42-.02.72.37.57.74-.1.25-.3.37-.57.37H3.9v2.2h.54c.42.03.68.4.54.79-.08.22-.3.37-.62.37-.14.02-.29 0-.46 0v.63c0 .28.22.47.49.47h10.75l-.99-.27c-1.54-.42-3.09-.86-4.63-1.25z" })
9
+ ] });
10
+ export {
11
+ SvgIconNotebook 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 SvgIconNotes: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconNotes;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconNotes = ({
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: "m11.93 16.43 1.54-1.57-2.05-2.04-1.54 1.56v.75h1.28v1.3zm5.89-9.67q-.22-.22-.43 0l-4.72 4.71q-.21.22 0 .44t.44 0l4.7-4.72q.23-.21 0-.43zm1.08 7.96v2.55q0 1.61-1.13 2.74t-2.74 1.13H3.87q-1.6 0-2.74-1.13T0 17.27V6.1q0-1.58 1.13-2.7t2.74-1.15h11.16q.84 0 1.56.34.22.1.24.31.05.24-.12.39l-.65.67q-.19.19-.43.1-.31-.08-.6-.08H3.87q-.89 0-1.51.63T1.7 6.1v11.16q0 .89.65 1.51t1.51.65h11.16q.89 0 1.51-.64t.63-1.52v-1.68q0-.17.12-.3l.87-.86q.19-.19.48-.1t.26.4zm-1.3-9.88 3.87 3.84-9.01 9.02H8.58v-3.85zm5.97 1.75-1.23 1.25-3.87-3.87 1.23-1.25q.38-.36.9-.36t.92.36l2.05 2.04q.38.39.38.92t-.38.91" })
9
+ ] });
10
+ export {
11
+ SvgIconNotes 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 SvgIconOnisep: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconOnisep;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconOnisep = ({
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: "M17.58 22.66a9.5 9.5 0 0 1-.15-2.12v-1.95l-1.37.07c-1.1.08-1.37.15-1.37.48 0 .85 1.1 1.2 2.1.68.36-.2.43-.2.36.04-.15.49-1.28.94-1.9.8-1.5-.39-2-2.33-.9-3.44.9-.89 2.27-.67 2.75.43l.3.72v-.86c.03-.82.47-1.18.83-.63.1.17.26.17.55 0 .67-.36 1.13-.26 1.73.34 1.42 1.42-.1 4.33-1.73 3.3-.26-.17-.36 0-.46.96-.1 1.08-.38 1.53-.74 1.17zm2.21-2.72c.53-.53.48-2.29-.07-2.6-.58-.29-.6-.29-1.03.12-.51.53-.49 2.28.04 2.6s.65.29 1.06-.12m-3.27-1.83c0-.34-.5-.99-.8-.99-.36 0-1.03.6-1.03.92 0 .12.41.21.92.21s.91-.07.91-.14M3.46 20.54c-.77-.31-1.08-.87-1.05-1.9.02-1.88 1.92-2.62 3.24-1.3.6.6.67.82.58 1.54a2.64 2.64 0 0 1-.55 1.23c-.49.48-1.6.7-2.22.43m1.57-.75c.45-.64.45-1.53 0-2.16-.44-.65-.87-.65-1.47-.02-.39.36-.46.64-.36 1.25.24 1.44 1.15 1.92 1.83.93m1.65.82c-.1-.1-.16-1-.16-2.07 0-1.51.07-1.87.36-1.87.17 0 .33.1.33.24s.12.14.44 0c.62-.36 1.3-.32 1.7.12.3.29.37.72.32 2-.1 1.82-.5 2.18-.6.47-.1-1.85-.22-2.16-.85-2.16-.72 0-1.03.74-.96 2.19.05.98-.19 1.44-.57 1.08zm3.35-.14c-.07-.2-.1-1.09-.05-2.02.05-1.4.14-1.69.48-1.76.36-.07.39.12.34 1.93-.05 1.32-.17 2.02-.36 2.06-.15.08-.34-.04-.41-.21m1.32.12c-.29-.1-.4-.75-.14-.75.04 0 .3.1.52.22.53.29 1.16.07 1.16-.36 0-.17-.34-.48-.75-.68-1.2-.62-1.37-1.15-.62-1.9.55-.55 1.54-.6 1.73-.12.2.5-.07.68-.48.34-.31-.24-.43-.24-.72.05-.32.34-.27.4.57.96.68.43.94.75.94 1.13 0 .91-1.22 1.52-2.2 1.1zM15.39 13a7.3 7.3 0 0 1-1.51-.91l-.49-.46-.29.82-.26.82-2.74-.15-.82-1.54-.82-1.56-.77 1.61-.8 1.64-2.76-.15L2.4 8.47A52 52 0 0 1 .58 3.03l-.08-.8h3.18L4.7 4.92c.55 1.47 1.06 2.67 1.13 2.67s.46-.68.87-1.47c.7-1.44.74-1.5 1.58-1.5 1.13 0 1.45.3 2.26 1.93l.68 1.35.57-1.59c.34-.86.82-2.14 1.09-2.86l.48-1.32 2.76.02c3.27 0 4.11.3 5.5 1.88A5.38 5.38 0 0 1 23.12 8a5.48 5.48 0 0 1-7.72 5zm3.73-3.15c1.7-1.6.74-4.66-1.47-4.66-2.48 0-3.37 3.75-1.18 4.97.77.46 2 .3 2.65-.3z" })
9
+ ] });
10
+ export {
11
+ SvgIconOnisep 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 SvgIconOnisep2: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconOnisep2;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconOnisep2 = ({
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 1.3a.54.54 0 0 0-.55.55v21.82c0 .3.24.55.55.55h19.26c.31 0 .55-.24.55-.55V1.84a.54.54 0 0 0-.55-.55H2.43zm9.6 2.77c.09 0 .19.02.35.1.6.23.68.47.7 2.04a11 11 0 0 0 .07 1.49c.17.26.48.07 1.64-1.06.67-.67 1.32-1.25 1.46-1.32.77-.41 1.78.07 1.83.86.05.65.03.7-1.37 2.07-.91.91-1.35 1.42-1.32 1.54.02.14.2.17 1.49.22 1.66.04 1.95.12 2.21.67a.97.97 0 0 1-.36 1.3c-.26.17-.48.19-1.68.19-.75 0-1.45.02-1.54.05-.31.12-.12.45.98 1.51 1.47 1.4 1.6 1.59 1.6 2.12 0 .6-.27 1-.75 1.15-.8.22-1.01.1-2.48-1.3-1.56-1.51-1.66-1.53-1.76-.55-.04.36-.04.84-.02 1.06.1.7-.05 1.32-.36 1.63-.24.24-.39.3-.72.3-.39 0-.5-.05-.77-.34l-.34-.32v-1.42c0-1.17-.02-1.44-.17-1.56-.21-.21-.29-.14-1.63 1.18-.65.62-1.3 1.2-1.44 1.27-.8.41-1.83-.19-1.83-1.08 0-.48.19-.74 1.51-2 1.2-1.17 1.42-1.51 1.06-1.65-.07-.03-.77-.05-1.51-.05-1.54 0-1.8-.07-2.07-.63-.2-.4-.2-.53.05-.91.3-.53.76-.65 2.23-.63.7 0 1.3-.02 1.35-.04.26-.15.05-.46-1.1-1.57C6 7.12 5.81 6.85 5.81 6.4c0-.9.89-1.46 1.8-1.12.12.05.82.65 1.52 1.32a9.2 9.2 0 0 0 1.46 1.23c.24 0 .3-.27.3-1.69 0-1.49.06-1.73.69-1.94.2-.08.31-.12.43-.12zm-.15 4.32c-.17 0-.31.08-.46.22l-.24.24v2.16c0 2.14 0 2.2.22 2.39.26.24.74.24 1.03 0 .24-.2.24-.2.22-2.39v-2.2l-.27-.2c-.19-.14-.36-.22-.5-.22m-1.42 10.8h.84v.63h-.84zm-5.1.92c.43 0 .77.12.99.36.24.24.36.57.36 1 0 .42-.12.75-.36 1-.22.26-.55.38-.99.38s-.77-.12-.98-.39a1.35 1.35 0 0 1-.36-.98c0-.44.12-.77.36-1.01s.55-.36.98-.36m10.56 0c.38 0 .7.1.89.3.22.23.31.51.31.92v.3h-1.8c0 .18.07.35.21.45.12.12.34.17.6.17.17 0 .32-.03.49-.1.14-.07.28-.12.36-.2h.1v.66c-.17.07-.34.14-.51.17s-.34.04-.53.04c-.48 0-.87-.12-1.13-.33a1.3 1.3 0 0 1-.41-1.01c0-.41.14-.77.39-1.01s.6-.36 1.03-.36m-7 0c.27 0 .46.07.6.24.17.16.24.4.24.72v1.68h-.8v-1.27c0-.1 0-.22-.02-.32 0-.1-.02-.16-.04-.21a.25.25 0 0 0-.12-.15c-.08-.02-.15-.02-.24-.02-.08 0-.15 0-.22.02s-.17.08-.24.12v1.83h-.8v-2.57h.8v.29c.14-.12.27-.22.4-.27.13-.07.27-.1.44-.1zm4.21 0c.2 0 .36.02.53.04.17.05.29.1.38.15v.65H14a1.44 1.44 0 0 0-.87-.29c-.12 0-.24.02-.31.05-.1.04-.15.1-.15.16 0 .05.03.1.07.15l.27.1c.1 0 .17.02.26.04.1 0 .2.03.3.05.19.07.35.14.45.27s.14.28.14.45a.8.8 0 0 1-.33.65 1.6 1.6 0 0 1-.94.24c-.22 0-.43-.02-.6-.05-.17-.04-.31-.1-.43-.14v-.7h.07c.05.05.1.07.14.1.05.05.12.07.22.12.07.02.17.07.29.1.1.02.21.02.33.02.15 0 .27 0 .34-.05.07-.02.1-.1.1-.17 0-.04 0-.1-.05-.12s-.15-.07-.27-.1l-.24-.02c-.1-.02-.19-.04-.26-.07a.88.88 0 0 1-.5-.29.76.76 0 0 1-.15-.48c0-.24.1-.46.34-.62.21-.17.53-.24.91-.24m6.16 0c.29 0 .53.12.7.36.09.12.16.29.2.48v.91c0 .05-.01.1-.04.15a.93.93 0 0 1-.24.43c-.1.12-.21.22-.36.29-.12.05-.26.07-.43.07-.15 0-.24 0-.36-.05-.1-.02-.2-.07-.3-.12v.77h-.79v-3.22h.8v.26c.12-.1.24-.19.36-.24.14-.07.29-.1.46-.1zm-8.8.07h.79v2.57h-.8v-2.57zm5.36.43a.73.73 0 0 0-.39.12c-.1.1-.14.22-.14.41h1c0-.17-.04-.31-.11-.39-.07-.1-.2-.14-.36-.14m-10.49.07c-.07 0-.14 0-.19.03-.07.02-.12.07-.17.12a.7.7 0 0 0-.12.26c-.02.1-.05.22-.05.39 0 .14 0 .26.05.36.03.1.05.19.1.26.05.05.1.1.17.12s.14.05.21.05.15-.02.22-.05.12-.07.17-.12a.7.7 0 0 0 .1-.24c.04-.1.04-.21.04-.38 0-.15 0-.3-.05-.39a.5.5 0 0 0-.1-.24c-.04-.07-.09-.12-.16-.14s-.15-.02-.22-.02zm13.57.05c-.08 0-.15 0-.24.03a1 1 0 0 0-.22.12v1.3c.05.02.1.02.17.02.04.02.12.02.16.02.22 0 .39-.07.49-.19s.14-.31.14-.58c0-.26-.05-.43-.12-.55s-.22-.17-.39-.17z" })
9
+ ] });
10
+ export {
11
+ SvgIconOnisep2 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 SvgIconPad: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPad;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPad = ({
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: "M15.1 18.23H9.5v-.5h5.6zm-2.3-1.5H9.5v-.5h3.3zm.98-1.48H9.5v-.48h4.28zm1.66-1.47H9.5v-.5h5.94zm-2.65-1.49H9.5v-.5h3.3v.5zm4.12-3.22H8v11.88h8.9V9.07zM6.54 22.4V7.61H18.4v14.8H6.54zM4.5 10.31c-.6.61-.96 1.26-1.01 1.79l3.68 3.85s.36-.46.33-1.25c.94-.48 1.1-.92 1.28-1.3.82.02 1.15-.29 1.15-.29L6.25 9.26c-.24.05-.94.22-1.75 1.06zM.55 8.82c.07.04.48.6.72.93.03-.36.17-1.03.92-1.8.77-.77 1.44-.94 1.8-.96-.31-.24-.72-.6-.86-.72C2.74 5.87 2 5.6.9 6.52S.14 8.37.55 8.8zm7.48 6.39c0 .36-.33 1.06-.33 1.06l4.23 1.8-1.71-4.37s-.17.16-.89.16a2.36 2.36 0 0 1-1.3 1.35M2.65 8.42c-1.04 1.08-.9 1.83-.9 1.83l.41.4c.05-.45.37-1.1.97-1.7.96-.99 1.75-1.1 1.75-1.1l-.43-.44s-.8-.02-1.8 1.01m.86.91c-.99 1.04-.84 1.76-.84 1.76l.36.38c.07-.43.39-1.05.94-1.63.91-.94 1.68-1.06 1.68-1.06l-.4-.4s-.78-.03-1.74.95m14.45-2.88-3.68 3.82s.32.32 1.13.3c.17.38.34.83 1.3 1.29-.05.8.34 1.25.34 1.25l3.68-3.85a3.32 3.32 0 0 0-1.04-1.78c-.82-.84-1.51-1-1.73-1.03m5.32-2.77c-1.08-.91-1.83-.65-2.21-.26-.12.14-.56.48-.84.74.33.03 1.03.17 1.78.94.76.77.9 1.44.9 1.8.27-.33.66-.86.73-.93.4-.44.72-1.37-.36-2.29m-8.42 7.34c-.72 0-.89-.17-.89-.17l-1.68 4.37 4.2-1.8s-.33-.7-.3-1.06a2.37 2.37 0 0 1-1.33-1.34m4.88-6.45-.4.43s.79.15 1.72 1.11c.6.6.92 1.25.99 1.7l.39-.4s.14-.75-.9-1.8c-1-1.06-1.8-1.04-1.8-1.04m-.8.96-.4.41s.77.12 1.68 1.06c.58.6.9 1.2.94 1.64l.39-.39s.12-.72-.87-1.73c-.96-1.01-1.73-.99-1.73-.99z" })
9
+ ] });
10
+ export {
11
+ SvgIconPad 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 SvgIconPages: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPages;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPages = ({
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: "M0 23.83V1.28h24.05v22.55zm2.96-2.95h18.13V4.23H2.96v16.63zM4.93 19v-4h4v4zm0-5.27V6.35h14.14v7.38zM10 19v-4h4v4zm5.08 0v-4h3.99v4h-4z" })
9
+ ] });
10
+ export {
11
+ SvgIconPages 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 SvgIconParametrage: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconParametrage;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconParametrage = ({
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: "M13.27-.15H.01v21.12h17.85V4.04zm.08 2.06 2.46 2.32h-2.46zM1.41 19.76V1.38h10.94v3.73h4.02v14.65zm8.22 0h4.9v1.2h-4.9zm7.3-6h.93v3.71h-.93zM2.95 6.9H5.9V4.18H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.64H5.9V7.85H2.95zm.8-1.97H5.1v1.23H3.75zm-.8 5.64H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.65H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm3.27 1.24h3.14v.74H7.02zm0-3.67h6.1v.74h-6.1zm0-3.66h6.1v.73h-6.1zm0-3.67h6.1v.74h-6.1zm9.25 12.29-.79-.1a3.6 3.6 0 0 0-.35-.86l.5-.64a.26.26 0 0 0-.03-.34l-.81-.83a.25.25 0 0 0-.33-.02l-.62.5a3.5 3.5 0 0 0-.85-.36l-.1-.8a.26.26 0 0 0-.24-.23H11.5a.26.26 0 0 0-.25.23l-.1.8c-.3.09-.58.2-.84.36l-.62-.5a.25.25 0 0 0-.33.02l-.81.83a.27.27 0 0 0-.02.34l.49.64a3.6 3.6 0 0 0-.35.86l-.8.1a.26.26 0 0 0-.21.25v1.18c0 .12.1.24.22.25l.79.1c.08.3.2.6.35.86l-.5.64a.27.27 0 0 0 .03.34l.81.83a.25.25 0 0 0 .33.02l.62-.5c.26.15.55.27.85.36l.1.8a.26.26 0 0 0 .24.23h1.15a.26.26 0 0 0 .25-.23l.1-.8c.3-.09.58-.2.84-.36l.62.5a.25.25 0 0 0 .33-.02l.81-.83a.27.27 0 0 0 .02-.34l-.49-.64c.15-.27.27-.56.35-.87l.8-.1a.26.26 0 0 0 .21-.25V18.7a.26.26 0 0 0-.22-.25m-4.2 3.1c-1.21 0-2.2-1.01-2.2-2.26s.99-2.26 2.2-2.26c1.23 0 2.21 1.01 2.21 2.26s-.98 2.26-2.2 2.26zm9.7-6.8-.59-.07a2.7 2.7 0 0 0-.26-.65l.37-.48a.2.2 0 0 0-.02-.25l-.6-.63a.19.19 0 0 0-.26-.02l-.47.38a2.6 2.6 0 0 0-.63-.27l-.08-.6a.2.2 0 0 0-.18-.17h-.86a.2.2 0 0 0-.19.17l-.07.6a2.6 2.6 0 0 0-.64.27l-.47-.37a.19.19 0 0 0-.25 0l-.6.64a.2.2 0 0 0-.02.25l.37.48a2.8 2.8 0 0 0-.27.65l-.6.07a.2.2 0 0 0-.16.2v.88c0 .1.08.18.17.19l.6.07c.05.23.14.45.25.65l-.36.48a.2.2 0 0 0 .01.26l.61.62a.19.19 0 0 0 .25.02l.47-.38c.2.12.41.2.64.27l.07.6a.2.2 0 0 0 .18.17h.87a.2.2 0 0 0 .18-.16l.07-.61c.23-.06.44-.15.64-.27l.47.38a.19.19 0 0 0 .25-.02l.61-.62a.2.2 0 0 0 .01-.26l-.36-.48c.11-.2.2-.42.26-.65l.6-.07a.2.2 0 0 0 .16-.2v-.88a.2.2 0 0 0-.17-.19m-3.15 2.33c-.92 0-1.67-.76-1.67-1.7s.75-1.7 1.67-1.7c.91 0 1.66.77 1.66 1.7s-.75 1.7-1.66 1.7" })
9
+ ] });
10
+ export {
11
+ SvgIconParametrage 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 SvgIconParametrages: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconParametrages;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconParametrages = ({
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: "M13.27-.15H.01v21.12h17.85V4.04zm.08 2.06 2.46 2.32h-2.46zM1.41 19.76V1.38h10.94v3.73h4.02v14.65zm8.22 0h4.9v1.2h-4.9zm7.3-6h.93v3.71h-.93zM2.95 6.9H5.9V4.18H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.64H5.9V7.85H2.95zm.8-1.97H5.1v1.24H3.75zm-.8 5.64H5.9v-2.71H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.65H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm3.27 1.24h3.14v.74H7.02zm0-3.67h6.1v.74h-6.1zm0-3.67h6.1v.74h-6.1zm0-3.66h6.1v.74h-6.1zm9.25 12.29-.79-.1c-.08-.3-.2-.6-.35-.86l.5-.64a.27.27 0 0 0-.03-.34l-.81-.83a.25.25 0 0 0-.33-.02l-.62.5a3.5 3.5 0 0 0-.85-.36l-.1-.8a.26.26 0 0 0-.24-.23H11.5c-.12 0-.23.1-.25.23l-.1.8c-.3.09-.57.2-.84.36l-.62-.5a.25.25 0 0 0-.33.02l-.81.83a.27.27 0 0 0-.02.34l.49.64c-.16.27-.27.56-.35.86l-.8.1a.26.26 0 0 0-.21.25v1.18c0 .12.1.24.22.25l.79.1c.08.3.2.6.35.86l-.5.64c-.07.1-.06.25.03.34l.8.83c.1.09.24.1.34.02l.62-.5c.26.15.55.27.85.36l.1.8c0 .13.12.23.24.23h1.15c.12 0 .23-.1.25-.23l.1-.8c.3-.09.58-.2.84-.36l.62.5c.1.07.25.07.33-.02l.81-.83c.09-.1.1-.24.02-.34l-.49-.64c.16-.27.27-.56.35-.86l.8-.1a.26.26 0 0 0 .21-.25V18.7c0-.12-.1-.23-.22-.25m-4.2 3.1c-1.21 0-2.2-1.01-2.2-2.26s.99-2.26 2.2-2.26c1.23 0 2.21 1.01 2.21 2.26s-.98 2.26-2.2 2.26zm9.7-6.8-.59-.07a2.8 2.8 0 0 0-.26-.65l.37-.48a.2.2 0 0 0-.02-.26l-.61-.62a.19.19 0 0 0-.25-.02l-.47.38c-.2-.12-.41-.2-.64-.27l-.07-.6a.2.2 0 0 0-.18-.18h-.87a.2.2 0 0 0-.18.17l-.07.61c-.23.06-.44.15-.64.27l-.47-.38a.2.2 0 0 0-.25.02l-.61.62a.2.2 0 0 0-.02.26l.37.48c-.11.2-.2.42-.26.65l-.6.07a.2.2 0 0 0-.16.2v.88c0 .09.07.17.17.18l.59.08c.06.23.15.45.26.65l-.37.48a.2.2 0 0 0 .02.25l.61.63c.06.07.18.07.25.02l.47-.38c.2.11.4.2.63.27l.08.6c0 .1.1.17.18.17h.87a.2.2 0 0 0 .18-.17l.07-.6c.23-.07.44-.16.64-.27l.47.37c.07.06.18.06.25-.01l.61-.63a.2.2 0 0 0 .02-.25l-.37-.48c.11-.2.2-.42.26-.65l.6-.07a.2.2 0 0 0 .16-.2v-.88a.2.2 0 0 0-.16-.19zm-3.15 2.34c-.92 0-1.67-.77-1.67-1.7s.75-1.7 1.67-1.7c.91 0 1.66.76 1.66 1.7s-.75 1.7-1.66 1.7" })
9
+ ] });
10
+ export {
11
+ SvgIconParametrages 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 SvgIconParaschool: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconParaschool;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconParaschool = ({
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: "M7.33 20.03a3.53 3.53 0 0 1-2-1.94c-.06-.2-.88-3.03-1.8-6.33-.89-3.3-1.78-6.5-1.97-7.12-.17-.62-.29-1.15-.29-1.17l2.05.48c1.13.29 5.67 1.4 10.12 2.47 5.6 1.37 8.18 2.05 8.4 2.2.35.2.57.47.76.86.34.7.36.98.36 5.99v4.7l-7.64-.02c-6.09 0-7.7-.02-7.99-.12m9.21-2-.14-1.53c-.07-.82-.14-1.52-.12-1.54s1.15.07 2.5.2c1.35.14 2.57.2 2.72.18.72-.19.91-.65.91-2.26 0-.98-.02-1.08-.21-1.58s-.27-.58-.7-.87c-.43-.26-.77-.34-3.56-.91-1.7-.36-3.13-.6-3.13-.56-.02.05.2 2.07.46 4.5l.5 4.4h.4c.2 0 .38-.02.38-.02zm1.62-3.72a12.4 12.4 0 0 1-1.98-.31c-.07-.1-.4-3.66-.36-3.7.07-.08 5.08.88 5.32 1.03.43.26.55.58.57 1.51 0 .46-.02.99-.07 1.18-.14.63-.46.65-3.49.3z" })
9
+ ] });
10
+ export {
11
+ SvgIconParaschool 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 SvgIconParcours: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconParcours;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconParcours = ({
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: "M18.52-.61a.2.2 0 0 0-.2.13L15.66 7.1a.2.2 0 1 0 .38.13L18.7-.34a.2.2 0 0 0-.18-.27m.33.37-1.36 3.86c1.88.31 2.8 1.66 5.2 2.63 0 0 .37-.67 1.33-3.75-1.93-.57-3.5-2.15-5.17-2.74m1.54 2.1.31.16.13.8.72-.36.31.16-.98.48.19 1.14-.31-.16-.15-.87-.79.39-.31-.16 1.06-.52zM3.84 19.42l.07.07-.12.12-.07-.08zm.22.2.16.14-.12.13-.15-.14zm.31.27.16.13-.1.14-.17-.13zm.33.24.17.12-.1.16-.18-.12zm.34.22.18.1-.1.17-.18-.1zm-2.6-2.82-.6 1.56c-.6-.14-1.22.18-1.61.45-.11.08-.25-.04-.2-.16.94-1.93 2.42-1.85 2.42-1.85zm2.58 1.54-1.08 1.28c.4.46.41 1.16.36 1.63-.01.13.15.2.23.1 1.27-1.74.5-3 .5-3zm1.63-2.25c1-1.95.01-3.41.01-3.41s-1.76-.19-3 1.62a20.2 20.2 0 0 0-2.1 4.6l2.04 1.22s2.05-2.07 3.05-4.03m-3.2 3.93-.41-.25s-.32.11-.46.34l.79.47c.13-.23.08-.56.08-.56m-1.9 2.66s1.06-.31 1.46-.98c.23-.38.14-.7.02-.9a.62.62 0 0 0-.52-.32.85.85 0 0 0-.78.45c-.4.68-.18 1.75-.18 1.75m-1.29-.77s1.06-.31 1.46-.99c.23-.37.14-.7.02-.9a.61.61 0 0 0-.52-.3.85.85 0 0 0-.78.44c-.4.67-.18 1.75-.18 1.75m1.86-2.7-.41-.24s-.32.11-.46.34l.8.47c.12-.23.07-.56.07-.56zm15.05-13.5c-.13.23-.23.47-.02.69.17.26.55.2.8.36.97.39 1.6 1.45 1.49 2.49-.06.29-.24.53-.24.83.11.2.3.44.58.34.34-.01.47-.42.57-.7a3.34 3.34 0 0 0-.55-2.73 3.64 3.64 0 0 0-2.2-1.4zM8.44 8.15c-.7 0-1.5.3-1.78 1-.37.87.16 1.9.93 2.37.22.16.47.26.74.24.2-.07.45-.33.32-.57-.02-.4-.53-.43-.75-.7-.33-.27-.57-.93-.1-1.19.73-.32 1.55-.07 2.28.1.21.06.55.04.65-.16.2-.23.07-.45-.06-.68a6.7 6.7 0 0 0-1.73-.4zm3.55 1.1c-.18.2-.33.4-.17.67.1.3.5.32.76.48 1.6.73 3.26 1.42 5.03 1.58.26.05.47-.08.7-.2.08-.25.13-.5-.12-.67-.23-.24-.62-.07-.9-.18-1.72-.25-3.3-.98-4.86-1.7zm-2.2 2.42c-.17.2-.31.42-.15.68.12.3.53.31.8.46 1.61.67 3.28 1.26 4.8 2.16.25.07.5.1.66-.16.15-.16.08-.52-.1-.66-1.5-.93-3.2-1.53-4.83-2.2-.35-.11-.68-.37-1.07-.28h-.1zm6.82 3.9c-.09.24-.2.5.01.72.44.58.53 1.45.06 2.04-.56.77-1.48 1.15-2.35 1.45-.24.15-.34.36-.25.64.08.18.35.35.58.29 1.25-.37 2.53-1.06 3.12-2.29a2.7 2.7 0 0 0-.42-2.8c-.21-.19-.44-.24-.68-.08l-.04.02zM6.5 18.96c-.18.2-.33.4-.17.67.1.3.5.33.75.48 1.73.74 3.63 1.1 5.5.97.25-.12.47-.24.43-.55.01-.21-.26-.46-.49-.45-1.92.13-3.86-.3-5.58-1.13z" })
9
+ ] });
10
+ export {
11
+ SvgIconParcours 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 SvgIconPearltrees: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPearltrees;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPearltrees = ({
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 15.23 3.53 1.46-.3-3.8 2.48-2.91-3.7-.9-2-3.25-2 3.25-3.72.9 2.48 2.9-.3 3.81zm-10.8-4a10.92 10.92 0 1 1 21.81.62v-.02a10.92 10.92 0 0 1-21.82-.3v-.32.02z" })
9
+ ] });
10
+ export {
11
+ SvgIconPearltrees 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 SvgIconPicardieCursus: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPicardieCursus;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPicardieCursus = ({
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: "m13.29 13.55.85-3.44h-3.4l-.86 3.44h3.4zm10.3-6.76-.76 3a.43.43 0 0 1-.42.33h-4.38l-.86 3.43h4.17c.13 0 .26.06.34.16s.12.24.08.37l-.76 3a.42.42 0 0 1-.41.33H16.2l-1.08 4.4a.44.44 0 0 1-.42.32h-3a.48.48 0 0 1-.35-.16.47.47 0 0 1-.08-.38l1.05-4.18h-3.4l-1.1 4.4a.44.44 0 0 1-.41.32H4.39a.47.47 0 0 1-.33-.16.47.47 0 0 1-.08-.38l1.04-4.18H.86a.45.45 0 0 1-.34-.16.47.47 0 0 1-.08-.38l.75-3a.43.43 0 0 1 .42-.32h4.38l.86-3.44H2.68a.45.45 0 0 1-.33-.16.42.42 0 0 1-.08-.37l.75-3a.42.42 0 0 1 .41-.33h4.39l1.08-4.4a.45.45 0 0 1 .43-.32h3c.13 0 .26.07.34.17s.1.24.08.37L11.7 6.25h3.4l1.1-4.4a.45.45 0 0 1 .42-.32h3c.13 0 .26.07.34.17s.1.24.08.37L19 6.25h4.16c.14 0 .26.07.34.16.08.11.1.25.08.38z" })
9
+ ] });
10
+ export {
11
+ SvgIconPicardieCursus 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 SvgIconPlaceholder: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPlaceholder;
@@ -0,0 +1,16 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPlaceholder = ({
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__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-placeholder_svg__a)", children: [
9
+ /* @__PURE__ */ jsx("path", { d: "M11.945 22.68C6.048 22.578 1.348 17.632 1.45 11.635 1.545 5.782 6.187 1.058 11.945.96a10.4 10.4 0 0 1 4.572 1.051 1.38 1.38 0 0 1 .71 1.802 1.34 1.34 0 0 1-1.88.666A7.924 7.924 0 0 0 4.71 8.325a8.18 8.18 0 0 0 3.765 10.819 7.927 7.927 0 0 0 10.663-3.849 8.2 8.2 0 0 0 .773-3.475 6 6 0 0 0-.269-2.117 1.375 1.375 0 0 1 .869-1.738 1.34 1.34 0 0 1 1.691.887c.297.95.431 1.944.397 2.939.029 5.983-4.718 10.86-10.602 10.889z" }),
10
+ /* @__PURE__ */ jsx("path", { d: "M19.087 7.325c.786 0 1.422-.647 1.422-1.445s-.636-1.445-1.422-1.445-1.421.647-1.421 1.445.636 1.445 1.421 1.445" })
11
+ ] }),
12
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-placeholder_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
13
+ ] });
14
+ export {
15
+ SvgIconPlaceholder as default
16
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconPoll: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPoll;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPoll = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 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.78 21.33H3.75q-1.56 0-2.64-1.1T0 17.58V7.53q0-1.56 1.1-2.64t2.64-1.11H10q.53 0 .9.38t.38.87-.39.89-.89.38H3.75q-.5 0-.89.36t-.36.87v10.05q0 .5.36.87t.9.36h10.02q.5 0 .87-.36t.38-.87v-3.77q0-.5.39-.87t.88-.38.87.38.36.87v3.77q0 1.56-1.1 2.65t-2.65 1.1m-3.56-5.24q-.7 0-1.18-.48l-3.32-3.32q-.48-.53-.48-1.2t.48-1.18 1.16-.48 1.17.48l1.8 1.78 4.34-6.83q.33-.6 1-.8t1.28.13.8 1-.17 1.28l-5.41 8.75q-.44.87-1.47.87" })
9
+ ] });
10
+ export {
11
+ SvgIconPoll 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 SvgIconPresences: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconPresences;
@@ -0,0 +1,16 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconPresences = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", 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__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-presences_svg__a)", children: [
9
+ /* @__PURE__ */ jsx("path", { d: "M13.44 11.529a4.268 4.268 0 1 0-6.035-6.036 4.268 4.268 0 0 0 6.036 6.036Z" }),
10
+ /* @__PURE__ */ jsx("path", { d: "M20.386 5.243V4.29c0-.977-.725-1.824-1.679-1.887-1.014-.063-1.863.765-1.863 1.76V5.24c.063 3.791-.765 6.524-2.382 7.87-.207.166-.414.332-.643.495a6.05 6.05 0 0 1-3.417 1.036 6.28 6.28 0 0 1-3.562-1.132.7.7 0 0 0-.743-.04c-1.545.863-2.737 2.308-2.737 4.593v3.128c0 .491.4.891.89.891h12.345c.495 0 .89-.392.89-.89V18.06c0-.166 0-.31-.021-.455-.082-1.265.185-2.527.89-3.562 1.41-2.111 2.093-5.074 2.032-8.8" })
11
+ ] }),
12
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-presences_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
13
+ ] });
14
+ export {
15
+ SvgIconPresences as default
16
+ };