@edifice.io/react 2.0.0-develop-rc.14 → 2.0.0-develop-rc.15
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/README.md +3 -3
- package/dist/audience.js +16 -0
- package/dist/comments.js +4 -0
- package/dist/components/ActionBar/ActionBar.d.ts +0 -1
- package/dist/components/ActionBar/ActionBar.js +8 -0
- package/dist/components/Alert/Alert.d.ts +3 -3
- package/dist/components/Alert/Alert.js +81 -0
- package/dist/components/AppHeader/AppHeader.d.ts +1 -1
- package/dist/components/AppHeader/AppHeader.js +22 -0
- package/dist/components/AppIcon/AppIcon.d.ts +11 -11
- package/dist/components/AppIcon/AppIcon.js +51 -0
- package/dist/components/AppIcon/index.d.ts +1 -1
- package/dist/components/Attachment/Attachment.d.ts +1 -1
- package/dist/components/Attachment/Attachment.js +18 -0
- package/dist/components/Avatar/Avatar.d.ts +3 -4
- package/dist/components/Avatar/Avatar.js +33 -0
- package/dist/components/Badge/Badge.d.ts +20 -18
- package/dist/components/Badge/Badge.js +18 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +3 -2
- package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +2 -2
- package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
- package/dist/components/Breadcrumb/index.d.ts +1 -0
- package/dist/components/Button/Button.d.ts +5 -5
- package/dist/components/Button/IconButton.d.ts +1 -1
- package/dist/components/Button/IconButton.js +18 -0
- package/dist/components/Button/SearchButton.d.ts +1 -1
- package/dist/components/Button/SearchButton.js +17 -0
- package/dist/components/Card/Card.d.ts +11 -7
- package/dist/components/Card/Card.js +53 -0
- package/dist/components/Card/CardBody.d.ts +2 -2
- package/dist/components/Card/CardContext.d.ts +2 -2
- package/dist/components/Card/CardHeader.js +22 -0
- package/dist/components/Card/CardImage.d.ts +2 -2
- package/dist/components/Card/CardImage.js +21 -0
- package/dist/components/Card/CardText.d.ts +1 -1
- package/dist/components/Card/CardTitle.d.ts +1 -1
- package/dist/components/Card/CardUser.js +10 -0
- package/dist/components/Checkbox/Checkbox.d.ts +0 -1
- package/dist/components/ColorPicker/ColorPalette.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.js +38 -0
- package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
- package/dist/components/Combobox/ComboboxTrigger.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.js +60 -0
- package/dist/components/Dropdown/DropdownContext.d.ts +1 -1
- package/dist/components/Dropdown/DropdownItem.d.ts +1 -1
- package/dist/components/Dropdown/DropdownMenu.d.ts +2 -2
- package/dist/components/Dropdown/DropdownTrigger.d.ts +3 -4
- package/dist/components/Dropdown/DropdownTrigger.js +34 -0
- package/dist/components/Dropzone/Dropzone.d.ts +26 -2
- package/dist/components/Dropzone/Dropzone.js +55 -0
- package/dist/components/Dropzone/DropzoneContext.d.ts +0 -1
- package/dist/components/Dropzone/DropzoneFile.d.ts +2 -1
- package/dist/components/Dropzone/DropzoneFile.js +30 -0
- package/dist/components/Dropzone/DropzoneImport.js +28 -0
- package/dist/components/Dropzone/index.d.ts +2 -1
- package/dist/components/EmptyScreen/EmptyScreen.d.ts +5 -1
- package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
- package/dist/components/Form/FormContext.d.ts +1 -1
- package/dist/components/Form/FormControl.d.ts +4 -4
- package/dist/components/Form/FormText.js +17 -0
- package/dist/components/Grid/Grid.d.ts +1 -1
- package/dist/components/Heading/Heading.d.ts +1 -1
- package/dist/components/Image/Image.d.ts +3 -4
- package/dist/components/Image/Image.js +41 -0
- package/dist/components/Input/Input.d.ts +2 -2
- package/dist/components/Label/Label.d.ts +2 -2
- package/dist/components/Layout/Layout.d.ts +12 -0
- package/dist/components/Layout/Layout.js +44 -0
- package/dist/components/Layout/components/Header.js +189 -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/NavLink.js +19 -0
- package/dist/components/Layout/components/NavbarNav.d.ts +6 -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/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 +1 -1
- package/dist/components/Loading/Loading.js +27 -0
- package/dist/components/LoadingScreen/LoadingScreen.d.ts +0 -1
- package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
- package/dist/components/Logo/Logo.d.ts +0 -1
- package/dist/components/Logo/Logo.js +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/hooks/useMenu.d.ts +9 -0
- package/dist/components/Menu/hooks/useMenu.js +50 -0
- package/dist/components/Menu/index.d.ts +2 -2
- package/dist/components/Modal/Modal.d.ts +1 -2
- package/dist/components/Modal/ModalContext.d.ts +0 -1
- package/dist/components/Modal/ModalHeader.js +27 -0
- package/dist/components/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.js +36 -0
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Select/Select.js +37 -0
- package/dist/components/Select/SelectTrigger.d.ts +1 -1
- 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 -2
- 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.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.js +14 -0
- package/dist/components/Tabs/context/TabsContext.d.ts +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 -3
- package/dist/components/TextArea/TextArea.d.ts +2 -2
- package/dist/components/Toolbar/Toolbar.d.ts +18 -18
- package/dist/components/Toolbar/Toolbar.js +78 -0
- package/dist/components/Toolbar/index.d.ts +0 -1
- package/dist/components/Tooltip/Tooltip.d.ts +4 -4
- package/dist/components/Tooltip/Tooltip.js +41 -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 +143 -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 +87 -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 +170 -0
- package/dist/components/Tree/utilities/tree-sortable.d.ts +29 -0
- package/dist/components/Tree/utilities/tree-sortable.js +144 -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 +37 -11
- package/dist/components/TreeView/TreeNode.js +69 -0
- package/dist/components/TreeView/TreeView.d.ts +28 -12
- 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 +2 -1
- 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 +53 -0
- package/dist/components/index.d.ts +3 -4
- package/dist/editor.js +58 -0
- package/dist/hooks/index.d.ts +28 -2
- package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
- package/dist/hooks/useAvatar/useAvatar.js +30 -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/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/useClickOutside.d.ts +0 -1
- package/dist/hooks/useConf/useConf.d.ts +4 -0
- package/dist/hooks/useConf/useConf.js +13 -0
- package/dist/hooks/useConversation/useConversation.js +43 -0
- package/dist/hooks/useDate/useDate.d.ts +14 -0
- package/dist/hooks/useDate/useDate.js +65 -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/useDropdown.d.ts +2 -2
- package/dist/hooks/useDropdown/useDropdown.js +158 -0
- package/dist/hooks/useDropzone/useDropzone.d.ts +3 -3
- 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/useHasWorkflow.js +22 -0
- package/dist/hooks/useHeader/useHeader.d.ts +5 -0
- package/dist/hooks/useHeader/useHeader.js +46 -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/useIsAdml/useIsAdml.js +18 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
- package/dist/hooks/usePaths/usePaths.js +7 -0
- package/dist/hooks/usePreferences/usePreferences.js +10 -0
- package/dist/hooks/useResource/useResource.d.ts +3 -0
- package/dist/hooks/useResource/useResource.js +25 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
- package/dist/hooks/useSession/useSession.js +11 -0
- package/dist/hooks/useToast/useToast.d.ts +1 -1
- package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +0 -1
- package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
- package/dist/hooks/useUpload/useUpload.d.ts +18 -0
- package/dist/hooks/useUpload/useUpload.js +106 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
- package/dist/hooks/useUser/useUser.d.ts +7 -0
- package/dist/hooks/useUser/useUser.js +22 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -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 +3 -6
- package/dist/index.js +201 -261
- 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/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 +73 -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.js +59 -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.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.js +19 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -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/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/useUpdateMutation.d.ts +7 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -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/utils/hasRight.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -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.js +26 -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.js +32 -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/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/misc.d.ts +154 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -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/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/innertabs/ExternalLink.d.ts +6 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -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.js +34 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -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/VideoEmbed/VideoEmbed.d.ts +6 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
- package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
- package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
- package/dist/modules/multimedia/index.d.ts +7 -0
- package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -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 +26 -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 +10 -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/index.d.ts +4 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/size.d.ts +1 -1
- package/dist/types/status.d.ts +1 -1
- 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/index.d.ts +2 -0
- package/dist/utilities/refs/index.d.ts +1 -0
- package/package.json +115 -40
- package/dist/common/OnboardingModal/useOnboardingModal.d.ts +0 -7
- package/dist/common/PublishModal/PublishModal.d.ts +0 -9
- package/dist/common/PublishModal/components/AgeSelect.d.ts +0 -8
- package/dist/common/PublishModal/components/ToastSuccess.d.ts +0 -4
- package/dist/common/PublishModal/hooks/usePublishModal.d.ts +0 -38
- package/dist/common/ResourceModal/ResourceModal.d.ts +0 -30
- package/dist/common/ResourceModal/apps/BlogPublic.d.ts +0 -13
- package/dist/common/ResourceModal/hooks/useSlug.d.ts +0 -17
- package/dist/common/ResourceModal/hooks/useThumb.d.ts +0 -11
- package/dist/common/ResourceModal/hooks/useUpdateMutation.d.ts +0 -7
- package/dist/common/ShareModal/ShareBookmarkLine.d.ts +0 -9
- package/dist/common/ShareModal/ShareModal.d.ts +0 -41
- package/dist/common/ShareModal/apps/ShareBlog.d.ts +0 -8
- package/dist/common/ShareModal/hooks/useSearch.d.ts +0 -24
- package/dist/common/ShareModal/hooks/useShare.d.ts +0 -54
- package/dist/common/ShareModal/hooks/useShareBookmark.d.ts +0 -23
- package/dist/common/ShareModal/hooks/useShareMutation.d.ts +0 -13
- package/dist/common/ShareModal/utils/hasRight.d.ts +0 -2
- package/dist/common/ShareModal/utils/showShareRightLine.d.ts +0 -2
- package/dist/components/Audience/ReactionChoice.d.ts +0 -11
- package/dist/components/Audience/ReactionModal.Card.d.ts +0 -4
- package/dist/components/Audience/ReactionModal.d.ts +0 -20
- package/dist/components/Audience/ReactionSummary.d.ts +0 -10
- package/dist/components/Audience/ViewsByProfileCard.d.ts +0 -9
- package/dist/components/Audience/ViewsCounter.d.ts +0 -11
- package/dist/components/Audience/ViewsModal.d.ts +0 -11
- package/dist/components/Audience/hooks/useReactionIcons.d.ts +0 -5
- package/dist/components/Audience/hooks/useReactions.d.ts +0 -15
- package/dist/components/Audience/hooks/useViews.d.ts +0 -11
- package/dist/components/FileCard/FileCard.d.ts +0 -13
- package/dist/components/FileCard/FileIcon.d.ts +0 -6
- package/dist/components/ImagePicker/ImagePicker.d.ts +0 -38
- package/dist/components/ImagePicker/index.d.ts +0 -1
- package/dist/components/Menu/MenuButton.d.ts +0 -5
- package/dist/components/Table/Table.components.d.ts +0 -20
- package/dist/components/Table/Table.d.ts +0 -33
- package/dist/components/Table/TableExplorer.d.ts +0 -14
- package/dist/components/Tabs/Tabs.d.ts +0 -42
- package/dist/components/Tabs/TabsContext.d.ts +0 -12
- package/dist/components/Tabs/TabsList.d.ts +0 -6
- package/dist/components/TreeView/TreeItem.d.ts +0 -52
- package/dist/components/TreeView/hooks/useTreeItemEvents.d.ts +0 -8
- package/dist/components/UploadCard/UploadCard.d.ts +0 -42
- package/dist/components/UploadCard/index.d.ts +0 -1
- package/dist/core/OdeClientProvider/OdeClientProvider.d.ts +0 -28
- package/dist/core/OdeClientProvider/index.d.ts +0 -1
- package/dist/core/ThemeProvider/ThemeProvider.d.ts +0 -11
- package/dist/core/ThemeProvider/index.d.ts +0 -1
- package/dist/core/index.d.ts +0 -25
- package/dist/core/useAvatar/useAvatar.d.ts +0 -6
- package/dist/core/useBookmark/useBookmark.d.ts +0 -2
- package/dist/core/useConf/useConf.d.ts +0 -4
- package/dist/core/useDate/useDate.d.ts +0 -13
- package/dist/core/useHeader/useHeader.d.ts +0 -5
- package/dist/core/useHttpErrorToast/index.d.ts +0 -1
- package/dist/core/useHttpErrorToast/useHttpErrorToast.d.ts +0 -2
- package/dist/core/useMediaLibrary/useMediaLibrary.d.ts +0 -12
- package/dist/core/useOdeIcons/index.d.ts +0 -1
- package/dist/core/useOdeIcons/useOdeIcons.d.ts +0 -9
- package/dist/core/useResource/useResource.d.ts +0 -3
- package/dist/core/useResourceSearch/useResourceSearch.d.ts +0 -18
- package/dist/core/useUpload/useUpload.d.ts +0 -18
- package/dist/core/useUploadFiles/useUploadFiles.d.ts +0 -25
- package/dist/core/useUser/useUser.d.ts +0 -7
- package/dist/core/useWorkspaceFile/useWorkspaceFile.d.ts +0 -21
- package/dist/core/useWorkspaceSearch/useWorkspaceSearch.d.ts +0 -9
- package/dist/hooks/useImageResizer/index.d.ts +0 -1
- package/dist/hooks/useImageResizer/useImageResizer.d.ts +0 -8
- package/dist/icons/dist/index.js +0 -1282
- package/dist/multimedia/AudioRecorder/AudioRecorder.d.ts +0 -12
- package/dist/multimedia/AudioRecorder/useAudioRecorder.d.ts +0 -16
- package/dist/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +0 -7
- package/dist/multimedia/ImageEditor/effects/blur.d.ts +0 -19
- package/dist/multimedia/ImageEditor/effects/crop.d.ts +0 -28
- package/dist/multimedia/ImageEditor/effects/misc.d.ts +0 -154
- package/dist/multimedia/ImageEditor/effects/resize.d.ts +0 -25
- package/dist/multimedia/ImageEditor/effects/rotate.d.ts +0 -8
- package/dist/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +0 -32
- package/dist/multimedia/ImageEditor/hooks/useImageEditor.d.ts +0 -30
- package/dist/multimedia/ImageEditor/hooks/useImageEffects.d.ts +0 -23
- package/dist/multimedia/ImagePickerWorkspace/ImagePickerWorkspace.d.ts +0 -46
- package/dist/multimedia/ImagePickerWorkspace/index.d.ts +0 -2
- package/dist/multimedia/Linker/ExternalLinker.d.ts +0 -28
- package/dist/multimedia/Linker/InternalLinker.d.ts +0 -28
- package/dist/multimedia/Linker/index.d.ts +0 -4
- package/dist/multimedia/LinkerCard/LinkerCard.d.ts +0 -13
- package/dist/multimedia/MediaLibrary/MediaLibrary.d.ts +0 -84
- package/dist/multimedia/MediaLibrary/MediaLibraryContext.d.ts +0 -60
- package/dist/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +0 -6
- package/dist/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +0 -11
- package/dist/multimedia/UploadFiles/UploadFiles.d.ts +0 -9
- package/dist/multimedia/VideoEmbed/VideoEmbed.d.ts +0 -5
- package/dist/multimedia/VideoRecorder/VideoRecorder.d.ts +0 -14
- package/dist/multimedia/Workspace/Workspace.d.ts +0 -33
- package/dist/multimedia/index.d.ts +0 -8
- package/dist/portal/Header/Badge.d.ts +0 -5
- package/dist/portal/Header/NavItem.d.ts +0 -6
- package/dist/portal/Header/NavbarNav.d.ts +0 -6
- package/dist/portal/Header/WidgetApps.d.ts +0 -9
- package/dist/portal/Header/index.d.ts +0 -5
- package/dist/portal/Help/hooks/useHelp.d.ts +0 -10
- package/dist/portal/Help/index.d.ts +0 -1
- package/dist/portal/Layout/Layout.d.ts +0 -12
- package/dist/portal/Layout/index.d.ts +0 -1
- package/dist/portal/Main/Main.d.ts +0 -16
- package/dist/portal/Main/index.d.ts +0 -2
- package/dist/portal/SearchEngine/index.d.ts +0 -1
- package/dist/ui/src/common/OnboardingModal/OnboardingModal.js +0 -59
- package/dist/ui/src/common/OnboardingModal/useOnboardingModal.js +0 -30
- package/dist/ui/src/common/PublishModal/PublishModal.js +0 -120
- package/dist/ui/src/common/PublishModal/components/ActivitiesDropdown.js +0 -29
- package/dist/ui/src/common/PublishModal/components/AgeSelect.js +0 -20
- package/dist/ui/src/common/PublishModal/components/LangSelect.js +0 -19
- package/dist/ui/src/common/PublishModal/components/PublishModalFooter.js +0 -23
- package/dist/ui/src/common/PublishModal/components/SubjectsDropdown.js +0 -29
- package/dist/ui/src/common/PublishModal/hooks/usePublishModal.js +0 -106
- package/dist/ui/src/common/ResourceModal/ResourceModal.js +0 -156
- package/dist/ui/src/common/ResourceModal/apps/BlogPublic.js +0 -62
- package/dist/ui/src/common/ResourceModal/hooks/useSlug.js +0 -41
- package/dist/ui/src/common/ResourceModal/hooks/useUpdateMutation.js +0 -12
- package/dist/ui/src/common/ShareModal/ShareBookmark.js +0 -22
- package/dist/ui/src/common/ShareModal/ShareBookmarkLine.js +0 -42
- package/dist/ui/src/common/ShareModal/ShareModal.js +0 -128
- package/dist/ui/src/common/ShareModal/apps/ShareBlog.js +0 -43
- package/dist/ui/src/common/ShareModal/hooks/useSearch.js +0 -178
- package/dist/ui/src/common/ShareModal/hooks/useShare.js +0 -192
- package/dist/ui/src/common/ShareModal/hooks/useShareBookmark.js +0 -67
- package/dist/ui/src/common/ShareModal/hooks/useShareMutation.js +0 -15
- package/dist/ui/src/components/ActionBar/ActionBar.js +0 -8
- package/dist/ui/src/components/Alert/Alert.js +0 -78
- package/dist/ui/src/components/AppHeader/AppHeader.js +0 -22
- package/dist/ui/src/components/AppIcon/AppIcon.js +0 -49
- package/dist/ui/src/components/Attachment/Attachment.js +0 -15
- package/dist/ui/src/components/Audience/ReactionChoice.js +0 -33
- package/dist/ui/src/components/Audience/ReactionModal.Card.js +0 -33
- package/dist/ui/src/components/Audience/ReactionModal.js +0 -73
- package/dist/ui/src/components/Audience/ReactionSummary.js +0 -27
- package/dist/ui/src/components/Audience/ViewsByProfileCard.js +0 -36
- package/dist/ui/src/components/Audience/ViewsCounter.js +0 -18
- package/dist/ui/src/components/Audience/ViewsModal.js +0 -40
- package/dist/ui/src/components/Audience/hooks/useReactionIcons.js +0 -38
- package/dist/ui/src/components/Audience/hooks/useReactions.js +0 -35
- package/dist/ui/src/components/Avatar/Avatar.js +0 -33
- package/dist/ui/src/components/Badge/Badge.js +0 -31
- package/dist/ui/src/components/Breadcrumb/Breadcrumb.js +0 -28
- package/dist/ui/src/components/Breadcrumb/BreadcrumbNav.js +0 -22
- package/dist/ui/src/components/Button/IconButton.js +0 -18
- package/dist/ui/src/components/Button/SearchButton.js +0 -17
- package/dist/ui/src/components/Card/Card.js +0 -51
- package/dist/ui/src/components/Card/CardHeader.js +0 -19
- package/dist/ui/src/components/Card/CardImage.js +0 -21
- package/dist/ui/src/components/Card/CardUser.js +0 -10
- package/dist/ui/src/components/ColorPicker/ColorPicker.js +0 -37
- package/dist/ui/src/components/ColorPicker/ColorPickerItem.js +0 -13
- package/dist/ui/src/components/Dropdown/Dropdown.js +0 -60
- package/dist/ui/src/components/Dropdown/DropdownTrigger.js +0 -34
- package/dist/ui/src/components/Dropzone/Dropzone.js +0 -56
- package/dist/ui/src/components/Dropzone/DropzoneFile.js +0 -32
- package/dist/ui/src/components/Dropzone/DropzoneImport.js +0 -28
- package/dist/ui/src/components/EmptyScreen/EmptyScreen.js +0 -20
- package/dist/ui/src/components/FileCard/FileCard.js +0 -91
- package/dist/ui/src/components/FileCard/FileIcon.js +0 -15
- package/dist/ui/src/components/Form/FormText.js +0 -17
- package/dist/ui/src/components/Image/Image.js +0 -41
- package/dist/ui/src/components/ImagePicker/ImagePicker.js +0 -58
- package/dist/ui/src/components/Loading/Loading.js +0 -27
- package/dist/ui/src/components/LoadingScreen/LoadingScreen.js +0 -25
- package/dist/ui/src/components/Logo/Logo.js +0 -14
- package/dist/ui/src/components/Menu/Menu.js +0 -58
- package/dist/ui/src/components/Menu/MenuButton.js +0 -21
- package/dist/ui/src/components/Modal/ModalHeader.js +0 -27
- package/dist/ui/src/components/SearchBar/SearchBar.js +0 -36
- package/dist/ui/src/components/Select/Select.js +0 -37
- package/dist/ui/src/components/Table/Table.components.js +0 -39
- package/dist/ui/src/components/Table/Table.js +0 -16
- package/dist/ui/src/components/Tabs/Tabs.js +0 -75
- package/dist/ui/src/components/Tabs/TabsItem.js +0 -26
- package/dist/ui/src/components/Tabs/TabsList.js +0 -24
- package/dist/ui/src/components/Tabs/TabsPanel.js +0 -14
- package/dist/ui/src/components/Toolbar/Toolbar.js +0 -77
- package/dist/ui/src/components/Tooltip/Tooltip.js +0 -40
- package/dist/ui/src/components/TreeView/TreeItem.js +0 -54
- package/dist/ui/src/components/TreeView/TreeView.js +0 -39
- package/dist/ui/src/components/TreeView/hooks/useTreeItemEvents.js +0 -28
- package/dist/ui/src/components/UploadCard/UploadCard.js +0 -72
- package/dist/ui/src/core/OdeClientProvider/OdeClientProvider.js +0 -62
- package/dist/ui/src/core/ThemeProvider/ThemeProvider.js +0 -53
- package/dist/ui/src/core/useAvatar/useAvatar.js +0 -30
- package/dist/ui/src/core/useBookmark/useBookmark.js +0 -14
- package/dist/ui/src/core/useCantoo/useCantoo.js +0 -18
- package/dist/ui/src/core/useConf/useConf.js +0 -13
- package/dist/ui/src/core/useConversation/useConversation.js +0 -43
- package/dist/ui/src/core/useDate/useDate.js +0 -65
- package/dist/ui/src/core/useHasWorkflow/useHasWorkflow.js +0 -22
- package/dist/ui/src/core/useHeader/useHeader.js +0 -50
- package/dist/ui/src/core/useHttpErrorToast/useHttpErrorToast.js +0 -21
- package/dist/ui/src/core/useIsAdml/useIsAdml.js +0 -18
- package/dist/ui/src/core/useLibraryUrl/useLibraryUrl.js +0 -21
- package/dist/ui/src/core/useOdeIcons/useOdeIcons.js +0 -92
- package/dist/ui/src/core/usePaths/usePaths.js +0 -6
- package/dist/ui/src/core/usePreferences/usePreferences.js +0 -10
- package/dist/ui/src/core/useResource/useResource.js +0 -25
- package/dist/ui/src/core/useResourceSearch/useResourceSearch.js +0 -34
- package/dist/ui/src/core/useSession/useSession.js +0 -11
- package/dist/ui/src/core/useTrashedResource/useTrashedResource.js +0 -27
- package/dist/ui/src/core/useUpload/useUpload.js +0 -106
- package/dist/ui/src/core/useUploadFiles/useUploadFiles.js +0 -101
- package/dist/ui/src/core/useUser/useUser.js +0 -22
- package/dist/ui/src/core/useWorkspaceFile/useWorkspaceFile.js +0 -49
- package/dist/ui/src/core/useWorkspaceSearch/useWorkspaceSearch.js +0 -58
- package/dist/ui/src/core/useXitiTrackPageLoad/useXitiTrackPageLoad.js +0 -28
- package/dist/ui/src/core/useZendeskGuide/useZendeskGuide.js +0 -101
- package/dist/ui/src/hooks/useDropdown/useDropdown.js +0 -158
- package/dist/ui/src/hooks/useDropzone/useDropzone.js +0 -76
- package/dist/ui/src/hooks/useImageResizer/useImageResizer.js +0 -42
- package/dist/ui/src/multimedia/AudioRecorder/AudioRecorder.js +0 -49
- package/dist/ui/src/multimedia/AudioRecorder/AudioRecorderTimer.js +0 -24
- package/dist/ui/src/multimedia/AudioRecorder/useAudioRecorder.js +0 -307
- package/dist/ui/src/multimedia/Embed/Embed.js +0 -32
- package/dist/ui/src/multimedia/ImageEditor/components/ImageEditor.js +0 -116
- package/dist/ui/src/multimedia/ImageEditor/components/ImageEditorToolbar.js +0 -69
- package/dist/ui/src/multimedia/ImageEditor/effects/blur.js +0 -72
- package/dist/ui/src/multimedia/ImagePickerWorkspace/ImagePickerWorkspace.js +0 -39
- package/dist/ui/src/multimedia/Linker/ExternalLinker.js +0 -45
- package/dist/ui/src/multimedia/Linker/InternalLinker.js +0 -114
- package/dist/ui/src/multimedia/LinkerCard/LinkerCard.js +0 -38
- package/dist/ui/src/multimedia/MediaLibrary/MediaLibrary.js +0 -211
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/ExternalLink.js +0 -17
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/InternalLink.js +0 -35
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/Upload.js +0 -34
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +0 -14
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/Workspace.js +0 -31
- package/dist/ui/src/multimedia/UploadFiles/UploadFiles.js +0 -56
- package/dist/ui/src/multimedia/VideoEmbed/VideoEmbed.js +0 -77
- package/dist/ui/src/multimedia/VideoRecorder/VideoRecorder.js +0 -259
- package/dist/ui/src/multimedia/Workspace/Workspace.js +0 -169
- package/dist/ui/src/portal/Header/Badge.js +0 -9
- package/dist/ui/src/portal/Header/Header.js +0 -171
- package/dist/ui/src/portal/Header/NavLink.js +0 -19
- package/dist/ui/src/portal/Header/WidgetApps.js +0 -23
- package/dist/ui/src/portal/Help/Help.js +0 -25
- package/dist/ui/src/portal/Help/hooks/useHelp.js +0 -85
- package/dist/ui/src/portal/Layout/Layout.js +0 -43
- package/dist/ui/src/portal/SearchEngine/SearchEngine.js +0 -33
- package/dist/ui/src/utils/MockedDataProvider/MockedDataProvider.js +0 -26
- package/dist/ui/src/utils/StringUtils.js +0 -14
- package/dist/ui/src/utils/addTimestampToUrl.js +0 -7
- package/dist/ui/src/utils/blob.js +0 -15
- package/dist/ui/src/utils/checkUserRight.js +0 -44
- package/dist/ui/src/utils/fileSize.js +0 -8
- package/dist/ui/src/utils/findTreeNode.js +0 -11
- package/dist/ui/src/utils/isActionAvailable.js +0 -7
- package/dist/ui/src/utils/libraryMaps.js +0 -12
- package/dist/ui/src/utils/noop.js +0 -5
- package/dist/ui/src/utils/thumbnail.js +0 -6
- package/dist/ui/src/utils/time.js +0 -11
- package/dist/ui/src/utils/treeview.js +0 -133
- package/dist/ui/src/utils/video.js +0 -4
- package/dist/ui/src/widgets/BookmarkedApps/BookmarkedApps.js +0 -8
- package/dist/ui/src/widgets/Widget/Widget.js +0 -22
- package/dist/utils/MockedDataProvider/MockedDataProvider.d.ts +0 -28
- package/dist/utils/StringUtils.d.ts +0 -5
- package/dist/utils/addTimestampToUrl.d.ts +0 -6
- package/dist/utils/blob.d.ts +0 -9
- package/dist/utils/checkUserRight.d.ts +0 -11
- package/dist/utils/fileSize.d.ts +0 -1
- package/dist/utils/findTreeNode.d.ts +0 -9
- package/dist/utils/index.d.ts +0 -14
- package/dist/utils/isActionAvailable.d.ts +0 -2
- package/dist/utils/libraryMaps.d.ts +0 -4
- package/dist/utils/noop.d.ts +0 -4
- package/dist/utils/thumbnail.d.ts +0 -8
- package/dist/utils/time.d.ts +0 -2
- package/dist/utils/treeview.d.ts +0 -33
- package/dist/utils/video.d.ts +0 -1
- package/dist/widgets/BookmarkedApps/BookmarkedApps.d.ts +0 -8
- /package/dist/{ui/src/components → components}/Breadcrumb/BreadcrumbItem.js +0 -0
- /package/dist/{ui/src/components → components}/Breadcrumb/BreadcrumbList.js +0 -0
- /package/dist/{ui/src/components → components}/Button/Button.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardBody.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardContext.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardFooter.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardText.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardTitle.js +0 -0
- /package/dist/{ui/src/components → components}/Checkbox/Checkbox.js +0 -0
- /package/dist/{ui/src/components → components}/ColorPicker/ColorPalette.js +0 -0
- /package/dist/{ui/src/components → components}/Combobox/Combobox.js +0 -0
- /package/dist/{ui/src/components → components}/Combobox/ComboboxTrigger.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownCheckboxItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownContext.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownMenu.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownMenuGroup.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownRadioItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownSeparator.js +0 -0
- /package/dist/{ui/src/components → components}/Dropzone/DropzoneContext.js +0 -0
- /package/dist/{ui/src/components → components}/Dropzone/DropzoneDrag.js +0 -0
- /package/dist/{ui/src/components → components}/Form/FormContext.js +0 -0
- /package/dist/{ui/src/components → components}/Form/FormControl.js +0 -0
- /package/dist/{ui/src/components → components}/Grid/Grid.js +0 -0
- /package/dist/{ui/src/components → components}/Heading/Heading.js +0 -0
- /package/dist/{ui/src/components → components}/Input/Input.js +0 -0
- /package/dist/{ui/src/components → components}/Label/Label.js +0 -0
- /package/dist/{portal/Header → components/Layout/components}/Header.d.ts +0 -0
- /package/dist/{portal/Help → components/Layout/components}/Help.d.ts +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/NavItem.js +0 -0
- /package/dist/{portal/Header → components/Layout/components}/NavLink.d.ts +0 -0
- /package/dist/{portal/Header → components/Layout/components}/Navbar.d.ts +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/Navbar.js +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/NavbarNav.js +0 -0
- /package/dist/{portal/SearchEngine → components/Layout/components}/SearchEngine.d.ts +0 -0
- /package/dist/{portal → components/Layout}/index.d.ts +0 -0
- /package/dist/components/Menu/{Menu.d.ts → components/Menu.d.ts} +0 -0
- /package/dist/components/Menu/{MenuContext.d.ts → components/MenuContext.d.ts} +0 -0
- /package/dist/{ui/src/components/Menu → components/Menu/components}/MenuContext.js +0 -0
- /package/dist/components/Menu/{MenuItem.d.ts → components/MenuItem.d.ts} +0 -0
- /package/dist/{ui/src/components/Menu → components/Menu/components}/MenuItem.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/Modal.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalBody.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalContext.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalFooter.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalSubtitle.js +0 -0
- /package/dist/{ui/src/components → components}/Popover/Popover.js +0 -0
- /package/dist/{ui/src/components → components}/Radio/Radio.js +0 -0
- /package/dist/{ui/src/components → components}/Select/SelectTrigger.js +0 -0
- /package/dist/components/Tabs/{TabsItem.d.ts → components/TabsItem.d.ts} +0 -0
- /package/dist/components/Tabs/{TabsPanel.d.ts → components/TabsPanel.d.ts} +0 -0
- /package/dist/{ui/src/components/Tabs → components/Tabs/context}/TabsContext.js +0 -0
- /package/dist/{ui/src/components → components}/TextArea/TextArea.js +0 -0
- /package/dist/{ui/src/components → components}/TextArea/TextareaCounter.js +0 -0
- /package/dist/{ui/src/components → components}/VisuallyHidden/VisuallyHidden.js +0 -0
- /package/dist/{core → hooks}/useAvatar/index.d.ts +0 -0
- /package/dist/{core → hooks}/useBookmark/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useBrowserInfo/useBrowserInfo.js +0 -0
- /package/dist/{core → hooks}/useCantoo/index.d.ts +0 -0
- /package/dist/{core → hooks}/useCantoo/useCantoo.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useClickOutside/useClickOutside.js +0 -0
- /package/dist/{core → hooks}/useConf/index.d.ts +0 -0
- /package/dist/{core → hooks}/useConversation/index.d.ts +0 -0
- /package/dist/{core → hooks}/useConversation/useConversation.d.ts +0 -0
- /package/dist/{core → hooks}/useCookiesConsent/index.d.ts +0 -0
- /package/dist/{core → hooks}/useCookiesConsent/useCookiesConsent.d.ts +0 -0
- /package/dist/{ui/src/core → hooks}/useCookiesConsent/useCookiesConsent.js +0 -0
- /package/dist/{core → hooks}/useDate/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useDebounce/useDebounce.js +0 -0
- /package/dist/{core → hooks}/useHasWorkflow/index.d.ts +0 -0
- /package/dist/{core → hooks}/useHasWorkflow/useHasWorkflow.d.ts +0 -0
- /package/dist/{core → hooks}/useHeader/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useHover/useHover.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useImage/useImage.js +0 -0
- /package/dist/{core → hooks}/useIsAdml/index.d.ts +0 -0
- /package/dist/{core → hooks}/useIsAdml/useIsAdml.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useKeyPress/useKeyPress.js +0 -0
- /package/dist/{core → hooks}/useLibraryUrl/index.d.ts +0 -0
- /package/dist/{core → hooks}/useLibraryUrl/useLibraryUrl.d.ts +0 -0
- /package/dist/{core → hooks}/useMediaLibrary/index.d.ts +0 -0
- /package/dist/{ui/src/core → hooks}/useMediaLibrary/useMediaLibrary.js +0 -0
- /package/dist/{core → hooks}/usePaths/index.d.ts +0 -0
- /package/dist/{core → hooks}/usePaths/usePaths.d.ts +0 -0
- /package/dist/{core → hooks}/usePreferences/index.d.ts +0 -0
- /package/dist/{core → hooks}/usePreferences/usePreferences.d.ts +0 -0
- /package/dist/{core → hooks}/useResource/index.d.ts +0 -0
- /package/dist/{core → hooks}/useResourceSearch/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useScrollToTop/useScrollToTop.js +0 -0
- /package/dist/{core → hooks}/useSession/index.d.ts +0 -0
- /package/dist/{core → hooks}/useSession/useSession.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useThumbnail/useThumbnail.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useTitle/useTitle.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useToast/useToast.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useToggle/useToggle.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useTrapFocus/useTrapFocus.js +0 -0
- /package/dist/{core → hooks}/useTrashedResource/index.d.ts +0 -0
- /package/dist/{core → hooks}/useTrashedResource/useTrashedResource.d.ts +0 -0
- /package/dist/{core → hooks}/useUpload/index.d.ts +0 -0
- /package/dist/{core → hooks}/useUploadFiles/index.d.ts +0 -0
- /package/dist/{core → hooks}/useUser/index.d.ts +0 -0
- /package/dist/{core → hooks}/useWorkspaceFile/index.d.ts +0 -0
- /package/dist/{core → hooks}/useWorkspaceSearch/index.d.ts +0 -0
- /package/dist/{core → hooks}/useXitiTrackPageLoad/index.d.ts +0 -0
- /package/dist/{core → hooks}/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +0 -0
- /package/dist/{core → hooks}/useZendeskGuide/index.d.ts +0 -0
- /package/dist/{core → hooks}/useZendeskGuide/useZendeskGuide.d.ts +0 -0
- /package/dist/{components/Audience → modules/audience}/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/OnboardingModal/OnboardingModal.d.ts +0 -0
- /package/dist/{common → modules/modals}/OnboardingModal/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/ActivitiesDropdown.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/LangSelect.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/PublishModalFooter.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/SubjectsDropdown.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/ToastError.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/components/ToastError.js +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/components/ToastSuccess.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/constants/ageOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/constants/ageOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useActivitiesOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useActivitiesOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useLanguageOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useLanguageOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useSubjectsOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useSubjectsOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/index.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/ResourceModal/hooks/useThumb.js +0 -0
- /package/dist/{common → modules/modals}/ResourceModal/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/ShareModal/ShareBookmark.d.ts +0 -0
- /package/dist/{common → modules/modals}/ShareModal/index.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/ShareModal/utils/hasRight.js +0 -0
- /package/dist/{ui/src/common → modules/modals}/ShareModal/utils/showShareRightLine.js +0 -0
- /package/dist/{common → modules/modals}/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/AudioRecorder/AudioRecorderTimer.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/AudioRecorder/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Embed/Embed.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Embed/index.d.ts +0 -0
- /package/dist/{components → modules/multimedia}/FileCard/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/ImageEditor/components/ImageEditor.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/crop.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/misc.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/resize.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/rotate.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useHistoryTool.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useImageEditor.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useImageEffects.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/ImageEditor/index.d.ts +0 -0
- /package/dist/{multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/aggregate.d.ts +0 -0
- /package/dist/{ui/src/multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/aggregate.js +0 -0
- /package/dist/{multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/debounceAggregate.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/LinkerCard/index.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/MediaLibraryContext.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Audio.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Audio.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Iframe.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Iframe.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Upload.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Video.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Video.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/VideoEmbedder.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Workspace.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/index.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/index.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/UploadFiles/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/VideoEmbed/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/VideoRecorder/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Workspace/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/BookmarkedApps/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/Widget/Widget.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/Widget/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/index.d.ts +0 -0
- /package/dist/{utils → providers}/MockedDataProvider/index.d.ts +0 -0
- /package/dist/{utils → utilities/refs}/ref.d.ts +0 -0
- /package/dist/{ui/src/utils → utilities/refs}/ref.js +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconOnisep2 = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M2.43 1.3a.54.54 0 0 0-.55.55v21.82c0 .3.24.55.55.55h19.26c.31 0 .55-.24.55-.55V1.84a.54.54 0 0 0-.55-.55H2.43zm9.6 2.77c.09 0 .19.02.35.1.6.23.68.47.7 2.04a11 11 0 0 0 .07 1.49c.17.26.48.07 1.64-1.06.67-.67 1.32-1.25 1.46-1.32.77-.41 1.78.07 1.83.86.05.65.03.7-1.37 2.07-.91.91-1.35 1.42-1.32 1.54.02.14.2.17 1.49.22 1.66.04 1.95.12 2.21.67a.97.97 0 0 1-.36 1.3c-.26.17-.48.19-1.68.19-.75 0-1.45.02-1.54.05-.31.12-.12.45.98 1.51 1.47 1.4 1.6 1.59 1.6 2.12 0 .6-.27 1-.75 1.15-.8.22-1.01.1-2.48-1.3-1.56-1.51-1.66-1.53-1.76-.55-.04.36-.04.84-.02 1.06.1.7-.05 1.32-.36 1.63-.24.24-.39.3-.72.3-.39 0-.5-.05-.77-.34l-.34-.32v-1.42c0-1.17-.02-1.44-.17-1.56-.21-.21-.29-.14-1.63 1.18-.65.62-1.3 1.2-1.44 1.27-.8.41-1.83-.19-1.83-1.08 0-.48.19-.74 1.51-2 1.2-1.17 1.42-1.51 1.06-1.65-.07-.03-.77-.05-1.51-.05-1.54 0-1.8-.07-2.07-.63-.2-.4-.2-.53.05-.91.3-.53.76-.65 2.23-.63.7 0 1.3-.02 1.35-.04.26-.15.05-.46-1.1-1.57C6 7.12 5.81 6.85 5.81 6.4c0-.9.89-1.46 1.8-1.12.12.05.82.65 1.52 1.32a9.2 9.2 0 0 0 1.46 1.23c.24 0 .3-.27.3-1.69 0-1.49.06-1.73.69-1.94.2-.08.31-.12.43-.12zm-.15 4.32c-.17 0-.31.08-.46.22l-.24.24v2.16c0 2.14 0 2.2.22 2.39.26.24.74.24 1.03 0 .24-.2.24-.2.22-2.39v-2.2l-.27-.2c-.19-.14-.36-.22-.5-.22m-1.42 10.8h.84v.63h-.84zm-5.1.92c.43 0 .77.12.99.36.24.24.36.57.36 1 0 .42-.12.75-.36 1-.22.26-.55.38-.99.38s-.77-.12-.98-.39a1.35 1.35 0 0 1-.36-.98c0-.44.12-.77.36-1.01s.55-.36.98-.36m10.56 0c.38 0 .7.1.89.3.22.23.31.51.31.92v.3h-1.8c0 .18.07.35.21.45.12.12.34.17.6.17.17 0 .32-.03.49-.1.14-.07.28-.12.36-.2h.1v.66c-.17.07-.34.14-.51.17s-.34.04-.53.04c-.48 0-.87-.12-1.13-.33a1.3 1.3 0 0 1-.41-1.01c0-.41.14-.77.39-1.01s.6-.36 1.03-.36m-7 0c.27 0 .46.07.6.24.17.16.24.4.24.72v1.68h-.8v-1.27c0-.1 0-.22-.02-.32 0-.1-.02-.16-.04-.21a.25.25 0 0 0-.12-.15c-.08-.02-.15-.02-.24-.02-.08 0-.15 0-.22.02s-.17.08-.24.12v1.83h-.8v-2.57h.8v.29c.14-.12.27-.22.4-.27.13-.07.27-.1.44-.1zm4.21 0c.2 0 .36.02.53.04.17.05.29.1.38.15v.65H14a1.44 1.44 0 0 0-.87-.29c-.12 0-.24.02-.31.05-.1.04-.15.1-.15.16 0 .05.03.1.07.15l.27.1c.1 0 .17.02.26.04.1 0 .2.03.3.05.19.07.35.14.45.27s.14.28.14.45a.8.8 0 0 1-.33.65 1.6 1.6 0 0 1-.94.24c-.22 0-.43-.02-.6-.05-.17-.04-.31-.1-.43-.14v-.7h.07c.05.05.1.07.14.1.05.05.12.07.22.12.07.02.17.07.29.1.1.02.21.02.33.02.15 0 .27 0 .34-.05.07-.02.1-.1.1-.17 0-.04 0-.1-.05-.12s-.15-.07-.27-.1l-.24-.02c-.1-.02-.19-.04-.26-.07a.88.88 0 0 1-.5-.29.76.76 0 0 1-.15-.48c0-.24.1-.46.34-.62.21-.17.53-.24.91-.24m6.16 0c.29 0 .53.12.7.36.09.12.16.29.2.48v.91c0 .05-.01.1-.04.15a.93.93 0 0 1-.24.43c-.1.12-.21.22-.36.29-.12.05-.26.07-.43.07-.15 0-.24 0-.36-.05-.1-.02-.2-.07-.3-.12v.77h-.79v-3.22h.8v.26c.12-.1.24-.19.36-.24.14-.07.29-.1.46-.1zm-8.8.07h.79v2.57h-.8v-2.57zm5.36.43a.73.73 0 0 0-.39.12c-.1.1-.14.22-.14.41h1c0-.17-.04-.31-.11-.39-.07-.1-.2-.14-.36-.14m-10.49.07c-.07 0-.14 0-.19.03-.07.02-.12.07-.17.12a.7.7 0 0 0-.12.26c-.02.1-.05.22-.05.39 0 .14 0 .26.05.36.03.1.05.19.1.26.05.05.1.1.17.12s.14.05.21.05.15-.02.22-.05.12-.07.17-.12a.7.7 0 0 0 .1-.24c.04-.1.04-.21.04-.38 0-.15 0-.3-.05-.39a.5.5 0 0 0-.1-.24c-.04-.07-.09-.12-.16-.14s-.15-.02-.22-.02zm13.57.05c-.08 0-.15 0-.24.03a1 1 0 0 0-.22.12v1.3c.05.02.1.02.17.02.04.02.12.02.16.02.22 0 .39-.07.49-.19s.14-.31.14-.58c0-.26-.05-.43-.12-.55s-.22-.17-.39-.17z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconOnisep2 as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPad: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPad;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPad = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M15.1 18.23H9.5v-.5h5.6zm-2.3-1.5H9.5v-.5h3.3zm.98-1.48H9.5v-.48h4.28zm1.66-1.47H9.5v-.5h5.94zm-2.65-1.49H9.5v-.5h3.3v.5zm4.12-3.22H8v11.88h8.9V9.07zM6.54 22.4V7.61H18.4v14.8H6.54zM4.5 10.31c-.6.61-.96 1.26-1.01 1.79l3.68 3.85s.36-.46.33-1.25c.94-.48 1.1-.92 1.28-1.3.82.02 1.15-.29 1.15-.29L6.25 9.26c-.24.05-.94.22-1.75 1.06zM.55 8.82c.07.04.48.6.72.93.03-.36.17-1.03.92-1.8.77-.77 1.44-.94 1.8-.96-.31-.24-.72-.6-.86-.72C2.74 5.87 2 5.6.9 6.52S.14 8.37.55 8.8zm7.48 6.39c0 .36-.33 1.06-.33 1.06l4.23 1.8-1.71-4.37s-.17.16-.89.16a2.36 2.36 0 0 1-1.3 1.35M2.65 8.42c-1.04 1.08-.9 1.83-.9 1.83l.41.4c.05-.45.37-1.1.97-1.7.96-.99 1.75-1.1 1.75-1.1l-.43-.44s-.8-.02-1.8 1.01m.86.91c-.99 1.04-.84 1.76-.84 1.76l.36.38c.07-.43.39-1.05.94-1.63.91-.94 1.68-1.06 1.68-1.06l-.4-.4s-.78-.03-1.74.95m14.45-2.88-3.68 3.82s.32.32 1.13.3c.17.38.34.83 1.3 1.29-.05.8.34 1.25.34 1.25l3.68-3.85a3.32 3.32 0 0 0-1.04-1.78c-.82-.84-1.51-1-1.73-1.03m5.32-2.77c-1.08-.91-1.83-.65-2.21-.26-.12.14-.56.48-.84.74.33.03 1.03.17 1.78.94.76.77.9 1.44.9 1.8.27-.33.66-.86.73-.93.4-.44.72-1.37-.36-2.29m-8.42 7.34c-.72 0-.89-.17-.89-.17l-1.68 4.37 4.2-1.8s-.33-.7-.3-1.06a2.37 2.37 0 0 1-1.33-1.34m4.88-6.45-.4.43s.79.15 1.72 1.11c.6.6.92 1.25.99 1.7l.39-.4s.14-.75-.9-1.8c-1-1.06-1.8-1.04-1.8-1.04m-.8.96-.4.41s.77.12 1.68 1.06c.58.6.9 1.2.94 1.64l.39-.39s.12-.72-.87-1.73c-.96-1.01-1.73-.99-1.73-.99z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPad as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPages: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPages;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPages = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M0 23.83V1.28h24.05v22.55zm2.96-2.95h18.13V4.23H2.96v16.63zM4.93 19v-4h4v4zm0-5.27V6.35h14.14v7.38zM10 19v-4h4v4zm5.08 0v-4h3.99v4h-4z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPages as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconParametrage: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParametrage;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParametrage = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 22 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M13.27-.15H.01v21.12h17.85V4.04zm.08 2.06 2.46 2.32h-2.46zM1.41 19.76V1.38h10.94v3.73h4.02v14.65zm8.22 0h4.9v1.2h-4.9zm7.3-6h.93v3.71h-.93zM2.95 6.9H5.9V4.18H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.64H5.9V7.85H2.95zm.8-1.97H5.1v1.23H3.75zm-.8 5.64H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.65H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm3.27 1.24h3.14v.74H7.02zm0-3.67h6.1v.74h-6.1zm0-3.66h6.1v.73h-6.1zm0-3.67h6.1v.74h-6.1zm9.25 12.29-.79-.1a3.6 3.6 0 0 0-.35-.86l.5-.64a.26.26 0 0 0-.03-.34l-.81-.83a.25.25 0 0 0-.33-.02l-.62.5a3.5 3.5 0 0 0-.85-.36l-.1-.8a.26.26 0 0 0-.24-.23H11.5a.26.26 0 0 0-.25.23l-.1.8c-.3.09-.58.2-.84.36l-.62-.5a.25.25 0 0 0-.33.02l-.81.83a.27.27 0 0 0-.02.34l.49.64a3.6 3.6 0 0 0-.35.86l-.8.1a.26.26 0 0 0-.21.25v1.18c0 .12.1.24.22.25l.79.1c.08.3.2.6.35.86l-.5.64a.27.27 0 0 0 .03.34l.81.83a.25.25 0 0 0 .33.02l.62-.5c.26.15.55.27.85.36l.1.8a.26.26 0 0 0 .24.23h1.15a.26.26 0 0 0 .25-.23l.1-.8c.3-.09.58-.2.84-.36l.62.5a.25.25 0 0 0 .33-.02l.81-.83a.27.27 0 0 0 .02-.34l-.49-.64c.15-.27.27-.56.35-.87l.8-.1a.26.26 0 0 0 .21-.25V18.7a.26.26 0 0 0-.22-.25m-4.2 3.1c-1.21 0-2.2-1.01-2.2-2.26s.99-2.26 2.2-2.26c1.23 0 2.21 1.01 2.21 2.26s-.98 2.26-2.2 2.26zm9.7-6.8-.59-.07a2.7 2.7 0 0 0-.26-.65l.37-.48a.2.2 0 0 0-.02-.25l-.6-.63a.19.19 0 0 0-.26-.02l-.47.38a2.6 2.6 0 0 0-.63-.27l-.08-.6a.2.2 0 0 0-.18-.17h-.86a.2.2 0 0 0-.19.17l-.07.6a2.6 2.6 0 0 0-.64.27l-.47-.37a.19.19 0 0 0-.25 0l-.6.64a.2.2 0 0 0-.02.25l.37.48a2.8 2.8 0 0 0-.27.65l-.6.07a.2.2 0 0 0-.16.2v.88c0 .1.08.18.17.19l.6.07c.05.23.14.45.25.65l-.36.48a.2.2 0 0 0 .01.26l.61.62a.19.19 0 0 0 .25.02l.47-.38c.2.12.41.2.64.27l.07.6a.2.2 0 0 0 .18.17h.87a.2.2 0 0 0 .18-.16l.07-.61c.23-.06.44-.15.64-.27l.47.38a.19.19 0 0 0 .25-.02l.61-.62a.2.2 0 0 0 .01-.26l-.36-.48c.11-.2.2-.42.26-.65l.6-.07a.2.2 0 0 0 .16-.2v-.88a.2.2 0 0 0-.17-.19m-3.15 2.33c-.92 0-1.67-.76-1.67-1.7s.75-1.7 1.67-1.7c.91 0 1.66.77 1.66 1.7s-.75 1.7-1.66 1.7" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconParametrage as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconParametrages: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParametrages;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParametrages = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 22 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M13.27-.15H.01v21.12h17.85V4.04zm.08 2.06 2.46 2.32h-2.46zM1.41 19.76V1.38h10.94v3.73h4.02v14.65zm8.22 0h4.9v1.2h-4.9zm7.3-6h.93v3.71h-.93zM2.95 6.9H5.9V4.18H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.64H5.9V7.85H2.95zm.8-1.97H5.1v1.24H3.75zm-.8 5.64H5.9v-2.71H2.95zm.8-1.98H5.1v1.24H3.75zm-.8 5.65H5.9v-2.72H2.95zm.8-1.98H5.1v1.24H3.75zm3.27 1.24h3.14v.74H7.02zm0-3.67h6.1v.74h-6.1zm0-3.67h6.1v.74h-6.1zm0-3.66h6.1v.74h-6.1zm9.25 12.29-.79-.1c-.08-.3-.2-.6-.35-.86l.5-.64a.27.27 0 0 0-.03-.34l-.81-.83a.25.25 0 0 0-.33-.02l-.62.5a3.5 3.5 0 0 0-.85-.36l-.1-.8a.26.26 0 0 0-.24-.23H11.5c-.12 0-.23.1-.25.23l-.1.8c-.3.09-.57.2-.84.36l-.62-.5a.25.25 0 0 0-.33.02l-.81.83a.27.27 0 0 0-.02.34l.49.64c-.16.27-.27.56-.35.86l-.8.1a.26.26 0 0 0-.21.25v1.18c0 .12.1.24.22.25l.79.1c.08.3.2.6.35.86l-.5.64c-.07.1-.06.25.03.34l.8.83c.1.09.24.1.34.02l.62-.5c.26.15.55.27.85.36l.1.8c0 .13.12.23.24.23h1.15c.12 0 .23-.1.25-.23l.1-.8c.3-.09.58-.2.84-.36l.62.5c.1.07.25.07.33-.02l.81-.83c.09-.1.1-.24.02-.34l-.49-.64c.16-.27.27-.56.35-.86l.8-.1a.26.26 0 0 0 .21-.25V18.7c0-.12-.1-.23-.22-.25m-4.2 3.1c-1.21 0-2.2-1.01-2.2-2.26s.99-2.26 2.2-2.26c1.23 0 2.21 1.01 2.21 2.26s-.98 2.26-2.2 2.26zm9.7-6.8-.59-.07a2.8 2.8 0 0 0-.26-.65l.37-.48a.2.2 0 0 0-.02-.26l-.61-.62a.19.19 0 0 0-.25-.02l-.47.38c-.2-.12-.41-.2-.64-.27l-.07-.6a.2.2 0 0 0-.18-.18h-.87a.2.2 0 0 0-.18.17l-.07.61c-.23.06-.44.15-.64.27l-.47-.38a.2.2 0 0 0-.25.02l-.61.62a.2.2 0 0 0-.02.26l.37.48c-.11.2-.2.42-.26.65l-.6.07a.2.2 0 0 0-.16.2v.88c0 .09.07.17.17.18l.59.08c.06.23.15.45.26.65l-.37.48a.2.2 0 0 0 .02.25l.61.63c.06.07.18.07.25.02l.47-.38c.2.11.4.2.63.27l.08.6c0 .1.1.17.18.17h.87a.2.2 0 0 0 .18-.17l.07-.6c.23-.07.44-.16.64-.27l.47.37c.07.06.18.06.25-.01l.61-.63a.2.2 0 0 0 .02-.25l-.37-.48c.11-.2.2-.42.26-.65l.6-.07a.2.2 0 0 0 .16-.2v-.88a.2.2 0 0 0-.16-.19zm-3.15 2.34c-.92 0-1.67-.77-1.67-1.7s.75-1.7 1.67-1.7c.91 0 1.66.76 1.66 1.7s-.75 1.7-1.66 1.7" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconParametrages as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconParaschool: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParaschool;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParaschool = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M7.33 20.03a3.53 3.53 0 0 1-2-1.94c-.06-.2-.88-3.03-1.8-6.33-.89-3.3-1.78-6.5-1.97-7.12-.17-.62-.29-1.15-.29-1.17l2.05.48c1.13.29 5.67 1.4 10.12 2.47 5.6 1.37 8.18 2.05 8.4 2.2.35.2.57.47.76.86.34.7.36.98.36 5.99v4.7l-7.64-.02c-6.09 0-7.7-.02-7.99-.12m9.21-2-.14-1.53c-.07-.82-.14-1.52-.12-1.54s1.15.07 2.5.2c1.35.14 2.57.2 2.72.18.72-.19.91-.65.91-2.26 0-.98-.02-1.08-.21-1.58s-.27-.58-.7-.87c-.43-.26-.77-.34-3.56-.91-1.7-.36-3.13-.6-3.13-.56-.02.05.2 2.07.46 4.5l.5 4.4h.4c.2 0 .38-.02.38-.02zm1.62-3.72a12.4 12.4 0 0 1-1.98-.31c-.07-.1-.4-3.66-.36-3.7.07-.08 5.08.88 5.32 1.03.43.26.55.58.57 1.51 0 .46-.02.99-.07 1.18-.14.63-.46.65-3.49.3z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconParaschool as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconParcours: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParcours;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParcours = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M18.52-.61a.2.2 0 0 0-.2.13L15.66 7.1a.2.2 0 1 0 .38.13L18.7-.34a.2.2 0 0 0-.18-.27m.33.37-1.36 3.86c1.88.31 2.8 1.66 5.2 2.63 0 0 .37-.67 1.33-3.75-1.93-.57-3.5-2.15-5.17-2.74m1.54 2.1.31.16.13.8.72-.36.31.16-.98.48.19 1.14-.31-.16-.15-.87-.79.39-.31-.16 1.06-.52zM3.84 19.42l.07.07-.12.12-.07-.08zm.22.2.16.14-.12.13-.15-.14zm.31.27.16.13-.1.14-.17-.13zm.33.24.17.12-.1.16-.18-.12zm.34.22.18.1-.1.17-.18-.1zm-2.6-2.82-.6 1.56c-.6-.14-1.22.18-1.61.45-.11.08-.25-.04-.2-.16.94-1.93 2.42-1.85 2.42-1.85zm2.58 1.54-1.08 1.28c.4.46.41 1.16.36 1.63-.01.13.15.2.23.1 1.27-1.74.5-3 .5-3zm1.63-2.25c1-1.95.01-3.41.01-3.41s-1.76-.19-3 1.62a20.2 20.2 0 0 0-2.1 4.6l2.04 1.22s2.05-2.07 3.05-4.03m-3.2 3.93-.41-.25s-.32.11-.46.34l.79.47c.13-.23.08-.56.08-.56m-1.9 2.66s1.06-.31 1.46-.98c.23-.38.14-.7.02-.9a.62.62 0 0 0-.52-.32.85.85 0 0 0-.78.45c-.4.68-.18 1.75-.18 1.75m-1.29-.77s1.06-.31 1.46-.99c.23-.37.14-.7.02-.9a.61.61 0 0 0-.52-.3.85.85 0 0 0-.78.44c-.4.67-.18 1.75-.18 1.75m1.86-2.7-.41-.24s-.32.11-.46.34l.8.47c.12-.23.07-.56.07-.56zm15.05-13.5c-.13.23-.23.47-.02.69.17.26.55.2.8.36.97.39 1.6 1.45 1.49 2.49-.06.29-.24.53-.24.83.11.2.3.44.58.34.34-.01.47-.42.57-.7a3.34 3.34 0 0 0-.55-2.73 3.64 3.64 0 0 0-2.2-1.4zM8.44 8.15c-.7 0-1.5.3-1.78 1-.37.87.16 1.9.93 2.37.22.16.47.26.74.24.2-.07.45-.33.32-.57-.02-.4-.53-.43-.75-.7-.33-.27-.57-.93-.1-1.19.73-.32 1.55-.07 2.28.1.21.06.55.04.65-.16.2-.23.07-.45-.06-.68a6.7 6.7 0 0 0-1.73-.4zm3.55 1.1c-.18.2-.33.4-.17.67.1.3.5.32.76.48 1.6.73 3.26 1.42 5.03 1.58.26.05.47-.08.7-.2.08-.25.13-.5-.12-.67-.23-.24-.62-.07-.9-.18-1.72-.25-3.3-.98-4.86-1.7zm-2.2 2.42c-.17.2-.31.42-.15.68.12.3.53.31.8.46 1.61.67 3.28 1.26 4.8 2.16.25.07.5.1.66-.16.15-.16.08-.52-.1-.66-1.5-.93-3.2-1.53-4.83-2.2-.35-.11-.68-.37-1.07-.28h-.1zm6.82 3.9c-.09.24-.2.5.01.72.44.58.53 1.45.06 2.04-.56.77-1.48 1.15-2.35 1.45-.24.15-.34.36-.25.64.08.18.35.35.58.29 1.25-.37 2.53-1.06 3.12-2.29a2.7 2.7 0 0 0-.42-2.8c-.21-.19-.44-.24-.68-.08l-.04.02zM6.5 18.96c-.18.2-.33.4-.17.67.1.3.5.33.75.48 1.73.74 3.63 1.1 5.5.97.25-.12.47-.24.43-.55.01-.21-.26-.46-.49-.45-1.92.13-3.86-.3-5.58-1.13z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconParcours as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPearltrees: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPearltrees;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPearltrees = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "m12.01 15.23 3.53 1.46-.3-3.8 2.48-2.91-3.7-.9-2-3.25-2 3.25-3.72.9 2.48 2.9-.3 3.81zm-10.8-4a10.92 10.92 0 1 1 21.81.62v-.02a10.92 10.92 0 0 1-21.82-.3v-.32.02z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPearltrees as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPicardieCursus: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPicardieCursus;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPicardieCursus = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "m13.29 13.55.85-3.44h-3.4l-.86 3.44h3.4zm10.3-6.76-.76 3a.43.43 0 0 1-.42.33h-4.38l-.86 3.43h4.17c.13 0 .26.06.34.16s.12.24.08.37l-.76 3a.42.42 0 0 1-.41.33H16.2l-1.08 4.4a.44.44 0 0 1-.42.32h-3a.48.48 0 0 1-.35-.16.47.47 0 0 1-.08-.38l1.05-4.18h-3.4l-1.1 4.4a.44.44 0 0 1-.41.32H4.39a.47.47 0 0 1-.33-.16.47.47 0 0 1-.08-.38l1.04-4.18H.86a.45.45 0 0 1-.34-.16.47.47 0 0 1-.08-.38l.75-3a.43.43 0 0 1 .42-.32h4.38l.86-3.44H2.68a.45.45 0 0 1-.33-.16.42.42 0 0 1-.08-.37l.75-3a.42.42 0 0 1 .41-.33h4.39l1.08-4.4a.45.45 0 0 1 .43-.32h3c.13 0 .26.07.34.17s.1.24.08.37L11.7 6.25h3.4l1.1-4.4a.45.45 0 0 1 .42-.32h3c.13 0 .26.07.34.17s.1.24.08.37L19 6.25h4.16c.14 0 .26.07.34.16.08.11.1.25.08.38z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPicardieCursus as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPlaceholder: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPlaceholder;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPlaceholder = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-placeholder_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M11.945 22.68C6.048 22.578 1.348 17.632 1.45 11.635 1.545 5.782 6.187 1.058 11.945.96a10.4 10.4 0 0 1 4.572 1.051 1.38 1.38 0 0 1 .71 1.802 1.34 1.34 0 0 1-1.88.666A7.924 7.924 0 0 0 4.71 8.325a8.18 8.18 0 0 0 3.765 10.819 7.927 7.927 0 0 0 10.663-3.849 8.2 8.2 0 0 0 .773-3.475 6 6 0 0 0-.269-2.117 1.375 1.375 0 0 1 .869-1.738 1.34 1.34 0 0 1 1.691.887c.297.95.431 1.944.397 2.939.029 5.983-4.718 10.86-10.602 10.889z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M19.087 7.325c.786 0 1.422-.647 1.422-1.445s-.636-1.445-1.422-1.445-1.421.647-1.421 1.445.636 1.445 1.421 1.445" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-placeholder_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconPlaceholder as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPoll: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPoll;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPoll = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M13.78 21.33H3.75q-1.56 0-2.64-1.1T0 17.58V7.53q0-1.56 1.1-2.64t2.64-1.11H10q.53 0 .9.38t.38.87-.39.89-.89.38H3.75q-.5 0-.89.36t-.36.87v10.05q0 .5.36.87t.9.36h10.02q.5 0 .87-.36t.38-.87v-3.77q0-.5.39-.87t.88-.38.87.38.36.87v3.77q0 1.56-1.1 2.65t-2.65 1.1m-3.56-5.24q-.7 0-1.18-.48l-3.32-3.32q-.48-.53-.48-1.2t.48-1.18 1.16-.48 1.17.48l1.8 1.78 4.34-6.83q.33-.6 1-.8t1.28.13.8 1-.17 1.28l-5.41 8.75q-.44.87-1.47.87" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPoll as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconPresences: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPresences;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPresences = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-presences_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M13.44 11.529a4.268 4.268 0 1 0-6.035-6.036 4.268 4.268 0 0 0 6.036 6.036Z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M20.386 5.243V4.29c0-.977-.725-1.824-1.679-1.887-1.014-.063-1.863.765-1.863 1.76V5.24c.063 3.791-.765 6.524-2.382 7.87-.207.166-.414.332-.643.495a6.05 6.05 0 0 1-3.417 1.036 6.28 6.28 0 0 1-3.562-1.132.7.7 0 0 0-.743-.04c-1.545.863-2.737 2.308-2.737 4.593v3.128c0 .491.4.891.89.891h12.345c.495 0 .89-.392.89-.89V18.06c0-.166 0-.31-.021-.455-.082-1.265.185-2.527.89-3.562 1.41-2.111 2.093-5.074 2.032-8.8" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-presences_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconPresences as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconProeps: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconProeps;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconProeps = ({
|
|
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", { d: "M2.74 2.46c-.87 0-1.56.74-1.56 1.68v5.24c0 .94.7 1.68 1.56 1.68h9.3c-.19.22-.88.92-1.7 1.71-.96.96-1.78 1.73-1.78 1.76a40 40 0 0 0 4.55-2.65c.28-.22.57-.39.64-.39.15 0 .56.32.56.44 0 .17-.53.53-1.61 1.03-.63.3-1.1.56-1.06.58.1.07 1-.07 1.75-.27 1.2-.3 1.83-.64 2.1-1.15.12-.29.07-.5-.24-.87l-.15-.19h6.76c.86 0 1.56-.74 1.56-1.68V4.14c0-.94-.7-1.69-1.56-1.69H2.74zm8.56 1.41c.27.03.53.08.75.15.43.19.89.62 1.08 1 .24.49.24.51-.12.51-.17 0-.41.05-.53.1-.27.12-.7.55-.87.94l-.14.29-.02-.44c-.03-.36-.05-.5-.17-.6-.17-.19-.5-.19-.7-.02-.14.12-.14.17-.14 1.95v1.8H9.9c-.3 0-.72.02-.96.05l-.46.05V3.92h.96c.82 0 .99 0 .99.1 0 .12.02.12.24-.03.12-.07.36-.12.62-.12zm-8.58.03 1.9.02c1.8.03 1.9.03 2.16.17.41.22.75.58.96.99.15.3.17.45.17.91 0 .65-.14 1.01-.58 1.47-.45.48-.72.57-1.77.6l-.9.02v1.47h-.55c-.31 0-.74.02-.98.05l-.41.04zm14.2.02c.47 0 .92.12 1.36.34a3.3 3.3 0 0 1 1.49 1.68c.02.1.12.12.48.12.46 0 .46 0 .82.32l.36.33-.36.32-.36.33-.41-.02-.44-.03-.1.37c-.06.19-.18.48-.3.64-.22.34-.75.85-1.04 1.01-.22.12-.24.12-.36 0a3.4 3.4 0 0 1-.31-.52c-.17-.46-.48-.8-.68-.8-.04 0-.16.07-.26.17-.22.24-.22.7 0 1.18l.17.33h-.34a2.7 2.7 0 0 1-1.85-.84 2.94 2.94 0 0 1-.8-1.49l-.04-.29.16.12c.34.3.77.39.92.22.26-.31.07-.87-.44-1.28-.19-.14-.38-.26-.43-.28-.12-.05.27-.7.65-1.06a3.2 3.2 0 0 1 2.12-.87zM4.67 5.53v.99h.53c.46 0 .56-.02.68-.14.16-.17.16-.49.02-.7-.07-.12-.14-.15-.65-.15zm12.27.3c-.46 0-.67.11-.94.5-.34.48-.07 1.22.53 1.46.46.2 1.18-.1 1.4-.55.11-.29.07-.74-.1-.98-.27-.32-.48-.44-.9-.44zm-4.02.64H13c.04 0 .11.03.19.05.14.07.16.14.19.43v.34h-1.4l.15-.22c.21-.36.53-.6.8-.6zM2.86 14.3c-.89 0-1.6.72-1.6 1.6v5.13c0 .89.71 1.64 1.6 1.64h19.22c.89 0 1.63-.75 1.63-1.64V15.9c0-.9-.74-1.61-1.63-1.61H2.86zm16.55 1.13c.86 0 1.73.16 2.6.48l-.87 1.15a3.06 3.06 0 0 0-1.4-.38c-.24 0-.43.04-.62.12-.2.1-.3.21-.3.38 0 .15.13.3.4.39.11.05.47.14 1.08.26.77.17 1.3.39 1.6.68.3.24.44.55.44.93 0 .97-.63 1.61-1.83 1.9a6.3 6.3 0 0 1-4.23-.5l.91-1.2c.65.4 1.28.6 1.88.6a2 2 0 0 0 .7-.12c.24-.12.33-.27.33-.44s-.12-.3-.36-.43c-.2-.07-.5-.17-.94-.26a8 8 0 0 1-.98-.22c-.22-.07-.41-.14-.56-.24-.45-.24-.67-.62-.67-1.15s.24-.97.7-1.33c.53-.4 1.22-.62 2.11-.62zm-16.19.14h4.7v1.25H5.35v.99h2.4v1.25h-2.4v1.03H7.9v1.25H3.22zm6.04 0h3.39c.98 0 1.7.2 2.21.6.43.34.65.77.65 1.3s-.17.96-.53 1.3c-.46.43-1.2.67-2.26.67H11.4v1.9H9.26zm2.14 1.2v1.45h.7c.48 0 .79-.08.96-.22a.64.64 0 0 0-.05-1.03c-.17-.12-.46-.2-.9-.2z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconProeps 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 SvgIconPronote: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPronote;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPronote = ({
|
|
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", { d: "M5.24 2.43c-.91 0-1.15.07-1.3.39-.1.24-.19 2-.19 4.28 0 3.5.05 3.87.31 3.97.32.07 1.16-.03 1.64-.17.14-.05.21-.48.21-1.2V8.57l.68-.22c1-.29 1.7-1.23 1.83-2.4.1-.75.14-.34.3 1.94.13 1.59.27 2.98.32 3.1.15.27 1.37.3 1.97.03.27-.12.46-.36.46-.53 0-.24.07-.22.36.1.63.72 2.34.4 2.34-.39 0-.24-.24-.87-.53-1.4l-.53-.96.36-.62c.46-.87.46-2.43 0-3.3-.6-1.13-1.16-1.4-2.77-1.34-1.58.05-2 .29-2.18 1.3l-.12.6L8 3.8c-.55-.93-1.42-1.37-2.76-1.37m11.93.27c-.1 0-.2 0-.29.02-1.66.46-2.5 2-2.64 4.74-.08 1.58-.05 1.9.29 2.47.19.39.62.82.93.97 1.45.72 3.18.02 3.88-1.52.57-1.3.57-4.23 0-5.27a2.91 2.91 0 0 0-2.17-1.41m-5.8 2.6c.3 0 .68.47.53.67-.26.3-.8.12-.8-.27 0-.24.13-.4.27-.4m-5.4 0c.21.02.48.23.48.5 0 .4-.51.38-.65 0-.05-.2-.05-.39 0-.43.04-.08.12-.08.16-.08zm11 .21c.06 0 .08 0 .13.02.31.05.4.22.45.87.03.43 0 1.1-.04 1.5-.1.45-.22.66-.46.66-.53 0-.6-.3-.46-1.78.1-1.05.15-1.27.39-1.27zM5.85 11.74c-.1 0-.21.02-.36.05-.82.19-1.03.62-.91 1.78.07.52.07.96.02.96s-.33-.56-.65-1.23c-.53-1.18-.55-1.23-1.25-1.23-1.3 0-1.4.39-1.08 4.4.41 4.82.31 4.38.96 4.38.32 0 .77-.07.99-.12.4-.14.43-.21.36-1.37-.1-1.32-.07-1.32.8.36.43.82.55.94 1.1.94.91 0 1.18-.2 1.18-.8v-.55l.48.7c.26.36.65.75.84.84.22.1.77.2 1.25.2a2.74 2.74 0 0 0 2.67-1.78c.34-.8.36-1.11.27-2.65-.15-2-.46-2.76-1.38-3.46-1.6-1.25-3.82.29-4.1 2.84-.13.98-.15.86-.32-1.45s-.27-2.84-.87-2.81m7.34.1-.24.52a3.8 3.8 0 0 0-.27 1.4c-.02.8.03.86.53.96l.53.12v2.74c0 1.52.02 2.84.05 2.91.07.27 1.61.17 1.8-.1.1-.14.24-1.39.34-2.8l.14-2.56.53-.07c.8-.1.99-.38.99-1.44 0-.55-.1-1.08-.22-1.18a8.3 8.3 0 0 0-2.2-.36zm7.48.86c-.77 0-1.64.05-1.95.12-.94.2-.99.53-.77 4.62.12 2.04.24 3.77.29 3.87.1.14 2.43.05 3.63-.17l.6-.1-.07-1.17-.05-1.16-1.03-.07c-1.18-.07-1.35-.34-.32-.53.7-.14.72-.17.72-.94 0-1.17-.14-1.42-.81-1.42-1 0-.7-.38.33-.45.9-.05.94-.1.99-.65a4.6 4.6 0 0 0-.05-1.28l-.12-.67h-1.4zM9.62 15.42c.1-.03.24.04.36.14.2.2.24.6.22 1.59-.05 1.32-.24 1.68-.65 1.22-.27-.3-.3-2.74-.03-2.93.03-.02.05-.02.1-.02" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPronote 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 SvgIconPublic: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconPublic;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconPublic = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 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", { d: "M9.76 2.82a9.66 9.66 0 0 1 9.74 9.71 9.67 9.67 0 0 1-9.74 9.76A9.72 9.72 0 0 1 0 12.53a9.71 9.71 0 0 1 9.76-9.71m.56 17.65c1.56 0 2.4-2.72 2.79-4.07-.94.1-1.86.15-2.8.17v3.9zm-3.1-1.97c.45 1.08 1.15 1.97 1.94 1.97v-3.9c-.91-.02-1.85-.07-2.76-.17.19.77.45 1.47.81 2.1zm-5.34-4.86c.38.45 1.37 1.05 3.17 1.37a17.8 17.8 0 0 1-.1-4.04 14 14 0 0 1-2.8-.77 8.3 8.3 0 0 0-.27 3.44m4.08-1.04c0 .9.05 1.8.17 2.62a22 22 0 0 0 3.03.32v-4.26a34 34 0 0 1-3.17-.2c0 .54-.03 1-.03 1.52m3.15-7.96c-1.34.56-2.5 2.65-2.98 5.42.99.1 2.02.14 3.03.19v-5.6h-.05zm1.98.44c-.27-.2-.56-.44-.77-.44v5.6a61 61 0 0 0 3.05-.19C13 7.9 12.12 6 11.1 5.08zm-.77 10.46c1.05-.05 2.04-.12 3.03-.3.14-.79.19-1.72.19-2.64 0-.53 0-.98-.05-1.49-1.01.1-2.07.15-3.17.17zm4.23-4.57a20.4 20.4 0 0 1-.1 4.09c3.13-.53 3.25-1.25 3.25-2.53a7.3 7.3 0 0 0-.36-2.28c-.56.24-1.59.6-2.8.72zm2.38-1.78a7.63 7.63 0 0 0-4.3-4.04c.9 1.18 1.46 2.84 1.77 4.78 1.61-.28 2.29-.57 2.53-.74M4.16 6.95A6.9 6.9 0 0 0 2.6 9.16c.26.24.72.27 2.47.75.34-1.93.92-3.51 1.8-4.71-1 .48-1.92.89-2.7 1.75zm0 11.18c.72.8 1.61 1.33 2.55 1.74a9.3 9.3 0 0 1-1.44-3.66c-1.2-.27-2.29-.6-3.01-.99a7.65 7.65 0 0 0 1.9 2.91m11.2 0a6.9 6.9 0 0 0 1.81-2.78c-.8.36-1.8.67-2.91.9a9.8 9.8 0 0 1-1.5 3.62c.95-.41 1.88-.94 2.6-1.74" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconPublic 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 SvgIconQwant: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconQwant;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconQwant = ({
|
|
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", { d: "M22.05 19.08a1.3 1.3 0 0 1-.17-.36c-.05-.3.21-.56.36-.8.17-.27.32-.55.45-.83a11.5 11.5 0 0 0 1.24-5.63 12 12 0 0 0-.8-4.13 11.5 11.5 0 0 0-2.01-3.3 10.6 10.6 0 0 0-2.73-2.28A11.3 11.3 0 0 0 14.9.37a13 13 0 0 0-4-.27 11.74 11.74 0 0 0-7.34 3.27 11.48 11.48 0 0 0-3.5 7.22 13 13 0 0 0 .25 4.1c.32 1.3.83 2.57 1.56 3.71a11 11 0 0 0 2.64 2.87 11.8 11.8 0 0 0 5.48 2.24c.66.1 1.34.15 2.01.13a17 17 0 0 0 1.92-.17 10 10 0 0 0 1.05-.2c.28-.08.6-.14.71-.44a.84.84 0 0 0-.15-.7l-.41-.84c-.27-.5-.51-1.03-.77-1.54-.06-.15-.2-.26-.34-.3s-.3-.02-.43.02l-.5.1a8 8 0 0 1-2.13 0 7.76 7.76 0 0 1-6.12-4.64 7.95 7.95 0 0 1-.58-3.96 7.7 7.7 0 0 1 1.44-3.68 7.81 7.81 0 0 1 6.99-3.17 7.74 7.74 0 0 1 3.49 1.18 7.77 7.77 0 0 1 3.56 6.12 7.65 7.65 0 0 1-.61 3.5 7.3 7.3 0 0 1-1.98 2.73.93.93 0 0 0-.3.36.57.57 0 0 0 .02.4l2.22 4.39c.11.22.22.56.45.69.17.07.35.1.54.07h3.4a.56.56 0 0 0 .56-.54.53.53 0 0 0-.07-.28c-.2-.41-.43-.8-.64-1.22l-1.26-2.44z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconQwant 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 SvgIconQwantJunior: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconQwantJunior;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconQwantJunior = ({
|
|
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", { d: "M22.05 19.07a1.3 1.3 0 0 1-.17-.35c-.05-.3.21-.56.36-.8a11.5 11.5 0 0 0 1.69-6.46 11.47 11.47 0 0 0-5.54-9.7 11.4 11.4 0 0 0-3.5-1.4c-1.32-.3-2.67-.37-4-.26A11.73 11.73 0 0 0 .06 10.6a12.2 12.2 0 0 0 1.8 7.8 11.04 11.04 0 0 0 6.06 4.63c.68.23 1.37.38 2.07.47a11.9 11.9 0 0 0 3.92-.03c.36-.06.71-.12 1.05-.21.28-.08.6-.13.71-.43a.84.84 0 0 0-.15-.7l-.41-.84c-.26-.5-.5-1.03-.77-1.54-.06-.15-.19-.26-.34-.3s-.3-.02-.43.02c-.17.04-.34.05-.5.1a7.77 7.77 0 1 1-.4-15.45 7.75 7.75 0 0 1 4.47 13.53c-.13.09-.23.2-.3.35a.56.56 0 0 0 .02.4l2.21 4.39c.11.22.23.56.45.7.17.07.36.09.54.07h3.4c.3 0 .54-.23.56-.55a.6.6 0 0 0-.07-.28c-.2-.41-.43-.8-.64-1.22z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconQwantJunior 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 SvgIconRack: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconRack;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconRack = ({
|
|
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", { d: "M13.73 13.42h4.23l-.02-.12q-.02-.07-.05-.1l-2.84-6.66h-9.5l-2.83 6.67q-.03.02-.05.1t-.02.11h4.23L8.15 16h4.3zm6.88.39v6.46q0 .37-.24.6t-.63.27H.86q-.36 0-.6-.26t-.26-.6V13.8q0-.82.33-1.64l3.2-7.4q.12-.34.48-.58t.7-.22h11.18q.34 0 .7.22t.48.57l3.2 7.41q.34.82.34 1.64z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconRack 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 SvgIconRbs: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconRbs;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconRbs = ({
|
|
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", { d: "M7.45 1.8c-.4.17-.48.44-.48 2.34 0 1.66.03 1.9.22 2.07.12.12.36.22.53.22.7-.03.82-.39.82-2.41 0-1.64 0-1.7-.3-2s-.43-.33-.79-.21zm8.42.15c-.29.22-.29.31-.34 1.88-.04 1.78 0 2.11.3 2.4.26.27.81.24 1.05-.02.17-.2.2-.53.2-2.1 0-2-.05-2.18-.6-2.33a.64.64 0 0 0-.6.17zM3.25 4.4a2.7 2.7 0 0 0-.9.84c-.3.5-.35.73-.4 1.78l-.05 1.2h20.25l-.05-1.17c-.05-1.42-.31-2.02-1.08-2.53-.46-.31-.6-.33-1.97-.36l-1.5-.05v.97c0 .86-.02 1-.3 1.32-.4.48-1 .6-1.47.31s-.63-.65-.63-1.68v-.9H8.9v.9c0 1.03-.12 1.4-.63 1.68-.48.29-1.05.17-1.46-.31-.27-.32-.32-.46-.32-1.32v-.94H5.15c-1.2 0-1.45.02-1.9.26M1.92 14.98c0 6.9.03 6.98.84 7.72.27.24.63.48.82.53.43.12 16.47.12 16.9 0 .18-.05.54-.29.8-.53.84-.74.84-.81.84-7.72V8.95H1.92zm5.03-3.43-.02 2.02H2.6l-.05-2.02-.02-2h4.45zm4.83-.1v1.9l-.62-.31c-.87-.41-2.31-.44-3.06-.03a6 6 0 0 1-.57.27c-.05 0-.08-.84-.08-1.88V9.55h4.33zm4.9.1-.02 2.02-2.14.04-2.14.03V9.55h4.33l-.02 2zm4.82 0-.03 2.02h-4.2l-.05-2.02-.03-2h4.33zM6.25 14.77a3.6 3.6 0 0 0-.17 3.1c.08.2-.04.22-1.73.22H2.52v-3.97h4.1zm5.53 1.32v2H7.46v-3.97h4.32zm4.93 0v2h-1.87c-1.73 0-1.88-.03-1.78-.22.04-.12.16-.53.24-.92.19-.88.07-1.73-.36-2.38l-.32-.45h4.1v1.97zm4.81 0v2H17.2v-3.97h4.33v1.97zM6.76 18.76c.2.17.21.4.21 2.12v1.92l-1.6-.05c-1.4-.02-1.67-.07-1.95-.29-.75-.55-.82-.77-.87-2.4l-.05-1.5h2.02c1.71 0 2.05.03 2.24.2m5.02-.05c0 .34-.81.84-1.58.99-.68.14-.73.36-.08.29.44-.05.99-.24 1.6-.56.04-.02.06.73.06 1.66v1.69H7.46v-1.64c0-1.51.02-1.63.21-1.56.9.36 1.23.46 1.42.38.17-.07.02-.19-.67-.53-.53-.26-.92-.52-.94-.67-.02-.2.14-.2 2.14-.2 1.73 0 2.16.03 2.16.15m4.93 1.95v2.12h-4.33v-1.93c0-1.06.05-2 .08-2.09.07-.17.38-.2 2.16-.2h2.1v2.1zm4.81-.6c-.05 1.63-.14 1.85-.89 2.4-.29.24-.5.27-1.85.27h-1.51l-.05-2.1-.03-2.06h4.36z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconRbs 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 SvgIconResidenceArtiste: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconResidenceArtiste;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconResidenceArtiste = ({
|
|
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", { 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
|
+
SvgIconResidenceArtiste 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 SvgIconRessourcesdepartementale91: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconRessourcesdepartementale91;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconRessourcesdepartementale91 = ({
|
|
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", { d: "m10.36.99-.07.12a1 1 0 0 0-.1.12c-.02.02 0 .02.08.07l.12.05v.55l-.07.07-.1.08-.05-.1c-.03-.07-.05-.1-.07-.1s-.14.03-.26.03l-.24.02-.03.15v.12s-.07 0-.14-.03l-.15-.02L9.26 2l-.05-.1-.29.27c-.24.21-.29.26-.29.29s0 .07.03.1v.09h-.22l-.1-.07c-.04-.05-.07-.08-.1-.08 0-.02-.88.34-.86.36l.24.17.27.2.02.02v.36l-.21.05-.22.05.17.14.19.12-.2.29-.16.29-.02.17c-.03.1-.03.16-.03.16 0 .03-.02.03-.1.03h-.07l-.16-.24-.17-.24-.1.31-.1.31h-.11l-.2-.12a.7.7 0 0 0-.19-.12s-.02.05-.07.1c-.02.05-.05.12-.07.12l-.07.02-.1.05c-.02 0-.05.07-.1.15l-.07.14-.05.02-.12.03-.02.02-.14.53c-.05.29-.12.53-.12.53L5 6.45l-.28-.1c-.03 0-.2.58-.2.58s.1.02.2.07l.17.05v.14c.02.07.02.15.02.15s.12 0 .27.02h.24v.12l-.03.12.24.34.58.8-.03.09a.5.5 0 0 0-.04.14C6.1 9 6.1 9 6.02 9h-.24c0 .02-.05.02-.1.02h-.07l-.15.22c-.1.1-.16.19-.16.19l.04.19.08.2-.2.14-.52.81.02.34v.36s-.2.03-.41.03l-.4.04-.18-.16-.14.12c-.07.07-.14.12-.14.1l-.27-.18-.24-.14c-.02-.02-.05.02-.1.1-.04.04-.1.1-.1.12-.02 0-.04 0-.3-.17-.15-.1-.3-.17-.3-.17-.02 0-.16.82-.16.84l.26.2.27.19.4.16.4.17s-.08.03-.18.03l-.12.02-.36.34-.33.33-.08.12c-.07.12-.07.12-.02.3l.02.11-.16.39-.15.36v.43h-.1l-.11.02-.17.3-.17.3c0 .03 0 .05.05.1l.05.07-.08.05c-.02.03-.1.07-.12.1-.04.05-.04.07-.04.1-.03.04-.03.04.3.07.15 0 .27.02.27.02l-.07.07c-.05.05-.05.07-.05.1l.17.31.15.3.07.04c.07.02.1.05.1.05 0 .02 0 .12.02.21v.2l-.07.1-.08.11.03.07c.02.03.02.05.02.07h-.17c-.1.03-.16.03-.16.03s0 .14.02.34c.02.16.02.3.02.33l.03.07c.02 0 .02 0 .02.03s.05.02.05 0c0-.03.02-.03.1-.03.04 0 .19 0 .33.03.24 0 .3 0 .39.02l.53.17s-.03.05-.03.1l-.05.07v.65l.17.36.15.4.12.06h.07l.02.04v.05l-.24.1-.24.1v.16h-.1a.1.1 0 0 0-.07.03c-.02 0-.04.43-.04.43 0 .02.19-.03.45-.07l.46-.08-.1.34-.07.34c0 .02.05.07.1.12l.1.07-.1.05-.12.02v.1s-.17.02-.36.02l-.36.05-.12-.07-.12-.05v.26l.07.05c.07.05.07.07.07.1v.05h-.1c-.1 0-.07 0-.19.19l-.05.1.12.21.12.2.1.02c.17.04.17.04.14.07s-.02.02-.16-.03c-.08-.04-.15-.07-.15-.04 0 0 .05.07.12.24.03.02.05.1.07.14l.03.1h.29l.02.02c0 .02.03.05.07.05h.32c.07.02.07.02.1.07.02.02.02.02.06.02h.15l.07-.02.02-.02c0-.03.03-.05.03-.08.02 0 .29-.04.58-.12l.57-.12.1.12.12.1s.1-.1.19-.22l.22-.21s.26.02.55.07l.58.1c.03 0 .19-.08.36-.15l.33-.14.82.02c.46.03.82.03.82.03l.12-.36-.14-.12-.15-.1v-.2s.05.03.1.03l.1.05.33-.05c.22 0 .36-.02.36-.02l.1-.39c.02-.21.07-.38.07-.4l.17-.1.19-.07v-.1l.02-.1s.08.05.17.15l.15.12h.43l.02.14c.03.12.03.12.05.12s.12 0 .24-.02h.24l-.02.31v.31s.04.05.12.1l.12.07-.03.39c0 .38 0 .38.03.36l.7-.75c0-.02.14-.02.28-.02l.3-.03.04.05c.02.03.07.05.07.05l.34-.4.34-.42h.29l.21.2.53.5.31.31h.3l.33-.1.33-.09c.03 0 .15-.12.27-.24l.24-.24-.02-.07-.03-.1.22-.19.24-.24.05-.05h.1c.06.03.18.03.28.05h.2s-.06-.12-.1-.29l-.12-.29.1-.07.09-.1.07.03.12.05.07.04.03-.02c0-.02 0-.22.02-.43l.02-.41.1-.2.43-.14c.27-.1.44-.17.46-.19.02 0 .17-.29.17-.31l-.07-.1c-.1-.1-.1-.1-.08-.14.1-.24.1-.24.15-.24 0 0 .17.02.36.07.31.05.31.05.34.02l.29-.3.26-.3h.63c.02-.02-.72-1.27-.75-1.27l-.17-.05-.16-.02.02-.12v-.15l-.1-.05c-.04-.02-.1-.04-.1-.07l.1-.19.08-.2v-.2l-.27-.27.12-.17.14-.17.1-.65.07-.65.1-.38.1-.44h-.2l-.14-.28-.07-.03c-.05 0-.1 0-.12-.02l.02-.22.02-.19.05-.07c.05-.03.1-.07.12-.1l.05-.05v-.1c0-.04 0-.16-.02-.26v-.19l-.05-.02c-.07-.05-.07-.05-.05-.2v-.1l.24-.3.24-.34.02-.29.03-.31-.05-.15c-.05-.07-.07-.14-.07-.14s.1-.03.2-.03l.16-.04c.02 0 .1-.15.21-.34l.2-.34v-.6l-.39-.1v-.11c0-.08.03-.22.03-.34v-.22l.14-.1.12-.11s-.02-.1-.07-.22l-.1-.22.03-.02c.02 0 .12-.1.21-.17l.17-.17-.17-.04-.19-.08-.05-.12-.07-.12.02-.12.1-.26c.1-.14.1-.17.17-.17.02 0 .02 0 .02.03.03.04.03.07.1.1.02.02.07.02.07.02s0-.08.02-.17c.05-.2.05-.2.08-.2.07.03.07.03.12.17l.07.12c.02.03.29.08.31.08l.05-.22.02-.2.27.03.05.03v-.15c0-.14 0-.14-.05-.29-.03-.1-.05-.17-.03-.17l.1-.04.12-.03v-.43l-.24.14-.22.15h-.38l-.05.1c-.07.07-.05.07-.26.1h-.15c-.02.01-.02 0 .05-.08l.1-.07-.05-.05s-.1-.1-.17-.2l-.14-.16-.2-.05-.16-.05V4.2l-.12-.05c-.12-.02-.12-.02-.15-.04l-.1-.34c-.11-.27-.11-.29-.16-.55l-.05-.3h-.31l-.41.2-.43.17h-.44l-.43.29-.05-.05a.5.5 0 0 0-.1-.12l-.06-.07-.39.19c-.22.1-.5.21-.67.26l-.3.12-.28-.1-.27-.09-.1-.22-.06-.21v-.34c0-.19-.03-.38-.03-.46v-.1h-.05c-.02 0-.1 0-.12.03h-.1l-.28.24-.2-.02c-.09 0-.16-.03-.16-.03-.02 0-.14-.1-.27-.21l-.26-.2-.05.05a.6.6 0 0 0-.14.12l-.1.08-.05.19-.04.2c.02 0 .04.04.07.06l.07.05-.07.02-.07.05v.14h-.1c-.05 0-.07-.03-.07-.03l-.05-.26c-.02-.12-.05-.22-.07-.22l-.27.12-.29.15-.19-.03h-.2l-.01-.05c0-.02-.03-.04-.03-.07 0 0 .12-.05.27-.14l.24-.12v-.19l.02-.05-.22-.2-.24-.21-.02-.02-.38-.08-.37-.04-.21-.2-.24-.16-.05-.2L11.6 1h-.1l-.04.14c0 .1-.03.17-.03.17l-.16-.05c-.08 0-.15-.02-.15-.02-.02 0-.05.04-.1.07l-.07.05-.12-.08-.1-.1-.09-.18h-.26zM9.74 9.9c.26 0 .5.05.72.14.24.08.43.2.6.36q.3.3.48.78c.1.33.17.74.17 1.25 0 .48-.07.89-.17 1.3-.12.38-.26.7-.5.98-.22.27-.48.48-.82.65-.34.14-.72.22-1.18.22-.14 0-.26 0-.36-.03-.12 0-.22-.02-.31-.05v-.72h.04c.08.05.17.07.3.12.14.03.28.05.43.05.55 0 .96-.17 1.27-.48.31-.34.48-.77.53-1.35-.22.15-.43.24-.63.3-.21.06-.43.09-.67.09a2.3 2.3 0 0 1-.6-.08c-.2-.04-.36-.11-.55-.23a1.8 1.8 0 0 1-.48-.58c-.12-.24-.17-.5-.17-.82 0-.55.2-1.01.55-1.37.36-.34.82-.53 1.35-.53m4.76.1h.55v4.93h1.13v.55h-2.96v-.55h1.13v-3.66h-1.12v-.5a3.6 3.6 0 0 0 .89-.15c.12-.07.19-.14.26-.24s.1-.21.12-.38m-4.76.5c-.36 0-.65.12-.84.34-.22.21-.32.53-.32.91 0 .24.05.43.1.58.07.14.2.26.34.38.12.08.24.12.36.15.14.02.29.05.43.05.2 0 .39-.03.6-.08.2-.04.36-.12.53-.24l.02-.14v-.2c0-.38-.04-.67-.12-.9-.07-.22-.19-.42-.3-.54s-.25-.19-.4-.24a1.1 1.1 0 0 0-.4-.07" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconRessourcesdepartementale91 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 SvgIconSacoche: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconSacoche;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconSacoche = ({
|
|
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", { d: "M3 22.77c.03-.02.1-.02.15 0s.05.05-.05.05c-.07 0-.12-.02-.1-.05m3.47 0c.02-.02.1-.02.14 0 .08.03.05.05-.04.05-.08 0-.12-.02-.1-.05m6.95 0c.02-.02.1-.02.14 0s.05.05-.05.05c-.07 0-.12-.02-.1-.05zm3.49 0c.04-.02.19-.02.28 0 .08.03.03.05-.14.05-.14 0-.22-.02-.14-.05m3.46 0c.02-.02.1-.02.14 0s.03.05-.05.05c-.07 0-.12-.02-.1-.05zm-17.63-.26a1.6 1.6 0 0 1-.34-2.89c.8-.52 1.8-.21 2.26.68.2.34.22.46.17.77-.02.4-.17.74-.43 1.03-.36.41-1.13.6-1.66.41m3.49 0a1.64 1.64 0 0 1-1.08-2c.1-.33.5-.81.84-.98.31-.2 1.15-.17 1.44 0 1.18.72 1.15 2.26-.02 2.86-.39.2-.85.24-1.18.12m3.3-.07c-.7-.31-1.02-.9-.94-1.66.07-.84.7-1.4 1.56-1.4.62.03 1.06.27 1.34.75.51.87.17 1.9-.76 2.33-.44.2-.75.2-1.2-.02m3.62.1a1.74 1.74 0 0 1-1.15-1.4c-.07-.31.12-.91.36-1.2.34-.41.67-.55 1.23-.55.43 0 .57.04.81.21.39.24.63.58.75 1.01.29 1.16-.87 2.26-2 1.93m3.51 0c-.55-.15-.9-.51-1.1-1-.24-.57-.1-1.22.34-1.67.36-.37.6-.46 1.15-.46.43 0 .55.02.82.2.57.35.82.98.72 1.75-.05.28-.12.4-.43.72-.49.45-.99.62-1.5.45zm3.47.02c-.77-.27-1.23-.84-1.23-1.56 0-.85.53-1.5 1.3-1.6 1.5-.2 2.45 1.45 1.51 2.58-.38.46-1.1.72-1.58.58M7.79 19.07a2.2 2.2 0 0 1-.94-.53c-.38-.38-.6-1.2-.48-1.8l.07-.34-.38-.02c-.41-.03-.46.02-.46.4 0 .27-.43 1.02-.74 1.33-.75.77-1.69 1.06-2.62.77-.82-.24-1.28-.9-1.28-1.78a2 2 0 0 1 .65-1.64c.41-.4 1.04-.74 1.42-.74.12 0 .17-.02.17-.12 0-.07.07-.22.12-.29.1-.14.17-.17.43-.14.48.07.94.31 1.3.67.4.4.82.6 1.32.6.44 0 .58-.05.94-.36.8-.7 2.29-.91 2.84-.46s.34 1.1-.46 1.4c-.17.07-.21.05-.33-.07-.1-.08-.15-.2-.12-.27.07-.22-.08-.34-.39-.34q-.57.045-.96.72c-.36.7-.36 1.23.05 1.66.21.22.29.27.55.27.2 0 .48-.07.7-.2a6.1 6.1 0 0 0 1.78-1.65c.4-.53.48-.7.7-1.95l.11-.6.05-.24h-.34c-.26 0-.36-.05-.53-.22-.26-.24-.36-.7-.24-.94.1-.16.2-.19.48-.04.27.14.97.14 1.52 0 .24-.05.46-.1.5-.08.15.05.13.39 0 .94a36 36 0 0 0-.4 1.93l-.05.29.31-.27c.43-.4.72-.55 1.2-.55.46 0 .75.12.92.43.19.29.31 1.01.31 1.8 0 .75.05.9.27.77.26-.14.93-.96 1.17-1.44.3-.58.8-1.08 1.33-1.35.38-.19.53-.21 1.05-.21.58 0 .65 0 .92.2.29.18.53.62.53.86 0 .48-.44 1.08-.99 1.4-.38.23-1 .45-1.35.47s-.4.17-.19.39c.58.62 2.43-.41 3.59-2.02.14-.22.33-.41.38-.43.12-.05.58.19.63.33.16.5-1.88 2.58-3.01 3.08-.67.29-1.42.36-2 .22a1.67 1.67 0 0 1-.98-.87l-.07-.2-.39.35c-.91.81-1.8.62-2.1-.46-.04-.27-.09-.75-.11-1.16 0-.74-.03-1.05-.15-1.05s-.62.53-.89.89a8.6 8.6 0 0 0-1.08 2.14c0 .21-.05.29-.19.36-.27.14-.67.12-.89-.07-.2-.15-.2-.17-.17-.53.03-.2.07-.44.1-.53.05-.17-.03-.12-.39.21-.48.46-.89.72-1.37.92-.4.17-1.06.24-1.37.17zm-4.35-1.1c.5-.22.91-.99.91-1.71 0-.27-.02-.31-.29-.48-.33-.22-.55-.24-.91-.05-.91.46-1.18 1.83-.46 2.21.24.15.46.15.75.03m15.44-1.76c.31-.17.6-.5.6-.72 0-.17-.03-.2-.27-.2-.21 0-.31.08-.53.32-.24.22-.5.67-.5.82 0 .05.48-.1.7-.22m-15.75-4.6c-.94-.23-1.52-.62-1.52-1a4 4 0 0 1 .5-1.35c.08-.07.22-.17.37-.24.24-.1.26-.07.74.17.46.24.6.29 1.01.29.58 0 .82-.12 1.06-.6.34-.65.2-.92-.8-1.42a3.52 3.52 0 0 1-1.63-1.54c-.17-.36-.2-.5-.2-1.1a3.3 3.3 0 0 1 1.07-2.48c1.08-1.04 3-1.2 4.25-.39.41.27.41.43.1 1.2-.24.58-.31.7-.5.77-.34.15-.49.12-.9-.07-.7-.36-1.34-.22-1.63.31-.27.53-.07.84.86 1.3.63.34 1.3.94 1.52 1.37.58 1.16.24 2.86-.8 3.9a3.63 3.63 0 0 1-3.5.89zm14.47.06a3.52 3.52 0 0 1-2.72-2.91 7 7 0 0 1 1.45-5.53c.53-.63.8-.85 1.51-1.23a4 4 0 0 1 2.29-.53c.93 0 1.44.12 1.92.4.46.27.46.56.07 1.48-.21.45-.24.5-.6.6-.21.05-.31.05-.6-.07a2.53 2.53 0 0 0-1.63-.12C18.23 4.09 17.5 5 17.22 6.5c-.3 1.37 0 2.43.74 2.8.41.2 1.42.2 1.97-.01.44-.17.65-.15.94.1.2.14.27.42.3 1.17 0 .38-.03.46-.2.58-.6.5-2.3.74-3.37.53m-10.2-.32c-.11-.14-.21-.31-.21-.4 0-.25 3.87-9.12 4.06-9.26.12-.1.3-.12.92-.12.77 0 1.13.07 1.2.24l.36 2.47.22 1.54c.04.39.16 1.2.26 1.83.07.6.22 1.54.3 2.07.18 1.3.16 1.4-.1 1.66-.22.24-.22.24-.97.24-.53 0-.77-.03-.89-.12-.14-.1-.26-.53-.38-1.69-.12-1.03-.03-.93-.96-.93h-.8l-.55 1.25c-.29.67-.58 1.3-.67 1.37-.12.1-.27.12-.85.12h-.72l-.21-.27zm4.38-4.78a3 3 0 0 1-.07-.41l-.05-.29-.16.39c-.12.21-.2.4-.2.4 0 .03.12.03.24.03.22 0 .24-.03.24-.12" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconSacoche 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 SvgIconSchoolbook: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconSchoolbook;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconSchoolbook = ({
|
|
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", { d: "M18.02 8.41V6.4H6v2h12.02zm-4 6.01V12.4h-8v2.02h8.02zm-8-5.02v2.02h12V9.4zm14.03-7c1.07 0 1.97.9 1.97 1.98v12.01c0 1.08-.9 2.02-1.98 2.02H6.02L2 22.4V4.38c0-1.08.9-1.97 1.98-1.97h16.05z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconSchoolbook 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 SvgIconScolinfo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconScolinfo;
|