@edifice.io/react 2.0.0-develop-rc.14 → 2.0.0-develop-rc.16
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 +5 -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 +130 -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 +3 -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 +177 -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 +192 -248
- 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 +114 -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,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconCns: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCns;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCns = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M12.53 1.47H.93v9.21c0 10.15.1 10.63 2.15 11.88 1 .63 1.78.67 10.36.67h9.26V14.2c0-12.6.63-12.74-10.17-12.72zm5.96 2.14c.41 0 .72.17 1.1.55.61.6.73 1.13.73 3.44v2.72h-2.38v-2.4c0-2.31-.05-2.41-.77-2.31-.7.12-.77.33-.87 2.4-.1 2.3-.1 2.3-1.1 2.3h-1.01V3.84l1.27.04c.72.03 1.76-.04 2.36-.19.26-.05.48-.1.67-.07zm-12.53.12h.49c2.18.03 3 .53 3 1.9 0 .8-1.87.84-2.3.07a.94.94 0 0 0-.97-.43c-.53.1-.65.43-.65 1.83 0 1.47.1 1.7.75 1.8.48.05.79-.12.94-.6.16-.5.52-.7 1.22-.7.82 0 1.01.15.99.77 0 1.1-.41 1.57-1.71 1.95-.65.2-1.32.31-1.51.29-2.6-.31-3.32-1.2-3.13-3.97.17-2.3.67-2.88 2.89-2.9zm10.95 10.65c2.26 0 3.07.36 3.07 1.3 0 .41-.4.46-2.04.27-1.7-.2-2.05-.15-2.05.29 0 .36.32.52.97.52 1.63 0 3.1.7 3.31 1.54.27 1.04-.38 2.17-1.44 2.55-1.83.72-4.2.22-4.86-1-.33-.63-.29-.7.65-.7.58 0 1.32.19 1.69.4.72.46 1.73.17 1.73-.53 0-.3-.53-.53-1.54-.65-1.93-.21-2.55-.72-2.55-2.09 0-1.56.53-1.9 3.05-1.9z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCns as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconCollaborativeWall: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCollaborativeWall;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCollaborativeWall = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M11.71 10.46q0 1.1-.84 1.9t-2.04.82-2.05-.82-.86-1.9q0-1.13.86-1.92t2.05-.8 2.04.8.84 1.92m6.73 0q0 1.1-.84 1.9t-2.04.82q-1.2 0-2.04-.82t-.87-1.9q0-1.13.87-1.92t2.04-.8q1.2 0 2.04.8t.84 1.92m3.03 2.4V3.93q0-1.15-.43-1.66t-1.49-.48H4.65q-1.14 0-1.52.46t-.41 1.68v9.04q.57.32 1.2.53t1.08.39 1.08.24.97.14.93.05.77.03.77-.05.6-.03q.92 0 1.28.36.07.1.12.13.36.33.81.7.1-1.23 1.6-1.19l.5.03q.44.03.57.02t.6.03.73-.03.72-.05.82-.12.84-.16.89-.27.91-.36.96-.48zm2.2-.04q-1.64 2-5 3.37 1.12 3.82-.32 6.25-.87 1.51-2.45 1.97-1.4.43-2.43-.2-1.16-.67-1.1-2.2l-.03-4.38-.32-.07q-.22-.04-.3-.08l-.03 4.53q.05 1.53-1.1 2.2-1.07.63-2.46.2-1.59-.48-2.45-2-1.4-2.42-.3-6.22-3.36-1.37-5-3.37-.33-.5-.04-.86t.8.02l.16.1q.12.07.14.1V2.86q0-.97.63-1.66T3.6.53h16.85q.9 0 1.54.68t.63 1.66v9.3l.29-.2q.5-.35.8-.02t-.06.87z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCollaborativeWall as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconCommunity: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCommunity;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCommunity = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M19.21 17.92q1.1 0 1.9.8t.8 1.9-.8 1.9-1.87.78-1.9-.79-.8-1.92q0-.44.2-.94l-4.07-2.94q-1.18 1.2-2.84 1.2T7 16.75t-1.2-2.86q0-.22.07-.63L2.64 12.2q-.38.34-.86.34-.58 0-.96-.38t-.39-.97.39-.93.96-.39q.48 0 .82.31t.45.75L6.3 12q.5-.98 1.47-1.56t2.06-.58q1.25 0 2.31.75l4.79-4.79q-.39-.72-.39-1.32 0-1.1.8-1.9t1.9-.8 1.87.8.8 1.9-.8 1.87-1.9.8q-.62 0-1.32-.41l-4.78 4.8q.74 1.06.74 2.32 0 .89-.4 1.75l4.06 2.91q.79-.62 1.7-.62" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCommunity as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconCompetences: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconCompetences;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconCompetences = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M.32 21.44H23.7a.32.32 0 0 1 .32.32v1.76a.32.32 0 0 1-.32.32H.32a.32.32 0 0 1-.32-.32v-1.76a.32.32 0 0 1 .32-.32m0-3.2h3.2a.32.32 0 0 1 .32.32v1.76a.32.32 0 0 1-.32.32H.32a.32.32 0 0 1-.32-.32v-1.76a.32.32 0 0 1 .32-.32m5.04-2h3.2a.32.32 0 0 1 .33.32v3.76a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-3.76a.32.32 0 0 1 .32-.32zm5.05-1.2h3.2a.32.32 0 0 1 .32.31v4.97a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-4.97a.32.32 0 0 1 .32-.32zm5.04-2.8h3.2a.32.32 0 0 1 .33.31v7.77a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32v-7.77a.32.32 0 0 1 .32-.32zm5.05-3.61h3.2a.32.32 0 0 1 .32.32v11.37a.32.32 0 0 1-.32.32h-3.2a.32.32 0 0 1-.32-.32V8.95a.32.32 0 0 1 .32-.32M.39 15.99c-.44 0-.45-.05-.01-.13 0 0 5.24-.63 12.2-5.2s7.24-6.04 7.24-6.04l2.68 1.45s-1.26 2.08-8.25 6.2C7.51 16.25.4 16 .4 16zM23.74-.1c.14-.1.26-.04.26.14l-.02 6.57c0 .18-.12.25-.28.17l-5.31-2.76c-.16-.08-.17-.23-.03-.33z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconCompetences as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconConnecteurGenerique1: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConnecteurGenerique1;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConnecteurGenerique1 = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M18.9 12.99v4.28q0 1.6-1.13 2.74t-2.74 1.13H3.87q-1.6 0-2.74-1.13T0 17.27V6.1q0-1.59 1.13-2.72t2.74-1.15h9.45q.17 0 .3.12t.11.31v.87q0 .19-.12.31t-.29.12H3.87q-.89 0-1.51.63T1.7 6.1v11.16q0 .89.65 1.51t1.51.65h11.16q.89 0 1.52-.65t.62-1.51v-4.28q0-.2.12-.31t.31-.12h.87q.2 0 .31.12t.12.3zm5.15-11.6v6.86q0 .36-.27.6t-.6.27-.6-.27L20.22 6.5l-8.75 8.75q-.12.14-.31.14t-.3-.14L9.34 13.7q-.14-.12-.14-.29t.14-.31l8.75-8.76L15.73 2q-.27-.27-.27-.6t.27-.6.6-.27h6.85q.36 0 .6.27t.27.6z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConnecteurGenerique1 as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconConnecteurGenerique2: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConnecteurGenerique2;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConnecteurGenerique2 = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 21 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M17.17 12.99V6.54q0-.36-.24-.6t-.6-.26H9.88q-.57 0-.79.53-.24.55.2.93l1.92 1.93-7.17 7.16q-.26.27-.26.63t.26.6l1.37 1.37q.27.24.6.24t.6-.24l7.17-7.16 1.95 1.92q.24.26.6.26.14 0 .34-.07.5-.24.5-.8zm3.44-6.88V19q0 1.59-1.13 2.72t-2.74 1.15H3.87q-1.6 0-2.74-1.15T0 19V6.11Q0 4.52 1.13 3.4t2.74-1.15h12.87q1.6 0 2.74 1.15t1.13 2.72z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConnecteurGenerique2 as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconConversation: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconConversation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconConversation = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "m0 21.67 7.8-8.23 4.22 2.41 4.24-2.4 7.79 8.22zm0-2.74V8.97l6.1 3.54zm0-12.1V3.44h24.05v3.4l-12.03 6.84zm17.94 5.68 6.1-3.54v9.96z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconConversation as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconDirectory: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconDirectory;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconDirectory = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M0 24.58V.53h24.05v4.28h-2.62V7.1h2.62v4.28h-2.62v2.35h2.62V18h-2.62v2.3h2.62v4.29H0zm4.64-6.85h12.12V14l-4.5-2.67q.9-.46 1.4-1.3t.53-1.85q0-1.4-1.01-2.43T10.7 4.72 8.25 5.75 7.24 8.18q0 1.03.53 1.85t1.4 1.3L4.63 14v3.73z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconDirectory as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconEducagri: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEducagri;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEducagri = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M8.08 22.92a10.4 10.4 0 0 1-4.98-4.8c-.84-1.67-.86-1.89-.31-1.98.34-.07.82.17 1.08.53 2.21 3.12 4.98 4.6 8.54 4.6a9.4 9.4 0 0 0 7.28-3.09c1.76-1.75 3.06-4.93 2.7-6.54C20.42 2.46 8.18.6 3.56 8.78c-.6 1.08-1.25 1.83-1.42 1.66-.46-.46.36-2.98 1.56-4.74a9.22 9.22 0 0 1 5.08-4A10.68 10.68 0 0 1 21.7 6.47c1.33 2.43 1.66 6.93.77 10.03a10.75 10.75 0 0 1-5.33 6.18c-2.36 1.18-6.76 1.3-9.07.24zm1.06-3.94c-2.34-1.06-3.18-2.55-3.3-5.94-.1-2.48 0-3.1.72-4.48 1.25-2.33 3.3-3.32 6.45-3.15 3.82.2 5.82 2.1 5.82 5.58l.02 2.05-4.01.1c-4.28.11-5.05.42-4.6 1.87.15.43.75.98 1.38 1.25 1.22.5 2.14.29 3.77-.92.82-.6 1.15-.67 1.97-.36 1.28.48 1.52 1.25.77 2.38-1.4 2.12-6.03 2.96-9 1.61zm5.14-8.59c.65-.38.22-1.3-.84-1.78-1.44-.65-3.34.39-2.88 1.57.21.57 2.93.74 3.72.21M1.2 15.15c-.89-.6-1.1-2.57-.36-3.3.72-.74 2.67-.52 3.3.37.76 1.08.7 1.59-.32 2.62-1.03 1.03-1.54 1.08-2.62.31" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEducagri as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconEdumedia: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdumedia;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdumedia = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M11.9 23.02c-.33-.1-.7-.34-.91-.58-.36-.43-.43-.94-.27-1.64.08-.3.15-.48.46-1.1.29-.6.75-1.2 1.7-2.24.9-.98 1.33-1.49 1.52-1.75l.2-.27a7.5 7.5 0 0 0 .7-1.49l.02-.1c.04-.12.14-.74.16-.98.03-.15.05-.24.08-.24 0 0 .12.12.21.26l.41.56c.07.1.48.84.55 1.03a7.46 7.46 0 0 1 .46 4.83l-.12.34c-.29.65-.4.92-.43.94s-.1.12-.15.24c-.07.12-.14.22-.14.24l-.17.22a5.8 5.8 0 0 1-1.54 1.41c-.62.34-.62.34-1.63.37-.5 0-1.01-.03-1.1-.05zm-5.43-4.6c-.12-.02-.31-.1-.46-.12a1 1 0 0 0-.33-.07c-.05 0-.08-.02-.08-.07 0-.03-.04-.05-.07-.05-.02.03-.12 0-.21-.05a6 6 0 0 1-1.08-.6l-.2-.17c-.4-.3-1.3-1.3-1.3-1.44 0-.02-.05-.07-.07-.12-.1-.1-.29-.5-.29-.6 0-.02-.02-.07-.05-.07s-.04-.1-.07-.22c-.02-.1-.05-.21-.07-.21-.05-.05-.07-.3-.07-.99s.02-.84.07-.87c.02-.02.05-.07.05-.14 0-.17.29-.74.45-.94.24-.26.32-.31.46-.36.1 0 .17-.05.22-.07.12-.12.89.02 1.3.2l.53.28.21.14c.12.05.22.12.27.15l.26.21c.43.3.72.58 1.66 1.6l1.03 1.03.44.4c.1.1.19.15.19.15.02 0 .12.1.24.17.1.1.2.14.2.14a4 4 0 0 0 .58.31c.09.03.23.1.33.12.16.1.62.2 1.08.27l.29.02-.2.17c-.1.07-.23.22-.33.29-.07.1-.17.14-.2.14s-.07.05-.09.07-.82.58-.87.58c0 0-.14.05-.28.15l-.32.14-.31.12c-.05.05-.12.05-.15.02-.02 0-.04 0-.07.03 0 .02-.14.07-.29.1-.12.02-.26.04-.28.07-.15.1-1.71.16-2.12.1zm13.51-4.4c-.02 0-.14-.05-.29-.07s-.33-.1-.43-.14a6.4 6.4 0 0 1-.82-.44c-.12-.07-.21-.14-.21-.16l-.12-.08-.22-.14-.38-.34c-.17-.14-.65-.65-1.11-1.1a15 15 0 0 0-2.14-1.98c-.05-.04-.77-.4-1.01-.48a4 4 0 0 0-1.08-.26c-.15 0-.2 0-.2-.05.05-.1.51-.5.87-.74.15-.1.3-.22.31-.24a15 15 0 0 1 1.3-.65c.1-.05.36-.12.9-.24s1.77-.15 2.2-.05c.49.12.85.21 1.04.31.55.29.72.36.96.55.46.32.92.75 1.23 1.16.38.48.36.43.5.7.07.14.12.24.15.26.02 0 .04.05.04.07s.03.12.08.22c.14.34.16.6.16 1.44 0 1.18-.07 1.44-.52 2-.1.12-.2.24-.24.24s-.08 0-.08.02c0 .1-.81.29-.89.2zM8.2 12.44A7.4 7.4 0 0 1 6.47 7.6c0-.73.07-1.14.29-1.81A7.3 7.3 0 0 1 8 3.56c0-.02.21-.21.48-.46a3.8 3.8 0 0 1 2.14-1c.82-.05 1.4.07 1.9.4.4.27.55.46.7.9.14.52.02 1.05-.39 1.94-.38.77-.91 1.47-1.92 2.55-1.66 1.78-2.14 2.57-2.43 4.02-.05.21-.1.45-.1.55l-.02.2-.17-.22z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdumedia as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconEdumoov: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdumoov;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdumoov = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M21.58 1.76c-1.66 2.04-4.9 4.65-10.61 3.56-2.41 1.36-5.75 1.57-9.3.37 2.41 2.12 3.1 3.46 4.19 4.99 7.6 1.83 13.56-1.78 15.72-8.92m.34 4.29c-.77.2-1.56.39-2.38.58a12.03 12.03 0 0 1-6.13 4.32l-.28.09h-.03l-.27.07-.03.01c-.6.15-1.22.25-1.85.3l-.04.01-.28.02h-.04l-.17.01c-.9.05-1.85.01-2.83-.12h-.04l-.17-.03-.1-.01h-.04l-.14-.03-.15-.03h-.03l-.16-.03-.13-.03H6.6l-.15-.03-.2-.04a27 27 0 0 0-.46-.1l-.13-.03-.07-.1-.32-.45-.21-.32-.38-.55A16.2 16.2 0 0 0 2.8 7.23l-.79-.29A34 34 0 0 1 5.9 11.9c4.71 1.7 11.79 1.74 16.03-5.85zM2.16 8.18c1.31 1.35 2.3 2.79 3.6 4.98 6.97 2.91 11.2 1.36 15.8-2.83-.9.04-1.8.06-2.74.07a11.76 11.76 0 0 1-4.66 2.39c-2.97.75-5.98.3-8.39-.58l-.1-.03-.06-.1-.37-.55v-.01A35 35 0 0 0 2.9 8.4l-.74-.23zm-.1 1.21c1.63 1.49 2.61 3.3 3.44 4.98 5.7 3.33 12.84 1.77 14.95.21-.91-.35-1.84-.67-2.78-.99-.98.52-1.99.92-3.05 1.15-2.59.56-5.47.2-9-1.26l-.1-.05-.06-.1A31 31 0 0 0 3 9.61l-.92-.22zm19.36 9.73c-.26.52-1.18 2.27-1.28 1.87l-.4-1.47c-.18-.4-.49-.45-.85-.34l.59 2.2c.1.41.36.6.82.48.46-.04 1.37-2.17 1.12-2.74m-3.98 0a1.38 1.38 0 1 0 0 2.75 1.38 1.38 0 0 0 0-2.75m-6.84 0c-.17 0-.33.04-.47.1-.05.03-.2.13-.4.36a.66.66 0 0 0-.3-.28c-.09-.05-.17-.1-.31-.13v1.67c0 .14 0 .26.02.36s.04.2.1.29c.04.08.1.15.2.22s.2.11.37.15l.04.01v-1.45c0-.12 0-.23-.02-.33.24-.32.48-.38.56-.38q.21 0 .3.15c.09.15.1.24.1.44v1.57h.74v-1.79c.22-.3.47-.37.54-.37q.21 0 .3.15c.09.15.1.24.1.43v1.58h.74v-.42a1.7 1.7 0 0 1-.07-1.8c-.07-.24-.24-.41-.65-.51l-.21-.02c-.18 0-.34.04-.47.1-.05.03-.2.12-.39.33-.09-.19-.26-.33-.61-.41zm4.04 0a1.38 1.38 0 1 0 1.21 2 1.72 1.72 0 0 1 0-1.26 1.37 1.37 0 0 0-1.21-.74m-10.81.01v2.75h.83c.44-.05.98-.25 1.22-.56a2.8 2.8 0 0 1-.2-1.15v-.7a1.35 1.35 0 0 0-.54-.26 2.4 2.4 0 0 0-.67-.08h-.65zm2.2 0c0 .64-.06 1.09.04 1.6.06.4.25.79.61.97.23.13.5.17.75.18.33-.02.67-.1.91-.34.36-.4.44-.77.44-1.36v-1.05H8.1v1.23a1.1 1.1 0 0 1-.21.61.66.66 0 0 1-1.12-.25c-.1-.21-.09-.46-.09-.7v-.9h-.66zm-4.59.02v.66h2v-.66zm3.05.65c.19 0 .37.03.54.1.22.09.36.31.39.55a.65.65 0 0 1-.4.65c-.16.07-.34.1-.53.1zm12.95 0a.68.68 0 1 1 0 1.38.69.69 0 1 1 0-1.37zm-2.8.01a.68.68 0 1 1 0 1.37.68.68 0 0 1 0-1.37m-13.2.36v.67h2v-.67zm0 1.04v.67h2v-.67z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdumoov as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconEdutheque: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEdutheque;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEdutheque = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M11.97.5c-.07 0-.12.78-.12 2.1s.05 2.1.13 2.1c.07 0 .1-.78.1-2.1s-.03-2.1-.1-2.1zm4.19.7c-.07 0-.14.17-.34.77-.12.39-.43 1.2-.65 1.83-.24.65-.4 1.2-.4 1.28 0 .24.21-.08.28-.41a2 2 0 0 1 .17-.5c.17-.22 1.06-2.87.99-2.92-.03-.02-.03-.05-.05-.05m-8.32.05h-.05c-.05.05.05.46.22.92.19.45.5 1.32.72 1.92.21.58.43 1.06.48 1.06.07 0 .07-.07.05-.17a2.5 2.5 0 0 1-.15-.5 12.4 12.4 0 0 1-.6-1.59c-.45-1.35-.57-1.64-.67-1.64m-3.7 2.17c-.1 0 0 .12.45.65.08.07.56.65 1.1 1.3a8.7 8.7 0 0 0 1.1 1.17c.11 0-.06-.21-1.38-1.78a9 9 0 0 0-1.27-1.34m15.7 0c-.07 0-.46.38-.82.84s-.89 1.08-1.13 1.37c-.26.29-.53.6-.6.72-.27.48.14.1.94-.86.48-.6 1.08-1.3 1.32-1.57.27-.29.39-.5.29-.5m2.76 3.17c-.07 0-.29.1-.53.24-.24.17-.5.31-.52.31-.05 0-.3.12-.58.32-.27.17-.77.48-1.13.67-.39.2-.67.39-.67.43 0 .15.16.08 1.13-.5.53-.31.98-.58 1.03-.58.02 0 1.18-.67 1.32-.77.03-.02 0-.07-.02-.12h-.02zm-21.16.03c-.07 0-.07.04 0 .14.03.05.44.29.92.53.45.24 1.2.67 1.66.94.84.53.98.6.98.45 0-.04-.45-.36-1-.67-.58-.31-1.38-.77-1.76-1a2.5 2.5 0 0 0-.8-.4zm4.04.16-.19.27c-.14.21-.17.91-.17 5.14 0 4.84 0 4.89.24 5.13.22.19.48.21 2.62.24l2.38.04-.1.37c-.01.21-.13.52-.2.74-.15.36-.17.36-1.2.43-1.26.1-1.84.22-1.84.36 0 .2.7.3 2.5.39 2.63.14 2.67.14 4.89.02 2.26-.14 2.8-.21 2.76-.38-.07-.17-.58-.27-1.88-.39-1.12-.07-1.17-.12-1.34-1.03l-.1-.5 2.38-.05c2.34-.03 2.38-.03 2.6-.32.22-.24.22-.5.22-5.1 0-4.2-.03-4.88-.17-5.1l-.2-.26H5.49zm.68 1.61h11.2v7.3H6.16zm7.62.94c-.77 0-1.32 0-1.32.03l-.05.55-.03.48h4.4v-1l-2.16-.06zm-2.12.03H9.62c-1.13.02-2.12.04-2.19.1s-.12.28-.12.52v.41h3.25v.77h-3.2v1.01h3.2v.77H7.29l.1 1 1.99.03c1.1.03 2.07.03 2.16 0 .08-.02.17-.24.17-.45v-.39l.2.39.2.4 2.87.05.05-.53.05-.5h-2.46l-.29-.77h4.45v-1.01H14.6c-2.17 0-2.2-.02-2.67-.34-.56-.38-.56-.38-.34-.5.1-.07.12-.05.05.07-.07.1-.05.12 0 .1.07-.05.12-.32.07-.6zm-.74.8c.04 0 .16.06.24.18.07.1.57.48 1.08.87l.91.67-.48.07c-.26.05-.48.15-.48.22 0 .05.15.34.31.62.15.27.27.56.22.6-.02.05-.17.13-.29.17-.2.05-.29-.07-.55-.57l-.34-.65-.36.31-.39.31v-1.42c0-.77.05-1.39.13-1.39zm13 .38-.09.02c-.2.05-3.58.65-3.77.65-.05 0-.08.02-.03.1.07.11.07.11 3.3-.46.38-.08.72-.2.72-.24s-.05-.08-.12-.08zm-23.85 0-.05.02c-.16.14.17.31.58.26.24-.04.46-.02.5 0 .05.05.63.2 1.33.34 1.51.31 1.37.29 1.47.17.02-.07-.17-.15-.44-.2s-1.15-.19-1.92-.35c-.7-.15-1.3-.24-1.47-.24M11.5 12.6c.05 0 .08.05.08.15s-.1.19-.24.19c-.15 0-.27-.02-.27-.07 0-.03.12-.12.27-.2.07-.04.12-.07.16-.07m-7.6 1.42s-.02 0-.04.03c-.07.02-.65.14-1.3.24-1.4.19-2.33.4-2.48.53-.17.14.07.11 1.08-.08.49-.1 1.2-.21 1.6-.29 1.1-.21 1.2-.24 1.2-.36 0-.04 0-.07-.06-.07m16.33.05c-.07 0-.12.02-.12.05 0 .12.1.14 1.9.46.77.12 1.42.26 1.45.28s.19.05.36.05c.6 0-.05-.21-1.45-.45l-1.82-.34a2 2 0 0 0-.32-.05m-8.17 2.14h.07c.2.02.27.12.27.34s-.08.29-.27.31c-.29.05-.46-.2-.34-.5.03-.1.15-.15.27-.15m7.24.55c-.24 0-.1.2.3.44.4.19 1.9 1.08 2.65 1.51.3.17.41.17.41.05 0-.05-.16-.17-.33-.27-.2-.07-.9-.45-1.52-.81a11 11 0 0 0-1.3-.68c-.05 0-.1-.04-.1-.12 0-.04-.04-.12-.11-.12m-14.46.03a.7.7 0 0 0-.36.14c-.26.17-.96.6-2.28 1.32-.43.22-.75.46-.72.51s.31-.07.62-.24c.34-.2.63-.36.68-.36a6.5 6.5 0 0 1 1.13-.67L4.7 17c.08-.07.17-.07.22-.04.02.04.07.02.07-.05 0-.1-.07-.14-.17-.12zm1.93 2.07c-.03 0-.05 0-.05.02-.15.2-2.07 2.43-2.3 2.7-.18.19-.3.38-.27.45.1.12 0 .22 1.2-1.25l1.25-1.5c.14-.18.26-.35.21-.4zm10.53.12h-.02c-.03.02.52.74 1.25 1.6.7.85 1.32 1.55 1.37 1.55.12 0 .12-.22 0-.27-.08-.02-.22-.17-1.3-1.49-.82-.99-1.2-1.4-1.3-1.4zm-2.43 1.27-.05.02c-.1.1.27 1.23.72 2.43.17.41.34.92.41 1.13.05.22.15.39.22.39.14 0 .14-.07-.41-1.59-.24-.62-.53-1.42-.62-1.73-.17-.5-.22-.65-.27-.65m-5.67 0c-.08 0-.12.14-.12.29 0 .17-.05.29-.1.29s-.14.21-.22.46a44 44 0 0 1-.96 2.6c-.1.26-.07.33.05.33.07 0 .2-.24.29-.5.07-.27.2-.68.29-.9.4-1.03.89-2.33.89-2.45 0-.05-.07-.12-.12-.12m2.76.58s-.02 0-.02.02c-.05.05-.12 3.46-.1 4.04.03.12.05.15.15.05.07-.07.12-.82.12-2.07-.03-1.59-.05-2.04-.15-2.04" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEdutheque as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconElectron: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconElectron;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconElectron = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M19.5 24.58c-3.63 0-8.2-2.33-11.93-6.06C1.78 12.7-.17 5.5 3.15 2.17A6.07 6.07 0 0 1 7.53.53c3.63 0 8.2 2.34 11.92 6.06 5.8 5.82 7.75 13.01 4.4 16.35a5.97 5.97 0 0 1-4.35 1.64M7.53 2.55c-1.28 0-2.26.34-2.96 1.04-2.43 2.45-.41 8.65 4.42 13.51 3.37 3.37 7.39 5.46 10.51 5.46 1.28 0 2.26-.34 2.94-1.04 2.45-2.45.43-8.65-4.4-13.5-3.37-3.38-7.39-5.47-10.51-5.47m0 22.03c-1.8 0-3.3-.58-4.36-1.64C-.17 19.6 1.78 12.41 7.58 6.6 11.3 2.86 15.88.53 19.5.53c1.8 0 3.3.58 4.36 1.64 3.34 3.34 1.39 10.53-4.4 16.35-3.73 3.73-8.3 6.06-11.93 6.06M19.5 2.55c-3.12 0-7.14 2.1-10.5 5.46-4.84 4.86-6.86 11.06-4.43 13.51.7.7 1.68 1.04 2.96 1.04 3.12 0 7.14-2.1 10.5-5.46 4.84-4.88 6.86-11.06 4.4-13.51-.67-.7-1.65-1.04-2.93-1.04" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconElectron 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 SvgIconElyceepicardie: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconElyceepicardie;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconElyceepicardie = ({
|
|
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.55 20.23-.19-.17a.9.9 0 0 1 0-.5c.07-.13.41-.25.63-.25.33 0 .43-.12.24-.29-.08-.07-.17-.07-.36-.07-.15.03-.32.05-.37.07-.07.03-.1.03-.1-.1 0-.14.1-.16.51-.16.3 0 .36 0 .48.12.15.12.15.12.17.75l.03.62h-.15c-.07 0-.12-.02-.12-.07s-.05-.05-.21.02c-.27.12-.36.12-.56.03m.63-.24c.12-.08.14-.12.14-.32v-.21l-.24.02c-.36.05-.48.12-.5.29-.03.27.29.36.6.22m2.38.28c-.5-.12-.6-1.08-.14-1.41.12-.1.16-.12.45-.1l.32.02v-.29c0-.28 0-.28.12-.28h.12v2.04h-.12c-.1 0-.12-.03-.12-.07 0-.08-.03-.08-.12-.03a.82.82 0 0 1-.5.12zm.43-.28.2-.08v-.45c0-.41-.03-.46-.13-.48-.24-.05-.4-.03-.55.12s-.14.16-.12.45c.03.46.22.6.6.44m-7.35-.73v-.98l.16-.03c.07 0 .3 0 .46.03.29.02.36.05.5.19.15.17.17.2.15.43-.05.39-.31.6-.77.6h-.22l-.02.36c0 .37 0 .37-.14.39h-.15zm.9-.14c.15-.17.15-.34 0-.5-.09-.1-.16-.12-.38-.12h-.24v.81l.27-.02c.19-.02.29-.07.36-.17zm.73.38v-.74h.24v1.5h-.24v-.75zm.94.68c-.2-.1-.3-.34-.3-.65 0-.34.06-.48.25-.65.14-.1.21-.12.43-.12.34 0 .48.05.48.22 0 .12 0 .12-.14.04-.24-.12-.48-.1-.65.05-.1.1-.12.17-.12.43s.02.32.12.44c.17.14.4.14.65.05.14-.1.14-.08.14.04a.2.2 0 0 1-.1.17c-.14.07-.6.05-.76-.02m2.86-.68c0-.72 0-.74.1-.74.07 0 .11.02.14.1.02.1.02.1.14.02a.6.6 0 0 1 .32-.1c.16 0 .19 0 .19.12.02.12 0 .12-.12.12a.6.6 0 0 0-.34.05l-.17.07-.02.56c0 .5-.03.53-.12.55-.12 0-.12 0-.12-.74zm2.86 0v-.74h.24v1.5h-.24v-.75zm.87.58c-.34-.29-.32-.89 0-1.18.14-.12.21-.14.43-.14.12 0 .29.02.36.05.17.07.29.29.29.5v.2h-.53c-.29 0-.53.02-.53.02-.07.12.07.38.22.46.17.1.48.1.65 0s.19-.1.19.04c0 .15-.22.22-.6.22-.27 0-.31-.02-.48-.17m.84-.84c0-.29-.46-.4-.7-.2-.07.08-.12.18-.12.22 0 .08.05.1.41.1.39 0 .4-.02.4-.12zm-8.37-.86c0-.1.02-.12.12-.12s.12.02.12.11c0 .1-.02.12-.12.12s-.12-.02-.12-.11m6.66 0c0-.1.03-.12.12-.12s.12.02.12.11c0 .1-.02.12-.12.12s-.12-.02-.12-.11m-15.6-.39a6.99 6.99 0 0 1-6.01-5.77c-.1-.6-.1-1.76 0-2.36A7.06 7.06 0 0 1 5.76 4.2c.6-.12 2.19-.12 2.79.02 1.37.29 2.48.9 3.49 1.9a6.78 6.78 0 0 1 1.94 3.7A6.97 6.97 0 0 1 6.33 18zm1.46-2.74c1.42-.17 2.65-1.15 3.4-2.65.18-.43.26-.6.26-.84.02-.26.02-.31-.07-.4-.15-.15-.39-.15-.51 0-.05.04-.2.23-.29.45-.53 1.06-1.13 1.64-2 1.9-.48.14-1.39.1-1.92-.07a3 3 0 0 1-1.75-1.59 3.15 3.15 0 0 1-.36-2.33c.24-.9.6-1.37 1.3-1.7.33-.18.45-.2.84-.22s.5 0 .79.12c.7.26 1.35.86 1.32 1.22-.02.15-.07.22-1.49 1.16-.82.55-1.51 1.05-1.56 1.1-.14.17-.12.39.07.55.12.12.17.15.31.12.12-.02.87-.5 2.24-1.41 2.07-1.38 2.26-1.52 2.36-1.69.12-.24-.6-1.18-1.33-1.68-.6-.41-1.4-.65-2.06-.65s-1.37.22-2.1.65a3.85 3.85 0 0 0-1.73 1.83 3.97 3.97 0 0 0 .75 4.83c.8.8 1.75 1.23 3.05 1.35zm7.34 2.67s.07-.22.19-.46l.19-.43-.43-1.06-.46-1.06h.17c.07-.02.17-.02.19 0s.22.39.38.8c.2.43.34.79.37.79l.36-.8.31-.79h.22l.19-.02-.17.38c-.07.22-.39.92-.65 1.54l-.48 1.13h-.2c-.11 0-.18 0-.18-.02m2.8-.77c-.4-.1-.66-.36-.76-.82-.14-.65.14-1.25.67-1.44.22-.08.8-.03.99.07.12.05.14.07.14.26v.24l-.14-.12c-.36-.24-.82-.24-1.06 0-.26.27-.31.87-.12 1.2.2.32.63.4 1.06.17a1 1 0 0 1 .26-.12v.22c-.02.2-.04.22-.21.27-.27.1-.63.12-.82.07zm2.2-.03a.9.9 0 0 1-.65-.43c-.12-.2-.12-.26-.12-.67s0-.48.14-.7c.2-.31.5-.48.92-.48.57 0 .89.29.93.89l.03.31h-1.66v.15c0 .4.38.7.89.65.17-.03.38-.08.5-.15l.22-.1-.02.22c0 .2-.03.22-.2.27a2 2 0 0 1-.98.05zm.86-1.46-.02-.15c0-.05-.07-.14-.15-.21-.26-.27-.81-.2-1 .14-.17.29-.17.31.55.31.57 0 .67-.02.62-.1zm1.66 1.49c-.26-.07-.45-.17-.6-.36-.17-.22-.24-.46-.21-.92.02-.31.04-.4.16-.57a1 1 0 0 1 .9-.46c.57 0 .9.29.96.91l.04.3h-.86c-.99 0-.97 0-.75.4.24.46.8.53 1.5.17.02-.03.04.07.04.17 0 .21-.05.26-.5.36-.27.05-.41.05-.68 0m.82-1.52c0-.14-.12-.38-.24-.43-.17-.1-.55-.07-.74.05a.77.77 0 0 0-.32.48s.3.02.65.02c.63 0 .65 0 .65-.12m-9.71 1.5a15 15 0 0 1-.05-1.6V14h.4v3.15h-.16c-.1 0-.17-.03-.2-.03zm6.46-2.65c0-.03.08-.2.17-.39l.2-.36h.2c.13 0 .23.03.23.05l-.27.36c-.2.3-.29.36-.39.36z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconElyceepicardie 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 SvgIconEsidoc: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEsidoc;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEsidoc = ({
|
|
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.02 1.37-5.29.1c-3.7.05-5.33.12-5.45.24-.58.46-.99 4.02-.75 6.4.36 3.5 1.88 7.67 3.51 9.57.48.55.53.57 1.06.5 1.32-.21 9.4-2.79 10.05-3.22.17-.1.07-.31-.48-1.2-2.12-3.4-2.64-5.41-2.64-9.86V1.37zm-4.5.73c1.93 0 3.62.04 3.69.16.07.1.12 1.1.12 2.26 0 3.42.43 5.15 2.11 8.32l.92 1.71-.46.27c-.24.14-.55.26-.67.26s-.58.14-1.01.29c-.46.14-1.95.62-3.35 1.03-2.78.85-3.6 1.01-4.1.85-.6-.2-1.9-2.53-2.6-4.65-.68-2.02-.82-3.29-.85-6.46 0-3.03.05-3.5.6-3.78.27-.14 3.13-.24 5.6-.26m-.79 2.5c-.86 0-1.32.26-2.09 1.05a6.37 6.37 0 0 0-1.78 3.4 3.6 3.6 0 0 1-.43 1.24c-.24.32-.26.44-.12.68.07.17.2.29.27.29s.79.62 1.58 1.37c.9.82 1.59 1.37 1.76 1.37s.38.07.48.14c.34.22 1.8.15 2.55-.12 1.6-.55 2.81-2.26 2.38-3.31-.34-.8-.87-.7-2.17.48-.81.7-1.44.86-2.14.55-.6-.29-.7-.58-.26-.75.2-.07.43-.14.53-.14.29 0 1.73-1.01 2.3-1.61.85-.87.97-2 .34-3.2-.14-.29-.33-.55-.45-.6-.1-.05-.2-.17-.2-.26 0-.27-.12-.32-1.49-.49-.4-.04-.77-.1-1.05-.1zm.53.7c.3 0 .58.04.85.14C14.6 6 15.13 7.3 14.3 8.5c-.5.75-1.3 1.3-2.65 1.86-.6.26-1.15.5-1.22.57-.2.2-.03.53.48.92.58.43 1.22.62 2.04.62.87 0 1.42-.31 2-1.13.7-1.03 1.27-.7.7.41a3.46 3.46 0 0 1-1.64 1.54c-.5.17-2.07.2-2.62.03-.63-.2-.99-.46-1.97-1.38-.53-.5-1.1-.96-1.28-1.03-.38-.12-.38-.24 0-.4.27-.13.34-.3.44-1.04.14-1.28.3-1.76.74-2.48a3.79 3.79 0 0 1 2.94-1.7zm-.21.86c-.7 0-1.42.48-1.83 1.27-.39.77-.55 2.1-.31 2.4.21.25.45.2 1.78-.45 1.17-.6 1.51-.99 1.6-1.92.06-.58.03-.72-.23-.94a1.58 1.58 0 0 0-1.01-.36m-.1.77c.41.02.82.21.82.43 0 .29-.9 1.27-1.37 1.52-.65.33-.75.26-.75-.49.03-.76.39-1.3 1.04-1.44.07-.02.17-.02.26-.02M4.06 17.46l-.1.53c-.26 1.35.25 4.04.92 5.03.17.21.39.38.5.38.49 0 3.25-.89 3.32-1.08.03-.1-.11-.58-.33-1.06a5.35 5.35 0 0 1-.46-2.3l-.07-1.43-1.9-.02zm8.44.41c-.07 0-.12.1-.14.22-.05.16 0 .24.12.19.22-.07.26-.36.05-.41 0-.02 0-.02-.03 0m3.01.17c-.07 0-.14.17-.17.36-.05.31-.17.4-.8.62-.9.32-1.39.82-1.39 1.5 0 .7.12.93.6 1.13.44.19.99.14 1.28-.1.1-.07.26-.12.36-.1.14.05.2-.31.22-1.68.02-1.06 0-1.73-.1-1.73m-10.44.43c.1-.02.08.05-.04.2-.22.26-.49.28-.41.04.04-.1.19-.2.33-.24zm5.97.29c-.27-.02-.92.58-.92.82 0 .07.24.43.56.8.72.86.72 1.05-.07 1.05-.58 0-.75.12-.53.34.14.14.57.1 1.08-.12.62-.27.62-.63 0-1.4-.63-.72-.63-.94-.03-.94.24 0 .5-.04.56-.1.12-.11-.34-.45-.65-.45m-4.81.14c.17-.02.33.05.5.2.44.45.2 1.03-.65 1.56-.43.29-.5.4-.38.55.29.36.67.39 1.08.1.22-.17.46-.3.48-.3.17 0 .1.42-.12.63-.31.32-1.06.27-1.59-.12-.86-.57-.89-1.42-.12-2.18.3-.3.56-.44.8-.44m6.27.12c-.24 0-.3.39-.3 1.6 0 .78.04 1.1.13 1 .2-.2.37-2.6.17-2.6m5.2 0c-.55 0-.75.08-1.03.37-.63.62-.34 1.87.52 2.26.92.38 1.64-.27 1.64-1.52 0-.87-.24-1.1-1.13-1.1zm3.05.03c-.4 0-.81.02-.91.1-.48.3-.63 1.68-.24 2.25.17.27.34.32.98.3.68 0 .73-.03.34-.13-.53-.12-1.13-.5-1.22-.8-.1-.26.19-.95.53-1.27.14-.12.48-.28.77-.33.48-.1.48-.12-.24-.12zm-14.79.26c-.21 0-.55.46-.55.8 0 .38.34.45.82.12.48-.36.34-.92-.27-.92m11.79 0c.19 0 .38.05.48.17.29.27.21 1.44-.07 1.7-.36.34-.82.3-1.2-.09-.46-.48-.46-1.1.02-1.49.21-.2.5-.29.77-.29m-3.03.03h.1l.47.04v.8c0 .46-.07.89-.19 1.03-.24.32-1 .3-1.3-.05-.6-.67 0-1.82.92-1.82m-5.44.96c-.14 0-.29.07-.33.14s.1.15.33.15c.27 0 .41-.08.36-.15s-.21-.14-.36-.14" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEsidoc 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 SvgIconEuropress: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconEuropress;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconEuropress = ({
|
|
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: "m1.47 23.57-.2-.12a.43.43 0 0 0-.21-.1H.94V1.61h10.82c5.96 0 10.87.03 10.9.05.04 0 .06.07.06.15s.03.12.08.12c.02 0 .1.04.12.12.04.12.07 21.2 0 21.4 0 .05-.08.1-.17.12-.17.05-21.19.02-21.28 0m21.16-11.09V1.68H.99V23.3h21.64zm-10.17 0V4.31l.33.02c.72.07 1.78.39 2.62.8a8 8 0 0 1 2.89 2.35c.39.48.46.63.77 1.2a7.3 7.3 0 0 1 .89 3.61l.02.9-2.93.02c-1.61 0-2.98 0-3.05-.03h-.1v7.5h-1.44zm5.4-.74c0-.15-.09-.68-.2-1.04a8.2 8.2 0 0 0-.7-1.51l-.3-.39a6.36 6.36 0 0 0-2.33-1.87c-.48-.22-.43-.46-.43 2.38v2.48h1.97c1.61 0 2 0 2-.05zm-7.35 8.85a10 10 0 0 1-1.61-.46 8 8 0 0 1-2.55-1.56c-.24-.2-.8-.8-1.13-1.23a17 17 0 0 1-.82-1.42c0-.02-.07-.14-.12-.29a9 9 0 0 1-.48-1.58c-.1-.44-.1-.65-.1-1.54 0-.65.03-1.16.05-1.37A8.94 8.94 0 0 1 5.3 7.53a8.3 8.3 0 0 1 4.54-3l.75-.15c.14 0 .34-.05.41-.07l.17-.03v2.14l-.22.03a6.3 6.3 0 0 0-5.17 5.24c0 .1.03.1 2.7.1h2.69v.67c.02.36.02.67 0 .7 0 .02-1.23.02-2.7.02-2.11 0-2.69.02-2.69.07.03.31.24 1.15.46 1.61.05.1.07.22.07.22a6.54 6.54 0 0 0 2.12 2.43c.77.5 1.58.84 2.33.96l.4.05v2.11l-.2-.02-.44-.03z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconEuropress 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 SvgIconExercizer: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconExercizer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconExercizer = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 31 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: "m8.59 22.44 5.14-2.58v-4.23L8.6 17.84v4.6zm-.87-6.1 5.43-2.32-5.43-2.33-5.41 2.33zm14.62 6.1 5.15-2.58v-4.23l-5.15 2.21zm-.87-6.1 5.42-2.32-5.41-2.33-5.44 2.33zm-6-3.93 5.14-2.21V6.62l-5.15 2.2v3.6zm-.87-5.1 5.9-2.51-5.9-2.56-5.92 2.55zm14.6 6.95v5.6q0 .49-.25.9t-.7.62l-6 3q-.34.2-.78.2t-.77-.2l-6-3q-.08-.02-.1-.05-.03.03-.1.05l-6.01 3q-.34.2-.77.2t-.75-.2l-6-3q-.47-.22-.7-.62t-.27-.9v-5.6q0-.5.29-.93t.77-.63l5.82-2.5V4.84q0-.53.29-.97t.74-.62L13.92.68q.32-.15.68-.15t.67.15l6.01 2.57q.48.22.77.62t.29.96v5.37l5.82 2.5q.48.2.77.63t.26.93z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconExercizer 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 SvgIconForms: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconForms;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconForms = ({
|
|
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-forms_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M13.615 5.36v-.008zM18.35 2.4H8.356c-.954 0-1.73.776-1.73 1.73v13.914c0 .954.776 1.73 1.73 1.73h9.994c.953 0 1.73-.776 1.73-1.73V4.13c0-.954-.776-1.73-1.73-1.73m-.508 2.95v.01zm-5.48 9.98-1.63 1.631a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.816l.408.408 1.223-1.223a.577.577 0 0 1 .815.816Zm0-4.613-1.63 1.631a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.815l.408.408 1.223-1.223a.577.577 0 0 1 .815.815Zm0-4.612-1.63 1.63a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.815l.408.408 1.223-1.223a.577.577 0 0 1 .815.815Zm1.253-.746v-.008zm3.87 10.991h-3.074a.576.576 0 1 1 0-1.152h3.075a.576.576 0 1 1 0 1.152Zm.004-4.628h-3.075a.576.576 0 1 1 0-1.153h3.075a.576.576 0 1 1 0 1.153m.19-4.601h-3.076a.576.576 0 0 1 0-1.153h3.075a.577.577 0 0 1 0 1.153Z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M5.473 18.044V4.805a1.73 1.73 0 0 0-1.153 1.63V20.35c0 .954.776 1.73 1.73 1.73h9.994c.751 0 1.392-.482 1.63-1.153H8.356a2.886 2.886 0 0 1-2.883-2.883" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-forms_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconForms 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 SvgIconForum: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconForum;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconForum = ({
|
|
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.9 10.85q0 1.85-1.27 3.44t-3.44 2.5-4.74.91q-1.15 0-2.36-.22-1.68 1.18-3.72 1.74-.5.12-1.16.21h-.05q-.14 0-.28-.12t-.15-.29q-.02-.02-.02-.07t.02-.1.03-.07l.02-.07.05-.07.05-.07.07-.07.05-.05.3-.34q.24-.27.37-.38t.29-.41.34-.5.26-.61q-1.66-.96-2.6-2.36t-.96-3q0-1.88 1.28-3.47t3.43-2.5 4.74-.91 4.74.91 3.44 2.5 1.27 3.47m5.15 3.41q0 1.61-.97 3.03t-2.6 2.36q.13.34.27.6t.34.5.31.4.34.4.31.34l.05.04.07.08q.03.02.05.07t.05.07l.02.07.03.07.02.1-.02.07q-.05.2-.17.32t-.29.1q-.67-.1-1.15-.23-2.07-.55-3.76-1.73-1.2.22-2.35.22-3.63 0-6.33-1.78.77.07 1.18.07 2.16 0 4.14-.6t3.56-1.73q1.65-1.25 2.57-2.86t.89-3.4q0-1.03-.32-2.04 1.74.94 2.75 2.38t1 3.08z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconForum 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 SvgIconGepi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconGepi;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconGepi = ({
|
|
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: "M4.02 23.86a4.76 4.76 0 0 1-2.46-1.57 5.5 5.5 0 0 1-.86-1.82C.58 19.94.58 5.1.7 4.57s.5-1.35.86-1.8a4.66 4.66 0 0 1 2.55-1.61c.53-.12 15.37-.12 15.9 0 .91.19 1.97.84 2.55 1.6.36.46.74 1.28.86 1.81.05.27.07 2.67.07 7.94 0 5.29-.02 7.7-.07 7.96a4.8 4.8 0 0 1-1.6 2.55c-.47.36-1.28.74-1.81.86-.56.12-15.51.1-16-.02zm12-2.07c.93-.14 1.9-.36 2.38-.55l.38-.15v-4.25c0-3.37-.02-4.26-.1-4.28-.04-.03-.98-.03-2.09-.03l-2 .03.87.65c.46.36 1.01.74 1.18.84.2.1.36.24.41.29s.07.98.1 2.62v2.52l-.36.15c-1.11.36-1.5.43-2.84.43-.77 0-1.5-.03-1.83-.1-2.91-.5-4.62-2.04-5.3-4.78a6.9 6.9 0 0 1-.16-2.12c0-1 .02-1.63.1-1.95a7.06 7.06 0 0 1 2.02-3.63q2.34-2.235 6.27-1.95c1.04.05 1.73.22 2.86.63l.85.26c.02-.02-.12-.52-.32-1.13l-.33-1.05-.44-.15a13.4 13.4 0 0 0-6.1-.21A8.81 8.81 0 0 0 4.9 9.7c-1 3.05-.57 6.8 1.06 8.97 1.3 1.73 3.35 2.83 5.9 3.2.93.11 3.17.07 4.15-.08z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconGepi 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 SvgIconGlpi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconGlpi;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconGlpi = ({
|
|
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: "M9.5 6.5c-.43 0-.9 0-1.25.02l-1.13.12c-.12.02-.36.05-.55.1-1.28.19-2.84.7-3.51 1.13C2.24 8.4 1.4 9.12 1.4 9.3c0 .05-.08.14-.27.36-.1.1-.21.34-.4.8a4.6 4.6 0 0 0-.15 2.35c.29 1.28 1.32 2.4 2.84 3.1.57.27.72.32 1.4.48.18.05.33.12.35.15 0 .05-.43.36-.91.6l-.8.43-.7.39c-.07.05-.14.1-.14.14 0 .03.05.05.12.05s.12-.03.12-.05c0-.05.05-.07.1-.07.12 0 .74-.27 1.59-.65l1.13-.5.65-.27.4.07c.5.1 2.55.22 3.61.22h.75l.02-.41c0-.22-.02-.46-.05-.53-.07-.12-.05-.12-1.47-.26-.62-.05-.93-.12-.93-.17 0-.03.16-.15.33-.3 1.5-1.05 2.14-1.7 2.62-2.64.73-1.44-.28-2.18-2.54-1.9-1.06.12-2.72.53-3.2.75-.07.05-.15.1-.15.14 0 .12.24.15 1.69.15 1.42 0 1.58.02 1.85.26.17.17.2.6.05 1.04-.22.6-.94 1.44-1.66 2.02-.32.24-.34.24-.63.21a4.5 4.5 0 0 1-1.51-.65 3.36 3.36 0 0 1-1.52-2.7 3.3 3.3 0 0 1 1.28-3.04 6.2 6.2 0 0 1 2.76-1.2c.48-.13 1.8-.22 2.55-.17.7.04.72 0 .67-.53-.02-.24-.07-.34-.16-.39-.17-.05-.85-.1-1.6-.1zm9.33 4.2c-.67 0-1.32 0-1.42.08-.12.04-.12.14-.12 2.52 0 2.02.02 2.48.1 2.53.02.04.24.1.43.12.6.1.58.12.55-1.09v-1l1.08-.03 1.11-.05.39-.19c.33-.2.38-.24.52-.55.17-.41.24-.72.17-.82a.6.6 0 0 1-.05-.24c-.07-.43-.64-1.01-1.2-1.18-.19-.07-.89-.1-1.56-.1m-5.5 0c-.35 0-.32.2-.3 2.63v2.47l.17.07c.1.08.6.1 1.8.1h1.66l.03-.2c.05-.26-.1-.52-.3-.57a10 10 0 0 0-1.24 0c-.84.03-1.1.03-1.16-.05-.02-.04-.04-.77-.04-2.04 0-1.06-.03-2-.03-2.07 0-.21-.17-.34-.45-.34h-.15zm9.54 0c-.17 0-.31.03-.36.08-.07.04-.07.7-.07 2.52v2.48l.12.1c.1.04.24.09.43.07l.31-.03V13.4c0-1.9-.02-2.53-.07-2.6s-.22-.1-.36-.1m-3.73.75c.36 0 .75.02.91.05.12.04.3.14.39.24.29.36.14.98-.27 1.2a8.3 8.3 0 0 1-1.73.12c-.07-.03-.1-.15-.07-.77 0-.39.03-.74.05-.8.02-.02.36-.04.72-.04" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconGlpi 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 SvgIconHiboutheque: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconHiboutheque;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconHiboutheque = ({
|
|
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.16 9.05a.74.74 0 0 1 0-1.47c.4 0 .74.33.74.73s-.33.74-.74.74m-4.25-1.47a.74.74 0 1 0 0 1.47.74.74 0 0 0 0-1.47m12.77 13.17-.75.86c-.18.22-1.3-.08-1.77-.72-1.27-1.81-3.95-2.92-5.32-3.4a.5.5 0 0 1-.18.03h-1a.62.62 0 0 1-.62-.59 4.8 4.8 0 0 1-2 .02c0 .06-.02.1-.04.16a6.2 6.2 0 0 1 3.78 2.96c1.61 2.97-5.03 2.31-6.2 2.17a.8.8 0 0 1-.37-.13c-.62-.4-2.44-1.95.62-4.98a.6.6 0 0 1-.05-.24v-.75c0-.09.02-.17.05-.24a7.23 7.23 0 0 1-2.52-5.66A7.6 7.6 0 0 1 8.75 5.7c-.11-.94-.43-4.47 2.04-1.74a4.88 4.88 0 0 1 4.67.14c2.51-2.73 2.08 1.15 1.97 1.9a7.66 7.66 0 0 1 1.25 4.24c0 2.33-.98 4.39-2.46 5.61a.6.6 0 0 1 .07.3v.5c.18.04.36.1.53.2l4.36 1.96c-.25-.23-.42-.42-.42-.42s-1.17-2.09.65-4.43 2.08 2.28 1.98 4.75c-.01.52-.15.81-.34.94l.14.06.02.01c.69.4.66.82.47 1.03M12.8 8.51a2.17 2.17 0 1 0-4.34 0 2.17 2.17 0 0 0 4.34 0m.94 2.39h-1.4l.7 1.22zm1.72-.15a2.24 2.24 0 1 0 0-4.47 2.24 2.24 0 0 0 0 4.47M3.94 17.73c.96.71 3.31-.53 2.4-4.43s-4.86 2.6-2.4 4.43m-3 3.77c.53.87 2.92 2.08 3.4.82.7-1.85-4.2-2.13-3.4-.82" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconHiboutheque 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 SvgIconItopstore: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconItopstore;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconItopstore = ({
|
|
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.77 4.72V15c0 .02-.03.05-.08.05a.05.05 0 0 1-.04-.05V9.33H.6v5.87h23.11V9.35L7.43 9.27v5.72c0 .03-.02.05-.07.05a.05.05 0 0 1-.05-.05V9.26L7.26 7l-.05-2.28H2.76zm2.6 1.56h.11c.58.07.87.58.6 1.06-.26.55-.77.57-1.1.07-.36-.53-.12-1.1.38-1.13zm-.6 2.3a1 1 0 0 1 .42.15c.53.31.6.92.24 2.33-.28 1.2-.21 1.52.32 1.52.5 0 .5.22 0 .43-.5.24-1.18.24-1.42 0-.27-.24-.24-1.13.05-2.33.26-1.18.19-1.54-.34-1.44-.55.1-.43-.17.2-.48.23-.1.38-.17.52-.17zm10.67 1.26c.4 0 .77.05 1.08.17.31.1.58.26.8.45.23.22.4.46.52.77.12.3.17.65.17 1.01 0 .39-.05.75-.17 1.04a2.18 2.18 0 0 1-1.34 1.22 3.37 3.37 0 0 1-2.12 0 2.5 2.5 0 0 1-.82-.48c-.21-.2-.38-.46-.5-.74a2.71 2.71 0 0 1 0-2.04c.12-.3.29-.56.5-.78a3.06 3.06 0 0 1 1.88-.63zm-7.53.1h4.71v.55h-2v4.08h-.71V10.5h-2zm11.28 0h1.49c.34 0 .63.02.84.07.24.04.46.12.63.21.21.12.36.27.48.43.12.2.17.41.17.68 0 .21-.03.4-.12.57-.08.17-.2.34-.37.46-.19.17-.4.3-.67.36s-.58.12-.98.12h-.75v1.73h-.72V9.93zm-3.75.43c-.55 0-.99.17-1.32.5-.32.32-.49.77-.49 1.37 0 .63.17 1.09.5 1.4.32.34.75.5 1.3.5s1-.16 1.33-.5c.34-.31.48-.77.48-1.4 0-.6-.14-1.05-.48-1.37-.31-.33-.74-.5-1.32-.5m4.47.1v1.84h.63c.3 0 .55-.02.72-.07.19-.04.33-.12.45-.21a.77.77 0 0 0 .34-.68.7.7 0 0 0-.12-.4c-.05-.13-.17-.22-.29-.3s-.26-.12-.4-.14a4 4 0 0 0-.58-.05h-.75zm-5.7 5.04v.44h-.17v.21h.17v.8c0 .19.05.3.12.4q.15.12.36.12c.05 0 .1 0 .15-.02.07 0 .12 0 .16-.02v-.22h-.02l-.1.02c-.04 0-.07.03-.12.03-.07 0-.11-.03-.16-.03-.03-.02-.05-.04-.07-.1-.03-.02-.05-.06-.05-.11v-.87H15v-.21h-.53v-.44h-.27zm1.68.39c-.21 0-.38.07-.5.21s-.2.34-.2.58.08.46.2.58c.12.14.29.21.5.21s.39-.07.51-.21c.14-.12.2-.34.2-.58s-.06-.43-.2-.58a.62.62 0 0 0-.5-.21zm2.91 0a.7.7 0 0 0-.52.21.9.9 0 0 0-.2.6c0 .24.08.44.22.58.12.12.34.2.58.2.1 0 .19 0 .29-.03l.26-.1v-.28h-.02a.46.46 0 0 1-.22.12.8.8 0 0 1-.31.07l-.22-.03c-.07-.02-.12-.07-.17-.12-.04-.02-.1-.1-.12-.17a.6.6 0 0 1-.04-.24h1.13v-.12c0-.24-.05-.4-.17-.52s-.27-.17-.48-.17zm-5.5 0c-.1 0-.2.02-.27.05a.36.36 0 0 0-.19.1c-.07.04-.1.09-.12.14s-.05.12-.05.16c0 .12.03.2.1.27.05.07.14.12.26.14.05.03.12.03.17.05l.15.02c.1.03.16.05.19.08s.05.07.05.14-.03.12-.1.17a.64.64 0 0 1-.27.05c-.07 0-.16-.03-.26-.05-.12-.05-.2-.1-.29-.15v.3c.05.02.14.04.24.09.07.02.2.02.29.02.22 0 .36-.04.48-.12.12-.1.17-.21.17-.36 0-.1-.03-.19-.1-.26a.7.7 0 0 0-.26-.12c-.05-.03-.1-.03-.15-.05-.07 0-.12 0-.16-.02l-.2-.08c-.02-.02-.04-.07-.04-.14s.02-.12.1-.17c.06-.02.14-.05.23-.05.07 0 .17.03.27.05l.24.12h.02v-.26l-.24-.08a1 1 0 0 0-.26-.04m3.7.05v1.51h.24v-1.08l.22-.15c.07-.02.14-.04.24-.04h.12c.02.02.07.02.12.02v-.26h-.2c-.07 0-.14 0-.21.04-.1.03-.17.1-.29.17v-.21zm1.8.16c.12 0 .24.03.3.1.07.07.09.2.11.31h-.89a.55.55 0 0 1 .15-.29c.1-.1.19-.12.34-.12zm-2.9 0c.14 0 .23.05.33.15.07.1.1.24.1.43s-.03.34-.1.43c-.1.1-.19.15-.34.15-.12 0-.24-.05-.3-.15s-.13-.24-.13-.43c0-.2.05-.34.12-.43s.2-.15.31-.15zm5.74.37c-.12 0-.24.04-.31.14a.6.6 0 0 0 0 .72c.07.09.2.15.31.15.15 0 .24-.05.31-.15.1-.1.12-.21.12-.36s-.02-.27-.12-.36a.33.33 0 0 0-.3-.15zm1.16 0c-.05 0-.12.02-.17.04s-.1.05-.14.1v-.12h-.15v.96h.15v-.72l.14-.07c.02-.03.07-.03.12-.03h.1l.07.08.02.07v.67h.17v-.67c-.02 0-.02-.03-.02-.05l.14-.07a.3.3 0 0 1 .12-.03h.12c.02.03.05.05.05.08.02.02.02.04.02.07v.67h.17v-.62c0-.12-.03-.2-.07-.27a.32.32 0 0 0-.24-.1c-.05 0-.12.03-.17.05s-.1.05-.17.12c-.02-.04-.05-.1-.1-.12s-.1-.04-.16-.04m-2.02 0c-.15 0-.27.04-.34.14-.1.1-.14.21-.14.36 0 .07.02.14.04.22s.05.12.1.14c.02.05.07.07.14.1.05.02.12.04.2.04l.14-.02.14-.07v-.17l-.04.02-.08.05c-.02 0-.04.03-.1.03-.02.02-.04.02-.09.02a.3.3 0 0 1-.21-.1c-.05-.07-.08-.14-.08-.26s.03-.22.08-.27a.3.3 0 0 1 .21-.1l.17.03c.05.03.1.05.14.1v-.17l-.14-.07c-.05 0-.1-.03-.14-.03zm.86.14c.1 0 .15.02.2.1.04.04.07.14.07.26s-.03.22-.08.27c-.04.07-.1.1-.19.1a.22.22 0 0 1-.19-.1c-.05-.05-.07-.15-.07-.27s.02-.22.07-.27c.05-.07.12-.1.2-.1zm-1.85.6v.24h.22v-.24z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconItopstore 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 SvgIconKne: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconKne;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconKne = ({
|
|
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: "M1.75 1.59v20.85H22.6V12.22H12.07V1.59zm7.03 2.62c.04 0 .16.07.29.15.19.14.12.24-1.09 1.39l-1.3 1.23L8.15 8.5c1.52 1.6 1.56 1.66.9 1.74-.27.02-.44-.12-1.52-1.3a67 67 0 0 0-1.5-1.61L5.76 7v3.32H5.4c-.22 0-.41-.05-.44-.12s-.04-1.45-.02-3.03l.02-2.89h.75l.05 1.35L5.79 7l.22-.22c.77-.8 2.7-2.57 2.77-2.57M1.9 12.03h9.96v.07H1.9zm16.69.3c.17 0 .21.35.1.49-.08.07-.46.36-.9.63-.84.5-.93.52-1 .33a7.3 7.3 0 0 1 1.8-1.44zm-6.6.06h.13v9.8H12v-9.8zm3.86 2.26h3.17v.53H16.7v2.09h2.33v.53H16.7v2.43h2.74v.52h-3.58v-6.1zm-6.28.05h.24v6l-.29.03c-.26.03-.31 0-2.11-1.92-.39-.41-.85-.92-1.04-1.16-.19-.21-.6-.67-.91-.98-.31-.34-.55-.63-.55-.68s-.05-.1-.1-.1c-.07 0-.12.95-.14 2.41l-.03 2.4-.26.03c-.15.03-.32 0-.34-.04-.05-.03-.07-1.38-.07-2.94 0-2.16.02-2.9.12-2.96.33-.21.55-.07 1.42.9.5.55 1.25 1.34 1.66 1.77s.84.94.98 1.1c.17.2.43.49.6.66l.32.31.02-2.3c.02-1.3.07-2.36.14-2.44.05-.07.2-.12.34-.1z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconKne as default
|
|
12
|
+
};
|