@edifice.io/react 2.0.0-develop-rc.14 → 2.0.0-develop-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/audience.js +16 -0
- package/dist/comments.js +4 -0
- package/dist/components/ActionBar/ActionBar.d.ts +0 -1
- package/dist/components/ActionBar/ActionBar.js +8 -0
- package/dist/components/Alert/Alert.d.ts +3 -3
- package/dist/components/Alert/Alert.js +81 -0
- package/dist/components/AppHeader/AppHeader.d.ts +1 -1
- package/dist/components/AppHeader/AppHeader.js +22 -0
- package/dist/components/AppIcon/AppIcon.d.ts +11 -11
- package/dist/components/AppIcon/AppIcon.js +51 -0
- package/dist/components/AppIcon/index.d.ts +1 -1
- package/dist/components/Attachment/Attachment.d.ts +1 -1
- package/dist/components/Attachment/Attachment.js +18 -0
- package/dist/components/Avatar/Avatar.d.ts +3 -4
- package/dist/components/Avatar/Avatar.js +33 -0
- package/dist/components/Badge/Badge.d.ts +20 -18
- package/dist/components/Badge/Badge.js +18 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +3 -2
- package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +2 -2
- package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
- package/dist/components/Breadcrumb/index.d.ts +1 -0
- package/dist/components/Button/Button.d.ts +5 -5
- package/dist/components/Button/IconButton.d.ts +1 -1
- package/dist/components/Button/IconButton.js +18 -0
- package/dist/components/Button/SearchButton.d.ts +1 -1
- package/dist/components/Button/SearchButton.js +17 -0
- package/dist/components/Card/Card.d.ts +11 -7
- package/dist/components/Card/Card.js +53 -0
- package/dist/components/Card/CardBody.d.ts +2 -2
- package/dist/components/Card/CardContext.d.ts +2 -2
- package/dist/components/Card/CardHeader.js +22 -0
- package/dist/components/Card/CardImage.d.ts +2 -2
- package/dist/components/Card/CardImage.js +21 -0
- package/dist/components/Card/CardText.d.ts +1 -1
- package/dist/components/Card/CardTitle.d.ts +1 -1
- package/dist/components/Card/CardUser.js +10 -0
- package/dist/components/Checkbox/Checkbox.d.ts +0 -1
- package/dist/components/ColorPicker/ColorPalette.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.js +38 -0
- package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
- package/dist/components/Combobox/ComboboxTrigger.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.js +60 -0
- package/dist/components/Dropdown/DropdownContext.d.ts +1 -1
- package/dist/components/Dropdown/DropdownItem.d.ts +1 -1
- package/dist/components/Dropdown/DropdownMenu.d.ts +2 -2
- package/dist/components/Dropdown/DropdownTrigger.d.ts +3 -4
- package/dist/components/Dropdown/DropdownTrigger.js +34 -0
- package/dist/components/Dropzone/Dropzone.d.ts +26 -2
- package/dist/components/Dropzone/Dropzone.js +55 -0
- package/dist/components/Dropzone/DropzoneContext.d.ts +0 -1
- package/dist/components/Dropzone/DropzoneFile.d.ts +2 -1
- package/dist/components/Dropzone/DropzoneFile.js +30 -0
- package/dist/components/Dropzone/DropzoneImport.js +28 -0
- package/dist/components/Dropzone/index.d.ts +2 -1
- package/dist/components/EmptyScreen/EmptyScreen.d.ts +5 -1
- package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
- package/dist/components/Form/FormContext.d.ts +1 -1
- package/dist/components/Form/FormControl.d.ts +4 -4
- package/dist/components/Form/FormText.js +17 -0
- package/dist/components/Grid/Grid.d.ts +1 -1
- package/dist/components/Heading/Heading.d.ts +1 -1
- package/dist/components/Image/Image.d.ts +3 -4
- package/dist/components/Image/Image.js +41 -0
- package/dist/components/Input/Input.d.ts +2 -2
- package/dist/components/Label/Label.d.ts +2 -2
- package/dist/components/Layout/Layout.d.ts +12 -0
- package/dist/components/Layout/Layout.js +44 -0
- package/dist/components/Layout/components/Header.js +189 -0
- package/dist/components/Layout/components/Help.js +25 -0
- package/dist/components/Layout/components/Main.d.ts +16 -0
- package/dist/components/Layout/components/NavItem.d.ts +6 -0
- package/dist/components/Layout/components/NavLink.js +19 -0
- package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
- package/dist/components/Layout/components/SearchEngine.js +33 -0
- package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
- package/dist/components/Layout/components/WidgetApps.js +23 -0
- package/dist/components/Layout/hooks/index.d.ts +2 -0
- package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
- package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
- package/dist/components/Layout/hooks/useHelp.js +85 -0
- package/dist/components/List/List.d.ts +23 -0
- package/dist/components/List/List.js +50 -0
- package/dist/components/List/index.d.ts +1 -0
- package/dist/components/Loading/Loading.d.ts +1 -1
- package/dist/components/Loading/Loading.js +27 -0
- package/dist/components/LoadingScreen/LoadingScreen.d.ts +0 -1
- package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
- package/dist/components/Logo/Logo.d.ts +0 -1
- package/dist/components/Logo/Logo.js +14 -0
- package/dist/components/Menu/components/Menu.js +27 -0
- package/dist/components/Menu/components/MenuButton.d.ts +5 -0
- package/dist/components/Menu/components/MenuButton.js +21 -0
- package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
- package/dist/components/Menu/hooks/useMenu.js +50 -0
- package/dist/components/Menu/index.d.ts +2 -2
- package/dist/components/Modal/Modal.d.ts +1 -2
- package/dist/components/Modal/ModalContext.d.ts +0 -1
- package/dist/components/Modal/ModalHeader.js +27 -0
- package/dist/components/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.js +36 -0
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Select/Select.js +37 -0
- package/dist/components/Select/SelectTrigger.d.ts +1 -1
- package/dist/components/Table/components/Table.d.ts +30 -0
- package/dist/components/Table/components/Table.js +19 -0
- package/dist/components/Table/components/TableTbody.d.ts +6 -0
- package/dist/components/Table/components/TableTbody.js +11 -0
- package/dist/components/Table/components/TableTd.d.ts +4 -0
- package/dist/components/Table/components/TableTd.js +11 -0
- package/dist/components/Table/components/TableTh.d.ts +4 -0
- package/dist/components/Table/components/TableTh.js +11 -0
- package/dist/components/Table/components/TableThead.d.ts +4 -0
- package/dist/components/Table/components/TableThead.js +11 -0
- package/dist/components/Table/components/TableTr.d.ts +4 -0
- package/dist/components/Table/components/TableTr.js +11 -0
- package/dist/components/Table/index.d.ts +2 -2
- package/dist/components/Tabs/components/Tabs.d.ts +42 -0
- package/dist/components/Tabs/components/Tabs.js +45 -0
- package/dist/components/Tabs/components/TabsItem.js +26 -0
- package/dist/components/Tabs/components/TabsList.d.ts +6 -0
- package/dist/components/Tabs/components/TabsList.js +24 -0
- package/dist/components/Tabs/components/TabsPanel.js +14 -0
- package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
- package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
- package/dist/components/Tabs/hooks/useTabs.js +61 -0
- package/dist/components/Tabs/index.d.ts +2 -3
- package/dist/components/TextArea/TextArea.d.ts +2 -2
- package/dist/components/Toolbar/Toolbar.d.ts +18 -18
- package/dist/components/Toolbar/Toolbar.js +78 -0
- package/dist/components/Toolbar/index.d.ts +0 -1
- package/dist/components/Tooltip/Tooltip.d.ts +4 -4
- package/dist/components/Tooltip/Tooltip.js +41 -0
- package/dist/components/Tree/components/DndTree.d.ts +3 -0
- package/dist/components/Tree/components/DndTree.js +61 -0
- package/dist/components/Tree/components/SortableTree.d.ts +9 -0
- package/dist/components/Tree/components/SortableTree.js +143 -0
- package/dist/components/Tree/components/Tree.d.ts +7 -0
- package/dist/components/Tree/components/Tree.js +86 -0
- package/dist/components/Tree/hooks/useTree.d.ts +31 -0
- package/dist/components/Tree/hooks/useTree.js +87 -0
- package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
- package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
- package/dist/components/Tree/index.d.ts +6 -0
- package/dist/components/Tree/types/index.d.ts +170 -0
- package/dist/components/Tree/utilities/tree-sortable.d.ts +29 -0
- package/dist/components/Tree/utilities/tree-sortable.js +144 -0
- package/dist/components/Tree/utilities/tree.d.ts +34 -0
- package/dist/components/Tree/utilities/tree.js +44 -0
- package/dist/components/TreeView/TreeNode.d.ts +37 -11
- package/dist/components/TreeView/TreeNode.js +69 -0
- package/dist/components/TreeView/TreeView.d.ts +28 -12
- package/dist/components/TreeView/TreeView.js +37 -0
- package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
- package/dist/components/TreeView/hooks/useTreeView.js +105 -0
- package/dist/components/TreeView/index.d.ts +2 -1
- package/dist/components/TreeView/utilities/index.d.ts +1 -0
- package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
- package/dist/components/TreeView/utilities/treeview.js +53 -0
- package/dist/components/index.d.ts +3 -4
- package/dist/editor.js +58 -0
- package/dist/hooks/index.d.ts +28 -2
- package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
- package/dist/hooks/useAvatar/useAvatar.js +30 -0
- package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
- package/dist/hooks/useBookmark/useBookmark.js +14 -0
- package/dist/hooks/useBreakpoint/index.d.ts +1 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
- package/dist/hooks/useCantoo/useCantoo.js +18 -0
- package/dist/hooks/useCheckable/index.d.ts +1 -0
- package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
- package/dist/hooks/useCheckable/useCheckable.js +21 -0
- package/dist/hooks/useClickOutside/useClickOutside.d.ts +0 -1
- package/dist/hooks/useConf/useConf.d.ts +4 -0
- package/dist/hooks/useConf/useConf.js +13 -0
- package/dist/hooks/useConversation/useConversation.js +43 -0
- package/dist/hooks/useDate/useDate.d.ts +14 -0
- package/dist/hooks/useDate/useDate.js +65 -0
- package/dist/hooks/useDirectory/index.d.ts +1 -0
- package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
- package/dist/hooks/useDirectory/useDirectory.js +16 -0
- package/dist/hooks/useDropdown/useDropdown.d.ts +2 -2
- package/dist/hooks/useDropdown/useDropdown.js +158 -0
- package/dist/hooks/useDropzone/useDropzone.d.ts +3 -3
- package/dist/hooks/useDropzone/useDropzone.js +78 -0
- package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
- package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
- package/dist/hooks/useHeader/useHeader.d.ts +5 -0
- package/dist/hooks/useHeader/useHeader.js +46 -0
- package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
- package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
- package/dist/hooks/usePaths/usePaths.js +7 -0
- package/dist/hooks/usePreferences/usePreferences.js +10 -0
- package/dist/hooks/useResource/useResource.d.ts +3 -0
- package/dist/hooks/useResource/useResource.js +25 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
- package/dist/hooks/useSession/useSession.js +11 -0
- package/dist/hooks/useToast/useToast.d.ts +1 -1
- package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +0 -1
- package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
- package/dist/hooks/useUpload/useUpload.d.ts +18 -0
- package/dist/hooks/useUpload/useUpload.js +106 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
- package/dist/hooks/useUser/useUser.d.ts +7 -0
- package/dist/hooks/useUser/useUser.js +22 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
- package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
- package/dist/icons-apps.js +232 -0
- package/dist/icons-audience.js +28 -0
- package/dist/icons-nav.js +28 -0
- package/dist/icons.js +300 -0
- package/dist/index.d.ts +3 -6
- package/dist/index.js +201 -261
- package/dist/modals.js +18 -0
- package/dist/modules/audience/ReactionChoice.d.ts +11 -0
- package/dist/modules/audience/ReactionChoice.js +33 -0
- package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
- package/dist/modules/audience/ReactionModal.Card.js +33 -0
- package/dist/modules/audience/ReactionModal.d.ts +20 -0
- package/dist/modules/audience/ReactionModal.js +72 -0
- package/dist/modules/audience/ReactionSummary.d.ts +10 -0
- package/dist/modules/audience/ReactionSummary.js +27 -0
- package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
- package/dist/modules/audience/ViewsByProfileCard.js +40 -0
- package/dist/modules/audience/ViewsCounter.d.ts +10 -0
- package/dist/modules/audience/ViewsCounter.js +18 -0
- package/dist/modules/audience/ViewsModal.d.ts +11 -0
- package/dist/modules/audience/ViewsModal.js +41 -0
- package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
- package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
- package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
- package/dist/modules/audience/hooks/useReactions.js +35 -0
- package/dist/modules/audience/hooks/useViews.d.ts +11 -0
- package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
- package/dist/modules/comments/components/BadgeProfile.js +18 -0
- package/dist/modules/comments/components/Comment.d.ts +7 -0
- package/dist/modules/comments/components/Comment.js +72 -0
- package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
- package/dist/modules/comments/components/CommentAvatar.js +17 -0
- package/dist/modules/comments/components/CommentDate.d.ts +4 -0
- package/dist/modules/comments/components/CommentDate.js +27 -0
- package/dist/modules/comments/components/CommentForm.d.ts +3 -0
- package/dist/modules/comments/components/CommentForm.js +37 -0
- package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
- package/dist/modules/comments/components/CommentHeader.js +8 -0
- package/dist/modules/comments/components/CommentList.d.ts +1 -0
- package/dist/modules/comments/components/CommentList.js +22 -0
- package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
- package/dist/modules/comments/components/CommentTitle.js +7 -0
- package/dist/modules/comments/components/TextCounter.d.ts +4 -0
- package/dist/modules/comments/components/TextCounter.js +8 -0
- package/dist/modules/comments/constants.d.ts +20 -0
- package/dist/modules/comments/constants.js +8 -0
- package/dist/modules/comments/context/Context.d.ts +16 -0
- package/dist/modules/comments/context/Context.js +5 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
- package/dist/modules/comments/hooks/useComments.d.ts +29 -0
- package/dist/modules/comments/hooks/useComments.js +66 -0
- package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
- package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
- package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
- package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
- package/dist/modules/comments/index.d.ts +1 -0
- package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
- package/dist/modules/comments/provider/CommentProvider.js +85 -0
- package/dist/modules/comments/types.d.ts +102 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
- package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
- package/dist/modules/editor/components/Editor/Editor.js +82 -0
- package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
- package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
- package/dist/modules/editor/components/Editor/index.d.ts +2 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
- package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.js +73 -0
- package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
- package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
- package/dist/modules/editor/components/index.d.ts +6 -0
- package/dist/modules/editor/hooks/index.d.ts +12 -0
- package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
- package/dist/modules/editor/hooks/useActionOptions.js +86 -0
- package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
- package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
- package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
- package/dist/modules/editor/hooks/useEditorContext.js +12 -0
- package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
- package/dist/modules/editor/hooks/useImageModal.js +46 -0
- package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
- package/dist/modules/editor/hooks/useImageSelection.js +46 -0
- package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
- package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
- package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
- package/dist/modules/editor/hooks/useMathsModal.js +17 -0
- package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
- package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
- package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
- package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
- package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
- package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
- package/dist/modules/editor/index.d.ts +3 -0
- package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
- package/dist/modules/editor/utilities/has-extension.js +4 -0
- package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
- package/dist/modules/editor/utilities/has-mark.js +4 -0
- package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
- package/dist/modules/editor/utilities/has-text-style.js +5 -0
- package/dist/modules/icons/components/IconAdd.d.ts +7 -0
- package/dist/modules/icons/components/IconAdd.js +12 -0
- package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
- package/dist/modules/icons/components/IconAddUser.js +12 -0
- package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertCircle.js +13 -0
- package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
- package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignCenter.js +12 -0
- package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignJustify.js +12 -0
- package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignLeft.js +12 -0
- package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignRight.js +12 -0
- package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
- package/dist/modules/icons/components/IconAnswer.js +13 -0
- package/dist/modules/icons/components/IconApplications.d.ts +7 -0
- package/dist/modules/icons/components/IconApplications.js +12 -0
- package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowDown.js +13 -0
- package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowLeft.js +13 -0
- package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowRight.js +13 -0
- package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowUp.js +13 -0
- package/dist/modules/icons/components/IconBlock.d.ts +7 -0
- package/dist/modules/icons/components/IconBlock.js +12 -0
- package/dist/modules/icons/components/IconBlur.d.ts +7 -0
- package/dist/modules/icons/components/IconBlur.js +13 -0
- package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
- package/dist/modules/icons/components/IconBookmark.js +12 -0
- package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
- package/dist/modules/icons/components/IconBulletList.js +16 -0
- package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
- package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
- package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendar.js +12 -0
- package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendarLight.js +12 -0
- package/dist/modules/icons/components/IconCamera.d.ts +7 -0
- package/dist/modules/icons/components/IconCamera.js +13 -0
- package/dist/modules/icons/components/IconCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconCenter.js +12 -0
- package/dist/modules/icons/components/IconCheck.d.ts +7 -0
- package/dist/modules/icons/components/IconCheck.js +12 -0
- package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
- package/dist/modules/icons/components/IconChecklist.js +13 -0
- package/dist/modules/icons/components/IconClock.d.ts +7 -0
- package/dist/modules/icons/components/IconClock.js +12 -0
- package/dist/modules/icons/components/IconClose.d.ts +7 -0
- package/dist/modules/icons/components/IconClose.js +13 -0
- package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
- package/dist/modules/icons/components/IconCode.d.ts +7 -0
- package/dist/modules/icons/components/IconCode.js +12 -0
- package/dist/modules/icons/components/IconCopy.d.ts +7 -0
- package/dist/modules/icons/components/IconCopy.js +12 -0
- package/dist/modules/icons/components/IconCrop.d.ts +7 -0
- package/dist/modules/icons/components/IconCrop.js +13 -0
- package/dist/modules/icons/components/IconCut.d.ts +7 -0
- package/dist/modules/icons/components/IconCut.js +13 -0
- package/dist/modules/icons/components/IconDelete.d.ts +7 -0
- package/dist/modules/icons/components/IconDelete.js +12 -0
- package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColor.js +13 -0
- package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
- package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRow.js +12 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
- package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
- package/dist/modules/icons/components/IconDownload.d.ts +7 -0
- package/dist/modules/icons/components/IconDownload.js +17 -0
- package/dist/modules/icons/components/IconEdit.d.ts +7 -0
- package/dist/modules/icons/components/IconEdit.js +13 -0
- package/dist/modules/icons/components/IconError.d.ts +7 -0
- package/dist/modules/icons/components/IconError.js +12 -0
- package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
- package/dist/modules/icons/components/IconExternalLink.js +13 -0
- package/dist/modules/icons/components/IconFiles.d.ts +7 -0
- package/dist/modules/icons/components/IconFiles.js +12 -0
- package/dist/modules/icons/components/IconFilter.d.ts +7 -0
- package/dist/modules/icons/components/IconFilter.js +12 -0
- package/dist/modules/icons/components/IconFlag.d.ts +7 -0
- package/dist/modules/icons/components/IconFlag.js +12 -0
- package/dist/modules/icons/components/IconFolder.d.ts +7 -0
- package/dist/modules/icons/components/IconFolder.js +12 -0
- package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderMove.js +17 -0
- package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
- package/dist/modules/icons/components/IconForgoing.js +12 -0
- package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconFullScreen.js +12 -0
- package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
- package/dist/modules/icons/components/IconGlobe.js +12 -0
- package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
- package/dist/modules/icons/components/IconHeadphone.js +12 -0
- package/dist/modules/icons/components/IconHide.d.ts +7 -0
- package/dist/modules/icons/components/IconHide.js +13 -0
- package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
- package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightRow.js +12 -0
- package/dist/modules/icons/components/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/IconHome.js +12 -0
- package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
- package/dist/modules/icons/components/IconHourglass.js +12 -0
- package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
- package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
- package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
- package/dist/modules/icons/components/IconInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconInbox.js +12 -0
- package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconInfoCircle.js +13 -0
- package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
- package/dist/modules/icons/components/IconLandscape.js +12 -0
- package/dist/modules/icons/components/IconLink.d.ts +7 -0
- package/dist/modules/icons/components/IconLink.js +16 -0
- package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
- package/dist/modules/icons/components/IconListOrder.js +12 -0
- package/dist/modules/icons/components/IconLoader.d.ts +7 -0
- package/dist/modules/icons/components/IconLoader.js +12 -0
- package/dist/modules/icons/components/IconLock.d.ts +7 -0
- package/dist/modules/icons/components/IconLock.js +12 -0
- package/dist/modules/icons/components/IconMail.d.ts +7 -0
- package/dist/modules/icons/components/IconMail.js +13 -0
- package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
- package/dist/modules/icons/components/IconMergeCells.js +13 -0
- package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
- package/dist/modules/icons/components/IconMessageInfo.js +13 -0
- package/dist/modules/icons/components/IconMic.d.ts +7 -0
- package/dist/modules/icons/components/IconMic.js +12 -0
- package/dist/modules/icons/components/IconMinus.d.ts +7 -0
- package/dist/modules/icons/components/IconMinus.js +12 -0
- package/dist/modules/icons/components/IconMove.d.ts +7 -0
- package/dist/modules/icons/components/IconMove.js +14 -0
- package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
- package/dist/modules/icons/components/IconNoColors.js +12 -0
- package/dist/modules/icons/components/IconOptions.d.ts +7 -0
- package/dist/modules/icons/components/IconOptions.js +14 -0
- package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
- package/dist/modules/icons/components/IconOrderedList.js +16 -0
- package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
- package/dist/modules/icons/components/IconPaperclip.js +12 -0
- package/dist/modules/icons/components/IconPause.d.ts +7 -0
- package/dist/modules/icons/components/IconPause.js +12 -0
- package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOff.js +12 -0
- package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOn.js +12 -0
- package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/IconPlay.d.ts +7 -0
- package/dist/modules/icons/components/IconPlay.js +12 -0
- package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
- package/dist/modules/icons/components/IconPlayFilled.js +12 -0
- package/dist/modules/icons/components/IconPlus.d.ts +7 -0
- package/dist/modules/icons/components/IconPlus.js +12 -0
- package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerDefault.js +12 -0
- package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerHand.js +12 -0
- package/dist/modules/icons/components/IconPrint.d.ts +7 -0
- package/dist/modules/icons/components/IconPrint.js +12 -0
- package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
- package/dist/modules/icons/components/IconQuestion.js +14 -0
- package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterDown.js +12 -0
- package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterLeft.js +12 -0
- package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterRight.js +12 -0
- package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterUp.js +12 -0
- package/dist/modules/icons/components/IconReaction.d.ts +7 -0
- package/dist/modules/icons/components/IconReaction.js +12 -0
- package/dist/modules/icons/components/IconRecord.d.ts +7 -0
- package/dist/modules/icons/components/IconRecord.js +12 -0
- package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordPause.js +12 -0
- package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordStop.js +12 -0
- package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordVideo.js +12 -0
- package/dist/modules/icons/components/IconRedo.d.ts +7 -0
- package/dist/modules/icons/components/IconRedo.js +13 -0
- package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
- package/dist/modules/icons/components/IconRefresh.js +13 -0
- package/dist/modules/icons/components/IconReset.d.ts +7 -0
- package/dist/modules/icons/components/IconReset.js +12 -0
- package/dist/modules/icons/components/IconRestart.d.ts +7 -0
- package/dist/modules/icons/components/IconRestart.js +12 -0
- package/dist/modules/icons/components/IconRestore.d.ts +7 -0
- package/dist/modules/icons/components/IconRestore.js +12 -0
- package/dist/modules/icons/components/IconSave.d.ts +7 -0
- package/dist/modules/icons/components/IconSave.js +12 -0
- package/dist/modules/icons/components/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconSearch.js +12 -0
- package/dist/modules/icons/components/IconSee.d.ts +7 -0
- package/dist/modules/icons/components/IconSee.js +13 -0
- package/dist/modules/icons/components/IconSend.d.ts +7 -0
- package/dist/modules/icons/components/IconSend.js +12 -0
- package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
- package/dist/modules/icons/components/IconSetBackground.js +17 -0
- package/dist/modules/icons/components/IconSettings.d.ts +7 -0
- package/dist/modules/icons/components/IconSettings.js +16 -0
- package/dist/modules/icons/components/IconShare.d.ts +7 -0
- package/dist/modules/icons/components/IconShare.js +12 -0
- package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
- package/dist/modules/icons/components/IconSmartphone.js +13 -0
- package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
- package/dist/modules/icons/components/IconSmiley.js +13 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescending.js +13 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
- package/dist/modules/icons/components/IconSortTime.js +14 -0
- package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
- package/dist/modules/icons/components/IconSpeechToText.js +12 -0
- package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
- package/dist/modules/icons/components/IconSplitCells.js +13 -0
- package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
- package/dist/modules/icons/components/IconSquareRoot.js +12 -0
- package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSubscript.js +12 -0
- package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessFill.js +12 -0
- package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
- package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSuperscript.js +12 -0
- package/dist/modules/icons/components/IconTable.d.ts +7 -0
- package/dist/modules/icons/components/IconTable.js +12 -0
- package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
- package/dist/modules/icons/components/IconTextBold.js +12 -0
- package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
- package/dist/modules/icons/components/IconTextColor.js +16 -0
- package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconTextHighlight.js +16 -0
- package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
- package/dist/modules/icons/components/IconTextItalic.js +12 -0
- package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
- package/dist/modules/icons/components/IconTextPage.js +12 -0
- package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
- package/dist/modules/icons/components/IconTextSize.js +12 -0
- package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
- package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
- package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
- package/dist/modules/icons/components/IconTextTypo.js +12 -0
- package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
- package/dist/modules/icons/components/IconTextUnderline.js +13 -0
- package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
- package/dist/modules/icons/components/IconTextVanilla.js +13 -0
- package/dist/modules/icons/components/IconTool.d.ts +7 -0
- package/dist/modules/icons/components/IconTool.js +12 -0
- package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
- package/dist/modules/icons/components/IconTrendingUp.js +16 -0
- package/dist/modules/icons/components/IconUndo.d.ts +7 -0
- package/dist/modules/icons/components/IconUndo.js +13 -0
- package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlink.js +13 -0
- package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlock.js +13 -0
- package/dist/modules/icons/components/IconUpload.d.ts +7 -0
- package/dist/modules/icons/components/IconUpload.js +18 -0
- package/dist/modules/icons/components/IconUser.d.ts +7 -0
- package/dist/modules/icons/components/IconUser.js +12 -0
- package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconUserSearch.js +13 -0
- package/dist/modules/icons/components/IconUsers.d.ts +7 -0
- package/dist/modules/icons/components/IconUsers.js +13 -0
- package/dist/modules/icons/components/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconVideo.js +12 -0
- package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconViewCalendar.js +12 -0
- package/dist/modules/icons/components/IconViewList.d.ts +7 -0
- package/dist/modules/icons/components/IconViewList.js +15 -0
- package/dist/modules/icons/components/IconWand.d.ts +7 -0
- package/dist/modules/icons/components/IconWand.js +12 -0
- package/dist/modules/icons/components/IconWrite.d.ts +7 -0
- package/dist/modules/icons/components/IconWrite.js +12 -0
- package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomIn.js +12 -0
- package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomOut.js +12 -0
- package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAccount.js +12 -0
- package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconActualites.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
- package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
- package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconArchive.js +12 -0
- package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
- package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssr.js +12 -0
- package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAward.js +12 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
- package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
- package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBlog.js +12 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
- package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
- package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCcn.js +12 -0
- package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCerise.js +12 -0
- package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
- package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharte.js +12 -0
- package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconChat.js +12 -0
- package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCidj.js +12 -0
- package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCns.js +12 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
- package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
- package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
- package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConversation.js +12 -0
- package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
- package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
- package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElectron.js +12 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
- package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
- package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
- package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
- package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForms.js +16 -0
- package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForum.js +12 -0
- package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGepi.js +12 -0
- package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
- package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconKne.js +12 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
- package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
- package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
- package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
- package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLsu.js +12 -0
- package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
- package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
- package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
- package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
- package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
- package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
- package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNote.js +12 -0
- package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
- package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotes.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
- package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPad.js +12 -0
- package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPages.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
- package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
- package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParcours.js +12 -0
- package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPoll.js +12 -0
- package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPresences.js +16 -0
- package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconProeps.js +12 -0
- package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPronote.js +12 -0
- package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPublic.js +12 -0
- package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwant.js +12 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
- package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRack.js +12 -0
- package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRbs.js +12 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
- package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
- package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
- package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
- package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
- package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
- package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStats.js +12 -0
- package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
- package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSupport.js +12 -0
- package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
- package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
- package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
- package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
- package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVideo.js +12 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
- package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
- package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
- package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWiki.js +13 -0
- package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
- package/dist/modules/icons/components/apps/index.d.ts +115 -0
- package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
- package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreat.js +16 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
- package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGuest.js +12 -0
- package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
- package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconParent.js +12 -0
- package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
- package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconStudent.js +20 -0
- package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
- package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanks.js +18 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
- package/dist/modules/icons/components/audience/index.d.ts +13 -0
- package/dist/modules/icons/components/index.d.ts +149 -0
- package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
- package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
- package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconHome.js +12 -0
- package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
- package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconProfile.js +12 -0
- package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconSearch.js +12 -0
- package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
- package/dist/modules/icons/components/nav/index.d.ts +13 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.js +59 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
- package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
- package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
- package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
- package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
- package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
- package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
- package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
- package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
- package/dist/modules/multimedia/Embed/Embed.js +32 -0
- package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
- package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
- package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
- package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
- package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
- package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
- package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
- package/dist/modules/multimedia/Linker/index.d.ts +4 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
- package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
- package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
- package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
- package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
- package/dist/modules/multimedia/index.d.ts +7 -0
- package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
- package/dist/multimedia.js +18 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +26 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +10 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
- package/dist/providers/index.d.ts +4 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/size.d.ts +1 -1
- package/dist/types/status.d.ts +1 -1
- package/dist/types/treedata.d.ts +30 -0
- package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
- package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
- package/dist/utilities/check-user-rights/index.d.ts +1 -0
- package/dist/utilities/index.d.ts +2 -0
- package/dist/utilities/refs/index.d.ts +1 -0
- package/package.json +115 -40
- package/dist/common/OnboardingModal/useOnboardingModal.d.ts +0 -7
- package/dist/common/PublishModal/PublishModal.d.ts +0 -9
- package/dist/common/PublishModal/components/AgeSelect.d.ts +0 -8
- package/dist/common/PublishModal/components/ToastSuccess.d.ts +0 -4
- package/dist/common/PublishModal/hooks/usePublishModal.d.ts +0 -38
- package/dist/common/ResourceModal/ResourceModal.d.ts +0 -30
- package/dist/common/ResourceModal/apps/BlogPublic.d.ts +0 -13
- package/dist/common/ResourceModal/hooks/useSlug.d.ts +0 -17
- package/dist/common/ResourceModal/hooks/useThumb.d.ts +0 -11
- package/dist/common/ResourceModal/hooks/useUpdateMutation.d.ts +0 -7
- package/dist/common/ShareModal/ShareBookmarkLine.d.ts +0 -9
- package/dist/common/ShareModal/ShareModal.d.ts +0 -41
- package/dist/common/ShareModal/apps/ShareBlog.d.ts +0 -8
- package/dist/common/ShareModal/hooks/useSearch.d.ts +0 -24
- package/dist/common/ShareModal/hooks/useShare.d.ts +0 -54
- package/dist/common/ShareModal/hooks/useShareBookmark.d.ts +0 -23
- package/dist/common/ShareModal/hooks/useShareMutation.d.ts +0 -13
- package/dist/common/ShareModal/utils/hasRight.d.ts +0 -2
- package/dist/common/ShareModal/utils/showShareRightLine.d.ts +0 -2
- package/dist/components/Audience/ReactionChoice.d.ts +0 -11
- package/dist/components/Audience/ReactionModal.Card.d.ts +0 -4
- package/dist/components/Audience/ReactionModal.d.ts +0 -20
- package/dist/components/Audience/ReactionSummary.d.ts +0 -10
- package/dist/components/Audience/ViewsByProfileCard.d.ts +0 -9
- package/dist/components/Audience/ViewsCounter.d.ts +0 -11
- package/dist/components/Audience/ViewsModal.d.ts +0 -11
- package/dist/components/Audience/hooks/useReactionIcons.d.ts +0 -5
- package/dist/components/Audience/hooks/useReactions.d.ts +0 -15
- package/dist/components/Audience/hooks/useViews.d.ts +0 -11
- package/dist/components/FileCard/FileCard.d.ts +0 -13
- package/dist/components/FileCard/FileIcon.d.ts +0 -6
- package/dist/components/ImagePicker/ImagePicker.d.ts +0 -38
- package/dist/components/ImagePicker/index.d.ts +0 -1
- package/dist/components/Menu/MenuButton.d.ts +0 -5
- package/dist/components/Table/Table.components.d.ts +0 -20
- package/dist/components/Table/Table.d.ts +0 -33
- package/dist/components/Table/TableExplorer.d.ts +0 -14
- package/dist/components/Tabs/Tabs.d.ts +0 -42
- package/dist/components/Tabs/TabsContext.d.ts +0 -12
- package/dist/components/Tabs/TabsList.d.ts +0 -6
- package/dist/components/TreeView/TreeItem.d.ts +0 -52
- package/dist/components/TreeView/hooks/useTreeItemEvents.d.ts +0 -8
- package/dist/components/UploadCard/UploadCard.d.ts +0 -42
- package/dist/components/UploadCard/index.d.ts +0 -1
- package/dist/core/OdeClientProvider/OdeClientProvider.d.ts +0 -28
- package/dist/core/OdeClientProvider/index.d.ts +0 -1
- package/dist/core/ThemeProvider/ThemeProvider.d.ts +0 -11
- package/dist/core/ThemeProvider/index.d.ts +0 -1
- package/dist/core/index.d.ts +0 -25
- package/dist/core/useAvatar/useAvatar.d.ts +0 -6
- package/dist/core/useBookmark/useBookmark.d.ts +0 -2
- package/dist/core/useConf/useConf.d.ts +0 -4
- package/dist/core/useDate/useDate.d.ts +0 -13
- package/dist/core/useHeader/useHeader.d.ts +0 -5
- package/dist/core/useHttpErrorToast/index.d.ts +0 -1
- package/dist/core/useHttpErrorToast/useHttpErrorToast.d.ts +0 -2
- package/dist/core/useMediaLibrary/useMediaLibrary.d.ts +0 -12
- package/dist/core/useOdeIcons/index.d.ts +0 -1
- package/dist/core/useOdeIcons/useOdeIcons.d.ts +0 -9
- package/dist/core/useResource/useResource.d.ts +0 -3
- package/dist/core/useResourceSearch/useResourceSearch.d.ts +0 -18
- package/dist/core/useUpload/useUpload.d.ts +0 -18
- package/dist/core/useUploadFiles/useUploadFiles.d.ts +0 -25
- package/dist/core/useUser/useUser.d.ts +0 -7
- package/dist/core/useWorkspaceFile/useWorkspaceFile.d.ts +0 -21
- package/dist/core/useWorkspaceSearch/useWorkspaceSearch.d.ts +0 -9
- package/dist/hooks/useImageResizer/index.d.ts +0 -1
- package/dist/hooks/useImageResizer/useImageResizer.d.ts +0 -8
- package/dist/icons/dist/index.js +0 -1282
- package/dist/multimedia/AudioRecorder/AudioRecorder.d.ts +0 -12
- package/dist/multimedia/AudioRecorder/useAudioRecorder.d.ts +0 -16
- package/dist/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +0 -7
- package/dist/multimedia/ImageEditor/effects/blur.d.ts +0 -19
- package/dist/multimedia/ImageEditor/effects/crop.d.ts +0 -28
- package/dist/multimedia/ImageEditor/effects/misc.d.ts +0 -154
- package/dist/multimedia/ImageEditor/effects/resize.d.ts +0 -25
- package/dist/multimedia/ImageEditor/effects/rotate.d.ts +0 -8
- package/dist/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +0 -32
- package/dist/multimedia/ImageEditor/hooks/useImageEditor.d.ts +0 -30
- package/dist/multimedia/ImageEditor/hooks/useImageEffects.d.ts +0 -23
- package/dist/multimedia/ImagePickerWorkspace/ImagePickerWorkspace.d.ts +0 -46
- package/dist/multimedia/ImagePickerWorkspace/index.d.ts +0 -2
- package/dist/multimedia/Linker/ExternalLinker.d.ts +0 -28
- package/dist/multimedia/Linker/InternalLinker.d.ts +0 -28
- package/dist/multimedia/Linker/index.d.ts +0 -4
- package/dist/multimedia/LinkerCard/LinkerCard.d.ts +0 -13
- package/dist/multimedia/MediaLibrary/MediaLibrary.d.ts +0 -84
- package/dist/multimedia/MediaLibrary/MediaLibraryContext.d.ts +0 -60
- package/dist/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +0 -6
- package/dist/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +0 -11
- package/dist/multimedia/UploadFiles/UploadFiles.d.ts +0 -9
- package/dist/multimedia/VideoEmbed/VideoEmbed.d.ts +0 -5
- package/dist/multimedia/VideoRecorder/VideoRecorder.d.ts +0 -14
- package/dist/multimedia/Workspace/Workspace.d.ts +0 -33
- package/dist/multimedia/index.d.ts +0 -8
- package/dist/portal/Header/Badge.d.ts +0 -5
- package/dist/portal/Header/NavItem.d.ts +0 -6
- package/dist/portal/Header/NavbarNav.d.ts +0 -6
- package/dist/portal/Header/WidgetApps.d.ts +0 -9
- package/dist/portal/Header/index.d.ts +0 -5
- package/dist/portal/Help/hooks/useHelp.d.ts +0 -10
- package/dist/portal/Help/index.d.ts +0 -1
- package/dist/portal/Layout/Layout.d.ts +0 -12
- package/dist/portal/Layout/index.d.ts +0 -1
- package/dist/portal/Main/Main.d.ts +0 -16
- package/dist/portal/Main/index.d.ts +0 -2
- package/dist/portal/SearchEngine/index.d.ts +0 -1
- package/dist/ui/src/common/OnboardingModal/OnboardingModal.js +0 -59
- package/dist/ui/src/common/OnboardingModal/useOnboardingModal.js +0 -30
- package/dist/ui/src/common/PublishModal/PublishModal.js +0 -120
- package/dist/ui/src/common/PublishModal/components/ActivitiesDropdown.js +0 -29
- package/dist/ui/src/common/PublishModal/components/AgeSelect.js +0 -20
- package/dist/ui/src/common/PublishModal/components/LangSelect.js +0 -19
- package/dist/ui/src/common/PublishModal/components/PublishModalFooter.js +0 -23
- package/dist/ui/src/common/PublishModal/components/SubjectsDropdown.js +0 -29
- package/dist/ui/src/common/PublishModal/hooks/usePublishModal.js +0 -106
- package/dist/ui/src/common/ResourceModal/ResourceModal.js +0 -156
- package/dist/ui/src/common/ResourceModal/apps/BlogPublic.js +0 -62
- package/dist/ui/src/common/ResourceModal/hooks/useSlug.js +0 -41
- package/dist/ui/src/common/ResourceModal/hooks/useUpdateMutation.js +0 -12
- package/dist/ui/src/common/ShareModal/ShareBookmark.js +0 -22
- package/dist/ui/src/common/ShareModal/ShareBookmarkLine.js +0 -42
- package/dist/ui/src/common/ShareModal/ShareModal.js +0 -128
- package/dist/ui/src/common/ShareModal/apps/ShareBlog.js +0 -43
- package/dist/ui/src/common/ShareModal/hooks/useSearch.js +0 -178
- package/dist/ui/src/common/ShareModal/hooks/useShare.js +0 -192
- package/dist/ui/src/common/ShareModal/hooks/useShareBookmark.js +0 -67
- package/dist/ui/src/common/ShareModal/hooks/useShareMutation.js +0 -15
- package/dist/ui/src/components/ActionBar/ActionBar.js +0 -8
- package/dist/ui/src/components/Alert/Alert.js +0 -78
- package/dist/ui/src/components/AppHeader/AppHeader.js +0 -22
- package/dist/ui/src/components/AppIcon/AppIcon.js +0 -49
- package/dist/ui/src/components/Attachment/Attachment.js +0 -15
- package/dist/ui/src/components/Audience/ReactionChoice.js +0 -33
- package/dist/ui/src/components/Audience/ReactionModal.Card.js +0 -33
- package/dist/ui/src/components/Audience/ReactionModal.js +0 -73
- package/dist/ui/src/components/Audience/ReactionSummary.js +0 -27
- package/dist/ui/src/components/Audience/ViewsByProfileCard.js +0 -36
- package/dist/ui/src/components/Audience/ViewsCounter.js +0 -18
- package/dist/ui/src/components/Audience/ViewsModal.js +0 -40
- package/dist/ui/src/components/Audience/hooks/useReactionIcons.js +0 -38
- package/dist/ui/src/components/Audience/hooks/useReactions.js +0 -35
- package/dist/ui/src/components/Avatar/Avatar.js +0 -33
- package/dist/ui/src/components/Badge/Badge.js +0 -31
- package/dist/ui/src/components/Breadcrumb/Breadcrumb.js +0 -28
- package/dist/ui/src/components/Breadcrumb/BreadcrumbNav.js +0 -22
- package/dist/ui/src/components/Button/IconButton.js +0 -18
- package/dist/ui/src/components/Button/SearchButton.js +0 -17
- package/dist/ui/src/components/Card/Card.js +0 -51
- package/dist/ui/src/components/Card/CardHeader.js +0 -19
- package/dist/ui/src/components/Card/CardImage.js +0 -21
- package/dist/ui/src/components/Card/CardUser.js +0 -10
- package/dist/ui/src/components/ColorPicker/ColorPicker.js +0 -37
- package/dist/ui/src/components/ColorPicker/ColorPickerItem.js +0 -13
- package/dist/ui/src/components/Dropdown/Dropdown.js +0 -60
- package/dist/ui/src/components/Dropdown/DropdownTrigger.js +0 -34
- package/dist/ui/src/components/Dropzone/Dropzone.js +0 -56
- package/dist/ui/src/components/Dropzone/DropzoneFile.js +0 -32
- package/dist/ui/src/components/Dropzone/DropzoneImport.js +0 -28
- package/dist/ui/src/components/EmptyScreen/EmptyScreen.js +0 -20
- package/dist/ui/src/components/FileCard/FileCard.js +0 -91
- package/dist/ui/src/components/FileCard/FileIcon.js +0 -15
- package/dist/ui/src/components/Form/FormText.js +0 -17
- package/dist/ui/src/components/Image/Image.js +0 -41
- package/dist/ui/src/components/ImagePicker/ImagePicker.js +0 -58
- package/dist/ui/src/components/Loading/Loading.js +0 -27
- package/dist/ui/src/components/LoadingScreen/LoadingScreen.js +0 -25
- package/dist/ui/src/components/Logo/Logo.js +0 -14
- package/dist/ui/src/components/Menu/Menu.js +0 -58
- package/dist/ui/src/components/Menu/MenuButton.js +0 -21
- package/dist/ui/src/components/Modal/ModalHeader.js +0 -27
- package/dist/ui/src/components/SearchBar/SearchBar.js +0 -36
- package/dist/ui/src/components/Select/Select.js +0 -37
- package/dist/ui/src/components/Table/Table.components.js +0 -39
- package/dist/ui/src/components/Table/Table.js +0 -16
- package/dist/ui/src/components/Tabs/Tabs.js +0 -75
- package/dist/ui/src/components/Tabs/TabsItem.js +0 -26
- package/dist/ui/src/components/Tabs/TabsList.js +0 -24
- package/dist/ui/src/components/Tabs/TabsPanel.js +0 -14
- package/dist/ui/src/components/Toolbar/Toolbar.js +0 -77
- package/dist/ui/src/components/Tooltip/Tooltip.js +0 -40
- package/dist/ui/src/components/TreeView/TreeItem.js +0 -54
- package/dist/ui/src/components/TreeView/TreeView.js +0 -39
- package/dist/ui/src/components/TreeView/hooks/useTreeItemEvents.js +0 -28
- package/dist/ui/src/components/UploadCard/UploadCard.js +0 -72
- package/dist/ui/src/core/OdeClientProvider/OdeClientProvider.js +0 -62
- package/dist/ui/src/core/ThemeProvider/ThemeProvider.js +0 -53
- package/dist/ui/src/core/useAvatar/useAvatar.js +0 -30
- package/dist/ui/src/core/useBookmark/useBookmark.js +0 -14
- package/dist/ui/src/core/useCantoo/useCantoo.js +0 -18
- package/dist/ui/src/core/useConf/useConf.js +0 -13
- package/dist/ui/src/core/useConversation/useConversation.js +0 -43
- package/dist/ui/src/core/useDate/useDate.js +0 -65
- package/dist/ui/src/core/useHasWorkflow/useHasWorkflow.js +0 -22
- package/dist/ui/src/core/useHeader/useHeader.js +0 -50
- package/dist/ui/src/core/useHttpErrorToast/useHttpErrorToast.js +0 -21
- package/dist/ui/src/core/useIsAdml/useIsAdml.js +0 -18
- package/dist/ui/src/core/useLibraryUrl/useLibraryUrl.js +0 -21
- package/dist/ui/src/core/useOdeIcons/useOdeIcons.js +0 -92
- package/dist/ui/src/core/usePaths/usePaths.js +0 -6
- package/dist/ui/src/core/usePreferences/usePreferences.js +0 -10
- package/dist/ui/src/core/useResource/useResource.js +0 -25
- package/dist/ui/src/core/useResourceSearch/useResourceSearch.js +0 -34
- package/dist/ui/src/core/useSession/useSession.js +0 -11
- package/dist/ui/src/core/useTrashedResource/useTrashedResource.js +0 -27
- package/dist/ui/src/core/useUpload/useUpload.js +0 -106
- package/dist/ui/src/core/useUploadFiles/useUploadFiles.js +0 -101
- package/dist/ui/src/core/useUser/useUser.js +0 -22
- package/dist/ui/src/core/useWorkspaceFile/useWorkspaceFile.js +0 -49
- package/dist/ui/src/core/useWorkspaceSearch/useWorkspaceSearch.js +0 -58
- package/dist/ui/src/core/useXitiTrackPageLoad/useXitiTrackPageLoad.js +0 -28
- package/dist/ui/src/core/useZendeskGuide/useZendeskGuide.js +0 -101
- package/dist/ui/src/hooks/useDropdown/useDropdown.js +0 -158
- package/dist/ui/src/hooks/useDropzone/useDropzone.js +0 -76
- package/dist/ui/src/hooks/useImageResizer/useImageResizer.js +0 -42
- package/dist/ui/src/multimedia/AudioRecorder/AudioRecorder.js +0 -49
- package/dist/ui/src/multimedia/AudioRecorder/AudioRecorderTimer.js +0 -24
- package/dist/ui/src/multimedia/AudioRecorder/useAudioRecorder.js +0 -307
- package/dist/ui/src/multimedia/Embed/Embed.js +0 -32
- package/dist/ui/src/multimedia/ImageEditor/components/ImageEditor.js +0 -116
- package/dist/ui/src/multimedia/ImageEditor/components/ImageEditorToolbar.js +0 -69
- package/dist/ui/src/multimedia/ImageEditor/effects/blur.js +0 -72
- package/dist/ui/src/multimedia/ImagePickerWorkspace/ImagePickerWorkspace.js +0 -39
- package/dist/ui/src/multimedia/Linker/ExternalLinker.js +0 -45
- package/dist/ui/src/multimedia/Linker/InternalLinker.js +0 -114
- package/dist/ui/src/multimedia/LinkerCard/LinkerCard.js +0 -38
- package/dist/ui/src/multimedia/MediaLibrary/MediaLibrary.js +0 -211
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/ExternalLink.js +0 -17
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/InternalLink.js +0 -35
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/Upload.js +0 -34
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +0 -14
- package/dist/ui/src/multimedia/MediaLibrary/innertabs/Workspace.js +0 -31
- package/dist/ui/src/multimedia/UploadFiles/UploadFiles.js +0 -56
- package/dist/ui/src/multimedia/VideoEmbed/VideoEmbed.js +0 -77
- package/dist/ui/src/multimedia/VideoRecorder/VideoRecorder.js +0 -259
- package/dist/ui/src/multimedia/Workspace/Workspace.js +0 -169
- package/dist/ui/src/portal/Header/Badge.js +0 -9
- package/dist/ui/src/portal/Header/Header.js +0 -171
- package/dist/ui/src/portal/Header/NavLink.js +0 -19
- package/dist/ui/src/portal/Header/WidgetApps.js +0 -23
- package/dist/ui/src/portal/Help/Help.js +0 -25
- package/dist/ui/src/portal/Help/hooks/useHelp.js +0 -85
- package/dist/ui/src/portal/Layout/Layout.js +0 -43
- package/dist/ui/src/portal/SearchEngine/SearchEngine.js +0 -33
- package/dist/ui/src/utils/MockedDataProvider/MockedDataProvider.js +0 -26
- package/dist/ui/src/utils/StringUtils.js +0 -14
- package/dist/ui/src/utils/addTimestampToUrl.js +0 -7
- package/dist/ui/src/utils/blob.js +0 -15
- package/dist/ui/src/utils/checkUserRight.js +0 -44
- package/dist/ui/src/utils/fileSize.js +0 -8
- package/dist/ui/src/utils/findTreeNode.js +0 -11
- package/dist/ui/src/utils/isActionAvailable.js +0 -7
- package/dist/ui/src/utils/libraryMaps.js +0 -12
- package/dist/ui/src/utils/noop.js +0 -5
- package/dist/ui/src/utils/thumbnail.js +0 -6
- package/dist/ui/src/utils/time.js +0 -11
- package/dist/ui/src/utils/treeview.js +0 -133
- package/dist/ui/src/utils/video.js +0 -4
- package/dist/ui/src/widgets/BookmarkedApps/BookmarkedApps.js +0 -8
- package/dist/ui/src/widgets/Widget/Widget.js +0 -22
- package/dist/utils/MockedDataProvider/MockedDataProvider.d.ts +0 -28
- package/dist/utils/StringUtils.d.ts +0 -5
- package/dist/utils/addTimestampToUrl.d.ts +0 -6
- package/dist/utils/blob.d.ts +0 -9
- package/dist/utils/checkUserRight.d.ts +0 -11
- package/dist/utils/fileSize.d.ts +0 -1
- package/dist/utils/findTreeNode.d.ts +0 -9
- package/dist/utils/index.d.ts +0 -14
- package/dist/utils/isActionAvailable.d.ts +0 -2
- package/dist/utils/libraryMaps.d.ts +0 -4
- package/dist/utils/noop.d.ts +0 -4
- package/dist/utils/thumbnail.d.ts +0 -8
- package/dist/utils/time.d.ts +0 -2
- package/dist/utils/treeview.d.ts +0 -33
- package/dist/utils/video.d.ts +0 -1
- package/dist/widgets/BookmarkedApps/BookmarkedApps.d.ts +0 -8
- /package/dist/{ui/src/components → components}/Breadcrumb/BreadcrumbItem.js +0 -0
- /package/dist/{ui/src/components → components}/Breadcrumb/BreadcrumbList.js +0 -0
- /package/dist/{ui/src/components → components}/Button/Button.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardBody.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardContext.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardFooter.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardText.js +0 -0
- /package/dist/{ui/src/components → components}/Card/CardTitle.js +0 -0
- /package/dist/{ui/src/components → components}/Checkbox/Checkbox.js +0 -0
- /package/dist/{ui/src/components → components}/ColorPicker/ColorPalette.js +0 -0
- /package/dist/{ui/src/components → components}/Combobox/Combobox.js +0 -0
- /package/dist/{ui/src/components → components}/Combobox/ComboboxTrigger.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownCheckboxItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownContext.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownMenu.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownMenuGroup.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownRadioItem.js +0 -0
- /package/dist/{ui/src/components → components}/Dropdown/DropdownSeparator.js +0 -0
- /package/dist/{ui/src/components → components}/Dropzone/DropzoneContext.js +0 -0
- /package/dist/{ui/src/components → components}/Dropzone/DropzoneDrag.js +0 -0
- /package/dist/{ui/src/components → components}/Form/FormContext.js +0 -0
- /package/dist/{ui/src/components → components}/Form/FormControl.js +0 -0
- /package/dist/{ui/src/components → components}/Grid/Grid.js +0 -0
- /package/dist/{ui/src/components → components}/Heading/Heading.js +0 -0
- /package/dist/{ui/src/components → components}/Input/Input.js +0 -0
- /package/dist/{ui/src/components → components}/Label/Label.js +0 -0
- /package/dist/{portal/Header → components/Layout/components}/Header.d.ts +0 -0
- /package/dist/{portal/Help → components/Layout/components}/Help.d.ts +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/NavItem.js +0 -0
- /package/dist/{portal/Header → components/Layout/components}/NavLink.d.ts +0 -0
- /package/dist/{portal/Header → components/Layout/components}/Navbar.d.ts +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/Navbar.js +0 -0
- /package/dist/{ui/src/portal/Header → components/Layout/components}/NavbarNav.js +0 -0
- /package/dist/{portal/SearchEngine → components/Layout/components}/SearchEngine.d.ts +0 -0
- /package/dist/{portal → components/Layout}/index.d.ts +0 -0
- /package/dist/components/Menu/{Menu.d.ts → components/Menu.d.ts} +0 -0
- /package/dist/components/Menu/{MenuContext.d.ts → components/MenuContext.d.ts} +0 -0
- /package/dist/{ui/src/components/Menu → components/Menu/components}/MenuContext.js +0 -0
- /package/dist/components/Menu/{MenuItem.d.ts → components/MenuItem.d.ts} +0 -0
- /package/dist/{ui/src/components/Menu → components/Menu/components}/MenuItem.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/Modal.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalBody.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalContext.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalFooter.js +0 -0
- /package/dist/{ui/src/components → components}/Modal/ModalSubtitle.js +0 -0
- /package/dist/{ui/src/components → components}/Popover/Popover.js +0 -0
- /package/dist/{ui/src/components → components}/Radio/Radio.js +0 -0
- /package/dist/{ui/src/components → components}/Select/SelectTrigger.js +0 -0
- /package/dist/components/Tabs/{TabsItem.d.ts → components/TabsItem.d.ts} +0 -0
- /package/dist/components/Tabs/{TabsPanel.d.ts → components/TabsPanel.d.ts} +0 -0
- /package/dist/{ui/src/components/Tabs → components/Tabs/context}/TabsContext.js +0 -0
- /package/dist/{ui/src/components → components}/TextArea/TextArea.js +0 -0
- /package/dist/{ui/src/components → components}/TextArea/TextareaCounter.js +0 -0
- /package/dist/{ui/src/components → components}/VisuallyHidden/VisuallyHidden.js +0 -0
- /package/dist/{core → hooks}/useAvatar/index.d.ts +0 -0
- /package/dist/{core → hooks}/useBookmark/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useBrowserInfo/useBrowserInfo.js +0 -0
- /package/dist/{core → hooks}/useCantoo/index.d.ts +0 -0
- /package/dist/{core → hooks}/useCantoo/useCantoo.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useClickOutside/useClickOutside.js +0 -0
- /package/dist/{core → hooks}/useConf/index.d.ts +0 -0
- /package/dist/{core → hooks}/useConversation/index.d.ts +0 -0
- /package/dist/{core → hooks}/useConversation/useConversation.d.ts +0 -0
- /package/dist/{core → hooks}/useCookiesConsent/index.d.ts +0 -0
- /package/dist/{core → hooks}/useCookiesConsent/useCookiesConsent.d.ts +0 -0
- /package/dist/{ui/src/core → hooks}/useCookiesConsent/useCookiesConsent.js +0 -0
- /package/dist/{core → hooks}/useDate/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useDebounce/useDebounce.js +0 -0
- /package/dist/{core → hooks}/useHasWorkflow/index.d.ts +0 -0
- /package/dist/{core → hooks}/useHasWorkflow/useHasWorkflow.d.ts +0 -0
- /package/dist/{core → hooks}/useHeader/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useHover/useHover.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useImage/useImage.js +0 -0
- /package/dist/{core → hooks}/useIsAdml/index.d.ts +0 -0
- /package/dist/{core → hooks}/useIsAdml/useIsAdml.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useKeyPress/useKeyPress.js +0 -0
- /package/dist/{core → hooks}/useLibraryUrl/index.d.ts +0 -0
- /package/dist/{core → hooks}/useLibraryUrl/useLibraryUrl.d.ts +0 -0
- /package/dist/{core → hooks}/useMediaLibrary/index.d.ts +0 -0
- /package/dist/{ui/src/core → hooks}/useMediaLibrary/useMediaLibrary.js +0 -0
- /package/dist/{core → hooks}/usePaths/index.d.ts +0 -0
- /package/dist/{core → hooks}/usePaths/usePaths.d.ts +0 -0
- /package/dist/{core → hooks}/usePreferences/index.d.ts +0 -0
- /package/dist/{core → hooks}/usePreferences/usePreferences.d.ts +0 -0
- /package/dist/{core → hooks}/useResource/index.d.ts +0 -0
- /package/dist/{core → hooks}/useResourceSearch/index.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useScrollToTop/useScrollToTop.js +0 -0
- /package/dist/{core → hooks}/useSession/index.d.ts +0 -0
- /package/dist/{core → hooks}/useSession/useSession.d.ts +0 -0
- /package/dist/{ui/src/hooks → hooks}/useThumbnail/useThumbnail.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useTitle/useTitle.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useToast/useToast.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useToggle/useToggle.js +0 -0
- /package/dist/{ui/src/hooks → hooks}/useTrapFocus/useTrapFocus.js +0 -0
- /package/dist/{core → hooks}/useTrashedResource/index.d.ts +0 -0
- /package/dist/{core → hooks}/useTrashedResource/useTrashedResource.d.ts +0 -0
- /package/dist/{core → hooks}/useUpload/index.d.ts +0 -0
- /package/dist/{core → hooks}/useUploadFiles/index.d.ts +0 -0
- /package/dist/{core → hooks}/useUser/index.d.ts +0 -0
- /package/dist/{core → hooks}/useWorkspaceFile/index.d.ts +0 -0
- /package/dist/{core → hooks}/useWorkspaceSearch/index.d.ts +0 -0
- /package/dist/{core → hooks}/useXitiTrackPageLoad/index.d.ts +0 -0
- /package/dist/{core → hooks}/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +0 -0
- /package/dist/{core → hooks}/useZendeskGuide/index.d.ts +0 -0
- /package/dist/{core → hooks}/useZendeskGuide/useZendeskGuide.d.ts +0 -0
- /package/dist/{components/Audience → modules/audience}/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/OnboardingModal/OnboardingModal.d.ts +0 -0
- /package/dist/{common → modules/modals}/OnboardingModal/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/ActivitiesDropdown.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/LangSelect.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/PublishModalFooter.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/SubjectsDropdown.d.ts +0 -0
- /package/dist/{common → modules/modals}/PublishModal/components/ToastError.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/components/ToastError.js +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/components/ToastSuccess.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/constants/ageOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/constants/ageOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useActivitiesOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useActivitiesOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useLanguageOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useLanguageOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/hooks/useSubjectsOptions.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/PublishModal/hooks/useSubjectsOptions.js +0 -0
- /package/dist/{common → modules/modals}/PublishModal/index.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/ResourceModal/hooks/useThumb.js +0 -0
- /package/dist/{common → modules/modals}/ResourceModal/index.d.ts +0 -0
- /package/dist/{common → modules/modals}/ShareModal/ShareBookmark.d.ts +0 -0
- /package/dist/{common → modules/modals}/ShareModal/index.d.ts +0 -0
- /package/dist/{ui/src/common → modules/modals}/ShareModal/utils/hasRight.js +0 -0
- /package/dist/{ui/src/common → modules/modals}/ShareModal/utils/showShareRightLine.js +0 -0
- /package/dist/{common → modules/modals}/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/AudioRecorder/AudioRecorderTimer.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/AudioRecorder/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Embed/Embed.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Embed/index.d.ts +0 -0
- /package/dist/{components → modules/multimedia}/FileCard/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/ImageEditor/components/ImageEditor.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/crop.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/misc.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/resize.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/effects/rotate.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useHistoryTool.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useImageEditor.js +0 -0
- /package/dist/{ui/src → modules}/multimedia/ImageEditor/hooks/useImageEffects.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/ImageEditor/index.d.ts +0 -0
- /package/dist/{multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/aggregate.d.ts +0 -0
- /package/dist/{ui/src/multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/aggregate.js +0 -0
- /package/dist/{multimedia/ImageEditor/utils → modules/multimedia/ImageEditor/utilities}/debounceAggregate.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/LinkerCard/index.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/MediaLibraryContext.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Audio.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Audio.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Iframe.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Iframe.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Upload.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Video.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/Video.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/VideoEmbedder.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/Workspace.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/MediaLibrary/innertabs/index.d.ts +0 -0
- /package/dist/{ui/src → modules}/multimedia/MediaLibrary/innertabs/index.js +0 -0
- /package/dist/{multimedia → modules/multimedia}/UploadFiles/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/VideoEmbed/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/VideoRecorder/index.d.ts +0 -0
- /package/dist/{multimedia → modules/multimedia}/Workspace/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/BookmarkedApps/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/Widget/Widget.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/Widget/index.d.ts +0 -0
- /package/dist/{widgets → modules/widgets}/index.d.ts +0 -0
- /package/dist/{utils → providers}/MockedDataProvider/index.d.ts +0 -0
- /package/dist/{utils → utilities/refs}/ref.d.ts +0 -0
- /package/dist/{ui/src/utils → utilities/refs}/ref.js +0 -0
package/dist/icons/dist/index.js
DELETED
|
@@ -1,1282 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
const SvgAlertCircle = ({
|
|
3
|
-
title,
|
|
4
|
-
titleId,
|
|
5
|
-
...props
|
|
6
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
7
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
-
width: "24",
|
|
9
|
-
height: "24",
|
|
10
|
-
fill: "none",
|
|
11
|
-
viewBox: "0 0 24 24",
|
|
12
|
-
"aria-hidden": "true",
|
|
13
|
-
"aria-labelledby": titleId,
|
|
14
|
-
...props,
|
|
15
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
16
|
-
id: titleId,
|
|
17
|
-
children: title
|
|
18
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
19
|
-
fill: "currentColor",
|
|
20
|
-
fillRule: "evenodd",
|
|
21
|
-
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
22
|
-
clipRule: "evenodd"
|
|
23
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "currentColor",
|
|
25
|
-
fillRule: "evenodd",
|
|
26
|
-
d: "M12 6a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1M11 16a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1",
|
|
27
|
-
clipRule: "evenodd"
|
|
28
|
-
})]
|
|
29
|
-
}), SvgAlertCircle$1 = SvgAlertCircle, SvgApplications = ({
|
|
30
|
-
title,
|
|
31
|
-
titleId,
|
|
32
|
-
...props
|
|
33
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
34
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
-
fill: "none",
|
|
36
|
-
viewBox: "0 0 24 24",
|
|
37
|
-
width: "24",
|
|
38
|
-
height: "24",
|
|
39
|
-
"aria-hidden": "true",
|
|
40
|
-
"aria-labelledby": titleId,
|
|
41
|
-
...props,
|
|
42
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
43
|
-
id: titleId,
|
|
44
|
-
children: title
|
|
45
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
46
|
-
fill: "currentColor",
|
|
47
|
-
fillRule: "evenodd",
|
|
48
|
-
d: "M1 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm8 0H3v6h6zm4 0c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2zm8 0h-6v6h6zm-8 12c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2zm8 0h-6v6h6zM1 15c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm8 0H3v6h6z",
|
|
49
|
-
clipRule: "evenodd"
|
|
50
|
-
})]
|
|
51
|
-
}), SvgApplications$1 = SvgApplications, SvgArrowRight = ({
|
|
52
|
-
title,
|
|
53
|
-
titleId,
|
|
54
|
-
...props
|
|
55
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
56
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
57
|
-
width: "24",
|
|
58
|
-
height: "24",
|
|
59
|
-
fill: "none",
|
|
60
|
-
viewBox: "0 0 24 24",
|
|
61
|
-
"aria-hidden": "true",
|
|
62
|
-
"aria-labelledby": titleId,
|
|
63
|
-
...props,
|
|
64
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
65
|
-
id: titleId,
|
|
66
|
-
children: title
|
|
67
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
68
|
-
fill: "currentColor",
|
|
69
|
-
fillRule: "evenodd",
|
|
70
|
-
d: "M4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1",
|
|
71
|
-
clipRule: "evenodd"
|
|
72
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
73
|
-
fill: "currentColor",
|
|
74
|
-
fillRule: "evenodd",
|
|
75
|
-
d: "M11.293 4.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414-1.414L17.586 12l-6.293-6.293a1 1 0 0 1 0-1.414",
|
|
76
|
-
clipRule: "evenodd"
|
|
77
|
-
})]
|
|
78
|
-
}), SvgArrowRight$1 = SvgArrowRight, SvgBlur = ({
|
|
79
|
-
title,
|
|
80
|
-
titleId,
|
|
81
|
-
...props
|
|
82
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
83
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
84
|
-
width: "24",
|
|
85
|
-
height: "24",
|
|
86
|
-
fill: "none",
|
|
87
|
-
viewBox: "0 0 24 24",
|
|
88
|
-
"aria-hidden": "true",
|
|
89
|
-
"aria-labelledby": titleId,
|
|
90
|
-
...props,
|
|
91
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
92
|
-
id: titleId,
|
|
93
|
-
children: title
|
|
94
|
-
}) : null, /* @__PURE__ */ jsx("g", {
|
|
95
|
-
fill: "currentColor",
|
|
96
|
-
fillRule: "evenodd",
|
|
97
|
-
clipPath: "url(#blur_svg__a)",
|
|
98
|
-
clipRule: "evenodd",
|
|
99
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
100
|
-
d: "M17.504 1.673a1 1 0 0 1 .932.491c.37.63.9 1.935 1.404 3.18l.08.197c.502 1.24.994 2.457 1.369 3.205l-.895.447.895-.447c.561 1.122 1.962 4.049 2.136 6.753.087 1.364-.125 2.839-1.094 3.978-.987 1.16-2.573 1.76-4.757 1.76-2.186 0-3.777-.6-4.777-1.752-.983-1.134-1.221-2.604-1.152-3.973.138-2.711 1.514-5.636 2.13-6.79.86-1.611 2.414-5.32 2.874-6.433a1 1 0 0 1 .855-.616m.104 3.492c-.657 1.533-1.496 3.425-2.07 4.5-.59 1.106-1.781 3.703-1.895 5.949-.057 1.11.158 1.976.665 2.56.49.565 1.427 1.063 3.266 1.063 1.84 0 2.76-.498 3.233-1.055.492-.579.694-1.44.622-2.555-.145-2.253-1.36-4.848-1.929-5.986-.412-.823-.932-2.108-1.417-3.308l-.097-.238q-.196-.487-.378-.93M12.843 22.535a1 1 0 0 1-1.034.964l-.259-.009a1 1 0 0 1-.257-.042q-.125.029-.26.024l-.257-.009a11 11 0 0 1-2.102-.279 1 1 0 0 1 .457-1.947 9 9 0 0 0 1.715.228l.258.009q.134.004.257.042.125-.028.26-.024l.257.009a1 1 0 0 1 .965 1.034m-6.615-1.329a1 1 0 0 1-1.396.226 10.9 10.9 0 0 1-2.877-3.086 1 1 0 1 1 1.7-1.054 8.9 8.9 0 0 0 2.347 2.518 1 1 0 0 1 .226 1.396M1.622 15.22a1 1 0 0 1-1.147-.827 10.9 10.9 0 0 1 .148-4.218 1 1 0 0 1 1.947.457 8.9 8.9 0 0 0-.12 3.441 1 1 0 0 1-.828 1.147m.978-7.49a1 1 0 0 1-.226-1.397A10.9 10.9 0 0 1 5.46 3.455a1 1 0 0 1 1.054 1.7 8.9 8.9 0 0 0-2.518 2.347 1 1 0 0 1-1.396.226m5.988-4.607a1 1 0 0 1 .827-1.147 11 11 0 0 1 2.116-.132l.258.01q.135.004.257.042.125-.03.26-.025l.258.01a1 1 0 0 1-.07 1.998l-.258-.009a1 1 0 0 1-.258-.043q-.125.03-.259.025l-.258-.009a9 9 0 0 0-1.727.108 1 1 0 0 1-1.146-.828"
|
|
101
|
-
})
|
|
102
|
-
}), /* @__PURE__ */ jsx("defs", {
|
|
103
|
-
children: /* @__PURE__ */ jsx("clipPath", {
|
|
104
|
-
id: "blur_svg__a",
|
|
105
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
106
|
-
fill: "#fff",
|
|
107
|
-
d: "M0 0h24v24H0z"
|
|
108
|
-
})
|
|
109
|
-
})
|
|
110
|
-
})]
|
|
111
|
-
}), SvgBlur$1 = SvgBlur, SvgBookmark = ({
|
|
112
|
-
title,
|
|
113
|
-
titleId,
|
|
114
|
-
...props
|
|
115
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
116
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
117
|
-
viewBox: "0 0 24 24",
|
|
118
|
-
width: "24",
|
|
119
|
-
height: "24",
|
|
120
|
-
"aria-hidden": "true",
|
|
121
|
-
"aria-labelledby": titleId,
|
|
122
|
-
...props,
|
|
123
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
124
|
-
id: titleId,
|
|
125
|
-
children: title
|
|
126
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
127
|
-
fill: "currentColor",
|
|
128
|
-
d: "M7 4a1 1 0 0 0-1 1v14.06l5.42-3.87a1 1 0 0 1 1.16 0L18 19.06V5a1 1 0 0 0-1-1zM4.88 2.88A3 3 0 0 1 7 2h10a3 3 0 0 1 3 3v16a1 1 0 0 1-1.58.81L12 17.23 5.58 21.8A1 1 0 0 1 4 21V5a3 3 0 0 1 .88-2.12"
|
|
129
|
-
})]
|
|
130
|
-
}), SvgBookmark$1 = SvgBookmark, SvgBurgerMenu = ({
|
|
131
|
-
title,
|
|
132
|
-
titleId,
|
|
133
|
-
...props
|
|
134
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
135
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
136
|
-
width: "24",
|
|
137
|
-
height: "24",
|
|
138
|
-
fill: "none",
|
|
139
|
-
viewBox: "0 0 24 24",
|
|
140
|
-
"aria-hidden": "true",
|
|
141
|
-
"aria-labelledby": titleId,
|
|
142
|
-
...props,
|
|
143
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
144
|
-
id: titleId,
|
|
145
|
-
children: title
|
|
146
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
147
|
-
fill: "currentColor",
|
|
148
|
-
fillRule: "evenodd",
|
|
149
|
-
d: "M21 5c0 .828-.711 1.5-1.588 1.5H4.588C3.711 6.5 3 5.828 3 5s.711-1.5 1.588-1.5h14.824C20.289 3.5 21 4.172 21 5M21 12c0 .828-.711 1.5-1.588 1.5H4.588C3.711 13.5 3 12.828 3 12s.711-1.5 1.588-1.5h14.824c.877 0 1.588.672 1.588 1.5M21 19c0 .828-.711 1.5-1.588 1.5H4.588C3.711 20.5 3 19.828 3 19s.711-1.5 1.588-1.5h14.824c.877 0 1.588.672 1.588 1.5",
|
|
150
|
-
clipRule: "evenodd"
|
|
151
|
-
})]
|
|
152
|
-
}), SvgBurgerMenu$1 = SvgBurgerMenu, SvgClose = ({
|
|
153
|
-
title,
|
|
154
|
-
titleId,
|
|
155
|
-
...props
|
|
156
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
157
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
158
|
-
width: "24",
|
|
159
|
-
height: "24",
|
|
160
|
-
fill: "none",
|
|
161
|
-
viewBox: "0 0 24 24",
|
|
162
|
-
"aria-hidden": "true",
|
|
163
|
-
"aria-labelledby": titleId,
|
|
164
|
-
...props,
|
|
165
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
166
|
-
id: titleId,
|
|
167
|
-
children: title
|
|
168
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
169
|
-
fill: "currentColor",
|
|
170
|
-
fillRule: "evenodd",
|
|
171
|
-
d: "M4.222 4.222a1.1 1.1 0 0 1 1.556 0l14 14a1.1 1.1 0 1 1-1.556 1.556l-14-14a1.1 1.1 0 0 1 0-1.556",
|
|
172
|
-
clipRule: "evenodd"
|
|
173
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
174
|
-
fill: "currentColor",
|
|
175
|
-
fillRule: "evenodd",
|
|
176
|
-
d: "M19.778 4.222a1.1 1.1 0 0 1 0 1.556l-14 14a1.1 1.1 0 1 1-1.556-1.556l14-14a1.1 1.1 0 0 1 1.556 0",
|
|
177
|
-
clipRule: "evenodd"
|
|
178
|
-
})]
|
|
179
|
-
}), SvgClose$1 = SvgClose, SvgCode = ({
|
|
180
|
-
title,
|
|
181
|
-
titleId,
|
|
182
|
-
...props
|
|
183
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
184
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
185
|
-
width: "24",
|
|
186
|
-
height: "24",
|
|
187
|
-
fill: "none",
|
|
188
|
-
viewBox: "0 0 24 24",
|
|
189
|
-
"aria-hidden": "true",
|
|
190
|
-
"aria-labelledby": titleId,
|
|
191
|
-
...props,
|
|
192
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
193
|
-
id: titleId,
|
|
194
|
-
children: title
|
|
195
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
196
|
-
fill: "currentColor",
|
|
197
|
-
fillRule: "evenodd",
|
|
198
|
-
d: "M17.327 5.76a1 1 0 0 1 1.413.067l5 5.5a1 1 0 0 1 0 1.346l-5 5.5a1 1 0 1 1-1.48-1.346L21.648 12 17.26 7.173a1 1 0 0 1 .067-1.413M6.673 5.76a1 1 0 0 1 .067 1.413L2.35 12l4.389 4.827a1 1 0 0 1-1.48 1.346l-5-5.5a1 1 0 0 1 0-1.346l5-5.5a1 1 0 0 1 1.413-.067M8.979 21.609a1 1 0 0 1-.658-1.252l5.375-17.29a1 1 0 1 1 1.91.594L10.23 20.95a1 1 0 0 1-1.251.658",
|
|
199
|
-
clipRule: "evenodd"
|
|
200
|
-
})]
|
|
201
|
-
}), SvgCode$1 = SvgCode, SvgCopy = ({
|
|
202
|
-
title,
|
|
203
|
-
titleId,
|
|
204
|
-
...props
|
|
205
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
206
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
207
|
-
width: "24",
|
|
208
|
-
height: "24",
|
|
209
|
-
fill: "none",
|
|
210
|
-
viewBox: "0 0 24 24",
|
|
211
|
-
"aria-hidden": "true",
|
|
212
|
-
"aria-labelledby": titleId,
|
|
213
|
-
...props,
|
|
214
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
215
|
-
id: titleId,
|
|
216
|
-
children: title
|
|
217
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
218
|
-
fill: "currentColor",
|
|
219
|
-
fillRule: "evenodd",
|
|
220
|
-
d: "M6.676 3c.284-.672.853-1 1.263-1h11.423c.566 0 1.438.628 1.438 1.923v13.154c0 1.056-.58 1.668-1.1 1.858V6.923C19.7 4.99 18.3 3 16.061 3zm-2.272.007C4.765 1.41 6.056 0 7.939 0h11.423C21.599 0 23 1.99 23 3.923v13.154c0 1.865-1.303 3.782-3.403 3.916C19.235 22.59 17.944 24 16.06 24H4.638C2.401 24 1 22.01 1 20.077V6.923c0-1.865 1.303-3.782 3.404-3.916M3.2 6.923C3.2 5.628 4.072 5 4.638 5h11.423c.567 0 1.439.628 1.439 1.923v13.154c0 1.295-.872 1.923-1.439 1.923H4.638c-.566 0-1.438-.628-1.438-1.923z",
|
|
221
|
-
clipRule: "evenodd"
|
|
222
|
-
})]
|
|
223
|
-
}), SvgCopy$1 = SvgCopy, SvgCrop = ({
|
|
224
|
-
title,
|
|
225
|
-
titleId,
|
|
226
|
-
...props
|
|
227
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
228
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
229
|
-
width: "24",
|
|
230
|
-
height: "24",
|
|
231
|
-
fill: "none",
|
|
232
|
-
viewBox: "0 0 24 24",
|
|
233
|
-
"aria-hidden": "true",
|
|
234
|
-
"aria-labelledby": titleId,
|
|
235
|
-
...props,
|
|
236
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
237
|
-
id: titleId,
|
|
238
|
-
children: title
|
|
239
|
-
}) : null, /* @__PURE__ */ jsx("g", {
|
|
240
|
-
clipPath: "url(#crop_svg__a)",
|
|
241
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
242
|
-
fill: "currentColor",
|
|
243
|
-
fillRule: "evenodd",
|
|
244
|
-
d: "M7.13 1.009a1 1 0 1 0-2-.018l-.036 4.103-4.103.036a1 1 0 1 0 .018 2l4.068-.035L5 15.99V16a3 3 0 0 0 3 3h9v4a1 1 0 1 0 2 0v-4h4a1 1 0 1 0 0-2h-4V8a3 3 0 0 0-3-3l-8.905.077zm-.053 6.068L7 16.004A1 1 0 0 0 8 17h9V8a1 1 0 0 0-.996-1z",
|
|
245
|
-
clipRule: "evenodd"
|
|
246
|
-
})
|
|
247
|
-
}), /* @__PURE__ */ jsx("defs", {
|
|
248
|
-
children: /* @__PURE__ */ jsx("clipPath", {
|
|
249
|
-
id: "crop_svg__a",
|
|
250
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
251
|
-
fill: "#fff",
|
|
252
|
-
d: "M0 0h24v24H0z"
|
|
253
|
-
})
|
|
254
|
-
})
|
|
255
|
-
})]
|
|
256
|
-
}), SvgCrop$1 = SvgCrop, SvgDeleteColor = ({
|
|
257
|
-
title,
|
|
258
|
-
titleId,
|
|
259
|
-
...props
|
|
260
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
261
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
262
|
-
width: "24",
|
|
263
|
-
height: "24",
|
|
264
|
-
fill: "none",
|
|
265
|
-
viewBox: "0 0 24 24",
|
|
266
|
-
"aria-hidden": "true",
|
|
267
|
-
"aria-labelledby": titleId,
|
|
268
|
-
...props,
|
|
269
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
270
|
-
id: titleId,
|
|
271
|
-
children: title
|
|
272
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
273
|
-
fill: "currentColor",
|
|
274
|
-
fillRule: "evenodd",
|
|
275
|
-
d: "M8.937 15.502a1 1 0 0 1 1.061.934c.046.727.17 1.217.408 1.526.188.244.574.538 1.594.538a1 1 0 1 1 0 2c-1.442 0-2.507-.444-3.18-1.319-.622-.809-.767-1.82-.818-2.618a1 1 0 0 1 .935-1.061",
|
|
276
|
-
clipRule: "evenodd"
|
|
277
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
278
|
-
fill: "currentColor",
|
|
279
|
-
fillRule: "evenodd",
|
|
280
|
-
d: "M12.95 1.184a1 1 0 0 0-1.897 0c-.575 1.722-1.339 3.332-2.14 4.9l1.485 1.485A56 56 0 0 0 12 4.263c.662 1.515 1.413 2.95 2.118 4.298.291.556.574 1.098.84 1.624.623 1.231 1.148 2.372 1.51 3.455l2.522 2.523c-.1-2.342-1.112-4.636-2.247-6.88-.291-.577-.592-1.151-.893-1.729-1.065-2.035-2.146-4.105-2.9-6.37m4.89 19.484-1.459-1.459a4.2 4.2 0 0 1-.606.869c-.733.806-1.906 1.422-3.773 1.422s-3.04-.616-3.775-1.422c-.757-.831-1.142-1.969-1.215-3.14-.108-1.745.501-3.561 1.474-5.624L6.988 9.816c-1.165 2.362-2.125 4.778-1.972 7.246.094 1.497.592 3.11 1.732 4.362C7.91 22.7 9.648 23.5 12.002 23.5s4.09-.8 5.252-2.076q.328-.36.586-.756M3.293 3.293a1 1 0 0 1 1.414 0l17 17a1 1 0 0 1-1.414 1.414l-17-17a1 1 0 0 1 0-1.414",
|
|
281
|
-
clipRule: "evenodd"
|
|
282
|
-
})]
|
|
283
|
-
}), SvgDeleteColor$1 = SvgDeleteColor, SvgDelete = ({
|
|
284
|
-
title,
|
|
285
|
-
titleId,
|
|
286
|
-
...props
|
|
287
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
288
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
289
|
-
width: "24",
|
|
290
|
-
height: "24",
|
|
291
|
-
fill: "none",
|
|
292
|
-
viewBox: "0 0 24 24",
|
|
293
|
-
"aria-hidden": "true",
|
|
294
|
-
"aria-labelledby": titleId,
|
|
295
|
-
...props,
|
|
296
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
297
|
-
id: titleId,
|
|
298
|
-
children: title
|
|
299
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
300
|
-
fill: "currentColor",
|
|
301
|
-
fillRule: "evenodd",
|
|
302
|
-
d: "M9.461 3.689a.96.96 0 0 1 .675-.28h3.819a.955.955 0 0 1 .954.955v.954H9.182v-.954c0-.254.1-.496.28-.675m7.357.675v.954h3.818a.955.955 0 0 1 0 1.91h-.954v12.408a2.864 2.864 0 0 1-2.864 2.864H7.273a2.864 2.864 0 0 1-2.864-2.864V7.227h-.954a.955.955 0 1 1 0-1.909h3.818v-.954A2.864 2.864 0 0 1 10.136 1.5h3.819a2.864 2.864 0 0 1 2.863 2.864m-10.5 2.863v12.41a.954.954 0 0 0 .955.954h9.545a.955.955 0 0 0 .955-.955V7.227zm3.818 2.864c.528 0 .955.427.955.955v5.727a.955.955 0 1 1-1.91 0v-5.727c0-.528.428-.955.955-.955m4.773 6.682v-5.727a.955.955 0 0 0-1.909 0v5.727a.955.955 0 1 0 1.91 0",
|
|
303
|
-
clipRule: "evenodd"
|
|
304
|
-
})]
|
|
305
|
-
}), SvgDelete$1 = SvgDelete, SvgDownload = ({
|
|
306
|
-
title,
|
|
307
|
-
titleId,
|
|
308
|
-
...props
|
|
309
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
310
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
311
|
-
width: "24",
|
|
312
|
-
height: "24",
|
|
313
|
-
fill: "none",
|
|
314
|
-
viewBox: "0 0 24 24",
|
|
315
|
-
"aria-hidden": "true",
|
|
316
|
-
"aria-labelledby": titleId,
|
|
317
|
-
...props,
|
|
318
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
319
|
-
id: titleId,
|
|
320
|
-
children: title
|
|
321
|
-
}) : null, /* @__PURE__ */ jsxs("g", {
|
|
322
|
-
fill: "currentColor",
|
|
323
|
-
fillRule: "evenodd",
|
|
324
|
-
clipPath: "url(#download_svg__a)",
|
|
325
|
-
clipRule: "evenodd",
|
|
326
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
327
|
-
d: "M7.293 16.293a1 1 0 0 1 1.414 0L12 19.586l3.293-3.293a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414"
|
|
328
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
329
|
-
d: "M12 11a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0v-9a1 1 0 0 1 1-1"
|
|
330
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
331
|
-
d: "M8.668 1.994A9 9 0 0 1 17.48 8H18a6.002 6.002 0 0 1 5.689 7.919 6 6 0 0 1-2.234 2.989 1 1 0 1 1-1.15-1.636A4 4 0 0 0 18 10H16.74a1 1 0 0 1-.969-.751A7 7 0 1 0 3.75 15.627a1 1 0 1 1-1.498 1.326A9 9 0 0 1 8.668 1.994"
|
|
332
|
-
})]
|
|
333
|
-
}), /* @__PURE__ */ jsx("defs", {
|
|
334
|
-
children: /* @__PURE__ */ jsx("clipPath", {
|
|
335
|
-
id: "download_svg__a",
|
|
336
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
337
|
-
fill: "#fff",
|
|
338
|
-
d: "M0 0h24v24H0z"
|
|
339
|
-
})
|
|
340
|
-
})
|
|
341
|
-
})]
|
|
342
|
-
}), SvgDownload$1 = SvgDownload, SvgEdit = ({
|
|
343
|
-
title,
|
|
344
|
-
titleId,
|
|
345
|
-
...props
|
|
346
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
347
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
348
|
-
width: "24",
|
|
349
|
-
height: "24",
|
|
350
|
-
fill: "none",
|
|
351
|
-
viewBox: "0 0 24 24",
|
|
352
|
-
"aria-hidden": "true",
|
|
353
|
-
"aria-labelledby": titleId,
|
|
354
|
-
...props,
|
|
355
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
356
|
-
id: titleId,
|
|
357
|
-
children: title
|
|
358
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
359
|
-
fill: "currentColor",
|
|
360
|
-
fillRule: "evenodd",
|
|
361
|
-
d: "M1.879 3.879A3 3 0 0 1 4 3h7a1 1 0 1 1 0 2H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7a1 1 0 1 1 2 0v7a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6a3 3 0 0 1 .879-2.121",
|
|
362
|
-
clipRule: "evenodd"
|
|
363
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
364
|
-
fill: "currentColor",
|
|
365
|
-
fillRule: "evenodd",
|
|
366
|
-
d: "M20 2.879c-.297 0-.583.118-.793.328l-9.304 9.304-.529 2.115 2.115-.529 9.304-9.304A1.121 1.121 0 0 0 20 2.879m-2.207-1.086a3.121 3.121 0 0 1 4.414 4.414l-9.5 9.5a1 1 0 0 1-.464.263l-4 1a1 1 0 0 1-1.213-1.212l1-4a1 1 0 0 1 .263-.465z",
|
|
367
|
-
clipRule: "evenodd"
|
|
368
|
-
})]
|
|
369
|
-
}), SvgEdit$1 = SvgEdit, SvgError = ({
|
|
370
|
-
title,
|
|
371
|
-
titleId,
|
|
372
|
-
...props
|
|
373
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
374
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
375
|
-
width: "24",
|
|
376
|
-
height: "24",
|
|
377
|
-
fill: "none",
|
|
378
|
-
viewBox: "0 0 24 24",
|
|
379
|
-
"aria-hidden": "true",
|
|
380
|
-
"aria-labelledby": titleId,
|
|
381
|
-
...props,
|
|
382
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
383
|
-
id: titleId,
|
|
384
|
-
children: title
|
|
385
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
386
|
-
fill: "currentColor",
|
|
387
|
-
fillRule: "evenodd",
|
|
388
|
-
d: "M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0m9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1M8.293 15.707a1 1 0 0 1 0-1.414L10.586 12 8.293 9.707a1 1 0 0 1 1.414-1.414L12 10.586l2.293-2.293a1 1 0 1 1 1.414 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414 0",
|
|
389
|
-
clipRule: "evenodd"
|
|
390
|
-
})]
|
|
391
|
-
}), SvgError$1 = SvgError, SvgFolder = ({
|
|
392
|
-
title,
|
|
393
|
-
titleId,
|
|
394
|
-
...props
|
|
395
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
396
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
397
|
-
width: "24",
|
|
398
|
-
height: "24",
|
|
399
|
-
fill: "none",
|
|
400
|
-
viewBox: "0 0 24 24",
|
|
401
|
-
"aria-hidden": "true",
|
|
402
|
-
"aria-labelledby": titleId,
|
|
403
|
-
...props,
|
|
404
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
405
|
-
id: titleId,
|
|
406
|
-
children: title
|
|
407
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
408
|
-
fill: "currentColor",
|
|
409
|
-
fillRule: "evenodd",
|
|
410
|
-
d: "M3.057 5.5A.057.057 0 0 0 3 5.557v13.03h18V7.875h-8.697a1 1 0 0 1-1-1c0-.759-.615-1.374-1.374-1.374zM1 5.557C1 4.42 1.92 3.5 3.057 3.5h6.872c1.515 0 2.797.999 3.223 2.374H21a2 2 0 0 1 2 2v10.714a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z",
|
|
411
|
-
clipRule: "evenodd"
|
|
412
|
-
})]
|
|
413
|
-
}), SvgFolder$1 = SvgFolder, SvgGlobe = ({
|
|
414
|
-
title,
|
|
415
|
-
titleId,
|
|
416
|
-
...props
|
|
417
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
418
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
419
|
-
width: "24",
|
|
420
|
-
height: "24",
|
|
421
|
-
fill: "none",
|
|
422
|
-
viewBox: "0 0 24 24",
|
|
423
|
-
"aria-hidden": "true",
|
|
424
|
-
"aria-labelledby": titleId,
|
|
425
|
-
...props,
|
|
426
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
427
|
-
id: titleId,
|
|
428
|
-
children: title
|
|
429
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
430
|
-
fill: "currentColor",
|
|
431
|
-
fillRule: "evenodd",
|
|
432
|
-
d: "M9.726 3.29A9.01 9.01 0 0 0 3.055 11H7.05a16.3 16.3 0 0 1 2.676-7.71m4.548 0A16.3 16.3 0 0 1 16.95 11h3.995a9.01 9.01 0 0 0-6.67-7.71m.668 7.71A14.3 14.3 0 0 0 12 3.55 14.3 14.3 0 0 0 9.058 11zm-5.884 2h5.884A14.3 14.3 0 0 1 12 20.45 14.3 14.3 0 0 1 9.058 13M7.05 13H3.055a9.01 9.01 0 0 0 6.67 7.71A16.3 16.3 0 0 1 7.05 13m7.224 7.71A16.3 16.3 0 0 0 16.95 13h3.995a9.01 9.01 0 0 1-6.67 7.71M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11",
|
|
433
|
-
clipRule: "evenodd"
|
|
434
|
-
})]
|
|
435
|
-
}), SvgGlobe$1 = SvgGlobe, SvgInfoCircle = ({
|
|
436
|
-
title,
|
|
437
|
-
titleId,
|
|
438
|
-
...props
|
|
439
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
440
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
441
|
-
width: "24",
|
|
442
|
-
height: "24",
|
|
443
|
-
fill: "none",
|
|
444
|
-
viewBox: "0 0 24 24",
|
|
445
|
-
"aria-hidden": "true",
|
|
446
|
-
"aria-labelledby": titleId,
|
|
447
|
-
...props,
|
|
448
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
449
|
-
id: titleId,
|
|
450
|
-
children: title
|
|
451
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
452
|
-
fill: "currentColor",
|
|
453
|
-
fillRule: "evenodd",
|
|
454
|
-
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
455
|
-
clipRule: "evenodd"
|
|
456
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
457
|
-
fill: "currentColor",
|
|
458
|
-
fillRule: "evenodd",
|
|
459
|
-
d: "M12.01 17a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1M13.01 7.5a1 1 0 0 1-1 1H12a1 1 0 1 1 0-2h.01a1 1 0 0 1 1 1",
|
|
460
|
-
clipRule: "evenodd"
|
|
461
|
-
})]
|
|
462
|
-
}), SvgInfoCircle$1 = SvgInfoCircle, SvgLandscape = ({
|
|
463
|
-
title,
|
|
464
|
-
titleId,
|
|
465
|
-
...props
|
|
466
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
467
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
468
|
-
width: "24",
|
|
469
|
-
height: "24",
|
|
470
|
-
fill: "none",
|
|
471
|
-
viewBox: "0 0 24 24",
|
|
472
|
-
"aria-hidden": "true",
|
|
473
|
-
"aria-labelledby": titleId,
|
|
474
|
-
...props,
|
|
475
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
476
|
-
id: titleId,
|
|
477
|
-
children: title
|
|
478
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
479
|
-
fill: "currentColor",
|
|
480
|
-
fillRule: "evenodd",
|
|
481
|
-
d: "M4.222 5.037c-.895 0-1.222.555-1.222.792v12.675c0 .237.327.792 1.222.792h1.364l9.707-9.886a.987.987 0 0 1 1.414 0L21 13.782V5.829c0-.237-.328-.792-1.222-.792zM23 16.224V5.829C23 4.066 21.337 3 19.778 3H4.222C2.662 3 1 4.066 1 5.83v12.674c0 1.763 1.662 2.829 3.222 2.829h15.556c1.56 0 3.222-1.066 3.222-2.83v-2.279m-2 .439-5-5.093-7.585 7.726h11.363c.894 0 1.222-.555 1.222-.792zM8 8.093c-.552 0-1 .455-1 1.018a1.01 1.01 0 0 0 1 1.018c.552 0 1-.456 1-1.018a1.01 1.01 0 0 0-1-1.019M5 9.11c0-1.688 1.343-3.056 3-3.056s3 1.368 3 3.056-1.343 3.055-3 3.055-3-1.368-3-3.055",
|
|
482
|
-
clipRule: "evenodd"
|
|
483
|
-
})]
|
|
484
|
-
}), SvgLandscape$1 = SvgLandscape, SvgLoader = ({
|
|
485
|
-
title,
|
|
486
|
-
titleId,
|
|
487
|
-
...props
|
|
488
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
489
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
490
|
-
width: "24",
|
|
491
|
-
height: "24",
|
|
492
|
-
fill: "none",
|
|
493
|
-
viewBox: "0 0 24 24",
|
|
494
|
-
"aria-hidden": "true",
|
|
495
|
-
"aria-labelledby": titleId,
|
|
496
|
-
...props,
|
|
497
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
498
|
-
id: titleId,
|
|
499
|
-
children: title
|
|
500
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
501
|
-
fill: "currentColor",
|
|
502
|
-
fillRule: "evenodd",
|
|
503
|
-
d: "M16.672 5.558a7.96 7.96 0 0 0-9.841.397 7.95 7.95 0 0 0-1.908 9.66 7.964 7.964 0 0 0 8.949 4.12A7.95 7.95 0 0 0 19.962 12a1.021 1.021 0 1 1 2.045 0A9.994 9.994 0 0 1 7.83 21.083a10.01 10.01 0 0 1-5.634-11.027 9.99 9.99 0 0 1 9.402-8.048c2.244-.09 4.453.577 6.272 1.895a1.022 1.022 0 1 1-1.198 1.655",
|
|
504
|
-
clipRule: "evenodd"
|
|
505
|
-
})]
|
|
506
|
-
}), SvgLoader$1 = SvgLoader, SvgMic = ({
|
|
507
|
-
title,
|
|
508
|
-
titleId,
|
|
509
|
-
...props
|
|
510
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
511
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
512
|
-
width: "24",
|
|
513
|
-
height: "24",
|
|
514
|
-
fill: "none",
|
|
515
|
-
viewBox: "0 0 24 24",
|
|
516
|
-
"aria-hidden": "true",
|
|
517
|
-
"aria-labelledby": titleId,
|
|
518
|
-
...props,
|
|
519
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
520
|
-
id: titleId,
|
|
521
|
-
children: title
|
|
522
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
523
|
-
fill: "currentColor",
|
|
524
|
-
fillRule: "evenodd",
|
|
525
|
-
d: "M12 .5a4.07 4.07 0 0 0-2.812 1.115A3.8 3.8 0 0 0 8 4.364V12a3.8 3.8 0 0 0 1.188 2.748A4.07 4.07 0 0 0 12 15.864a4.07 4.07 0 0 0 2.812-1.116A3.8 3.8 0 0 0 16 12V4.364a3.8 3.8 0 0 0-1.188-2.749A4.07 4.07 0 0 0 12 .5m-1.43 2.562A2.07 2.07 0 0 1 12 2.5c.545 0 1.059.207 1.43.562.371.354.57.823.57 1.302V12a1.8 1.8 0 0 1-.57 1.302 2.07 2.07 0 0 1-1.43.562 2.07 2.07 0 0 1-1.43-.562A1.8 1.8 0 0 1 10 12V4.364a1.8 1.8 0 0 1 .57-1.302M6 10.091a1 1 0 0 0-2 0V12c0 2.053.855 4.011 2.36 5.448A8.13 8.13 0 0 0 11 19.622V21.5H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-1.878a8.13 8.13 0 0 0 4.64-2.174C19.145 16.011 20 14.053 20 12v-1.91a1 1 0 0 0-2 0V12c0 1.491-.62 2.932-1.74 4.001s-2.646 1.678-4.248 1.68h-.024c-1.602-.002-3.128-.611-4.247-1.68C6.62 14.931 6 13.491 6 12z",
|
|
526
|
-
clipRule: "evenodd"
|
|
527
|
-
})]
|
|
528
|
-
}), SvgMic$1 = SvgMic, SvgOptions = ({
|
|
529
|
-
title,
|
|
530
|
-
titleId,
|
|
531
|
-
...props
|
|
532
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
533
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
534
|
-
width: "24",
|
|
535
|
-
height: "24",
|
|
536
|
-
fill: "none",
|
|
537
|
-
viewBox: "0 0 24 24",
|
|
538
|
-
"aria-hidden": "true",
|
|
539
|
-
"aria-labelledby": titleId,
|
|
540
|
-
...props,
|
|
541
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
542
|
-
id: titleId,
|
|
543
|
-
children: title
|
|
544
|
-
}) : null, /* @__PURE__ */ jsx("circle", {
|
|
545
|
-
cx: 12,
|
|
546
|
-
cy: 4,
|
|
547
|
-
r: 2.5,
|
|
548
|
-
fill: "currentColor"
|
|
549
|
-
}), /* @__PURE__ */ jsx("circle", {
|
|
550
|
-
cx: 12,
|
|
551
|
-
cy: 12,
|
|
552
|
-
r: 2.5,
|
|
553
|
-
fill: "currentColor"
|
|
554
|
-
}), /* @__PURE__ */ jsx("circle", {
|
|
555
|
-
cx: 12,
|
|
556
|
-
cy: 20,
|
|
557
|
-
r: 2.5,
|
|
558
|
-
fill: "currentColor"
|
|
559
|
-
})]
|
|
560
|
-
}), SvgOptions$1 = SvgOptions, SvgPaperclip = ({
|
|
561
|
-
title,
|
|
562
|
-
titleId,
|
|
563
|
-
...props
|
|
564
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
565
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
566
|
-
width: "24",
|
|
567
|
-
height: "24",
|
|
568
|
-
fill: "none",
|
|
569
|
-
viewBox: "0 0 24 24",
|
|
570
|
-
"aria-hidden": "true",
|
|
571
|
-
"aria-labelledby": titleId,
|
|
572
|
-
...props,
|
|
573
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
574
|
-
id: titleId,
|
|
575
|
-
children: title
|
|
576
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
577
|
-
fill: "currentColor",
|
|
578
|
-
fillRule: "evenodd",
|
|
579
|
-
d: "M15.968 3c-.775 0-1.517.306-2.062.847l-8.983 8.918a4.8 4.8 0 0 0-1.423 3.41c0 1.277.511 2.504 1.423 3.41A4.9 4.9 0 0 0 8.368 21a4.9 4.9 0 0 0 3.445-1.416l8.983-8.918a1 1 0 1 1 1.409 1.42l-8.983 8.917A6.9 6.9 0 0 1 8.368 23a6.9 6.9 0 0 1-4.854-1.997A6.8 6.8 0 0 1 1.5 16.174c0-1.812.725-3.549 2.014-4.828l8.983-8.918A4.93 4.93 0 0 1 15.967 1c1.301 0 2.55.513 3.471 1.428a4.87 4.87 0 0 1 1.442 3.456 4.87 4.87 0 0 1-1.442 3.455l-8.992 8.918a2.965 2.965 0 0 1-4.175 0 2.935 2.935 0 0 1 0-4.165l8.299-8.23a1 1 0 0 1 1.408 1.42l-8.298 8.23a.935.935 0 0 0 0 1.326.963.963 0 0 0 1.357 0l8.992-8.918c.545-.541.85-1.274.85-2.036a2.87 2.87 0 0 0-.85-2.037A2.93 2.93 0 0 0 15.968 3",
|
|
580
|
-
clipRule: "evenodd"
|
|
581
|
-
})]
|
|
582
|
-
}), SvgPaperclip$1 = SvgPaperclip, SvgPause = ({
|
|
583
|
-
title,
|
|
584
|
-
titleId,
|
|
585
|
-
...props
|
|
586
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
587
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
588
|
-
width: "24",
|
|
589
|
-
height: "24",
|
|
590
|
-
fill: "none",
|
|
591
|
-
viewBox: "0 0 24 24",
|
|
592
|
-
"aria-hidden": "true",
|
|
593
|
-
"aria-labelledby": titleId,
|
|
594
|
-
...props,
|
|
595
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
596
|
-
id: titleId,
|
|
597
|
-
children: title
|
|
598
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
599
|
-
fill: "currentColor",
|
|
600
|
-
fillRule: "evenodd",
|
|
601
|
-
d: "M5.5 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm0 2h3v16h-3zm10-2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm0 2h3v16h-3z",
|
|
602
|
-
clipRule: "evenodd"
|
|
603
|
-
})]
|
|
604
|
-
}), SvgPause$1 = SvgPause, SvgPlayFilled = ({
|
|
605
|
-
title,
|
|
606
|
-
titleId,
|
|
607
|
-
...props
|
|
608
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
609
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
610
|
-
width: "24",
|
|
611
|
-
height: "24",
|
|
612
|
-
fill: "none",
|
|
613
|
-
viewBox: "0 0 24 24",
|
|
614
|
-
"aria-hidden": "true",
|
|
615
|
-
"aria-labelledby": titleId,
|
|
616
|
-
...props,
|
|
617
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
618
|
-
id: titleId,
|
|
619
|
-
children: title
|
|
620
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
621
|
-
fill: "currentColor",
|
|
622
|
-
d: "M5 3.804c0-1.57 1.728-2.528 3.06-1.696l13.113 8.196a2 2 0 0 1 0 3.392L8.06 21.892C6.728 22.724 5 21.767 5 20.196z"
|
|
623
|
-
})]
|
|
624
|
-
}), SvgPlayFilled$1 = SvgPlayFilled, SvgPlus = ({
|
|
625
|
-
title,
|
|
626
|
-
titleId,
|
|
627
|
-
...props
|
|
628
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
629
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
630
|
-
width: "24",
|
|
631
|
-
height: "24",
|
|
632
|
-
fill: "none",
|
|
633
|
-
viewBox: "0 0 24 24",
|
|
634
|
-
"aria-hidden": "true",
|
|
635
|
-
"aria-labelledby": titleId,
|
|
636
|
-
...props,
|
|
637
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
638
|
-
id: titleId,
|
|
639
|
-
children: title
|
|
640
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
641
|
-
fill: "currentColor",
|
|
642
|
-
fillRule: "evenodd",
|
|
643
|
-
d: "M13 4a1 1 0 1 0-2 0v7H4a1 1 0 1 0 0 2h7v7a1 1 0 1 0 2 0v-7h7a1 1 0 1 0 0-2h-7z",
|
|
644
|
-
clipRule: "evenodd"
|
|
645
|
-
})]
|
|
646
|
-
}), SvgPlus$1 = SvgPlus, SvgRafterDown = ({
|
|
647
|
-
title,
|
|
648
|
-
titleId,
|
|
649
|
-
...props
|
|
650
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
651
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
652
|
-
width: "24",
|
|
653
|
-
height: "24",
|
|
654
|
-
fill: "none",
|
|
655
|
-
viewBox: "0 0 24 24",
|
|
656
|
-
"aria-hidden": "true",
|
|
657
|
-
"aria-labelledby": titleId,
|
|
658
|
-
...props,
|
|
659
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
660
|
-
id: titleId,
|
|
661
|
-
children: title
|
|
662
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
663
|
-
fill: "currentColor",
|
|
664
|
-
fillRule: "evenodd",
|
|
665
|
-
d: "M4.012 7.871a1.5 1.5 0 0 1 2.117.141L12 14.722l5.871-6.71a1.5 1.5 0 1 1 2.258 1.976l-7 8a1.5 1.5 0 0 1-2.258 0l-7-8a1.5 1.5 0 0 1 .141-2.117",
|
|
666
|
-
clipRule: "evenodd"
|
|
667
|
-
})]
|
|
668
|
-
}), SvgRafterDown$1 = SvgRafterDown, SvgRafterRight = ({
|
|
669
|
-
title,
|
|
670
|
-
titleId,
|
|
671
|
-
...props
|
|
672
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
673
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
674
|
-
width: "24",
|
|
675
|
-
height: "24",
|
|
676
|
-
fill: "none",
|
|
677
|
-
viewBox: "0 0 24 24",
|
|
678
|
-
"aria-hidden": "true",
|
|
679
|
-
"aria-labelledby": titleId,
|
|
680
|
-
...props,
|
|
681
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
682
|
-
id: titleId,
|
|
683
|
-
children: title
|
|
684
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
685
|
-
fill: "currentColor",
|
|
686
|
-
fillRule: "evenodd",
|
|
687
|
-
d: "M7.871 19.988a1.5 1.5 0 0 1 .141-2.117L14.722 12l-6.71-5.871A1.5 1.5 0 0 1 9.988 3.87l8 7a1.5 1.5 0 0 1 0 2.258l-8 7a1.5 1.5 0 0 1-2.117-.141",
|
|
688
|
-
clipRule: "evenodd"
|
|
689
|
-
})]
|
|
690
|
-
}), SvgRafterRight$1 = SvgRafterRight, SvgRafterUp = ({
|
|
691
|
-
title,
|
|
692
|
-
titleId,
|
|
693
|
-
...props
|
|
694
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
695
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
696
|
-
width: "24",
|
|
697
|
-
height: "24",
|
|
698
|
-
fill: "none",
|
|
699
|
-
viewBox: "0 0 24 24",
|
|
700
|
-
"aria-hidden": "true",
|
|
701
|
-
"aria-labelledby": titleId,
|
|
702
|
-
...props,
|
|
703
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
704
|
-
id: titleId,
|
|
705
|
-
children: title
|
|
706
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
707
|
-
fill: "currentColor",
|
|
708
|
-
fillRule: "evenodd",
|
|
709
|
-
d: "M19.988 17.129a1.5 1.5 0 0 1-2.117-.141L12 10.278l-5.871 6.71a1.5 1.5 0 0 1-2.258-1.976l7-8a1.5 1.5 0 0 1 2.258 0l7 8a1.5 1.5 0 0 1-.141 2.117",
|
|
710
|
-
clipRule: "evenodd"
|
|
711
|
-
})]
|
|
712
|
-
}), SvgRafterUp$1 = SvgRafterUp, SvgReaction = ({
|
|
713
|
-
title,
|
|
714
|
-
titleId,
|
|
715
|
-
...props
|
|
716
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
717
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
718
|
-
width: "24",
|
|
719
|
-
height: "24",
|
|
720
|
-
fill: "none",
|
|
721
|
-
viewBox: "0 0 24 24",
|
|
722
|
-
"aria-hidden": "true",
|
|
723
|
-
"aria-labelledby": titleId,
|
|
724
|
-
...props,
|
|
725
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
726
|
-
id: titleId,
|
|
727
|
-
children: title
|
|
728
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
729
|
-
fill: "currentColor",
|
|
730
|
-
d: "M12 22a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.1 10.1 0 0 1 2.137-3.175q1.35-1.35 3.175-2.137A9.7 9.7 0 0 1 12 2a10 10 0 0 1 3.423.596.89.89 0 0 1 .577.85c0 .726-.797 1.197-1.485.966A7.697 7.697 0 0 0 12 4Q8.675 4 6.338 6.338 4 8.675 4 12t2.338 5.663T12 20t5.663-2.337T20 12a7.3 7.3 0 0 0-.18-1.633C19.667 9.697 20.143 9 20.83 9c.428 0 .81.277.908.693A10 10 0 0 1 22 12a9.7 9.7 0 0 1-.788 3.9 10.1 10.1 0 0 1-2.137 3.175q-1.35 1.35-3.175 2.137A9.7 9.7 0 0 1 12 22m7-16h-1a.97.97 0 0 1-.712-.287A.97.97 0 0 1 17 5q0-.424.288-.713A.97.97 0 0 1 18 4h1V3q0-.424.288-.712A.97.97 0 0 1 20 2q.424 0 .712.288Q21 2.575 21 3v1h1q.424 0 .712.287Q23 4.576 23 5q0 .424-.288.713A.97.97 0 0 1 22 6h-1v1q0 .424-.288.713A.97.97 0 0 1 20 8a.97.97 0 0 1-.712-.287A.97.97 0 0 1 19 7zm-3.5 5q.624 0 1.063-.437Q17 10.125 17 9.5t-.437-1.062A1.45 1.45 0 0 0 15.5 8q-.625 0-1.062.438A1.45 1.45 0 0 0 14 9.5q0 .624.438 1.063.437.437 1.062.437m-7 0q.624 0 1.063-.437Q10 10.125 10 9.5t-.437-1.062A1.45 1.45 0 0 0 8.5 8q-.625 0-1.062.438A1.45 1.45 0 0 0 7 9.5q0 .624.438 1.063Q7.875 11 8.5 11m3.5 6.5q1.45 0 2.675-.7a5.53 5.53 0 0 0 1.975-1.9q.15-.3-.025-.6a.57.57 0 0 0-.525-.3H7.9a.57.57 0 0 0-.525.3q-.175.3-.025.6a5.5 5.5 0 0 0 1.988 1.9 5.3 5.3 0 0 0 2.662.7"
|
|
731
|
-
})]
|
|
732
|
-
}), SvgReaction$1 = SvgReaction, SvgRecordPause = ({
|
|
733
|
-
title,
|
|
734
|
-
titleId,
|
|
735
|
-
...props
|
|
736
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
737
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
738
|
-
width: "24",
|
|
739
|
-
height: "24",
|
|
740
|
-
fill: "none",
|
|
741
|
-
viewBox: "0 0 24 24",
|
|
742
|
-
"aria-hidden": "true",
|
|
743
|
-
"aria-labelledby": titleId,
|
|
744
|
-
...props,
|
|
745
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
746
|
-
id: titleId,
|
|
747
|
-
children: title
|
|
748
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
749
|
-
fill: "currentColor",
|
|
750
|
-
fillRule: "evenodd",
|
|
751
|
-
d: "M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11M10 6H8a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1m4 0h2a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1",
|
|
752
|
-
clipRule: "evenodd"
|
|
753
|
-
})]
|
|
754
|
-
}), SvgRecordPause$1 = SvgRecordPause, SvgRecordStop = ({
|
|
755
|
-
title,
|
|
756
|
-
titleId,
|
|
757
|
-
...props
|
|
758
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
759
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
760
|
-
width: "24",
|
|
761
|
-
height: "24",
|
|
762
|
-
fill: "none",
|
|
763
|
-
viewBox: "0 0 24 24",
|
|
764
|
-
"aria-hidden": "true",
|
|
765
|
-
"aria-labelledby": titleId,
|
|
766
|
-
...props,
|
|
767
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
768
|
-
id: titleId,
|
|
769
|
-
children: title
|
|
770
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
771
|
-
fill: "currentColor",
|
|
772
|
-
d: "M2 6a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4z"
|
|
773
|
-
})]
|
|
774
|
-
}), SvgRecordStop$1 = SvgRecordStop, SvgRecordVideo = ({
|
|
775
|
-
title,
|
|
776
|
-
titleId,
|
|
777
|
-
...props
|
|
778
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
779
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
780
|
-
width: "24",
|
|
781
|
-
height: "24",
|
|
782
|
-
fill: "none",
|
|
783
|
-
viewBox: "0 0 24 24",
|
|
784
|
-
"aria-hidden": "true",
|
|
785
|
-
"aria-labelledby": titleId,
|
|
786
|
-
...props,
|
|
787
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
788
|
-
id: titleId,
|
|
789
|
-
children: title
|
|
790
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
791
|
-
fill: "currentColor",
|
|
792
|
-
fillRule: "evenodd",
|
|
793
|
-
d: "M2 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2v-1.936l4.409 1.365A2 2 0 0 0 24 15.519V8.48a2 2 0 0 0-2.591-1.91l-4.41 1.364V6a2 2 0 0 0-2-2zm0 2h13v12H2zm15 7.97V10.03l5-1.548v7.037z",
|
|
794
|
-
clipRule: "evenodd"
|
|
795
|
-
})]
|
|
796
|
-
}), SvgRecordVideo$1 = SvgRecordVideo, SvgRecord = ({
|
|
797
|
-
title,
|
|
798
|
-
titleId,
|
|
799
|
-
...props
|
|
800
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
801
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
802
|
-
width: "24",
|
|
803
|
-
height: "24",
|
|
804
|
-
fill: "none",
|
|
805
|
-
viewBox: "0 0 24 24",
|
|
806
|
-
"aria-hidden": "true",
|
|
807
|
-
"aria-labelledby": titleId,
|
|
808
|
-
...props,
|
|
809
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
810
|
-
id: titleId,
|
|
811
|
-
children: title
|
|
812
|
-
}) : null, /* @__PURE__ */ jsx("circle", {
|
|
813
|
-
cx: 12,
|
|
814
|
-
cy: 12,
|
|
815
|
-
r: 11,
|
|
816
|
-
fill: "currentColor"
|
|
817
|
-
})]
|
|
818
|
-
}), SvgRecord$1 = SvgRecord, SvgRefresh = ({
|
|
819
|
-
title,
|
|
820
|
-
titleId,
|
|
821
|
-
...props
|
|
822
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
823
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
824
|
-
width: "24",
|
|
825
|
-
height: "24",
|
|
826
|
-
fill: "none",
|
|
827
|
-
viewBox: "0 0 24 24",
|
|
828
|
-
"aria-hidden": "true",
|
|
829
|
-
"aria-labelledby": titleId,
|
|
830
|
-
...props,
|
|
831
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
832
|
-
id: titleId,
|
|
833
|
-
children: title
|
|
834
|
-
}) : null, /* @__PURE__ */ jsx("g", {
|
|
835
|
-
clipPath: "url(#refresh_svg__a)",
|
|
836
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
837
|
-
fill: "currentColor",
|
|
838
|
-
fillRule: "evenodd",
|
|
839
|
-
d: "M12.304 21c3.015 0 5.65-1.924 6.838-4.752a.986.986 0 0 1 1.297-.53c.503.216.738.803.524 1.311C19.498 20.522 16.19 23 12.304 23c-4.644 0-8.444-3.522-9.299-8.113L1.86 17.142a.99.99 0 0 1-1.33.449 1 1 0 0 1-.417-1.348L2.51 11.52c.135-.265.376-.457.66-.527a.96.96 0 0 1 .812.169L8.1 14.297c.433.33.515.958.185 1.404a.98.98 0 0 1-1.382.212L4.93 14.41c.65 3.785 3.744 6.59 7.374 6.59m4.794-12.913a.98.98 0 0 0-1.381.211 1.01 1.01 0 0 0 .184 1.405l4.117 3.135a.96.96 0 0 0 .812.169c.284-.07.525-.262.66-.527l2.398-4.723c.252-.496.065-1.1-.418-1.348a.99.99 0 0 0-1.329.449l-1.145 2.255C20.14 4.522 16.34 1 11.696 1 7.81 1 4.505 3.478 3.037 6.97a1.004 1.004 0 0 0 .525 1.312.986.986 0 0 0 1.297-.53C6.046 4.924 8.681 3 11.697 3c3.63 0 6.724 2.805 7.374 6.59z",
|
|
840
|
-
clipRule: "evenodd"
|
|
841
|
-
})
|
|
842
|
-
}), /* @__PURE__ */ jsx("defs", {
|
|
843
|
-
children: /* @__PURE__ */ jsx("clipPath", {
|
|
844
|
-
id: "refresh_svg__a",
|
|
845
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
846
|
-
fill: "#fff",
|
|
847
|
-
d: "M0 0h24v24H0z"
|
|
848
|
-
})
|
|
849
|
-
})
|
|
850
|
-
})]
|
|
851
|
-
}), SvgRefresh$1 = SvgRefresh, SvgReset = ({
|
|
852
|
-
title,
|
|
853
|
-
titleId,
|
|
854
|
-
...props
|
|
855
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
856
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
857
|
-
width: "24",
|
|
858
|
-
height: "24",
|
|
859
|
-
fill: "none",
|
|
860
|
-
viewBox: "0 0 24 24",
|
|
861
|
-
"aria-hidden": "true",
|
|
862
|
-
"aria-labelledby": titleId,
|
|
863
|
-
...props,
|
|
864
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
865
|
-
id: titleId,
|
|
866
|
-
children: title
|
|
867
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
868
|
-
fill: "currentColor",
|
|
869
|
-
fillRule: "evenodd",
|
|
870
|
-
d: "M4.583 7.313 3.976 3.87a.996.996 0 1 0-1.96.346l1.012 5.747a.996.996 0 0 0 1.153.809l5.743-1.014a.997.997 0 0 0-.346-1.962l-3.3.582a7.754 7.754 0 0 1 8.399-4.254 7.76 7.76 0 0 1 .78 15.064 7.745 7.745 0 0 1-8.912-3.56.995.995 0 1 0-1.724.997 9.744 9.744 0 0 0 11.201 4.474 9.74 9.74 0 0 0 5.19-3.718 9.756 9.756 0 0 0-.625-12.055A9.74 9.74 0 0 0 8.73 3.117a9.75 9.75 0 0 0-4.147 4.196",
|
|
871
|
-
clipRule: "evenodd"
|
|
872
|
-
})]
|
|
873
|
-
}), SvgReset$1 = SvgReset, SvgRestart = ({
|
|
874
|
-
title,
|
|
875
|
-
titleId,
|
|
876
|
-
...props
|
|
877
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
878
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
879
|
-
width: "24",
|
|
880
|
-
height: "24",
|
|
881
|
-
fill: "none",
|
|
882
|
-
viewBox: "0 0 24 24",
|
|
883
|
-
"aria-hidden": "true",
|
|
884
|
-
"aria-labelledby": titleId,
|
|
885
|
-
...props,
|
|
886
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
887
|
-
id: titleId,
|
|
888
|
-
children: title
|
|
889
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
890
|
-
fill: "currentColor",
|
|
891
|
-
d: "M17.919 3.15c1.33-.856 3.081.1 3.081 1.682v14.336c0 1.583-1.75 2.538-3.081 1.683L7 13.83V19a2 2 0 1 1-4 0V5a2 2 0 1 1 4 0v5.168z"
|
|
892
|
-
})]
|
|
893
|
-
}), SvgRestart$1 = SvgRestart, SvgSave = ({
|
|
894
|
-
title,
|
|
895
|
-
titleId,
|
|
896
|
-
...props
|
|
897
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
898
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
899
|
-
width: "24",
|
|
900
|
-
height: "24",
|
|
901
|
-
fill: "none",
|
|
902
|
-
viewBox: "0 0 24 24",
|
|
903
|
-
"aria-hidden": "true",
|
|
904
|
-
"aria-labelledby": titleId,
|
|
905
|
-
...props,
|
|
906
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
907
|
-
id: titleId,
|
|
908
|
-
children: title
|
|
909
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
910
|
-
fill: "currentColor",
|
|
911
|
-
fillRule: "evenodd",
|
|
912
|
-
d: "M5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h1v-7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7h1a1 1 0 0 0 1-1V8.414L15.586 4H8v3h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1V4zm2-2H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 16 2zm1 12v6h8v-6z",
|
|
913
|
-
clipRule: "evenodd"
|
|
914
|
-
})]
|
|
915
|
-
}), SvgSave$1 = SvgSave, SvgSearch = ({
|
|
916
|
-
title,
|
|
917
|
-
titleId,
|
|
918
|
-
...props
|
|
919
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
920
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
921
|
-
fill: "none",
|
|
922
|
-
viewBox: "0 0 24 24",
|
|
923
|
-
width: "24",
|
|
924
|
-
height: "24",
|
|
925
|
-
"aria-hidden": "true",
|
|
926
|
-
"aria-labelledby": titleId,
|
|
927
|
-
...props,
|
|
928
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
929
|
-
id: titleId,
|
|
930
|
-
children: title
|
|
931
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
932
|
-
fill: "currentColor",
|
|
933
|
-
fillRule: "evenodd",
|
|
934
|
-
d: "M4 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0m7-9a9 9 0 1 0 5.7 15.96 1 1 0 0 0 .24.4l4.35 4.35a1 1 0 0 0 1.42-1.42l-4.35-4.35a1 1 0 0 0-.4-.24A9 9 0 0 0 11 1",
|
|
935
|
-
clipRule: "evenodd"
|
|
936
|
-
})]
|
|
937
|
-
}), SvgSearch$1 = SvgSearch, SvgSee = ({
|
|
938
|
-
title,
|
|
939
|
-
titleId,
|
|
940
|
-
...props
|
|
941
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
942
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
943
|
-
width: "24",
|
|
944
|
-
height: "24",
|
|
945
|
-
fill: "none",
|
|
946
|
-
viewBox: "0 0 24 24",
|
|
947
|
-
"aria-hidden": "true",
|
|
948
|
-
"aria-labelledby": titleId,
|
|
949
|
-
...props,
|
|
950
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
951
|
-
id: titleId,
|
|
952
|
-
children: title
|
|
953
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
954
|
-
fill: "currentColor",
|
|
955
|
-
fillRule: "evenodd",
|
|
956
|
-
d: "M2.14 12a18.68 18.68 0 0 0 2.464 3.316C6.397 17.226 8.9 19 12 19s5.605-1.774 7.395-3.684A18.7 18.7 0 0 0 21.86 12a18.681 18.681 0 0 0-2.464-3.316C17.606 6.774 15.101 5 12 5S6.396 6.774 4.605 8.684A18.7 18.7 0 0 0 2.14 12M23 12l.894-.448-.002-.003-.003-.007-.011-.022a11 11 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3S5.104 5.226 3.145 7.316a20.7 20.7 0 0 0-2.831 3.85 12 12 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894L1 12l-.894.447.002.004.003.007.011.022a8 8 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21s6.895-2.226 8.855-4.316a20.7 20.7 0 0 0 2.831-3.85 12 12 0 0 0 .192-.354l.011-.022.003-.007.002-.002s0-.002-.894-.449m0 0 .894.447c.141-.281.14-.613 0-.895z",
|
|
957
|
-
clipRule: "evenodd"
|
|
958
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
959
|
-
fill: "currentColor",
|
|
960
|
-
fillRule: "evenodd",
|
|
961
|
-
d: "M12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0",
|
|
962
|
-
clipRule: "evenodd"
|
|
963
|
-
})]
|
|
964
|
-
}), SvgSee$1 = SvgSee, SvgSmartphone = ({
|
|
965
|
-
title,
|
|
966
|
-
titleId,
|
|
967
|
-
...props
|
|
968
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
969
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
970
|
-
width: "24",
|
|
971
|
-
height: "24",
|
|
972
|
-
fill: "none",
|
|
973
|
-
viewBox: "0 0 24 24",
|
|
974
|
-
"aria-hidden": "true",
|
|
975
|
-
"aria-labelledby": titleId,
|
|
976
|
-
...props,
|
|
977
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
978
|
-
id: titleId,
|
|
979
|
-
children: title
|
|
980
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
981
|
-
fill: "currentColor",
|
|
982
|
-
fillRule: "evenodd",
|
|
983
|
-
d: "M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM4 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v16a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3z",
|
|
984
|
-
clipRule: "evenodd"
|
|
985
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
986
|
-
fill: "currentColor",
|
|
987
|
-
fillRule: "evenodd",
|
|
988
|
-
d: "M11 18a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1",
|
|
989
|
-
clipRule: "evenodd"
|
|
990
|
-
})]
|
|
991
|
-
}), SvgSmartphone$1 = SvgSmartphone, SvgSortAscendingLetters = ({
|
|
992
|
-
title,
|
|
993
|
-
titleId,
|
|
994
|
-
...props
|
|
995
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
996
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
997
|
-
width: "24",
|
|
998
|
-
height: "24",
|
|
999
|
-
fill: "none",
|
|
1000
|
-
viewBox: "0 0 24 24",
|
|
1001
|
-
"aria-hidden": "true",
|
|
1002
|
-
"aria-labelledby": titleId,
|
|
1003
|
-
...props,
|
|
1004
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1005
|
-
id: titleId,
|
|
1006
|
-
children: title
|
|
1007
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1008
|
-
fill: "currentColor",
|
|
1009
|
-
fillRule: "evenodd",
|
|
1010
|
-
d: "M16.133 6.173c-.026.023-.133.118-.133.541v.715h2v-.715c0-.423-.107-.518-.133-.541C17.805 6.12 17.594 6 17 6s-.805.12-.867.173M20 6.714c0-.76-.203-1.521-.832-2.06C18.575 4.145 17.786 4 17 4s-1.575.145-2.168.654c-.629.539-.832 1.3-.832 2.06V11a1 1 0 1 0 2 0V9.429h2V11a1 1 0 1 0 2 0zM14 14a1 1 0 0 1 1-1h4a1 1 0 0 1 .832 1.555L16.87 19H19a1 1 0 1 1 0 2h-4a1 1 0 0 1-.832-1.555L17.132 15H15a1 1 0 0 1-1-1M3.293 16.293a1 1 0 0 1 1.414 0L7 18.586l2.293-2.293a1 1 0 0 1 1.414 1.414l-3 3a1 1 0 0 1-1.414 0l-3-3a1 1 0 0 1 0-1.414",
|
|
1011
|
-
clipRule: "evenodd"
|
|
1012
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1013
|
-
fill: "currentColor",
|
|
1014
|
-
fillRule: "evenodd",
|
|
1015
|
-
d: "M7 4a1 1 0 0 1 1 1v15a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1",
|
|
1016
|
-
clipRule: "evenodd"
|
|
1017
|
-
})]
|
|
1018
|
-
}), SvgSortAscendingLetters$1 = SvgSortAscendingLetters, SvgSortDescendingLetters = ({
|
|
1019
|
-
title,
|
|
1020
|
-
titleId,
|
|
1021
|
-
...props
|
|
1022
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1023
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1024
|
-
width: "24",
|
|
1025
|
-
height: "24",
|
|
1026
|
-
fill: "none",
|
|
1027
|
-
viewBox: "0 0 24 24",
|
|
1028
|
-
"aria-hidden": "true",
|
|
1029
|
-
"aria-labelledby": titleId,
|
|
1030
|
-
...props,
|
|
1031
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1032
|
-
id: titleId,
|
|
1033
|
-
children: title
|
|
1034
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1035
|
-
fill: "currentColor",
|
|
1036
|
-
fillRule: "evenodd",
|
|
1037
|
-
d: "M16.133 6.173c-.026.023-.133.118-.133.541v.715h2v-.715c0-.423-.107-.518-.133-.541C17.805 6.12 17.594 6 17 6s-.805.12-.867.173M20 6.714c0-.76-.203-1.521-.832-2.06C18.575 4.145 17.786 4 17 4s-1.575.145-2.168.654c-.629.539-.832 1.3-.832 2.06V11a1 1 0 1 0 2 0V9.429h2V11a1 1 0 1 0 2 0zM14 14a1 1 0 0 1 1-1h4a1 1 0 0 1 .832 1.555L16.87 19H19a1 1 0 1 1 0 2h-4a1 1 0 0 1-.832-1.555L17.132 15H15a1 1 0 0 1-1-1M3.293 8.707a1 1 0 0 0 1.414 0L7 6.414l2.293 2.293a1 1 0 0 0 1.414-1.414l-3-3a1 1 0 0 0-1.414 0l-3 3a1 1 0 0 0 0 1.414",
|
|
1038
|
-
clipRule: "evenodd"
|
|
1039
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1040
|
-
fill: "currentColor",
|
|
1041
|
-
fillRule: "evenodd",
|
|
1042
|
-
d: "M7 21a1 1 0 0 0 1-1V5a1 1 0 0 0-2 0v15a1 1 0 0 0 1 1",
|
|
1043
|
-
clipRule: "evenodd"
|
|
1044
|
-
})]
|
|
1045
|
-
}), SvgSortDescendingLetters$1 = SvgSortDescendingLetters, SvgSortTime = ({
|
|
1046
|
-
title,
|
|
1047
|
-
titleId,
|
|
1048
|
-
...props
|
|
1049
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1050
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1051
|
-
width: "24",
|
|
1052
|
-
height: "24",
|
|
1053
|
-
fill: "none",
|
|
1054
|
-
viewBox: "0 0 24 24",
|
|
1055
|
-
"aria-hidden": "true",
|
|
1056
|
-
"aria-labelledby": titleId,
|
|
1057
|
-
...props,
|
|
1058
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1059
|
-
id: titleId,
|
|
1060
|
-
children: title
|
|
1061
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1062
|
-
fill: "currentColor",
|
|
1063
|
-
fillRule: "evenodd",
|
|
1064
|
-
d: "M13.509 6.027a6.138 6.138 0 1 1-.28 12.099 1 1 0 1 0-.383 1.963A8.138 8.138 0 1 0 9.653 5.488a1 1 0 1 0 1.168 1.624 6.1 6.1 0 0 1 2.688-1.085",
|
|
1065
|
-
clipRule: "evenodd"
|
|
1066
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1067
|
-
fill: "currentColor",
|
|
1068
|
-
fillRule: "evenodd",
|
|
1069
|
-
d: "M14.38 8.252a1 1 0 0 0-1 1v3.8a1 1 0 0 0 .456.838l2.052 1.332a1 1 0 0 0 1.089-1.678l-1.597-1.036V9.252a1 1 0 0 0-1-1M1.793 16.293a1 1 0 0 1 1.414 0L5.5 18.586l2.293-2.293a1 1 0 0 1 1.414 1.414l-3 3a1 1 0 0 1-1.414 0l-3-3a1 1 0 0 1 0-1.414",
|
|
1070
|
-
clipRule: "evenodd"
|
|
1071
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1072
|
-
fill: "currentColor",
|
|
1073
|
-
fillRule: "evenodd",
|
|
1074
|
-
d: "M5.5 4a1 1 0 0 0-1 1v15a1 1 0 1 0 2 0V5a1 1 0 0 0-1-1",
|
|
1075
|
-
clipRule: "evenodd"
|
|
1076
|
-
})]
|
|
1077
|
-
}), SvgSortTime$1 = SvgSortTime, SvgSuccessOutline = ({
|
|
1078
|
-
title,
|
|
1079
|
-
titleId,
|
|
1080
|
-
...props
|
|
1081
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1082
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1083
|
-
width: "24",
|
|
1084
|
-
height: "24",
|
|
1085
|
-
fill: "none",
|
|
1086
|
-
viewBox: "0 0 24 24",
|
|
1087
|
-
"aria-hidden": "true",
|
|
1088
|
-
"aria-labelledby": titleId,
|
|
1089
|
-
...props,
|
|
1090
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1091
|
-
id: titleId,
|
|
1092
|
-
children: title
|
|
1093
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1094
|
-
fill: "currentColor",
|
|
1095
|
-
fillRule: "evenodd",
|
|
1096
|
-
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
1097
|
-
clipRule: "evenodd"
|
|
1098
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1099
|
-
fill: "currentColor",
|
|
1100
|
-
fillRule: "evenodd",
|
|
1101
|
-
d: "M16.59 8.192a1 1 0 0 1 .218 1.397l-4.375 6a1 1 0 0 1-1.584.042L8.224 12.4a1 1 0 0 1 1.552-1.261l1.806 2.223 3.61-4.951a1 1 0 0 1 1.397-.219",
|
|
1102
|
-
clipRule: "evenodd"
|
|
1103
|
-
})]
|
|
1104
|
-
}), SvgSuccessOutline$1 = SvgSuccessOutline, SvgTextPage = ({
|
|
1105
|
-
title,
|
|
1106
|
-
titleId,
|
|
1107
|
-
...props
|
|
1108
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1109
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
|
-
width: "24",
|
|
1111
|
-
height: "24",
|
|
1112
|
-
fill: "none",
|
|
1113
|
-
viewBox: "0 0 24 24",
|
|
1114
|
-
"aria-hidden": "true",
|
|
1115
|
-
"aria-labelledby": titleId,
|
|
1116
|
-
...props,
|
|
1117
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1118
|
-
id: titleId,
|
|
1119
|
-
children: title
|
|
1120
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1121
|
-
fill: "currentColor",
|
|
1122
|
-
fillRule: "evenodd",
|
|
1123
|
-
d: "M6.286 3c-.35 0-.68.135-.92.368-.238.231-.366.54-.366.854v15.556c0 .315.128.623.367.854.239.233.569.368.919.368h11.428c.35 0 .68-.135.92-.368.238-.231.366-.54.366-.854V8h-3a2 2 0 0 1-2-2V3zM16 6h1.986L16 4.08zm5 13.778V6.556a1 1 0 0 0-.305-.72L15.98 1.281A1 1 0 0 0 15.286 1h-9a3.32 3.32 0 0 0-2.314.934A3.2 3.2 0 0 0 3 4.222v15.556c0 .864.353 1.686.972 2.288S5.423 23 6.286 23h11.428c.863 0 1.695-.333 2.314-.934.619-.602.972-1.424.972-2.288M8 6a1 1 0 0 0 0 2h3a1 1 0 1 0 0-2zm-1 6a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1m5 4a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2z",
|
|
1124
|
-
clipRule: "evenodd"
|
|
1125
|
-
})]
|
|
1126
|
-
}), SvgTextPage$1 = SvgTextPage, SvgUndo = ({
|
|
1127
|
-
title,
|
|
1128
|
-
titleId,
|
|
1129
|
-
...props
|
|
1130
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1131
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1132
|
-
width: "24",
|
|
1133
|
-
height: "24",
|
|
1134
|
-
fill: "none",
|
|
1135
|
-
viewBox: "0 0 24 24",
|
|
1136
|
-
"aria-hidden": "true",
|
|
1137
|
-
"aria-labelledby": titleId,
|
|
1138
|
-
...props,
|
|
1139
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1140
|
-
id: titleId,
|
|
1141
|
-
children: title
|
|
1142
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1143
|
-
fill: "currentColor",
|
|
1144
|
-
fillRule: "evenodd",
|
|
1145
|
-
d: "M9.707 13.707a1 1 0 0 0 0-1.414L5.414 8l4.293-4.293a1 1 0 0 0-1.414-1.414l-5 5a1 1 0 0 0 0 1.414l5 5a1 1 0 0 0 1.414 0",
|
|
1146
|
-
clipRule: "evenodd"
|
|
1147
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
1148
|
-
fill: "currentColor",
|
|
1149
|
-
fillRule: "evenodd",
|
|
1150
|
-
d: "M20 20a1 1 0 0 0 1-1v-7a5 5 0 0 0-5-5H4a1 1 0 1 0 0 2h12a3 3 0 0 1 3 3v7a1 1 0 0 0 1 1",
|
|
1151
|
-
clipRule: "evenodd"
|
|
1152
|
-
})]
|
|
1153
|
-
}), SvgUndo$1 = SvgUndo, SvgUsers = ({
|
|
1154
|
-
title,
|
|
1155
|
-
titleId,
|
|
1156
|
-
...props
|
|
1157
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1158
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1159
|
-
width: "24",
|
|
1160
|
-
height: "24",
|
|
1161
|
-
fill: "none",
|
|
1162
|
-
viewBox: "0 0 24 24",
|
|
1163
|
-
"aria-hidden": "true",
|
|
1164
|
-
"aria-labelledby": titleId,
|
|
1165
|
-
...props,
|
|
1166
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1167
|
-
id: titleId,
|
|
1168
|
-
children: title
|
|
1169
|
-
}) : null, /* @__PURE__ */ jsx("g", {
|
|
1170
|
-
fill: "currentColor",
|
|
1171
|
-
fillRule: "evenodd",
|
|
1172
|
-
clipPath: "url(#users_svg__a)",
|
|
1173
|
-
clipRule: "evenodd",
|
|
1174
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
1175
|
-
d: "M19.055 12.803a1 1 0 0 1 1.272-.618c1.128.39 2.061 1.247 2.7 2.351.64 1.106.972 2.435.973 3.782V21a1 1 0 1 1-2 0v-2.681c0-1.03-.258-2.009-.704-2.782-.448-.773-1.034-1.258-1.623-1.462a1 1 0 0 1-.618-1.272M15.187 1.384a1 1 0 0 1 1.036-.962 5.129 5.129 0 0 1 2.11 9.71 1 1 0 1 1-.896-1.788 3.129 3.129 0 0 0-1.288-5.924 1 1 0 0 1-.962-1.036M1.505 15.694C2.481 14.622 3.825 14 5.25 14h8.5c1.424 0 2.769.622 3.744 1.694.974 1.068 1.506 2.498 1.506 3.973V22a1 1 0 1 1-2 0v-2.333c0-1.001-.363-1.945-.984-2.627-.618-.679-1.436-1.04-2.266-1.04h-8.5c-.83 0-1.648.361-2.266 1.04-.621.682-.984 1.626-.984 2.627V22a1 1 0 1 1-2 0v-2.333c0-1.475.533-2.905 1.505-3.974M9.5 3a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M4 6.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0"
|
|
1176
|
-
})
|
|
1177
|
-
}), /* @__PURE__ */ jsx("defs", {
|
|
1178
|
-
children: /* @__PURE__ */ jsx("clipPath", {
|
|
1179
|
-
id: "users_svg__a",
|
|
1180
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
1181
|
-
fill: "#fff",
|
|
1182
|
-
d: "M0 0h24v24H0z"
|
|
1183
|
-
})
|
|
1184
|
-
})
|
|
1185
|
-
})]
|
|
1186
|
-
}), SvgUsers$1 = SvgUsers, SvgVideo = ({
|
|
1187
|
-
title,
|
|
1188
|
-
titleId,
|
|
1189
|
-
...props
|
|
1190
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1191
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1192
|
-
width: "24",
|
|
1193
|
-
height: "24",
|
|
1194
|
-
fill: "none",
|
|
1195
|
-
viewBox: "0 0 24 24",
|
|
1196
|
-
"aria-hidden": "true",
|
|
1197
|
-
"aria-labelledby": titleId,
|
|
1198
|
-
...props,
|
|
1199
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1200
|
-
id: titleId,
|
|
1201
|
-
children: title
|
|
1202
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1203
|
-
fill: "currentColor",
|
|
1204
|
-
fillRule: "evenodd",
|
|
1205
|
-
d: "M4 4.962C4 4.376 4.435 4 4.853 4H6.5v2H4zM4 8h2.5v3H4zm-2 4V4.962C2 3.381 3.224 2 4.853 2h13.294C19.776 2 21 3.38 21 4.962v14.076C21 20.619 19.776 22 18.147 22H4.853C3.224 22 2 20.62 2 19.038zm17-6V4.962c0-.586-.435-.962-.853-.962H16.5v2zm0 2h-2.5v3H19zm-2.5 5H19v3h-2.5zm0 5H19v1.038c0 .586-.435.962-.853.962H16.5zm-2-7V4h-6v7zm-6 2h6v7h-6zm-2 5v2H4.853C4.435 20 4 19.624 4 19.038V18zm0-2v-3H4v3z",
|
|
1206
|
-
clipRule: "evenodd"
|
|
1207
|
-
})]
|
|
1208
|
-
}), SvgVideo$1 = SvgVideo, SvgWand = ({
|
|
1209
|
-
title,
|
|
1210
|
-
titleId,
|
|
1211
|
-
...props
|
|
1212
|
-
}) => /* @__PURE__ */ jsxs("svg", {
|
|
1213
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1214
|
-
width: "24",
|
|
1215
|
-
height: "24",
|
|
1216
|
-
fill: "none",
|
|
1217
|
-
viewBox: "0 0 24 24",
|
|
1218
|
-
"aria-hidden": "true",
|
|
1219
|
-
"aria-labelledby": titleId,
|
|
1220
|
-
...props,
|
|
1221
|
-
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
1222
|
-
id: titleId,
|
|
1223
|
-
children: title
|
|
1224
|
-
}) : null, /* @__PURE__ */ jsx("path", {
|
|
1225
|
-
fill: "currentColor",
|
|
1226
|
-
fillRule: "evenodd",
|
|
1227
|
-
d: "M10 0a1 1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 1 1 0 2 1 1 0 0 0-1 1 1 1 0 1 1-2 0 1 1 0 0 0-1-1 1 1 0 0 1 0-2 1 1 0 0 0 1-1 1 1 0 0 1 1-1m9.914 2a2 2 0 0 0-2.828 0L1 18.086a2 2 0 0 0 0 2.828L3.086 23a2 2 0 0 0 2.828 0L22 6.914a2 2 0 0 0 0-2.828zm-3.75 3.75L18.5 3.414 20.586 5.5 18.25 7.836zM14.75 7.164 2.414 19.5 4.5 21.586 16.836 9.25zM21 13a1 1 0 1 0-2 0 1 1 0 0 1-1 1 1 1 0 1 0 0 2 1 1 0 0 1 1 1 1 1 0 1 0 2 0 1 1 0 0 1 1-1 1 1 0 1 0 0-2 1 1 0 0 1-1-1",
|
|
1228
|
-
clipRule: "evenodd"
|
|
1229
|
-
})]
|
|
1230
|
-
}), SvgWand$1 = SvgWand;
|
|
1231
|
-
export {
|
|
1232
|
-
SvgAlertCircle$1 as AlertCircle,
|
|
1233
|
-
SvgApplications$1 as Applications,
|
|
1234
|
-
SvgArrowRight$1 as ArrowRight,
|
|
1235
|
-
SvgBlur$1 as Blur,
|
|
1236
|
-
SvgBookmark$1 as Bookmark,
|
|
1237
|
-
SvgBurgerMenu$1 as BurgerMenu,
|
|
1238
|
-
SvgClose$1 as Close,
|
|
1239
|
-
SvgCode$1 as Code,
|
|
1240
|
-
SvgCopy$1 as Copy,
|
|
1241
|
-
SvgCrop$1 as Crop,
|
|
1242
|
-
SvgDelete$1 as Delete,
|
|
1243
|
-
SvgDeleteColor$1 as DeleteColor,
|
|
1244
|
-
SvgDownload$1 as Download,
|
|
1245
|
-
SvgEdit$1 as Edit,
|
|
1246
|
-
SvgError$1 as Error,
|
|
1247
|
-
SvgFolder$1 as Folder,
|
|
1248
|
-
SvgGlobe$1 as Globe,
|
|
1249
|
-
SvgInfoCircle$1 as InfoCircle,
|
|
1250
|
-
SvgLandscape$1 as Landscape,
|
|
1251
|
-
SvgLoader$1 as Loader,
|
|
1252
|
-
SvgMic$1 as Mic,
|
|
1253
|
-
SvgOptions$1 as Options,
|
|
1254
|
-
SvgPaperclip$1 as Paperclip,
|
|
1255
|
-
SvgPause$1 as Pause,
|
|
1256
|
-
SvgPlayFilled$1 as PlayFilled,
|
|
1257
|
-
SvgPlus$1 as Plus,
|
|
1258
|
-
SvgRafterDown$1 as RafterDown,
|
|
1259
|
-
SvgRafterRight$1 as RafterRight,
|
|
1260
|
-
SvgRafterUp$1 as RafterUp,
|
|
1261
|
-
SvgReaction$1 as Reaction,
|
|
1262
|
-
SvgRecord$1 as Record,
|
|
1263
|
-
SvgRecordPause$1 as RecordPause,
|
|
1264
|
-
SvgRecordStop$1 as RecordStop,
|
|
1265
|
-
SvgRecordVideo$1 as RecordVideo,
|
|
1266
|
-
SvgRefresh$1 as Refresh,
|
|
1267
|
-
SvgReset$1 as Reset,
|
|
1268
|
-
SvgRestart$1 as Restart,
|
|
1269
|
-
SvgSave$1 as Save,
|
|
1270
|
-
SvgSearch$1 as Search,
|
|
1271
|
-
SvgSee$1 as See,
|
|
1272
|
-
SvgSmartphone$1 as Smartphone,
|
|
1273
|
-
SvgSortAscendingLetters$1 as SortAscendingLetters,
|
|
1274
|
-
SvgSortDescendingLetters$1 as SortDescendingLetters,
|
|
1275
|
-
SvgSortTime$1 as SortTime,
|
|
1276
|
-
SvgSuccessOutline$1 as SuccessOutline,
|
|
1277
|
-
SvgTextPage$1 as TextPage,
|
|
1278
|
-
SvgUndo$1 as Undo,
|
|
1279
|
-
SvgUsers$1 as Users,
|
|
1280
|
-
SvgVideo$1 as Video,
|
|
1281
|
-
SvgWand$1 as Wand
|
|
1282
|
-
};
|