@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.
- package/LICENSE +661 -0
- package/README.md +110 -0
- package/dist/audience.js +16 -0
- package/dist/comments.js +4 -0
- package/dist/components/ActionBar/ActionBar.d.ts +9 -0
- package/dist/components/ActionBar/ActionBar.js +8 -0
- package/dist/components/ActionBar/index.d.ts +2 -0
- package/dist/components/Alert/Alert.d.ts +60 -0
- package/dist/components/Alert/Alert.js +81 -0
- package/dist/components/Alert/index.d.ts +2 -0
- package/dist/components/AppHeader/AppHeader.d.ts +17 -0
- package/dist/components/AppHeader/AppHeader.js +22 -0
- package/dist/components/AppHeader/index.d.ts +2 -0
- package/dist/components/AppIcon/AppIcon.d.ts +45 -0
- package/dist/components/AppIcon/AppIcon.js +51 -0
- package/dist/components/AppIcon/index.d.ts +1 -0
- package/dist/components/Attachment/Attachment.d.ts +14 -0
- package/dist/components/Attachment/Attachment.js +18 -0
- package/dist/components/Attachment/index.d.ts +2 -0
- package/dist/components/Avatar/Avatar.d.ts +31 -0
- package/dist/components/Avatar/Avatar.js +33 -0
- package/dist/components/Avatar/index.d.ts +2 -0
- package/dist/components/Badge/Badge.d.ts +49 -0
- package/dist/components/Badge/Badge.js +18 -0
- package/dist/components/Badge/index.d.ts +2 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +13 -0
- package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.js +14 -0
- package/dist/components/Breadcrumb/BreadcrumbList.d.ts +13 -0
- package/dist/components/Breadcrumb/BreadcrumbList.js +13 -0
- package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +18 -0
- package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
- package/dist/components/Breadcrumb/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +63 -0
- package/dist/components/Button/Button.js +35 -0
- package/dist/components/Button/IconButton.d.ts +11 -0
- package/dist/components/Button/IconButton.js +18 -0
- package/dist/components/Button/SearchButton.d.ts +21 -0
- package/dist/components/Button/SearchButton.js +17 -0
- package/dist/components/Button/index.d.ts +6 -0
- package/dist/components/Card/Card.d.ts +87 -0
- package/dist/components/Card/Card.js +53 -0
- package/dist/components/Card/CardBody.d.ts +10 -0
- package/dist/components/Card/CardBody.js +18 -0
- package/dist/components/Card/CardContext.d.ts +12 -0
- package/dist/components/Card/CardContext.js +11 -0
- package/dist/components/Card/CardFooter.d.ts +8 -0
- package/dist/components/Card/CardFooter.js +7 -0
- package/dist/components/Card/CardHeader.d.ts +5 -0
- package/dist/components/Card/CardHeader.js +22 -0
- package/dist/components/Card/CardImage.d.ts +9 -0
- package/dist/components/Card/CardImage.js +21 -0
- package/dist/components/Card/CardText.d.ts +9 -0
- package/dist/components/Card/CardText.js +12 -0
- package/dist/components/Card/CardTitle.d.ts +9 -0
- package/dist/components/Card/CardTitle.js +12 -0
- package/dist/components/Card/CardUser.d.ts +8 -0
- package/dist/components/Card/CardUser.js +10 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Checkbox/Checkbox.d.ts +20 -0
- package/dist/components/Checkbox/Checkbox.js +35 -0
- package/dist/components/Checkbox/index.d.ts +2 -0
- package/dist/components/ColorPicker/ColorPalette.d.ts +46 -0
- package/dist/components/ColorPicker/ColorPalette.js +171 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +18 -0
- package/dist/components/ColorPicker/ColorPicker.js +38 -0
- package/dist/components/ColorPicker/ColorPickerItem.d.ts +20 -0
- package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
- package/dist/components/ColorPicker/index.d.ts +5 -0
- package/dist/components/Combobox/Combobox.d.ts +31 -0
- package/dist/components/Combobox/Combobox.js +40 -0
- package/dist/components/Combobox/ComboboxTrigger.d.ts +9 -0
- package/dist/components/Combobox/ComboboxTrigger.js +30 -0
- package/dist/components/Combobox/index.d.ts +2 -0
- package/dist/components/Dropdown/Dropdown.d.ts +79 -0
- package/dist/components/Dropdown/Dropdown.js +60 -0
- package/dist/components/Dropdown/DropdownCheckboxItem.d.ts +24 -0
- package/dist/components/Dropdown/DropdownCheckboxItem.js +34 -0
- package/dist/components/Dropdown/DropdownContext.d.ts +8 -0
- package/dist/components/Dropdown/DropdownContext.js +11 -0
- package/dist/components/Dropdown/DropdownItem.d.ts +29 -0
- package/dist/components/Dropdown/DropdownItem.js +33 -0
- package/dist/components/Dropdown/DropdownMenu.d.ts +35 -0
- package/dist/components/Dropdown/DropdownMenu.js +26 -0
- package/dist/components/Dropdown/DropdownMenuGroup.d.ts +13 -0
- package/dist/components/Dropdown/DropdownMenuGroup.js +12 -0
- package/dist/components/Dropdown/DropdownRadioItem.d.ts +24 -0
- package/dist/components/Dropdown/DropdownRadioItem.js +34 -0
- package/dist/components/Dropdown/DropdownSeparator.d.ts +5 -0
- package/dist/components/Dropdown/DropdownSeparator.js +5 -0
- package/dist/components/Dropdown/DropdownTrigger.d.ts +37 -0
- package/dist/components/Dropdown/DropdownTrigger.js +34 -0
- package/dist/components/Dropdown/index.d.ts +2 -0
- package/dist/components/Dropzone/Dropzone.d.ts +52 -0
- package/dist/components/Dropzone/Dropzone.js +55 -0
- package/dist/components/Dropzone/DropzoneContext.d.ts +9 -0
- package/dist/components/Dropzone/DropzoneContext.js +12 -0
- package/dist/components/Dropzone/DropzoneDrag.d.ts +5 -0
- package/dist/components/Dropzone/DropzoneDrag.js +11 -0
- package/dist/components/Dropzone/DropzoneFile.d.ts +9 -0
- package/dist/components/Dropzone/DropzoneFile.js +30 -0
- package/dist/components/Dropzone/DropzoneImport.d.ts +5 -0
- package/dist/components/Dropzone/DropzoneImport.js +28 -0
- package/dist/components/Dropzone/index.d.ts +3 -0
- package/dist/components/EmptyScreen/EmptyScreen.d.ts +31 -0
- package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
- package/dist/components/EmptyScreen/index.d.ts +2 -0
- package/dist/components/Form/FormContext.d.ts +6 -0
- package/dist/components/Form/FormContext.js +11 -0
- package/dist/components/Form/FormControl.d.ts +42 -0
- package/dist/components/Form/FormControl.js +32 -0
- package/dist/components/Form/FormText.d.ts +8 -0
- package/dist/components/Form/FormText.js +17 -0
- package/dist/components/Form/index.d.ts +3 -0
- package/dist/components/Grid/Grid.d.ts +56 -0
- package/dist/components/Grid/Grid.js +32 -0
- package/dist/components/Grid/index.d.ts +1 -0
- package/dist/components/Heading/Heading.d.ts +27 -0
- package/dist/components/Heading/Heading.js +16 -0
- package/dist/components/Heading/index.d.ts +2 -0
- package/dist/components/Image/Image.d.ts +28 -0
- package/dist/components/Image/Image.js +41 -0
- package/dist/components/Image/index.d.ts +2 -0
- package/dist/components/Input/Input.d.ts +33 -0
- package/dist/components/Input/Input.js +31 -0
- package/dist/components/Input/index.d.ts +2 -0
- package/dist/components/Label/Label.d.ts +26 -0
- package/dist/components/Label/Label.js +37 -0
- package/dist/components/Label/index.d.ts +2 -0
- package/dist/components/Layout/Layout.d.ts +12 -0
- package/dist/components/Layout/Layout.js +44 -0
- package/dist/components/Layout/components/Header.d.ts +9 -0
- package/dist/components/Layout/components/Header.js +189 -0
- package/dist/components/Layout/components/Help.d.ts +8 -0
- package/dist/components/Layout/components/Help.js +25 -0
- package/dist/components/Layout/components/Main.d.ts +16 -0
- package/dist/components/Layout/components/NavItem.d.ts +6 -0
- package/dist/components/Layout/components/NavItem.js +14 -0
- package/dist/components/Layout/components/NavLink.d.ts +24 -0
- package/dist/components/Layout/components/NavLink.js +19 -0
- package/dist/components/Layout/components/Navbar.d.ts +6 -0
- package/dist/components/Layout/components/Navbar.js +13 -0
- package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
- package/dist/components/Layout/components/NavbarNav.js +13 -0
- package/dist/components/Layout/components/SearchEngine.d.ts +5 -0
- package/dist/components/Layout/components/SearchEngine.js +33 -0
- package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
- package/dist/components/Layout/components/WidgetApps.js +23 -0
- package/dist/components/Layout/hooks/index.d.ts +2 -0
- package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
- package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
- package/dist/components/Layout/hooks/useHelp.js +85 -0
- package/dist/components/Layout/index.d.ts +1 -0
- package/dist/components/List/List.d.ts +23 -0
- package/dist/components/List/List.js +50 -0
- package/dist/components/List/index.d.ts +1 -0
- package/dist/components/Loading/Loading.d.ts +29 -0
- package/dist/components/Loading/Loading.js +27 -0
- package/dist/components/Loading/index.d.ts +2 -0
- package/dist/components/LoadingScreen/LoadingScreen.d.ts +6 -0
- package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
- package/dist/components/LoadingScreen/index.d.ts +1 -0
- package/dist/components/Logo/Logo.d.ts +7 -0
- package/dist/components/Logo/Logo.js +14 -0
- package/dist/components/Logo/index.d.ts +2 -0
- package/dist/components/Menu/components/Menu.d.ts +14 -0
- package/dist/components/Menu/components/Menu.js +27 -0
- package/dist/components/Menu/components/MenuButton.d.ts +5 -0
- package/dist/components/Menu/components/MenuButton.js +21 -0
- package/dist/components/Menu/components/MenuContext.d.ts +10 -0
- package/dist/components/Menu/components/MenuContext.js +12 -0
- package/dist/components/Menu/components/MenuItem.d.ts +4 -0
- package/dist/components/Menu/components/MenuItem.js +19 -0
- package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
- package/dist/components/Menu/hooks/useMenu.js +50 -0
- package/dist/components/Menu/index.d.ts +2 -0
- package/dist/components/Modal/Modal.d.ts +55 -0
- package/dist/components/Modal/Modal.js +72 -0
- package/dist/components/Modal/ModalBody.d.ts +19 -0
- package/dist/components/Modal/ModalBody.js +15 -0
- package/dist/components/Modal/ModalContext.d.ts +7 -0
- package/dist/components/Modal/ModalContext.js +15 -0
- package/dist/components/Modal/ModalFooter.d.ts +12 -0
- package/dist/components/Modal/ModalFooter.js +5 -0
- package/dist/components/Modal/ModalHeader.d.ts +19 -0
- package/dist/components/Modal/ModalHeader.js +27 -0
- package/dist/components/Modal/ModalSubtitle.d.ts +12 -0
- package/dist/components/Modal/ModalSubtitle.js +5 -0
- package/dist/components/Modal/index.d.ts +2 -0
- package/dist/components/Popover/Popover.d.ts +33 -0
- package/dist/components/Popover/Popover.js +51 -0
- package/dist/components/Popover/index.d.ts +1 -0
- package/dist/components/Radio/Radio.d.ts +25 -0
- package/dist/components/Radio/Radio.js +31 -0
- package/dist/components/Radio/index.d.ts +2 -0
- package/dist/components/SearchBar/SearchBar.d.ts +51 -0
- package/dist/components/SearchBar/SearchBar.js +36 -0
- package/dist/components/SearchBar/index.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +39 -0
- package/dist/components/Select/Select.js +37 -0
- package/dist/components/Select/SelectTrigger.d.ts +8 -0
- package/dist/components/Select/SelectTrigger.js +6 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Table/components/Table.d.ts +30 -0
- package/dist/components/Table/components/Table.js +19 -0
- package/dist/components/Table/components/TableTbody.d.ts +6 -0
- package/dist/components/Table/components/TableTbody.js +11 -0
- package/dist/components/Table/components/TableTd.d.ts +4 -0
- package/dist/components/Table/components/TableTd.js +11 -0
- package/dist/components/Table/components/TableTh.d.ts +4 -0
- package/dist/components/Table/components/TableTh.js +11 -0
- package/dist/components/Table/components/TableThead.d.ts +4 -0
- package/dist/components/Table/components/TableThead.js +11 -0
- package/dist/components/Table/components/TableTr.d.ts +4 -0
- package/dist/components/Table/components/TableTr.js +11 -0
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Tabs/components/Tabs.d.ts +42 -0
- package/dist/components/Tabs/components/Tabs.js +45 -0
- package/dist/components/Tabs/components/TabsItem.d.ts +26 -0
- package/dist/components/Tabs/components/TabsItem.js +26 -0
- package/dist/components/Tabs/components/TabsList.d.ts +6 -0
- package/dist/components/Tabs/components/TabsList.js +24 -0
- package/dist/components/Tabs/components/TabsPanel.d.ts +17 -0
- package/dist/components/Tabs/components/TabsPanel.js +14 -0
- package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
- package/dist/components/Tabs/context/TabsContext.js +12 -0
- package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
- package/dist/components/Tabs/hooks/useTabs.js +61 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/TextArea/TextArea.d.ts +33 -0
- package/dist/components/TextArea/TextArea.js +34 -0
- package/dist/components/TextArea/TextareaCounter.d.ts +4 -0
- package/dist/components/TextArea/TextareaCounter.js +8 -0
- package/dist/components/TextArea/index.d.ts +2 -0
- package/dist/components/Toolbar/Toolbar.d.ts +76 -0
- package/dist/components/Toolbar/Toolbar.js +78 -0
- package/dist/components/Toolbar/index.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.d.ts +22 -0
- package/dist/components/Tooltip/Tooltip.js +41 -0
- package/dist/components/Tooltip/index.d.ts +2 -0
- package/dist/components/Tree/components/DndTree.d.ts +3 -0
- package/dist/components/Tree/components/DndTree.js +61 -0
- package/dist/components/Tree/components/SortableTree.d.ts +9 -0
- package/dist/components/Tree/components/SortableTree.js +138 -0
- package/dist/components/Tree/components/Tree.d.ts +7 -0
- package/dist/components/Tree/components/Tree.js +86 -0
- package/dist/components/Tree/hooks/useTree.d.ts +31 -0
- package/dist/components/Tree/hooks/useTree.js +85 -0
- package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
- package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
- package/dist/components/Tree/index.d.ts +6 -0
- package/dist/components/Tree/types/index.d.ts +174 -0
- package/dist/components/Tree/utilities/tree-sortable.d.ts +30 -0
- package/dist/components/Tree/utilities/tree-sortable.js +160 -0
- package/dist/components/Tree/utilities/tree.d.ts +34 -0
- package/dist/components/Tree/utilities/tree.js +44 -0
- package/dist/components/TreeView/TreeNode.d.ts +48 -0
- package/dist/components/TreeView/TreeNode.js +69 -0
- package/dist/components/TreeView/TreeView.d.ts +56 -0
- package/dist/components/TreeView/TreeView.js +37 -0
- package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
- package/dist/components/TreeView/hooks/useTreeView.js +105 -0
- package/dist/components/TreeView/index.d.ts +5 -0
- package/dist/components/TreeView/utilities/index.d.ts +1 -0
- package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
- package/dist/components/TreeView/utilities/treeview.js +177 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.js +8 -0
- package/dist/components/VisuallyHidden/index.d.ts +1 -0
- package/dist/components/index.d.ts +41 -0
- package/dist/editor.js +58 -0
- package/dist/hooks/index.d.ts +39 -0
- package/dist/hooks/useAvatar/index.d.ts +1 -0
- package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
- package/dist/hooks/useAvatar/useAvatar.js +30 -0
- package/dist/hooks/useBookmark/index.d.ts +1 -0
- package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
- package/dist/hooks/useBookmark/useBookmark.js +14 -0
- package/dist/hooks/useBreakpoint/index.d.ts +1 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
- package/dist/hooks/useBrowserInfo/index.d.ts +1 -0
- package/dist/hooks/useBrowserInfo/useBrowserInfo.d.ts +9 -0
- package/dist/hooks/useBrowserInfo/useBrowserInfo.js +16 -0
- package/dist/hooks/useCantoo/index.d.ts +1 -0
- package/dist/hooks/useCantoo/useCantoo.d.ts +1 -0
- package/dist/hooks/useCantoo/useCantoo.js +18 -0
- package/dist/hooks/useCheckable/index.d.ts +1 -0
- package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
- package/dist/hooks/useCheckable/useCheckable.js +21 -0
- package/dist/hooks/useClickOutside/index.d.ts +1 -0
- package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -0
- package/dist/hooks/useClickOutside/useClickOutside.js +26 -0
- package/dist/hooks/useConf/index.d.ts +1 -0
- package/dist/hooks/useConf/useConf.d.ts +4 -0
- package/dist/hooks/useConf/useConf.js +13 -0
- package/dist/hooks/useConversation/index.d.ts +1 -0
- package/dist/hooks/useConversation/useConversation.d.ts +6 -0
- package/dist/hooks/useConversation/useConversation.js +43 -0
- package/dist/hooks/useCookiesConsent/index.d.ts +1 -0
- package/dist/hooks/useCookiesConsent/useCookiesConsent.d.ts +5 -0
- package/dist/hooks/useCookiesConsent/useCookiesConsent.js +29 -0
- package/dist/hooks/useDate/index.d.ts +2 -0
- package/dist/hooks/useDate/useDate.d.ts +14 -0
- package/dist/hooks/useDate/useDate.js +65 -0
- package/dist/hooks/useDebounce/index.d.ts +1 -0
- package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
- package/dist/hooks/useDebounce/useDebounce.js +15 -0
- package/dist/hooks/useDirectory/index.d.ts +1 -0
- package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
- package/dist/hooks/useDirectory/useDirectory.js +16 -0
- package/dist/hooks/useDropdown/index.d.ts +1 -0
- package/dist/hooks/useDropdown/useDropdown.d.ts +32 -0
- package/dist/hooks/useDropdown/useDropdown.js +158 -0
- package/dist/hooks/useDropzone/index.d.ts +1 -0
- package/dist/hooks/useDropzone/useDropzone.d.ts +34 -0
- package/dist/hooks/useDropzone/useDropzone.js +78 -0
- package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
- package/dist/hooks/useHasWorkflow/index.d.ts +1 -0
- package/dist/hooks/useHasWorkflow/useHasWorkflow.d.ts +1 -0
- package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
- package/dist/hooks/useHeader/index.d.ts +1 -0
- package/dist/hooks/useHeader/useHeader.d.ts +5 -0
- package/dist/hooks/useHeader/useHeader.js +46 -0
- package/dist/hooks/useHover/index.d.ts +1 -0
- package/dist/hooks/useHover/useHover.d.ts +2 -0
- package/dist/hooks/useHover/useHover.js +22 -0
- package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
- package/dist/hooks/useImage/index.d.ts +1 -0
- package/dist/hooks/useImage/useImage.d.ts +9 -0
- package/dist/hooks/useImage/useImage.js +18 -0
- package/dist/hooks/useIsAdml/index.d.ts +1 -0
- package/dist/hooks/useIsAdml/useIsAdml.d.ts +3 -0
- package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
- package/dist/hooks/useKeyPress/index.d.ts +1 -0
- package/dist/hooks/useKeyPress/useKeyPress.d.ts +1 -0
- package/dist/hooks/useKeyPress/useKeyPress.js +14 -0
- package/dist/hooks/useLibraryUrl/index.d.ts +1 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.d.ts +7 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
- package/dist/hooks/useMediaLibrary/index.d.ts +1 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.js +58 -0
- package/dist/hooks/usePreferences/index.d.ts +1 -0
- package/dist/hooks/usePreferences/usePreferences.d.ts +4 -0
- package/dist/hooks/usePreferences/usePreferences.js +10 -0
- package/dist/hooks/useResource/index.d.ts +1 -0
- package/dist/hooks/useResource/useResource.d.ts +3 -0
- package/dist/hooks/useResource/useResource.js +25 -0
- package/dist/hooks/useResourceSearch/index.d.ts +1 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
- package/dist/hooks/useScrollToTop/index.d.ts +1 -0
- package/dist/hooks/useScrollToTop/useScrollToTop.d.ts +1 -0
- package/dist/hooks/useScrollToTop/useScrollToTop.js +9 -0
- package/dist/hooks/useSession/index.d.ts +1 -0
- package/dist/hooks/useSession/useSession.d.ts +1 -0
- package/dist/hooks/useSession/useSession.js +11 -0
- package/dist/hooks/useThumbnail/index.d.ts +1 -0
- package/dist/hooks/useThumbnail/useThumbnail.d.ts +14 -0
- package/dist/hooks/useThumbnail/useThumbnail.js +29 -0
- package/dist/hooks/useTitle/index.d.ts +1 -0
- package/dist/hooks/useTitle/useTitle.d.ts +1 -0
- package/dist/hooks/useTitle/useTitle.js +10 -0
- package/dist/hooks/useToast/index.d.ts +1 -0
- package/dist/hooks/useToast/useToast.d.ts +17 -0
- package/dist/hooks/useToast/useToast.js +34 -0
- package/dist/hooks/useToggle/index.d.ts +1 -0
- package/dist/hooks/useToggle/useToggle.d.ts +1 -0
- package/dist/hooks/useToggle/useToggle.js +10 -0
- package/dist/hooks/useTrapFocus/index.d.ts +1 -0
- package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +1 -0
- package/dist/hooks/useTrapFocus/useTrapFocus.js +16 -0
- package/dist/hooks/useTrashedResource/index.d.ts +1 -0
- package/dist/hooks/useTrashedResource/useTrashedResource.d.ts +6 -0
- package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
- package/dist/hooks/useUpload/index.d.ts +1 -0
- package/dist/hooks/useUpload/useUpload.d.ts +18 -0
- package/dist/hooks/useUpload/useUpload.js +106 -0
- package/dist/hooks/useUploadFiles/index.d.ts +1 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
- package/dist/hooks/useUser/index.d.ts +1 -0
- package/dist/hooks/useUser/useUser.d.ts +7 -0
- package/dist/hooks/useUser/useUser.js +22 -0
- package/dist/hooks/useWorkspaceFile/index.d.ts +1 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
- package/dist/hooks/useWorkspaceSearch/index.d.ts +1 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
- package/dist/hooks/useXitiTrackPageLoad/index.d.ts +1 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +4 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
- package/dist/hooks/useZendeskGuide/index.d.ts +1 -0
- package/dist/hooks/useZendeskGuide/useZendeskGuide.d.ts +2 -0
- package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
- package/dist/icons-apps.js +232 -0
- package/dist/icons-audience.js +28 -0
- package/dist/icons-nav.js +28 -0
- package/dist/icons.js +300 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +236 -0
- package/dist/modals.js +18 -0
- package/dist/modules/audience/ReactionChoice.d.ts +11 -0
- package/dist/modules/audience/ReactionChoice.js +33 -0
- package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
- package/dist/modules/audience/ReactionModal.Card.js +33 -0
- package/dist/modules/audience/ReactionModal.d.ts +20 -0
- package/dist/modules/audience/ReactionModal.js +72 -0
- package/dist/modules/audience/ReactionSummary.d.ts +10 -0
- package/dist/modules/audience/ReactionSummary.js +27 -0
- package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
- package/dist/modules/audience/ViewsByProfileCard.js +40 -0
- package/dist/modules/audience/ViewsCounter.d.ts +10 -0
- package/dist/modules/audience/ViewsCounter.js +18 -0
- package/dist/modules/audience/ViewsModal.d.ts +11 -0
- package/dist/modules/audience/ViewsModal.js +41 -0
- package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
- package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
- package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
- package/dist/modules/audience/hooks/useReactions.js +35 -0
- package/dist/modules/audience/hooks/useViews.d.ts +11 -0
- package/dist/modules/audience/index.d.ts +12 -0
- package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
- package/dist/modules/comments/components/BadgeProfile.js +18 -0
- package/dist/modules/comments/components/Comment.d.ts +7 -0
- package/dist/modules/comments/components/Comment.js +72 -0
- package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
- package/dist/modules/comments/components/CommentAvatar.js +17 -0
- package/dist/modules/comments/components/CommentDate.d.ts +4 -0
- package/dist/modules/comments/components/CommentDate.js +27 -0
- package/dist/modules/comments/components/CommentForm.d.ts +3 -0
- package/dist/modules/comments/components/CommentForm.js +37 -0
- package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
- package/dist/modules/comments/components/CommentHeader.js +8 -0
- package/dist/modules/comments/components/CommentList.d.ts +1 -0
- package/dist/modules/comments/components/CommentList.js +22 -0
- package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
- package/dist/modules/comments/components/CommentTitle.js +7 -0
- package/dist/modules/comments/components/TextCounter.d.ts +4 -0
- package/dist/modules/comments/components/TextCounter.js +8 -0
- package/dist/modules/comments/constants.d.ts +20 -0
- package/dist/modules/comments/constants.js +8 -0
- package/dist/modules/comments/context/Context.d.ts +16 -0
- package/dist/modules/comments/context/Context.js +5 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
- package/dist/modules/comments/hooks/useComments.d.ts +29 -0
- package/dist/modules/comments/hooks/useComments.js +66 -0
- package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
- package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
- package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
- package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
- package/dist/modules/comments/index.d.ts +1 -0
- package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
- package/dist/modules/comments/provider/CommentProvider.js +85 -0
- package/dist/modules/comments/types.d.ts +102 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
- package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
- package/dist/modules/editor/components/Editor/Editor.js +82 -0
- package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
- package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
- package/dist/modules/editor/components/Editor/index.d.ts +2 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
- package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.js +70 -0
- package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
- package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
- package/dist/modules/editor/components/index.d.ts +6 -0
- package/dist/modules/editor/hooks/index.d.ts +12 -0
- package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
- package/dist/modules/editor/hooks/useActionOptions.js +86 -0
- package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
- package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
- package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
- package/dist/modules/editor/hooks/useEditorContext.js +12 -0
- package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
- package/dist/modules/editor/hooks/useImageModal.js +46 -0
- package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
- package/dist/modules/editor/hooks/useImageSelection.js +46 -0
- package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
- package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
- package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
- package/dist/modules/editor/hooks/useMathsModal.js +17 -0
- package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
- package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
- package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
- package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
- package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
- package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
- package/dist/modules/editor/index.d.ts +3 -0
- package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
- package/dist/modules/editor/utilities/has-extension.js +4 -0
- package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
- package/dist/modules/editor/utilities/has-mark.js +4 -0
- package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
- package/dist/modules/editor/utilities/has-text-style.js +5 -0
- package/dist/modules/icons/components/IconAdd.d.ts +7 -0
- package/dist/modules/icons/components/IconAdd.js +12 -0
- package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
- package/dist/modules/icons/components/IconAddUser.js +12 -0
- package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertCircle.js +13 -0
- package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
- package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignCenter.js +12 -0
- package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignJustify.js +12 -0
- package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignLeft.js +12 -0
- package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignRight.js +12 -0
- package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
- package/dist/modules/icons/components/IconAnswer.js +13 -0
- package/dist/modules/icons/components/IconApplications.d.ts +7 -0
- package/dist/modules/icons/components/IconApplications.js +12 -0
- package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowDown.js +13 -0
- package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowLeft.js +13 -0
- package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowRight.js +13 -0
- package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowUp.js +13 -0
- package/dist/modules/icons/components/IconBlock.d.ts +7 -0
- package/dist/modules/icons/components/IconBlock.js +12 -0
- package/dist/modules/icons/components/IconBlur.d.ts +7 -0
- package/dist/modules/icons/components/IconBlur.js +13 -0
- package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
- package/dist/modules/icons/components/IconBookmark.js +12 -0
- package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
- package/dist/modules/icons/components/IconBulletList.js +16 -0
- package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
- package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
- package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendar.js +12 -0
- package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendarLight.js +12 -0
- package/dist/modules/icons/components/IconCamera.d.ts +7 -0
- package/dist/modules/icons/components/IconCamera.js +13 -0
- package/dist/modules/icons/components/IconCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconCenter.js +12 -0
- package/dist/modules/icons/components/IconCheck.d.ts +7 -0
- package/dist/modules/icons/components/IconCheck.js +12 -0
- package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
- package/dist/modules/icons/components/IconChecklist.js +13 -0
- package/dist/modules/icons/components/IconClock.d.ts +7 -0
- package/dist/modules/icons/components/IconClock.js +12 -0
- package/dist/modules/icons/components/IconClose.d.ts +7 -0
- package/dist/modules/icons/components/IconClose.js +13 -0
- package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
- package/dist/modules/icons/components/IconCode.d.ts +7 -0
- package/dist/modules/icons/components/IconCode.js +12 -0
- package/dist/modules/icons/components/IconCopy.d.ts +7 -0
- package/dist/modules/icons/components/IconCopy.js +12 -0
- package/dist/modules/icons/components/IconCrop.d.ts +7 -0
- package/dist/modules/icons/components/IconCrop.js +13 -0
- package/dist/modules/icons/components/IconCut.d.ts +7 -0
- package/dist/modules/icons/components/IconCut.js +13 -0
- package/dist/modules/icons/components/IconDelete.d.ts +7 -0
- package/dist/modules/icons/components/IconDelete.js +12 -0
- package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColor.js +13 -0
- package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
- package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRow.js +12 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
- package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
- package/dist/modules/icons/components/IconDownload.d.ts +7 -0
- package/dist/modules/icons/components/IconDownload.js +17 -0
- package/dist/modules/icons/components/IconEdit.d.ts +7 -0
- package/dist/modules/icons/components/IconEdit.js +13 -0
- package/dist/modules/icons/components/IconError.d.ts +7 -0
- package/dist/modules/icons/components/IconError.js +12 -0
- package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
- package/dist/modules/icons/components/IconExternalLink.js +13 -0
- package/dist/modules/icons/components/IconFiles.d.ts +7 -0
- package/dist/modules/icons/components/IconFiles.js +12 -0
- package/dist/modules/icons/components/IconFilter.d.ts +7 -0
- package/dist/modules/icons/components/IconFilter.js +12 -0
- package/dist/modules/icons/components/IconFlag.d.ts +7 -0
- package/dist/modules/icons/components/IconFlag.js +12 -0
- package/dist/modules/icons/components/IconFolder.d.ts +7 -0
- package/dist/modules/icons/components/IconFolder.js +12 -0
- package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderMove.js +17 -0
- package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
- package/dist/modules/icons/components/IconForgoing.js +12 -0
- package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconFullScreen.js +12 -0
- package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
- package/dist/modules/icons/components/IconGlobe.js +12 -0
- package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
- package/dist/modules/icons/components/IconHeadphone.js +12 -0
- package/dist/modules/icons/components/IconHide.d.ts +7 -0
- package/dist/modules/icons/components/IconHide.js +13 -0
- package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
- package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightRow.js +12 -0
- package/dist/modules/icons/components/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/IconHome.js +12 -0
- package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
- package/dist/modules/icons/components/IconHourglass.js +12 -0
- package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
- package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
- package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
- package/dist/modules/icons/components/IconInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconInbox.js +12 -0
- package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconInfoCircle.js +13 -0
- package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
- package/dist/modules/icons/components/IconLandscape.js +12 -0
- package/dist/modules/icons/components/IconLink.d.ts +7 -0
- package/dist/modules/icons/components/IconLink.js +16 -0
- package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
- package/dist/modules/icons/components/IconListOrder.js +12 -0
- package/dist/modules/icons/components/IconLoader.d.ts +7 -0
- package/dist/modules/icons/components/IconLoader.js +12 -0
- package/dist/modules/icons/components/IconLock.d.ts +7 -0
- package/dist/modules/icons/components/IconLock.js +12 -0
- package/dist/modules/icons/components/IconMail.d.ts +7 -0
- package/dist/modules/icons/components/IconMail.js +13 -0
- package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
- package/dist/modules/icons/components/IconMergeCells.js +13 -0
- package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
- package/dist/modules/icons/components/IconMessageInfo.js +13 -0
- package/dist/modules/icons/components/IconMic.d.ts +7 -0
- package/dist/modules/icons/components/IconMic.js +12 -0
- package/dist/modules/icons/components/IconMinus.d.ts +7 -0
- package/dist/modules/icons/components/IconMinus.js +12 -0
- package/dist/modules/icons/components/IconMove.d.ts +7 -0
- package/dist/modules/icons/components/IconMove.js +14 -0
- package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
- package/dist/modules/icons/components/IconNoColors.js +12 -0
- package/dist/modules/icons/components/IconOptions.d.ts +7 -0
- package/dist/modules/icons/components/IconOptions.js +14 -0
- package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
- package/dist/modules/icons/components/IconOrderedList.js +16 -0
- package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
- package/dist/modules/icons/components/IconPaperclip.js +12 -0
- package/dist/modules/icons/components/IconPause.d.ts +7 -0
- package/dist/modules/icons/components/IconPause.js +12 -0
- package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOff.js +12 -0
- package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOn.js +12 -0
- package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/IconPlay.d.ts +7 -0
- package/dist/modules/icons/components/IconPlay.js +12 -0
- package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
- package/dist/modules/icons/components/IconPlayFilled.js +12 -0
- package/dist/modules/icons/components/IconPlus.d.ts +7 -0
- package/dist/modules/icons/components/IconPlus.js +12 -0
- package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerDefault.js +12 -0
- package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerHand.js +12 -0
- package/dist/modules/icons/components/IconPrint.d.ts +7 -0
- package/dist/modules/icons/components/IconPrint.js +12 -0
- package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
- package/dist/modules/icons/components/IconQuestion.js +14 -0
- package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterDown.js +12 -0
- package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterLeft.js +12 -0
- package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterRight.js +12 -0
- package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterUp.js +12 -0
- package/dist/modules/icons/components/IconReaction.d.ts +7 -0
- package/dist/modules/icons/components/IconReaction.js +12 -0
- package/dist/modules/icons/components/IconRecord.d.ts +7 -0
- package/dist/modules/icons/components/IconRecord.js +12 -0
- package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordPause.js +12 -0
- package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordStop.js +12 -0
- package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordVideo.js +12 -0
- package/dist/modules/icons/components/IconRedo.d.ts +7 -0
- package/dist/modules/icons/components/IconRedo.js +13 -0
- package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
- package/dist/modules/icons/components/IconRefresh.js +13 -0
- package/dist/modules/icons/components/IconReset.d.ts +7 -0
- package/dist/modules/icons/components/IconReset.js +12 -0
- package/dist/modules/icons/components/IconRestart.d.ts +7 -0
- package/dist/modules/icons/components/IconRestart.js +12 -0
- package/dist/modules/icons/components/IconRestore.d.ts +7 -0
- package/dist/modules/icons/components/IconRestore.js +12 -0
- package/dist/modules/icons/components/IconSave.d.ts +7 -0
- package/dist/modules/icons/components/IconSave.js +12 -0
- package/dist/modules/icons/components/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconSearch.js +12 -0
- package/dist/modules/icons/components/IconSee.d.ts +7 -0
- package/dist/modules/icons/components/IconSee.js +13 -0
- package/dist/modules/icons/components/IconSend.d.ts +7 -0
- package/dist/modules/icons/components/IconSend.js +12 -0
- package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
- package/dist/modules/icons/components/IconSetBackground.js +17 -0
- package/dist/modules/icons/components/IconSettings.d.ts +7 -0
- package/dist/modules/icons/components/IconSettings.js +16 -0
- package/dist/modules/icons/components/IconShare.d.ts +7 -0
- package/dist/modules/icons/components/IconShare.js +12 -0
- package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
- package/dist/modules/icons/components/IconSmartphone.js +13 -0
- package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
- package/dist/modules/icons/components/IconSmiley.js +13 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescending.js +13 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
- package/dist/modules/icons/components/IconSortTime.js +14 -0
- package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
- package/dist/modules/icons/components/IconSpeechToText.js +12 -0
- package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
- package/dist/modules/icons/components/IconSplitCells.js +13 -0
- package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
- package/dist/modules/icons/components/IconSquareRoot.js +12 -0
- package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSubscript.js +12 -0
- package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessFill.js +12 -0
- package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
- package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSuperscript.js +12 -0
- package/dist/modules/icons/components/IconTable.d.ts +7 -0
- package/dist/modules/icons/components/IconTable.js +12 -0
- package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
- package/dist/modules/icons/components/IconTextBold.js +12 -0
- package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
- package/dist/modules/icons/components/IconTextColor.js +16 -0
- package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconTextHighlight.js +16 -0
- package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
- package/dist/modules/icons/components/IconTextItalic.js +12 -0
- package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
- package/dist/modules/icons/components/IconTextPage.js +12 -0
- package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
- package/dist/modules/icons/components/IconTextSize.js +12 -0
- package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
- package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
- package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
- package/dist/modules/icons/components/IconTextTypo.js +12 -0
- package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
- package/dist/modules/icons/components/IconTextUnderline.js +13 -0
- package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
- package/dist/modules/icons/components/IconTextVanilla.js +13 -0
- package/dist/modules/icons/components/IconTool.d.ts +7 -0
- package/dist/modules/icons/components/IconTool.js +12 -0
- package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
- package/dist/modules/icons/components/IconTrendingUp.js +16 -0
- package/dist/modules/icons/components/IconUndo.d.ts +7 -0
- package/dist/modules/icons/components/IconUndo.js +13 -0
- package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlink.js +13 -0
- package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlock.js +13 -0
- package/dist/modules/icons/components/IconUpload.d.ts +7 -0
- package/dist/modules/icons/components/IconUpload.js +18 -0
- package/dist/modules/icons/components/IconUser.d.ts +7 -0
- package/dist/modules/icons/components/IconUser.js +12 -0
- package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconUserSearch.js +13 -0
- package/dist/modules/icons/components/IconUsers.d.ts +7 -0
- package/dist/modules/icons/components/IconUsers.js +13 -0
- package/dist/modules/icons/components/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconVideo.js +12 -0
- package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconViewCalendar.js +12 -0
- package/dist/modules/icons/components/IconViewList.d.ts +7 -0
- package/dist/modules/icons/components/IconViewList.js +15 -0
- package/dist/modules/icons/components/IconWand.d.ts +7 -0
- package/dist/modules/icons/components/IconWand.js +12 -0
- package/dist/modules/icons/components/IconWrite.d.ts +7 -0
- package/dist/modules/icons/components/IconWrite.js +12 -0
- package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomIn.js +12 -0
- package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomOut.js +12 -0
- package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAccount.js +12 -0
- package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconActualites.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
- package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
- package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconArchive.js +12 -0
- package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
- package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssr.js +12 -0
- package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAward.js +12 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
- package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
- package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBlog.js +12 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
- package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
- package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCcn.js +12 -0
- package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCerise.js +12 -0
- package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
- package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharte.js +12 -0
- package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconChat.js +12 -0
- package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCidj.js +12 -0
- package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCns.js +12 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
- package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
- package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
- package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConversation.js +12 -0
- package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
- package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
- package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElectron.js +12 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
- package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
- package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
- package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
- package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForms.js +16 -0
- package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForum.js +12 -0
- package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGepi.js +12 -0
- package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
- package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconKne.js +12 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
- package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
- package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
- package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
- package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLsu.js +12 -0
- package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
- package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
- package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
- package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
- package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
- package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
- package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNote.js +12 -0
- package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
- package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotes.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
- package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPad.js +12 -0
- package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPages.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
- package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
- package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParcours.js +12 -0
- package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPoll.js +12 -0
- package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPresences.js +16 -0
- package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconProeps.js +12 -0
- package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPronote.js +12 -0
- package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPublic.js +12 -0
- package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwant.js +12 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
- package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRack.js +12 -0
- package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRbs.js +12 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
- package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
- package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
- package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
- package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
- package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
- package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStats.js +12 -0
- package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
- package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSupport.js +12 -0
- package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
- package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
- package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
- package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
- package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVideo.js +12 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
- package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
- package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
- package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWiki.js +13 -0
- package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
- package/dist/modules/icons/components/apps/index.d.ts +115 -0
- package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
- package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreat.js +16 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
- package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGuest.js +12 -0
- package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
- package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconParent.js +12 -0
- package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
- package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconStudent.js +20 -0
- package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
- package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanks.js +18 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
- package/dist/modules/icons/components/audience/index.d.ts +13 -0
- package/dist/modules/icons/components/index.d.ts +149 -0
- package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
- package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
- package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconHome.js +12 -0
- package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
- package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconProfile.js +12 -0
- package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconSearch.js +12 -0
- package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
- package/dist/modules/icons/components/nav/index.d.ts +13 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.d.ts +42 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.js +58 -0
- package/dist/modules/modals/OnboardingModal/index.d.ts +1 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
- package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
- package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
- package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.d.ts +7 -0
- package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
- package/dist/modules/modals/PublishModal/components/LangSelect.d.ts +5 -0
- package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.d.ts +1 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.d.ts +7 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/ToastError.d.ts +5 -0
- package/dist/modules/modals/PublishModal/components/ToastError.js +24 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.js +18 -0
- package/dist/modules/modals/PublishModal/constants/ageOptions.d.ts +1 -0
- package/dist/modules/modals/PublishModal/constants/ageOptions.js +4 -0
- package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.js +34 -0
- package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.js +43 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
- package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.js +118 -0
- package/dist/modules/modals/PublishModal/index.d.ts +1 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
- package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
- package/dist/modules/modals/ResourceModal/hooks/useThumb.js +17 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
- package/dist/modules/modals/ResourceModal/index.d.ts +3 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +8 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
- package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
- package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
- package/dist/modules/modals/ShareModal/index.d.ts +3 -0
- package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/hasRight.js +4 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.js +4 -0
- package/dist/modules/modals/index.d.ts +4 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.d.ts +10 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
- package/dist/modules/multimedia/AudioRecorder/index.d.ts +1 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
- package/dist/modules/multimedia/Embed/Embed.d.ts +5 -0
- package/dist/modules/multimedia/Embed/Embed.js +32 -0
- package/dist/modules/multimedia/Embed/index.d.ts +2 -0
- package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
- package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
- package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
- package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
- package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
- package/dist/modules/multimedia/FileCard/index.d.ts +2 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditor.d.ts +27 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
- package/dist/modules/multimedia/ImageEditor/effects/crop.js +155 -0
- package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
- package/dist/modules/multimedia/ImageEditor/effects/misc.js +162 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.js +157 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.js +33 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.js +66 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.js +76 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.js +52 -0
- package/dist/modules/multimedia/ImageEditor/index.d.ts +1 -0
- package/dist/modules/multimedia/ImageEditor/utilities/aggregate.d.ts +9 -0
- package/dist/modules/multimedia/ImageEditor/utilities/aggregate.js +13 -0
- package/dist/modules/multimedia/ImageEditor/utilities/debounceAggregate.d.ts +10 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
- package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
- package/dist/modules/multimedia/Linker/index.d.ts +4 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
- package/dist/modules/multimedia/LinkerCard/index.d.ts +2 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.js +12 -0
- package/dist/modules/multimedia/MediaLibrary/index.d.ts +3 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.js +19 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.js +14 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Video.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Video.js +22 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +10 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +21 -0
- package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
- package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
- package/dist/modules/multimedia/UploadFiles/index.d.ts +2 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
- package/dist/modules/multimedia/VideoEmbed/index.d.ts +1 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
- package/dist/modules/multimedia/VideoRecorder/index.d.ts +1 -0
- package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
- package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
- package/dist/modules/multimedia/Workspace/index.d.ts +2 -0
- package/dist/modules/multimedia/index.d.ts +7 -0
- package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
- package/dist/modules/widgets/BookmarkedApps/index.d.ts +2 -0
- package/dist/modules/widgets/Widget/Widget.d.ts +17 -0
- package/dist/modules/widgets/Widget/index.d.ts +2 -0
- package/dist/modules/widgets/index.d.ts +2 -0
- package/dist/multimedia.js +18 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +9 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +2 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
- package/dist/providers/MockedDataProvider/index.d.ts +1 -0
- package/dist/providers/index.d.ts +6 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/size.d.ts +1 -0
- package/dist/types/status.d.ts +1 -0
- package/dist/types/treedata.d.ts +30 -0
- package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
- package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
- package/dist/utilities/check-user-rights/index.d.ts +1 -0
- package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.d.ts +6 -0
- package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.js +49 -0
- package/dist/utilities/emptyscreen-mapping/index.d.ts +1 -0
- package/dist/utilities/index.d.ts +3 -0
- package/dist/utilities/refs/index.d.ts +1 -0
- package/dist/utilities/refs/ref.d.ts +5 -0
- package/dist/utilities/refs/ref.js +14 -0
- package/package.json +177 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconBookmarkEmpty = ({
|
|
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: "M15.46 3.97H1.71v16.67l6.87-6.6 1.2 1.14 5.68 5.46zm.17-1.73q.29 0 .58.12.45.2.7.55t.26.84v17.3q0 .45-.27.84t-.7.55q-.23.1-.57.1-.65 0-1.13-.44l-5.92-5.67-5.91 5.67q-.48.46-1.1.46-.32 0-.6-.12-.44-.17-.7-.55T0 21.04V3.75q0-.45.26-.84t.7-.55q.3-.12.6-.12z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconBookmarkEmpty 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 SvgIconCahierDeTexte: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCahierDeTexte;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCahierDeTexte = ({
|
|
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: "M1.83 7.48v-.13c0-.23.2-.42.43-.42h1.81c.24 0 .43.19.43.42v.13a.43.43 0 0 1-.43.43H2.26a.43.43 0 0 1-.42-.43zm.43-4.06h1.81A.43.43 0 0 0 4.5 3v-.14a.43.43 0 0 0-.43-.42H2.26a.43.43 0 0 0-.42.42V3c0 .23.19.42.42.42m0 8.9h1.81a.43.43 0 0 0 .43-.42v-.13a.43.43 0 0 0-.43-.43H2.26a.43.43 0 0 0-.42.43v.13c0 .23.19.42.42.42m0 4.44h1.81a.43.43 0 0 0 .43-.42v-.13a.43.43 0 0 0-.43-.43H2.26a.43.43 0 0 0-.42.43v.13c0 .23.19.42.42.42m2.24 4.06v-.13a.43.43 0 0 0-.43-.43H2.26a.43.43 0 0 0-.42.43v.13c0 .24.19.43.42.43h1.81a.42.42 0 0 0 .43-.43M19.76 1.3v21.06c0 .37-.3.62-.62.62H4.05c-.36 0-.65-.25-.65-.62v-.85c.23 0 .42.04.62 0 .42 0 .71-.2.81-.48.2-.53-.16-1.02-.72-1.05H3.4v-2.94h.75c.36 0 .62-.16.75-.49.2-.5-.2-1.01-.75-.98H3.4v-2.98h.39c.81 0 1.14-.22 1.14-.75 0-.49-.36-.71-1.14-.71h-.4v-3h.76c.45 0 .78-.34.78-.76s-.32-.72-.78-.72H3.4V3.68c.26 0 .49-.04.71 0 .3 0 .6-.13.72-.4.17-.29.13-.55-.06-.81a.68.68 0 0 0-.62-.26H3.4V1.3a.64.64 0 0 1 .62-.62h15.12a.64.64 0 0 1 .62.62M15.7 7.28H8.3v1.41h7.37V7.28zm0-2.25H8.3v1.41h7.37V5.03zm5.67 13.4h-.78c-.26 0-.46.29-.46.64v2.42c0 .35.2.64.46.64h.78c.45 0 .82-.52.82-1.15v-1.4c0-.63-.37-1.15-.82-1.15m0-4.19h-.78c-.26 0-.46.29-.46.64v2.42c0 .35.2.64.46.64h.78c.45 0 .82-.52.82-1.15v-1.4c0-.63-.37-1.14-.82-1.14zm0-4.19h-.78c-.26 0-.46.29-.46.64v2.42c0 .35.2.64.46.64h.78c.45 0 .82-.52.82-1.15v-1.4c0-.63-.37-1.14-.82-1.14zm0-4.19h-.78c-.26 0-.46.29-.46.64v2.42c0 .35.2.64.46.64h.78c.45 0 .82-.52.82-1.15V7c0-.63-.37-1.14-.82-1.14m0-4.19h-.78c-.26 0-.46.29-.46.64v2.42c0 .35.2.64.46.64h.78c.45 0 .82-.52.82-1.15v-1.4c0-.63-.37-1.14-.82-1.14z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCahierDeTexte 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 SvgIconCahierTextes: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCahierTextes;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCahierTextes = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.49 9.89V7.17h5.36v2.72H8.5zm10.72-2.7 2.67 2.7h-2.67V23.3H3.13q-1.11 0-1.9-.79t-.8-1.92V4.49q0-1.1.8-1.9t1.9-.79H19.2v2.7h2.7zm-2.67 13.4V4.5H5.8v16.09z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCahierTextes 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 SvgIconCalendar: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCalendar;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCalendar = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 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: "M1.7 22.87h3.88V19H1.7zm4.75 0h4.28V19H6.45zM1.7 18.13h3.87v-4.28H1.7zm4.74 0h4.28v-4.28H6.45v4.28zM1.7 13h3.87V9.12H1.7v3.87zm9.88 9.88h4.3V19h-4.3v3.87zM6.45 13h4.28V9.12H6.45v3.87zm10.29 9.88h3.87V19h-3.87v3.87zm-5.15-4.74h4.3v-4.28h-4.3zM6.88 6.54V2.67q0-.16-.15-.29t-.29-.14h-.86q-.17 0-.29.14t-.14.3v3.86q0 .17.14.32t.29.12h.86q.17 0 .3-.12t.14-.32m9.86 11.6h3.87v-4.29h-3.87v4.28zm-5.15-5.15h4.3V9.12h-4.3zm5.15 0h3.87V9.12h-3.87zm.43-6.45V2.67q0-.16-.12-.29t-.31-.14h-.84q-.17 0-.32.14t-.12.3v3.86q0 .17.12.32t.32.12h.84q.19 0 .31-.12t.12-.32m5.17-.86v17.2q0 .69-.53 1.2t-1.2.5H1.7q-.7 0-1.2-.5t-.5-1.2V5.67q0-.7.5-1.2t1.2-.5h1.73v-1.3q0-.9.63-1.52T5.57.53h.86q.9 0 1.52.63t.63 1.51v1.3h5.14v-1.3q0-.89.65-1.51T15.9.53h.84q.89 0 1.54.63t.62 1.51v1.3h1.7q.7 0 1.2.5t.54 1.2z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCalendar 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 SvgIconCanalNumerique: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCanalNumerique;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCanalNumerique = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.13 3.66c-.07.12-.07 1.03-.07 2.04.07 2.45 0 2.43 2.69 2.43h2.02l.05-1.76c.04-1.9-.12-2.62-.7-2.76-.17-.05-1.15-.1-2.14-.1-1.3-.05-1.8 0-1.85.15m5.4.21c-.33.32-.33.51-.3 2.31l.04 1.95 1.95.05c2.7.07 2.72.05 2.79-2.62l.05-2.02h-2.1c-1.9 0-2.13.02-2.42.33zm-5.09 5.1c-.4.39-.43.48-.43 2.33v1.93h2.07c2.06 0 2.09 0 2.43-.44.3-.38.36-.7.36-2.35v-1.9h-2.02c-1.9 0-2.02.02-2.4.43zm4.76 1.47c0 1.66.05 1.97.34 2.36.34.43.38.43 2.45.43h2.07L18 11.2c-.07-2.67-.07-2.67-2.84-2.67H13.2v1.9zm-2.79 4.66c-.07.1-.1 1.01-.07 2.02.02 1.25-.02 1.86-.14 2.02-.17.2-.6.27-1.88.27-2.21 0-2.3-.05-2.3-1.5 0-.74.09-1.2.2-1.31.13-.1.85-.2 1.62-.25 1.1-.02 1.42-.12 1.59-.33.12-.22.12-.39 0-.55-.15-.22-.48-.27-1.78-.27-.9 0-1.78.1-1.97.2-.53.28-.85 1.17-.85 2.42 0 1.23.32 2.14.82 2.4.22.12 1.44.17 3.1.17h2.77v-1.9c0-1.32.07-1.92.22-2.04.1-.1.77-.12 1.46-.07l1.25.1.05 1.94.05 1.97h5.63l.43-.5c.58-.68.58-1.47.02-2.12-.33-.38-.53-.46-1.56-.5-1.23-.08-1.63-.3-1.37-.7.1-.17.58-.22 1.7-.24l1.57-.03v-1.15l-1.42-.05c-1.85-.07-2.6.22-2.96 1.08-.24.58-.24.68.05 1.2.39.75.94 1.02 1.97 1.02s1.42.19 1.16.62c-.15.24-.46.29-1.88.34-2.12.05-2.19 0-2.19-1.85 0-1.23-.05-1.45-.36-1.76-.6-.55-1.3-.72-2.74-.7-.72.03-1.5-.02-1.68-.07-.24-.07-.41-.05-.5.12z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCanalNumerique 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 SvgIconCcn: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCcn;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCcn = ({
|
|
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.97 18.96c0-.03-.03-.05-.06-.03l-.89.8-.03.01h-.44l-1.24-1c-.03-.02-.06 0-.06.03v1c0 .02 0 .03-.03.03l-6.44.08c-.03 0-.05.04-.03.06A7.58 7.58 0 0 0 18.9 22.4c.02-.01.02-.05 0-.06-.38-.23-1.02-2.67-.94-3.38zm4.74-3.12a7.5 7.5 0 0 1-.19 1.69c0-.04-.02-.06-.04-.1-.95-2.88-4.2-.75-4.18-.73l-1.57 1.58-1.48-1.25h-.03l-.07-4.34h-2.18l-.38 2.03c.4.15.68.57.61 1.04a.97.97 0 0 1-1.9.1l-7.1.45a1.41 1.41 0 0 1-1.4 1.32c-.81 0-1.46-.67-1.42-1.5.04-.73.67-1.33 1.42-1.33.69 0 1.26.5 1.38 1.16l7.1-.44c.02-.19.1-.36.2-.5l-2-2.31H8.21c.14-.32.3-.62.49-.9l-2.58-3a2.7 2.7 0 0 1-1.76.55A2.79 2.79 0 0 1 1.8 6.8a2.7 2.7 0 1 1 4.59 1.78l2.52 2.91a7.6 7.6 0 0 1 4.49-3.04l.79-4.27a1.42 1.42 0 0 1 .5-2.76 1.41 1.41 0 0 1-.08 2.82h-.08l-.77 4.13a7.57 7.57 0 0 1 8.95 7.46zm-10.1-3.15H9.96l1.81 2.1a1 1 0 0 1 .5-.13l.36-1.97zm7.54 1.53c0-.99-.66-1.79-1.48-1.79s-1.48.8-1.48 1.79c0 .98.66 1.78 1.48 1.78s1.48-.8 1.48-1.78" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCcn 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 SvgIconCerise: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCerise;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCerise = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18 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.04 1.57c-.27.53-1.37 1.92-2.48 3.15-1.1 1.2-1.92 2.26-1.85 2.35.12.1 1.2-.86 2.43-2.16 1.37-1.42 2.28-2.19 2.35-1.95l.53 1.9c.22.84.53 1.73.7 1.9.24.31-.07.53-1.66 1.28-1.08.5-2.33.98-2.79 1.08-.48.07-.86.29-.86.43 0 .31 4.04-1.2 5.02-1.88.85-.62.8-.67 1.28 1.06.29.92.29.9.16-.26-.1-1.13-.04-1.25.85-1.95l.96-.7.82 3.2c.57 2.3.7 3.3.53 3.6-.44.73-3.76 2.36-5.92 2.94-1.88.5-4.5.96-4.5.75 0-.05 1.2-.87 2.72-1.86C11.78 12.85 14 10.7 14 9.93c0-.14-.3.17-.65.7-.34.53-1.45 1.56-2.43 2.26-2.07 1.56-6.76 4.02-7.8 4.06-1.03.1-.93.49.13.49 4.73 0 11.66-1.98 14.11-4.07l.77-.65-.89-3.8c-.48-2.06-.96-3.92-1-4.1-.1-.25-.59.04-1.5.83a13 13 0 0 1-1.51 1.23c-.1 0-.32-.7-.49-1.54-.7-3.3-1-4.52-1.1-4.62s-.36.32-.6.85m-5.75.84c0 1.66-1.23 3.97-3.15 6.06L.58 10.13l.82 3.27c.48 1.82.89 3.15.9 2.93.06-.2-.26-1.66-.66-3.3L.89 10.1l1.78-.89c.99-.45 2.28-1.25 2.89-1.78l1.1-.96-.48-2.38C5.65 1.35 5.3.7 5.3 2.41zm.6 3.32c.17.79-.48 1.53-2.04 2.38l-.75.4.5-.76C5.68 4.6 5.68 4.62 5.9 5.73zm-.26 3.96c-.48.05-.87.24-.87.39s.22.2.48.12c.34-.12.58.02.8.43.28.55.3.55.16.05-.1-.4.03-.63.46-.84.63-.3.46-.32-1.03-.15m1.51 2.82c-.36.6-1.27 1.78-2.07 2.62S3.7 16.64 3.8 16.64c.48 0 2.93-2.64 3.51-3.77.8-1.61.67-1.9-.17-.36m-5.7 7.33c-.86.5-1.17 1.08-1.17 2.24 0 1.66.55 2.23 2.16 2.23 1.1 0 1.3-.07 1.18-.43-.1-.21-.17-.43-.17-.46 0-.04-.31-.02-.72.05-1.28.24-1.9-1.51-.9-2.43.32-.29.73-.4 1.04-.31.34.12.58.02.68-.27.12-.24.14-.48.1-.52-.3-.32-1.74-.37-2.2-.1m2.8 2.5v1.98H5.4c.89 0 1.2-.1 1.2-.39 0-.24-.24-.4-.67-.4-.41 0-.65-.15-.65-.4 0-.21.24-.4.53-.4s.53-.2.53-.39c0-.21-.24-.4-.53-.4-.31 0-.53-.2-.53-.42 0-.33.2-.4.65-.33.5.12.67.02.67-.34 0-.43-.21-.5-1.2-.5H4.23v2zm2.9 0c0 1.78.05 1.98.53 1.98s.53-.2.53-1.6c0-.9.1-1.58.27-1.58.4 0 .62.77.28 1.13-.45.58.17 1.97.94 2.12.72.14.72.12.22-.9-.31-.55-.34-.88-.12-1.27.12-.29.26-.62.26-.8 0-.57-.89-1.07-1.87-1.07H7.14v2zm3.56 0c0 1.78.05 1.98.53 1.98s.53-.2.53-1.98c0-1.8-.05-2-.53-2s-.53.2-.53 2m2-1.6c-.5.6-.22 1.53.6 1.94.94.46.91.91-.05.8-.6-.08-.82 0-.91.35-.1.41.02.49.98.49 1.25 0 1.73-.34 1.73-1.25 0-.41-.29-.73-.96-1.11-.82-.41-.94-.55-.53-.67.24-.12.6-.15.82-.08.31.15.67-.28.67-.74 0-.31-2.07-.07-2.35.26zm2.88 1.6v1.98h1.2c.87 0 1.18-.1 1.18-.39 0-.24-.24-.4-.65-.4-.43 0-.67-.15-.67-.4 0-.21.24-.4.53-.4.36 0 .53-.2.53-.5 0-.37-.12-.49-.53-.37-.36.1-.53 0-.53-.29 0-.26.24-.43.67-.43.41 0 .65-.15.65-.39 0-.29-.31-.4-1.18-.4h-1.2v2z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCerise 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 SvgIconCervoprint: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCervoprint;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCervoprint = ({
|
|
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.6 1.73-.05 16.89h6.68l2.46-4.33a45 45 0 0 0 2.55-4.86c.04-.38-.08-.67-.39-.99-.26-.24-2.6-1.68-5.2-3.17S3.64 2.36 3.28 2.14l-.67-.4zm4.01.05 2.77 2.05a61 61 0 0 0 2.86 2.06c.02 0 .02-.02.05-.1l.02.06c.39.3.77.62 1.18.89l-.12-.03.43.34 2.12 1.54c2.23 1.66 2.23 1.8-.05 4.93l-2.72 3.75-.98 1.37 8.73.02-.12-2.79a248 248 0 0 1-.12-8.44l.02-5.62h-7.02L6.6 1.78zM2.62 19.12a1.47 1.47 0 0 0-1.08.39c-.15.12-.24.28-.31.48-.08.16-.1.38-.1.62s.02.48.1.65c.07.2.19.36.3.48.15.12.3.22.47.27.19.04.38.1.6.1.12 0 .24-.03.33-.03a4 4 0 0 0 .7-.24v-.46h-.02c-.15.15-.32.22-.48.29s-.34.1-.53.1c-.15 0-.3-.03-.41-.08s-.24-.12-.34-.21a.7.7 0 0 1-.21-.34c-.08-.14-.1-.34-.1-.53s.02-.36.07-.5q.105-.225.24-.36a.93.93 0 0 1 .72-.3c.2 0 .39.03.53.08.17.07.34.17.5.29h.03v-.43c-.2-.1-.36-.17-.53-.22a4 4 0 0 0-.48-.05m15.08.02v.39h.43v-.39zm-4.23.03v2.88h.38v-1.08h.41c.22 0 .4-.02.55-.07s.27-.12.36-.22a1 1 0 0 0 .2-.29.9.9 0 0 0 .07-.36.74.74 0 0 0-.1-.4.7.7 0 0 0-.26-.27c-.1-.07-.22-.12-.34-.14s-.29-.05-.46-.05zm8.05.1v.62h-.26v.31h.26v1.13c0 .27.05.46.17.58s.29.17.53.17h.21c.1-.03.17-.05.24-.05v-.34h-.02c-.02.03-.07.03-.14.05-.05.02-.12.02-.2.02-.1 0-.19 0-.24-.02s-.1-.07-.12-.12a.4.4 0 0 1-.04-.17c0-.07-.03-.17-.03-.26v-.99h.8v-.31h-.8v-.63h-.36zm-7.67.23h.41c.12 0 .24 0 .31.03.1.02.17.05.22.1.1.02.14.1.17.16a.6.6 0 0 1 .07.27c0 .07-.02.14-.05.21s-.07.15-.14.2c-.05.07-.15.12-.24.14s-.24.02-.39.02h-.36zm-8.73.34c-.31 0-.6.1-.8.3s-.3.5-.3.83c0 .36.12.65.33.85.2.19.5.28.87.28.14 0 .29-.02.43-.07.12-.02.27-.07.39-.12v-.38H6c-.05.04-.17.1-.31.16-.17.05-.31.08-.48.08-.12 0-.22 0-.32-.03l-.26-.14c-.07-.07-.12-.15-.17-.24s-.07-.22-.07-.36h1.68v-.2c0-.3-.07-.55-.24-.72s-.4-.24-.72-.24zm6.66 0c-.31 0-.57.1-.77.3-.19.2-.29.47-.29.83 0 .34.1.63.3.82.19.22.45.31.76.31s.58-.1.77-.3c.2-.2.3-.49.3-.83 0-.36-.1-.62-.3-.84-.19-.2-.45-.29-.77-.29m8.23 0a1 1 0 0 0-.39.07c-.14.05-.26.12-.38.22v-.24h-.39v2.16h.39v-1.6c.12-.08.21-.15.33-.2s.22-.07.34-.07c.1 0 .17 0 .24.05.07.02.12.04.14.12.03.04.05.1.08.19l.02.29v1.22h.39v-1.41c0-.27-.08-.46-.22-.6-.12-.15-.31-.2-.55-.2m-13.35.05v2.16h.39v-1.53l.3-.2a1 1 0 0 1 .37-.07h.2c.04.03.09.03.16.03v-.37l-.12-.02h-.14c-.07 0-.24.02-.37.07-.12.05-.24.12-.4.24v-.31zm1.54 0 .91 2.16h.39l.91-2.16h-.38l-.7 1.7-.72-1.7h-.4zm7.74 0v2.16h.39v-1.53c.1-.08.21-.15.31-.2a1 1 0 0 1 .34-.07h.19c.07.03.12.03.17.03h.02v-.37l-.14-.02h-.15c-.12 0-.21.02-.33.07s-.27.12-.41.24v-.31zm1.78 0v2.16h.39V19.9h-.39zm-12.62.24c.21 0 .36.05.45.14a.6.6 0 0 1 .17.46H4.4c.02-.17.1-.31.22-.43s.28-.17.48-.17m6.68.02c.2 0 .36.05.48.2s.17.33.17.62c0 .27-.05.48-.17.6a.6.6 0 0 1-.48.22.57.57 0 0 1-.48-.22c-.12-.12-.17-.34-.17-.6 0-.29.05-.48.17-.62s.27-.2.48-.2" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCervoprint 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 SvgIconCharlemagne: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCharlemagne;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCharlemagne = ({
|
|
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.4 11.64c-.76-.04-1.1-.21-1.5-.64-.24-.29-.27-.29-.24-.86 0-.5.02-.65.17-.9.1-.16.17-.33.17-.4.02-.39 1.77-2.26 2.45-2.6a3.8 3.8 0 0 1 1.2-.63 7.1 7.1 0 0 1 2.53-.5c.43 0 .53.02.67.14.2.22.14.53-.31 1.42-.36.72-.8 1.25-.92 1.16a2 2 0 0 1-.1-.5c-.02-.3-.09-.49-.19-.59-.3-.28-1.75-.21-2.5.15a6.4 6.4 0 0 0-1.6 1.51c-.13.17-.15.34-.13.75l.03.53.67.26c.8.34 1.18.41 2.4.46 1.47.05 1.98.12 1.98.2 0 .14-.46.64-.7.76a4 4 0 0 1-.63.22c-.48.1-2.64.14-3.43.07zm6.35-1.23c0-.07.15-.3.32-.57.6-.96.89-1.8.65-2.02a.3.3 0 0 0-.17-.12c-.17 0-.36.36-.63 1.06-.33.96-.45 1.1-1.06 1.27-.26.05-.5.1-.55.07-.14-.1-.07-.67.17-1.18.14-.26.4-.89.6-1.37.7-1.85.75-1.97 1.3-2.2.48-.23.91-.23.94.01.02.1-.12.44-.3.77-.35.68-.42.99-.2.99.06 0 .2-.07.3-.14.22-.17.37-.2.65-.05.44.24.49.72.15 1.49-.12.26-.24.62-.3.77-.09.31-.5.84-.74.91a1.7 1.7 0 0 0-.33.2c-.24.16-.8.26-.8.11m2.46-.4c-.08-.1-.15-.22-.15-.27 0-.17.34-1.15.5-1.49s1.02-1.25 1.3-1.4c.4-.19 1.55.03 1.83.37.32.33.32.33-.43 2.38-.12.33-1.08.65-1.37.45-.12-.1-.12-.12.05-.45.33-.68.17-.68-.72.04-.3.24-.56.41-.58.41a.4.4 0 0 0-.17.05c-.07.03-.19-.02-.26-.1zm1.82-1.42c.44-.22.5-.63.15-.82-.22-.12-.27-.1-.5.39-.27.55-.18.67.35.43m5.22 1.22c-.21-.24-.24-.29-.21-.57.02-.17.14-.53.26-.8.24-.5.6-1.56.84-2.35l.12-.41.53-.27c.65-.29.96-.36 1.08-.21s.05.33-.67 1.85c-.74 1.56-.77 1.66-.65 2 .1.26.1.28-.02.5-.34.58-.84.67-1.28.26m2.5.15a.9.9 0 0 1-.38-.3c-.15-.16-.15-.18-.03-.66.27-1.16.63-1.69 1.3-2.05.22-.12.41-.14.8-.14.57 0 1.05.12 1.2.26.1.15-.1.8-.36 1.06-.22.24-.84.55-1.23.6-.53.1-.43.2.24.3.2.01.36.09.39.16.07.2-.34.48-.92.7-.6.19-.65.19-1 .07zm1.57-1.73c.1-.1.16-.24.14-.34-.05-.34-.7-.2-.7.17 0 .38.24.45.56.17m-6.79 1.6c-.38-.16-.5-.4-.38-.76.2-.72.67-2 .77-2.1.17-.2.43-.23.87-.07.38.12.4.15.57.03.44-.29 1.01-.24 1.01.05 0 .19-.24.67-.43.86-.1.1-.24.15-.48.15-.39 0-.67.16-.77.43-.03.07.02.26.12.4.19.42.17.56-.15.87-.21.24-.3.3-.55.3-.14 0-.4-.05-.58-.15zm-7.47 9.82a3.4 3.4 0 0 1-1.42-.46 1.9 1.9 0 0 1-.46-.55c-.24-.39-.24-.41-.2-.92.03-.45.08-.64.37-1.27.43-.91.84-1.49 1.35-1.95a5.67 5.67 0 0 1 3.07-1.25c.15 0 .5.03.85.07.74.15 1.13.37 1.41.87.22.34.22.39.2.87-.03.45-.05.6-.32 1.08a3.8 3.8 0 0 1-2.23 1.95c-.58.19-.84.21-1.1.07-.2-.1-.25-.1-.6 0-.68.2-1.1.1-1.43-.29-.36-.43-.17-1.13.58-2.02.8-.99 1.7-1.35 2.57-1.03.27.07.31.07.48 0 .22-.12.58-.15.72-.05.12.07-.14.57-.77 1.58s-.64 1.11-.43 1.11c.36 0 1.16-.67 1.47-1.27.46-.82.43-1.33-.05-1.76-.38-.36-.62-.4-1.7-.31-.9.05-.94.07-1.47.34-.41.21-.68.43-1.1.86a2.92 2.92 0 0 0-1.02 1.73c-.1.63.02 1.04.36 1.37.41.39.75.46 1.85.46 1.09 0 1.4-.07 2.2-.46.45-.24.64-.3.76-.26.6.14-.55 1.08-1.73 1.37a6.8 6.8 0 0 1-2.21.12m1.25-2.29c.5-.33 1.17-1.41 1.1-1.75-.05-.22-.48-.29-.8-.12-.26.12-.76.67-1 1.1-.22.4-.24.85-.03.92.2.1.44.05.72-.14zm3.48 2.17a.6.6 0 0 1-.29-.22c-.12-.14-.12-.19-.04-.43.1-.27.6-.82.76-.82a.7.7 0 0 1 .34.2c.3.23.48.26.7.02.38-.41.53-.92.36-1.3-.02-.07.05-.22.2-.41.3-.4.38-.74.18-.82-.16-.05-.33.03-.48.2a2 2 0 0 0-.14.64c-.05.53-.05.56-.29.77-.43.36-1.06.39-1.1.03 0-.1.11-.44.26-.75.2-.46.34-.65.74-1.03.27-.27.6-.56.75-.65.21-.15.26-.17.6-.1.48.07.89.27 1.01.48.14.22.1.44-.39 1.61a10 10 0 0 0-.4 1.06 4.2 4.2 0 0 1-1.45 1.4c-.36.19-.93.24-1.32.12m-8.73-1.4c-.1-.07-.02-.45.1-.62a.5.5 0 0 0 .12-.22c.02-.04.1-.21.22-.36.14-.24.19-.38.19-.65 0-.4-.12-.57-.31-.43-.15.12-.37.62-.56 1.18-.07.26-.19.53-.26.6-.17.14-.58.29-.87.29s-.26-.15.07-.87c.17-.38.27-.67.27-.84 0-.31-.07-.39-.3-.34-.16.08-.28.32-.42.94-.08.27-.2.6-.27.72-.14.27-.53.41-.86.34l-.24-.03v-.4c0-.3.04-.49.14-.65.07-.12.24-.53.36-.87.27-.84.39-.91 1.15-.91.34 0 .65-.05.75-.08.22-.11.38-.1.67.08.32.21.48.21.9 0l.3-.2.37.12c.43.15.62.34.55.6-.07.25-.7 1.66-.82 1.83a5 5 0 0 1-1.15.82.2.2 0 0 1-.1-.05m13.83-.19c-.14-.05-.12-.12.27-.77.36-.58.55-1.15.48-1.37-.03-.05-.1-.1-.22-.07-.24.02-.43.36-.65 1.18-.1.36-.21.67-.26.72-.1.12-.94.31-1.09.26-.16-.04-.12-.33.15-.96.12-.31.29-.8.36-1.08.07-.27.17-.53.22-.58.12-.12.79-.36.96-.36.1 0 .29.05.4.07.17.07.27.07.46-.02.12-.07.34-.12.48-.12.27 0 .63.24.63.4 0 .08-.14.47-.31.85-.17.36-.3.72-.3.77 0 .14-.52.72-.69.77-.07.02-.22.1-.31.17-.2.12-.46.19-.58.14m2.55-.1c-.24-.07-.46-.38-.46-.57 0-.22.44-1.5.6-1.73.05-.1.34-.3.6-.46.58-.34.56-.34 1.42-.14.22.04.44.12.46.14.07.05.03.6-.05.87-.14.4-.53.65-1.22.74-.58.05-.48.3.14.3.27 0 .34.16.17.35-.07.07-.34.24-.6.36-.46.22-.8.27-1.06.15zm1.4-1.63c.14-.2.12-.46-.03-.48s-.53.29-.53.43c0 .1.17.22.34.22.07 0 .17-.07.21-.17z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCharlemagne 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 SvgIconCharte: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCharte;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCharte = ({
|
|
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.64 22.6C0 21.97 0 21.97 0 12.86s0-9.08.7-9.63c.65-.5.99-.54 7.37-.54s6.72.02 7.38.54c1 .8.92 1.9-.29 3.53-.54.74-1.1 1.54-1.27 1.82-.26.4-.32.12-.32-1.65-.06-2.16-.06-2.16-5.52-2.16s-5.46 0-5.46 8.06 0 8.05 5.46 8.05 5.46 0 5.46-1.43c0-1.33.27-1.8.66-1.16.3.47.58.02.77-1.22.1-.68.4-1.77.66-2.4.48-1.19.48-1.19.48 2.89 0 2.23-.05 4.26-.15 4.48-.39 1.05-1.35 1.18-8.16 1.18-6.5.02-6.5.02-7.13-.61zM13.38 17c-.43-.25-2.23-1.25-4.03-2.2-6.07-3.3-5.58-2.91-4.75-3.9.4-.5.88-.89 1.09-.9.19-.03 1.37.54 2.6 1.23 4.29 2.42 3.7 2.46 5.07-.28 1.1-2.18 1.94-3.45 4.19-6.3.43-.55 1.7-1.8 2.85-2.77C22.5.1 22.5.1 23.44 1.04s.96.94-1.73 3.56c-3.71 3.66-6.47 8.07-7.05 11.32-.27 1.47-.4 1.56-1.28 1.07z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCharte 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 SvgIconChat: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconChat;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconChat = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M28.35 11.71q0 3.03-1.9 5.6t-5.17 4.1-7.12 1.49q-2.93 0-5.62-.94l.04.07L0 24.6q1.06-1.42 1.7-3.03t.75-2.55l.1-.91Q0 15.22 0 11.71q0-3.03 1.9-5.6t5.17-4.06 7.1-1.5 7.11 1.5 5.17 4.06 1.9 5.6m-6.01 0q0-.7-.5-1.2t-1.23-.5q-.7 0-1.2.5t-.5 1.2q0 .72.5 1.23t1.2.5q.72 0 1.23-.5t.5-1.23m-6.01 0q0-.7-.5-1.2t-1.23-.5q-.7 0-1.2.5t-.51 1.2q0 .72.5 1.23t1.2.5q.73 0 1.23-.5t.5-1.23zm-6.01 0q0-.7-.5-1.2t-1.24-.5q-.7 0-1.2.5t-.5 1.2q0 .72.5 1.23t1.2.5q.73 0 1.23-.5t.5-1.23z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconChat 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 SvgIconCidj: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCidj;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCidj = ({
|
|
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.97 23.38c0-.05.51-2.02 1.16-4.4.65-2.4 1.15-4.4 1.1-4.45-.04-.1.46-2.2.56-2.34.02-.04 1.47 1.33 3.2 3.01l3.17 3.05-.24.41c-.39.68-2.1 2.36-2.98 2.94a10.8 10.8 0 0 1-3.37 1.46c-1 .24-2.6.44-2.6.32m-2.69-.36a10.73 10.73 0 0 1-6.15-4.3l-.48-.7 4.5-1.23a50 50 0 0 0 4.54-1.32c.1-.15 1.9-.6 2-.5.04.01-.37 1.65-.87 3.6l-1.13 4.13-.15.6-.65-.02c-.36 0-1.08-.12-1.6-.26zm8.52-8.59a61 61 0 0 0-3.59-3.37 2.8 2.8 0 0 1-.67-.53l-.5-.55.38-.1c.2-.04 2.12-.57 4.23-1.15l3.85-1.06.2.36c.09.17.33.77.52 1.3.5 1.45.6 4.24.22 5.8-.32 1.15-.92 2.67-1.11 2.67-.05 0-1.64-1.52-3.54-3.37zM2.14 16.96c-.99-1.93-1.18-5.37-.43-7.58.21-.6.5-1.32.67-1.63l.29-.58 3.53 3.6a78 78 0 0 0 3.7 3.59c.22 0 1 .84.87.96-.07.05-1.42.46-3 .87-1.59.43-3.42.93-4.1 1.13l-1.2.31zm3.73-7.12-3-3 .23-.4c.14-.2.8-.9 1.44-1.56a10.1 10.1 0 0 1 6.3-2.95c.87-.1 1.01-.08.97.1-.05.11-.72 2.56-1.5 5.47L8.9 12.82c-.03.02-1.4-1.32-3.03-2.98m4.18.46c0-.1 1.9-7.36 2.14-8.18.07-.31.56-.31 1.95-.03a10.7 10.7 0 0 1 5.41 2.92c.75.72 1.85 2.16 1.73 2.28-.02.02-2.45.7-5.4 1.51l-5.59 1.54c-.14.05-.24.03-.24-.04M9.7 23.09c-2-.43-3.8-1.44-5.29-2.94-.82-.81-1.73-2.04-1.61-2.14.02-.02 2.02-.57 4.43-1.22 2.4-.67 4.47-1.25 4.59-1.32a7.5 7.5 0 0 1 1.9-.51c.02.02-.39 1.66-.9 3.6L11.7 22.7c-.15.58-.17.6-.65.58-.29 0-.9-.1-1.35-.2zm2.33-.05c.34-1.08 2.29-8.44 2.24-8.49-.07-.05.29-1.51.53-2.21.02-.12 1.3.98 3.22 2.86l3.15 3.05-.4.56c-1.74 2.55-5.23 4.47-8.02 4.47-.7.02-.8-.02-.72-.24m8.18-6.28-4.02-3.87a34 34 0 0 1-2.88-2.93c.07-.05 1.4-.44 2.98-.87 1.59-.4 3.44-.91 4.09-1.1l1.2-.32.34.92a9.6 9.6 0 0 1 .72 4.4 13.3 13.3 0 0 1-.3 2.4c-.26.92-.88 2.4-1.03 2.4-.04 0-.55-.45-1.1-1.03m-18.06.15a9.2 9.2 0 0 1-.82-4.33c0-2 .22-2.96.99-4.64l.36-.75 3.56 3.59a77 77 0 0 0 3.65 3.58c.05 0 .32.22.58.48.34.36.4.5.27.55l-3.56.97-4.04 1.1-.65.2zm3.73-7.07-3-3 .57-.78A10.7 10.7 0 0 1 9.79 2.1c1.32-.26 2.09-.28 2-.04-.03.1-.7 2.55-1.47 5.46l-1.42 5.3c-.03.02-1.4-1.32-3.03-2.98zm4.18.46c0-.1 1.9-7.41 2.14-8.2.07-.22.17-.24.84-.17a11.6 11.6 0 0 1 5.85 2.5c.8.65 1.9 1.95 2.28 2.67.1.19-.65.43-5.34 1.7l-5.6 1.54c-.1.05-.17.03-.17-.04m0 12.79a10.6 10.6 0 0 1-7.24-5.1c0-.02.6-.2 1.33-.38 1.63-.41 6.97-1.9 8.49-2.34a8 8 0 0 1 1.13-.26c0 .04-.44 1.66-.97 3.58-.52 1.95-1 3.8-1.1 4.11-.17.67-.2.67-1.64.39m1.95.05c.1-.3 2.24-8.44 2.5-9.6.14-.55.29-1.1.34-1.18.04-.1 1.34 1.06 3.17 2.84l3.08 2.98-.2.39c-.11.21-.74.94-1.36 1.59-1.33 1.3-2.43 2-4.21 2.62-1.35.45-3.44.7-3.32.36m7.38-7.17a355 355 0 0 0-4.04-3.9c-1.32-1.3-2.09-2.11-2-2.16.6-.2 7.87-2.14 8.04-2.14.1 0 .21.07.21.14.03.22.05.32.3.82.5 1.16.69 2.26.69 4 0 1.39-.07 1.9-.31 2.73-.27.87-.9 2.34-1.01 2.34 0 0-.87-.82-1.88-1.83m-17.22.89a10.85 10.85 0 0 1 .3-9.14l.26-.5 3.5 3.56a77 77 0 0 0 3.66 3.58c.05 0 .32.22.58.48.34.36.41.5.27.55l-3.56.97c-1.85.5-3.66.98-4.02 1.1l-.62.17-.36-.77zm3.73-7-3-3L3.53 6a10.9 10.9 0 0 1 4.84-3.5c.91-.34 3.24-.78 3.36-.63.05.05-2.57 10.1-2.8 10.87-.03.07-1.4-1.23-3.04-2.89zm4.38.05c.17-.29.17-.36.02-.36-.12 0-.12-.03-.02-.07s.14-.17.1-.27c-.05-.12 0-.29.07-.38s.12-.22.07-.27-.03-.17.05-.26c.16-.2.45-1.23.5-1.71 0-.17.05-.27.07-.24.1.1.56-1.9.48-2.02-.04-.07-.02-.12.05-.12.17 0 .43-.91.34-1.25-.05-.14 0-.27.1-.27s.14-.1.1-.21c-.25-.6.33-.67 2.2-.27 2.5.58 4.88 2.2 6.35 4.33l.53.77-3.17.87c-4.67 1.27-7.7 2.07-7.9 2.07-.14 0-.11-.1.06-.34m1.03-.31c-.1-.03-.21-.03-.26.02s.04.07.19.07c.14-.02.2-.04.07-.1zm9.26-3.18c-.05-.04-.14 0-.22.12-.21.34-.16.46.08.22.12-.12.19-.27.14-.34m-.84-.29c-.05-.07-.14-.14-.24-.14s-.1.05.05.14c.26.17.29.17.19 0m-3.78-3.02c0-.08-.07-.15-.14-.15s-.1.07-.05.14c.02.08.1.15.14.15.03 0 .05-.07.05-.14m-3.34-.75c-.05-.12-.17-.22-.26-.2-.12 0-.12.03 0 .08.1.05.16.17.16.29s.05.17.1.12.05-.17 0-.3zm.6-.07c.12-.08.15-.15.07-.15s-.24.07-.36.15c-.1.07-.14.12-.05.12.08 0 .22-.05.34-.12M12 23.14c.07-.2 2.1-7.84 2.57-9.77l.32-1.2 3.07 2.98c1.69 1.64 3.06 3 3.06 3.06 0 .16-.9 1.32-1.52 1.92a10.18 10.18 0 0 1-6.64 3.1c-.77.07-.93.07-.86-.1zm-9.6-5.8c-.07-.17-.1-.34-.07-.4 0-.06-.02-.1-.1-.1-.16 0-.69-1.86-.84-3.03a10 10 0 0 1 .94-5.65c.34-.77.36-.77.6-.51.15.14.3.27.36.27.05 0 .22.19.37.4.14.24.3.41.36.41.07 0 .86.77 1.8 1.71C8.61 13.3 9.28 14 9.26 14.12c-.02.07.05.1.12.07.1-.02.17.05.14.12 0 .1.1.15.22.1.22-.05.99.62.99.89 0 .12-2.43.8-2.84.77-.17-.03-.3.02-.27.07.05.05-.55.26-1.32.46l-2.6.7-1.2.33zm7.7-2.02c-.05-.07-.1-.12-.14-.12-.03 0-.05.05-.05.12s.07.14.14.14.1-.07.05-.14M9.09 14.3c-.1-.1-.22-.17-.24-.15-.07.08.27.5.36.41.02-.02-.02-.14-.12-.26M5.87 9.86 2.88 6.88l.7-.91a10.83 10.83 0 0 1 6.23-3.83c1.51-.31 2.07-.33 1.97-.1-.02.1-.7 2.56-1.47 5.47L8.9 12.82c-.03.02-1.38-1.32-3.03-2.96m15.07-2.7c0-.11.05-.16.1-.14.07.05.12.15.12.22s-.05.12-.12.12c-.05 0-.1-.1-.1-.2m-1.3-1.82c-.19-.21-.16-.21.05-.05s.3.3.2.3c-.05 0-.15-.13-.24-.25zM5.9 9.86 2.91 6.88l.29-.4C4.3 4.9 6.4 3.3 8.13 2.64c.91-.34 3.5-.9 3.63-.77.02.05-2.62 10.22-2.84 10.87-.02.07-1.4-1.23-3.03-2.89zm2.89 2.91c-.05-.02-.03-.24.02-.45.1-.32.07-.39-.1-.37-.12.03-.26.12-.28.22s0 .14.1.07c.09-.05.14-.02.14.05 0 .26-.2.17-.63-.29-.22-.24-.29-.38-.2-.31.13.07.1-.03-.06-.17-.15-.14-.32-.27-.36-.22-.05.03-.15-.02-.2-.12-.07-.1-.04-.12.08-.04s.16.04.12-.08a.26.26 0 0 0-.3-.16c-.11 0-.19-.05-.16-.1.05-.07-.1-.22-.31-.36-.73-.46-1.13-.91-1.04-1.2.05-.2.03-.24-.19-.17-.17.05-.53-.2-1.32-1.01-.9-.91-1.06-1.15-.97-1.42.05-.17.65-.87 1.35-1.54 1.44-1.44 3-2.33 4.83-2.81 1.09-.27 3.03-.39 2.24-.15-.21.08-.26.12-.1.12.25.03.37.3.15.3-.07 0-.12.11-.12.23 0 .44-.8 3.47-.91 3.47-.05 0-.1-.05-.1-.12s-.07-.15-.14-.15c-.1 0-.08.12.04.3.17.23.17.38-.02 1.1-.12.5-.27.8-.36.74-.1-.02-.17.1-.2.3 0 .18.03.28.1.26.15-.1-.24 1.58-.38 1.7-.05.03-.07.15-.1.24l-.02.48c-.03.24-.05.27-.17.1-.07-.12-.12-.14-.12-.05s-.05.27-.1.41c-.07.22-.04.22.08.05.14-.17.14-.1.07.29-.12.65-.27.98-.36.86m-.24-1.08c0-.05-.07-.07-.15-.07s-.14.07-.14.14c0 .1.07.12.14.07s.15-.12.15-.14m-.96-1.03a.15.15 0 0 0-.15-.15c-.1 0-.12.07-.07.15s.12.14.14.14c.05 0 .08-.07.08-.14m1.22 0c0-.15-.55-.32-.65-.22-.12.12.17.31.46.31.1 0 .2-.04.2-.1zM6.42 9.53c-.02-.1-.07-.05-.07.1 0 .16-.07.2-.24.16-.2-.1-.2-.07-.05.12.17.2.2.2.31 0 .08-.12.1-.29.05-.39zM5.15 8.8c-.05-.12-.15-.19-.22-.19s-.07.07.02.2c.1.11.2.21.22.21s.02-.1-.02-.22m4.83-1.27c-.05-.02-.07.05-.07.2.02.16.04.18.1.06.02-.1.02-.21-.03-.26m-5.92-.07c.1-.1.17-.36.17-.63s-.05-.38-.12-.26c-.1.16-.17-.05-.14-.53 0-.1-.05-.15-.12-.1s-.1.2-.05.34c.05.17-.02.31-.2.43-.4.24-.35.34.13.31.21-.02.4.03.4.1 0 .12-.19.17-.52.12-.15-.02-.15 0 0 .17.24.26.24.26.45.05m-.33-.65c0-.07.07-.12.14-.12s.12.05.12.12-.05.14-.12.14-.14-.07-.14-.14m6.13.2c-.05-.06-.1.02-.07.16 0 .17.02.2.07.1.05-.12.05-.24 0-.27zm.4-.27c-.04-.12-.11-.2-.16-.17-.02.05-.02.17.02.31.05.12.12.2.17.14.03-.02.03-.16-.02-.28zM4.89 5.05c-.07-.1-.4.3-.5.6-.08.17 0 .12.21-.14.2-.22.32-.43.3-.46zm.43.08c0-.22-.1-.32-.28-.34-.15 0-.2.02-.1.07.2.07.24.58.02.58-.07 0-.12.07-.12.14 0 .1.08.07.24-.02a.57.57 0 0 0 .24-.44zm1.14-.53c0-.22-.03-.27-.1-.15s-.24.17-.43.12c-.24-.07-.22-.02.07.12.24.1.4.2.4.2.03 0 .03-.13.06-.3zm-.17-.68c.04-.07-.03-.1-.15-.04-.24.1-.29.19-.07.19.07 0 .17-.05.22-.15m.74-.31c-.07-.07-.21-.05-.36.02-.21.15-.21.15.12.12.22 0 .31-.07.24-.14m1.37-.2c0-.06-.19-.09-.43-.06l-.46.04.34-.21c.2-.1.29-.2.21-.2s-.3.1-.52.25l-.39.24.63.02c.33.02.62-.02.62-.07zm2.43-.2c-.02-.1-.12-.18-.24-.18-.1 0-.2.08-.24.17-.02.12.07.2.24.2.2 0 .29-.08.24-.2zm.41-.2c-.05-.05-.1.02-.07.17 0 .16.02.19.07.1s.05-.22 0-.27m-.2-.6a1.5 1.5 0 0 0-.71.02l-.48.12.53-.05c.26-.04.48-.02.43.05s.07.07.24.05c.29-.07.29-.1 0-.2zM3.7 5.87c.17-.22.39-.48.53-.58.12-.1.03.08-.21.39-.53.67-.73.8-.32.19m1.13-1.18c.17-.19.34-.34.39-.34.02 0-.07.15-.27.34-.16.2-.33.34-.38.34s.07-.15.26-.34m2.89-1.78c0-.02.1-.1.2-.12.11-.05.18-.02.14.05-.1.12-.34.2-.34.07" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCidj 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 SvgIconCns: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCns;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCns = ({
|
|
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.53 1.47H.93v9.21c0 10.15.1 10.63 2.15 11.88 1 .63 1.78.67 10.36.67h9.26V14.2c0-12.6.63-12.74-10.17-12.72zm5.96 2.14c.41 0 .72.17 1.1.55.61.6.73 1.13.73 3.44v2.72h-2.38v-2.4c0-2.31-.05-2.41-.77-2.31-.7.12-.77.33-.87 2.4-.1 2.3-.1 2.3-1.1 2.3h-1.01V3.84l1.27.04c.72.03 1.76-.04 2.36-.19.26-.05.48-.1.67-.07zm-12.53.12h.49c2.18.03 3 .53 3 1.9 0 .8-1.87.84-2.3.07a.94.94 0 0 0-.97-.43c-.53.1-.65.43-.65 1.83 0 1.47.1 1.7.75 1.8.48.05.79-.12.94-.6.16-.5.52-.7 1.22-.7.82 0 1.01.15.99.77 0 1.1-.41 1.57-1.71 1.95-.65.2-1.32.31-1.51.29-2.6-.31-3.32-1.2-3.13-3.97.17-2.3.67-2.88 2.89-2.9zm10.95 10.65c2.26 0 3.07.36 3.07 1.3 0 .41-.4.46-2.04.27-1.7-.2-2.05-.15-2.05.29 0 .36.32.52.97.52 1.63 0 3.1.7 3.31 1.54.27 1.04-.38 2.17-1.44 2.55-1.83.72-4.2.22-4.86-1-.33-.63-.29-.7.65-.7.58 0 1.32.19 1.69.4.72.46 1.73.17 1.73-.53 0-.3-.53-.53-1.54-.65-1.93-.21-2.55-.72-2.55-2.09 0-1.56.53-1.9 3.05-1.9z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCns 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 SvgIconCollaborativeWall: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCollaborativeWall;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCollaborativeWall = ({
|
|
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.71 10.46q0 1.1-.84 1.9t-2.04.82-2.05-.82-.86-1.9q0-1.13.86-1.92t2.05-.8 2.04.8.84 1.92m6.73 0q0 1.1-.84 1.9t-2.04.82q-1.2 0-2.04-.82t-.87-1.9q0-1.13.87-1.92t2.04-.8q1.2 0 2.04.8t.84 1.92m3.03 2.4V3.93q0-1.15-.43-1.66t-1.49-.48H4.65q-1.14 0-1.52.46t-.41 1.68v9.04q.57.32 1.2.53t1.08.39 1.08.24.97.14.93.05.77.03.77-.05.6-.03q.92 0 1.28.36.07.1.12.13.36.33.81.7.1-1.23 1.6-1.19l.5.03q.44.03.57.02t.6.03.73-.03.72-.05.82-.12.84-.16.89-.27.91-.36.96-.48zm2.2-.04q-1.64 2-5 3.37 1.12 3.82-.32 6.25-.87 1.51-2.45 1.97-1.4.43-2.43-.2-1.16-.67-1.1-2.2l-.03-4.38-.32-.07q-.22-.04-.3-.08l-.03 4.53q.05 1.53-1.1 2.2-1.07.63-2.46.2-1.59-.48-2.45-2-1.4-2.42-.3-6.22-3.36-1.37-5-3.37-.33-.5-.04-.86t.8.02l.16.1q.12.07.14.1V2.86q0-.97.63-1.66T3.6.53h16.85q.9 0 1.54.68t.63 1.66v9.3l.29-.2q.5-.35.8-.02t-.06.87z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCollaborativeWall 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 SvgIconCommunity: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCommunity;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCommunity = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 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: "M19.21 17.92q1.1 0 1.9.8t.8 1.9-.8 1.9-1.87.78-1.9-.79-.8-1.92q0-.44.2-.94l-4.07-2.94q-1.18 1.2-2.84 1.2T7 16.75t-1.2-2.86q0-.22.07-.63L2.64 12.2q-.38.34-.86.34-.58 0-.96-.38t-.39-.97.39-.93.96-.39q.48 0 .82.31t.45.75L6.3 12q.5-.98 1.47-1.56t2.06-.58q1.25 0 2.31.75l4.79-4.79q-.39-.72-.39-1.32 0-1.1.8-1.9t1.9-.8 1.87.8.8 1.9-.8 1.87-1.9.8q-.62 0-1.32-.41l-4.78 4.8q.74 1.06.74 2.32 0 .89-.4 1.75l4.06 2.91q.79-.62 1.7-.62" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCommunity 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 SvgIconCompetences: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCompetences;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCompetences = ({
|
|
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.32 21.44H23.7a.32.32 0 0 1 .32.32v1.76a.32.32 0 0 1-.32.32H.32a.32.32 0 0 1-.32-.32v-1.76a.32.32 0 0 1 .32-.32m0-3.2h3.2a.32.32 0 0 1 .32.32v1.76a.32.32 0 0 1-.32.32H.32a.32.32 0 0 1-.32-.32v-1.76a.32.32 0 0 1 .32-.32m5.04-2h3.2a.32.32 0 0 1 .33.32v3.76a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-3.76a.32.32 0 0 1 .32-.32zm5.05-1.2h3.2a.32.32 0 0 1 .32.31v4.97a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-4.97a.32.32 0 0 1 .32-.32zm5.04-2.8h3.2a.32.32 0 0 1 .33.31v7.77a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-7.77a.32.32 0 0 1 .32-.32zm5.05-3.61h3.2a.32.32 0 0 1 .32.32v11.37a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32V8.95a.32.32 0 0 1 .32-.32M.39 15.99c-.44 0-.45-.05-.01-.13 0 0 5.24-.63 12.2-5.2s7.24-6.04 7.24-6.04l2.68 1.45s-1.26 2.08-8.25 6.2C7.51 16.25.4 16 .4 16zM23.74-.1c.14-.1.26-.04.26.14l-.02 6.57c0 .18-.12.25-.28.17l-5.31-2.76c-.16-.08-.17-.23-.03-.33z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCompetences 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 SvgIconConnecteurGenerique1: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConnecteurGenerique1;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConnecteurGenerique1 = ({
|
|
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.9 12.99v4.28q0 1.6-1.13 2.74t-2.74 1.13H3.87q-1.6 0-2.74-1.13T0 17.27V6.1q0-1.59 1.13-2.72t2.74-1.15h9.45q.17 0 .3.12t.11.31v.87q0 .19-.12.31t-.29.12H3.87q-.89 0-1.51.63T1.7 6.1v11.16q0 .89.65 1.51t1.51.65h11.16q.89 0 1.52-.65t.62-1.51v-4.28q0-.2.12-.31t.31-.12h.87q.2 0 .31.12t.12.3zm5.15-11.6v6.86q0 .36-.27.6t-.6.27-.6-.27L20.22 6.5l-8.75 8.75q-.12.14-.31.14t-.3-.14L9.34 13.7q-.14-.12-.14-.29t.14-.31l8.75-8.76L15.73 2q-.27-.27-.27-.6t.27-.6.6-.27h6.85q.36 0 .6.27t.27.6z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConnecteurGenerique1 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 SvgIconConnecteurGenerique2: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConnecteurGenerique2;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConnecteurGenerique2 = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 21 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M17.17 12.99V6.54q0-.36-.24-.6t-.6-.26H9.88q-.57 0-.79.53-.24.55.2.93l1.92 1.93-7.17 7.16q-.26.27-.26.63t.26.6l1.37 1.37q.27.24.6.24t.6-.24l7.17-7.16 1.95 1.92q.24.26.6.26.14 0 .34-.07.5-.24.5-.8zm3.44-6.88V19q0 1.59-1.13 2.72t-2.74 1.15H3.87q-1.6 0-2.74-1.15T0 19V6.11Q0 4.52 1.13 3.4t2.74-1.15h12.87q1.6 0 2.74 1.15t1.13 2.72z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConnecteurGenerique2 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 SvgIconConversation: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConversation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConversation = ({
|
|
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 21.67 7.8-8.23 4.22 2.41 4.24-2.4 7.79 8.22zm0-2.74V8.97l6.1 3.54zm0-12.1V3.44h24.05v3.4l-12.03 6.84zm17.94 5.68 6.1-3.54v9.96z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConversation 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 SvgIconDirectory: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconDirectory;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconDirectory = ({
|
|
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 24.58V.53h24.05v4.28h-2.62V7.1h2.62v4.28h-2.62v2.35h2.62V18h-2.62v2.3h2.62v4.29H0zm4.64-6.85h12.12V14l-4.5-2.67q.9-.46 1.4-1.3t.53-1.85q0-1.4-1.01-2.43T10.7 4.72 8.25 5.75 7.24 8.18q0 1.03.53 1.85t1.4 1.3L4.63 14v3.73z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconDirectory 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 SvgIconEducagri: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEducagri;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEducagri = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8.08 22.92a10.4 10.4 0 0 1-4.98-4.8c-.84-1.67-.86-1.89-.31-1.98.34-.07.82.17 1.08.53 2.21 3.12 4.98 4.6 8.54 4.6a9.4 9.4 0 0 0 7.28-3.09c1.76-1.75 3.06-4.93 2.7-6.54C20.42 2.46 8.18.6 3.56 8.78c-.6 1.08-1.25 1.83-1.42 1.66-.46-.46.36-2.98 1.56-4.74a9.22 9.22 0 0 1 5.08-4A10.68 10.68 0 0 1 21.7 6.47c1.33 2.43 1.66 6.93.77 10.03a10.75 10.75 0 0 1-5.33 6.18c-2.36 1.18-6.76 1.3-9.07.24zm1.06-3.94c-2.34-1.06-3.18-2.55-3.3-5.94-.1-2.48 0-3.1.72-4.48 1.25-2.33 3.3-3.32 6.45-3.15 3.82.2 5.82 2.1 5.82 5.58l.02 2.05-4.01.1c-4.28.11-5.05.42-4.6 1.87.15.43.75.98 1.38 1.25 1.22.5 2.14.29 3.77-.92.82-.6 1.15-.67 1.97-.36 1.28.48 1.52 1.25.77 2.38-1.4 2.12-6.03 2.96-9 1.61zm5.14-8.59c.65-.38.22-1.3-.84-1.78-1.44-.65-3.34.39-2.88 1.57.21.57 2.93.74 3.72.21M1.2 15.15c-.89-.6-1.1-2.57-.36-3.3.72-.74 2.67-.52 3.3.37.76 1.08.7 1.59-.32 2.62-1.03 1.03-1.54 1.08-2.62.31" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEducagri 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 SvgIconEdumedia: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdumedia;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdumedia = ({
|
|
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.9 23.02c-.33-.1-.7-.34-.91-.58-.36-.43-.43-.94-.27-1.64.08-.3.15-.48.46-1.1.29-.6.75-1.2 1.7-2.24.9-.98 1.33-1.49 1.52-1.75l.2-.27a7.5 7.5 0 0 0 .7-1.49l.02-.1c.04-.12.14-.74.16-.98.03-.15.05-.24.08-.24 0 0 .12.12.21.26l.41.56c.07.1.48.84.55 1.03a7.46 7.46 0 0 1 .46 4.83l-.12.34c-.29.65-.4.92-.43.94s-.1.12-.15.24c-.07.12-.14.22-.14.24l-.17.22a5.8 5.8 0 0 1-1.54 1.41c-.62.34-.62.34-1.63.37-.5 0-1.01-.03-1.1-.05zm-5.43-4.6c-.12-.02-.31-.1-.46-.12a1 1 0 0 0-.33-.07c-.05 0-.08-.02-.08-.07 0-.03-.04-.05-.07-.05-.02.03-.12 0-.21-.05a6 6 0 0 1-1.08-.6l-.2-.17c-.4-.3-1.3-1.3-1.3-1.44 0-.02-.05-.07-.07-.12-.1-.1-.29-.5-.29-.6 0-.02-.02-.07-.05-.07s-.04-.1-.07-.22c-.02-.1-.05-.21-.07-.21-.05-.05-.07-.3-.07-.99s.02-.84.07-.87c.02-.02.05-.07.05-.14 0-.17.29-.74.45-.94.24-.26.32-.31.46-.36.1 0 .17-.05.22-.07.12-.12.89.02 1.3.2l.53.28.21.14c.12.05.22.12.27.15l.26.21c.43.3.72.58 1.66 1.6l1.03 1.03.44.4c.1.1.19.15.19.15.02 0 .12.1.24.17.1.1.2.14.2.14a4 4 0 0 0 .58.31c.09.03.23.1.33.12.16.1.62.2 1.08.27l.29.02-.2.17c-.1.07-.23.22-.33.29-.07.1-.17.14-.2.14s-.07.05-.09.07-.82.58-.87.58c0 0-.14.05-.28.15l-.32.14-.31.12c-.05.05-.12.05-.15.02-.02 0-.04 0-.07.03 0 .02-.14.07-.29.1-.12.02-.26.04-.28.07-.15.1-1.71.16-2.12.1zm13.51-4.4c-.02 0-.14-.05-.29-.07s-.33-.1-.43-.14a6.4 6.4 0 0 1-.82-.44c-.12-.07-.21-.14-.21-.16l-.12-.08-.22-.14-.38-.34c-.17-.14-.65-.65-1.11-1.1a15 15 0 0 0-2.14-1.98c-.05-.04-.77-.4-1.01-.48a4 4 0 0 0-1.08-.26c-.15 0-.2 0-.2-.05.05-.1.51-.5.87-.74.15-.1.3-.22.31-.24a15 15 0 0 1 1.3-.65c.1-.05.36-.12.9-.24s1.77-.15 2.2-.05c.49.12.85.21 1.04.31.55.29.72.36.96.55.46.32.92.75 1.23 1.16.38.48.36.43.5.7.07.14.12.24.15.26.02 0 .04.05.04.07s.03.12.08.22c.14.34.16.6.16 1.44 0 1.18-.07 1.44-.52 2-.1.12-.2.24-.24.24s-.08 0-.08.02c0 .1-.81.29-.89.2zM8.2 12.44A7.4 7.4 0 0 1 6.47 7.6c0-.73.07-1.14.29-1.81A7.3 7.3 0 0 1 8 3.56c0-.02.21-.21.48-.46a3.8 3.8 0 0 1 2.14-1c.82-.05 1.4.07 1.9.4.4.27.55.46.7.9.14.52.02 1.05-.39 1.94-.38.77-.91 1.47-1.92 2.55-1.66 1.78-2.14 2.57-2.43 4.02-.05.21-.1.45-.1.55l-.02.2-.17-.22z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdumedia 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 SvgIconEdumoov: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdumoov;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdumoov = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 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: "M21.58 1.76c-1.66 2.04-4.9 4.65-10.61 3.56-2.41 1.36-5.75 1.57-9.3.37 2.41 2.12 3.1 3.46 4.19 4.99 7.6 1.83 13.56-1.78 15.72-8.92m.34 4.29c-.77.2-1.56.39-2.38.58a12.03 12.03 0 0 1-6.13 4.32l-.28.09h-.03l-.27.07-.03.01c-.6.15-1.22.25-1.85.3l-.04.01-.28.02h-.04l-.17.01c-.9.05-1.85.01-2.83-.12h-.04l-.17-.03-.1-.01h-.04l-.14-.03-.15-.03h-.03l-.16-.03-.13-.03H6.6l-.15-.03-.2-.04a27 27 0 0 0-.46-.1l-.13-.03-.07-.1-.32-.45-.21-.32-.38-.55A16.2 16.2 0 0 0 2.8 7.23l-.79-.29A34 34 0 0 1 5.9 11.9c4.71 1.7 11.79 1.74 16.03-5.85zM2.16 8.18c1.31 1.35 2.3 2.79 3.6 4.98 6.97 2.91 11.2 1.36 15.8-2.83-.9.04-1.8.06-2.74.07a11.76 11.76 0 0 1-4.66 2.39c-2.97.75-5.98.3-8.39-.58l-.1-.03-.06-.1-.37-.55v-.01A35 35 0 0 0 2.9 8.4l-.74-.23zm-.1 1.21c1.63 1.49 2.61 3.3 3.44 4.98 5.7 3.33 12.84 1.77 14.95.21-.91-.35-1.84-.67-2.78-.99-.98.52-1.99.92-3.05 1.15-2.59.56-5.47.2-9-1.26l-.1-.05-.06-.1A31 31 0 0 0 3 9.61l-.92-.22zm19.36 9.73c-.26.52-1.18 2.27-1.28 1.87l-.4-1.47c-.18-.4-.49-.45-.85-.34l.59 2.2c.1.41.36.6.82.48.46-.04 1.37-2.17 1.12-2.74m-3.98 0a1.38 1.38 0 1 0 0 2.75 1.38 1.38 0 0 0 0-2.75m-6.84 0c-.17 0-.33.04-.47.1-.05.03-.2.13-.4.36a.66.66 0 0 0-.3-.28c-.09-.05-.17-.1-.31-.13v1.67c0 .14 0 .26.02.36s.04.2.1.29c.04.08.1.15.2.22s.2.11.37.15l.04.01v-1.45c0-.12 0-.23-.02-.33.24-.32.48-.38.56-.38q.21 0 .3.15c.09.15.1.24.1.44v1.57h.74v-1.79c.22-.3.47-.37.54-.37q.21 0 .3.15c.09.15.1.24.1.43v1.58h.74v-.42a1.7 1.7 0 0 1-.07-1.8c-.07-.24-.24-.41-.65-.51l-.21-.02c-.18 0-.34.04-.47.1-.05.03-.2.12-.39.33-.09-.19-.26-.33-.61-.41zm4.04 0a1.38 1.38 0 1 0 1.21 2 1.72 1.72 0 0 1 0-1.26 1.37 1.37 0 0 0-1.21-.74m-10.81.01v2.75h.83c.44-.05.98-.25 1.22-.56a2.8 2.8 0 0 1-.2-1.15v-.7a1.35 1.35 0 0 0-.54-.26 2.4 2.4 0 0 0-.67-.08h-.65zm2.2 0c0 .64-.06 1.09.04 1.6.06.4.25.79.61.97.23.13.5.17.75.18.33-.02.67-.1.91-.34.36-.4.44-.77.44-1.36v-1.05H8.1v1.23a1.1 1.1 0 0 1-.21.61.66.66 0 0 1-1.12-.25c-.1-.21-.09-.46-.09-.7v-.9h-.66zm-4.59.02v.66h2v-.66zm3.05.65c.19 0 .37.03.54.1.22.09.36.31.39.55a.65.65 0 0 1-.4.65c-.16.07-.34.1-.53.1zm12.95 0a.68.68 0 1 1 0 1.38.69.69 0 1 1 0-1.37zm-2.8.01a.68.68 0 1 1 0 1.37.68.68 0 0 1 0-1.37m-13.2.36v.67h2v-.67zm0 1.04v.67h2v-.67z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdumoov 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 SvgIconEdutheque: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdutheque;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdutheque = ({
|
|
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.97.5c-.07 0-.12.78-.12 2.1s.05 2.1.13 2.1c.07 0 .1-.78.1-2.1s-.03-2.1-.1-2.1zm4.19.7c-.07 0-.14.17-.34.77-.12.39-.43 1.2-.65 1.83-.24.65-.4 1.2-.4 1.28 0 .24.21-.08.28-.41a2 2 0 0 1 .17-.5c.17-.22 1.06-2.87.99-2.92-.03-.02-.03-.05-.05-.05m-8.32.05h-.05c-.05.05.05.46.22.92.19.45.5 1.32.72 1.92.21.58.43 1.06.48 1.06.07 0 .07-.07.05-.17a2.5 2.5 0 0 1-.15-.5 12.4 12.4 0 0 1-.6-1.59c-.45-1.35-.57-1.64-.67-1.64m-3.7 2.17c-.1 0 0 .12.45.65.08.07.56.65 1.1 1.3a8.7 8.7 0 0 0 1.1 1.17c.11 0-.06-.21-1.38-1.78a9 9 0 0 0-1.27-1.34m15.7 0c-.07 0-.46.38-.82.84s-.89 1.08-1.13 1.37c-.26.29-.53.6-.6.72-.27.48.14.1.94-.86.48-.6 1.08-1.3 1.32-1.57.27-.29.39-.5.29-.5m2.76 3.17c-.07 0-.29.1-.53.24-.24.17-.5.31-.52.31-.05 0-.3.12-.58.32-.27.17-.77.48-1.13.67-.39.2-.67.39-.67.43 0 .15.16.08 1.13-.5.53-.31.98-.58 1.03-.58.02 0 1.18-.67 1.32-.77.03-.02 0-.07-.02-.12h-.02zm-21.16.03c-.07 0-.07.04 0 .14.03.05.44.29.92.53.45.24 1.2.67 1.66.94.84.53.98.6.98.45 0-.04-.45-.36-1-.67-.58-.31-1.38-.77-1.76-1a2.5 2.5 0 0 0-.8-.4zm4.04.16-.19.27c-.14.21-.17.91-.17 5.14 0 4.84 0 4.89.24 5.13.22.19.48.21 2.62.24l2.38.04-.1.37c-.01.21-.13.52-.2.74-.15.36-.17.36-1.2.43-1.26.1-1.84.22-1.84.36 0 .2.7.3 2.5.39 2.63.14 2.67.14 4.89.02 2.26-.14 2.8-.21 2.76-.38-.07-.17-.58-.27-1.88-.39-1.12-.07-1.17-.12-1.34-1.03l-.1-.5 2.38-.05c2.34-.03 2.38-.03 2.6-.32.22-.24.22-.5.22-5.1 0-4.2-.03-4.88-.17-5.1l-.2-.26H5.49zm.68 1.61h11.2v7.3H6.16zm7.62.94c-.77 0-1.32 0-1.32.03l-.05.55-.03.48h4.4v-1l-2.16-.06zm-2.12.03H9.62c-1.13.02-2.12.04-2.19.1s-.12.28-.12.52v.41h3.25v.77h-3.2v1.01h3.2v.77H7.29l.1 1 1.99.03c1.1.03 2.07.03 2.16 0 .08-.02.17-.24.17-.45v-.39l.2.39.2.4 2.87.05.05-.53.05-.5h-2.46l-.29-.77h4.45v-1.01H14.6c-2.17 0-2.2-.02-2.67-.34-.56-.38-.56-.38-.34-.5.1-.07.12-.05.05.07-.07.1-.05.12 0 .1.07-.05.12-.32.07-.6zm-.74.8c.04 0 .16.06.24.18.07.1.57.48 1.08.87l.91.67-.48.07c-.26.05-.48.15-.48.22 0 .05.15.34.31.62.15.27.27.56.22.6-.02.05-.17.13-.29.17-.2.05-.29-.07-.55-.57l-.34-.65-.36.31-.39.31v-1.42c0-.77.05-1.39.13-1.39zm13 .38-.09.02c-.2.05-3.58.65-3.77.65-.05 0-.08.02-.03.1.07.11.07.11 3.3-.46.38-.08.72-.2.72-.24s-.05-.08-.12-.08zm-23.85 0-.05.02c-.16.14.17.31.58.26.24-.04.46-.02.5 0 .05.05.63.2 1.33.34 1.51.31 1.37.29 1.47.17.02-.07-.17-.15-.44-.2s-1.15-.19-1.92-.35c-.7-.15-1.3-.24-1.47-.24M11.5 12.6c.05 0 .08.05.08.15s-.1.19-.24.19c-.15 0-.27-.02-.27-.07 0-.03.12-.12.27-.2.07-.04.12-.07.16-.07m-7.6 1.42s-.02 0-.04.03c-.07.02-.65.14-1.3.24-1.4.19-2.33.4-2.48.53-.17.14.07.11 1.08-.08.49-.1 1.2-.21 1.6-.29 1.1-.21 1.2-.24 1.2-.36 0-.04 0-.07-.06-.07m16.33.05c-.07 0-.12.02-.12.05 0 .12.1.14 1.9.46.77.12 1.42.26 1.45.28s.19.05.36.05c.6 0-.05-.21-1.45-.45l-1.82-.34a2 2 0 0 0-.32-.05m-8.17 2.14h.07c.2.02.27.12.27.34s-.08.29-.27.31c-.29.05-.46-.2-.34-.5.03-.1.15-.15.27-.15m7.24.55c-.24 0-.1.2.3.44.4.19 1.9 1.08 2.65 1.51.3.17.41.17.41.05 0-.05-.16-.17-.33-.27-.2-.07-.9-.45-1.52-.81a11 11 0 0 0-1.3-.68c-.05 0-.1-.04-.1-.12 0-.04-.04-.12-.11-.12m-14.46.03a.7.7 0 0 0-.36.14c-.26.17-.96.6-2.28 1.32-.43.22-.75.46-.72.51s.31-.07.62-.24c.34-.2.63-.36.68-.36a6.5 6.5 0 0 1 1.13-.67L4.7 17c.08-.07.17-.07.22-.04.02.04.07.02.07-.05 0-.1-.07-.14-.17-.12zm1.93 2.07c-.03 0-.05 0-.05.02-.15.2-2.07 2.43-2.3 2.7-.18.19-.3.38-.27.45.1.12 0 .22 1.2-1.25l1.25-1.5c.14-.18.26-.35.21-.4zm10.53.12h-.02c-.03.02.52.74 1.25 1.6.7.85 1.32 1.55 1.37 1.55.12 0 .12-.22 0-.27-.08-.02-.22-.17-1.3-1.49-.82-.99-1.2-1.4-1.3-1.4zm-2.43 1.27-.05.02c-.1.1.27 1.23.72 2.43.17.41.34.92.41 1.13.05.22.15.39.22.39.14 0 .14-.07-.41-1.59-.24-.62-.53-1.42-.62-1.73-.17-.5-.22-.65-.27-.65m-5.67 0c-.08 0-.12.14-.12.29 0 .17-.05.29-.1.29s-.14.21-.22.46a44 44 0 0 1-.96 2.6c-.1.26-.07.33.05.33.07 0 .2-.24.29-.5.07-.27.2-.68.29-.9.4-1.03.89-2.33.89-2.45 0-.05-.07-.12-.12-.12m2.76.58s-.02 0-.02.02c-.05.05-.12 3.46-.1 4.04.03.12.05.15.15.05.07-.07.12-.82.12-2.07-.03-1.59-.05-2.04-.15-2.04" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdutheque as default
|
|
12
|
+
};
|