@edifice.io/react 1.7.4-develop-pedago.20241211160712
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +110 -0
- package/dist/audience.js +16 -0
- package/dist/comments.js +4 -0
- package/dist/components/ActionBar/ActionBar.d.ts +9 -0
- package/dist/components/ActionBar/ActionBar.js +8 -0
- package/dist/components/ActionBar/index.d.ts +2 -0
- package/dist/components/Alert/Alert.d.ts +60 -0
- package/dist/components/Alert/Alert.js +81 -0
- package/dist/components/Alert/index.d.ts +2 -0
- package/dist/components/AppHeader/AppHeader.d.ts +17 -0
- package/dist/components/AppHeader/AppHeader.js +22 -0
- package/dist/components/AppHeader/index.d.ts +2 -0
- package/dist/components/AppIcon/AppIcon.d.ts +45 -0
- package/dist/components/AppIcon/AppIcon.js +51 -0
- package/dist/components/AppIcon/index.d.ts +1 -0
- package/dist/components/Attachment/Attachment.d.ts +14 -0
- package/dist/components/Attachment/Attachment.js +18 -0
- package/dist/components/Attachment/index.d.ts +2 -0
- package/dist/components/Avatar/Avatar.d.ts +31 -0
- package/dist/components/Avatar/Avatar.js +33 -0
- package/dist/components/Avatar/index.d.ts +2 -0
- package/dist/components/Badge/Badge.d.ts +49 -0
- package/dist/components/Badge/Badge.js +18 -0
- package/dist/components/Badge/index.d.ts +2 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +13 -0
- package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
- package/dist/components/Breadcrumb/BreadcrumbItem.js +14 -0
- package/dist/components/Breadcrumb/BreadcrumbList.d.ts +13 -0
- package/dist/components/Breadcrumb/BreadcrumbList.js +13 -0
- package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +18 -0
- package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
- package/dist/components/Breadcrumb/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +63 -0
- package/dist/components/Button/Button.js +35 -0
- package/dist/components/Button/IconButton.d.ts +11 -0
- package/dist/components/Button/IconButton.js +18 -0
- package/dist/components/Button/SearchButton.d.ts +21 -0
- package/dist/components/Button/SearchButton.js +17 -0
- package/dist/components/Button/index.d.ts +6 -0
- package/dist/components/Card/Card.d.ts +87 -0
- package/dist/components/Card/Card.js +53 -0
- package/dist/components/Card/CardBody.d.ts +10 -0
- package/dist/components/Card/CardBody.js +18 -0
- package/dist/components/Card/CardContext.d.ts +12 -0
- package/dist/components/Card/CardContext.js +11 -0
- package/dist/components/Card/CardFooter.d.ts +8 -0
- package/dist/components/Card/CardFooter.js +7 -0
- package/dist/components/Card/CardHeader.d.ts +5 -0
- package/dist/components/Card/CardHeader.js +22 -0
- package/dist/components/Card/CardImage.d.ts +9 -0
- package/dist/components/Card/CardImage.js +21 -0
- package/dist/components/Card/CardText.d.ts +9 -0
- package/dist/components/Card/CardText.js +12 -0
- package/dist/components/Card/CardTitle.d.ts +9 -0
- package/dist/components/Card/CardTitle.js +12 -0
- package/dist/components/Card/CardUser.d.ts +8 -0
- package/dist/components/Card/CardUser.js +10 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Checkbox/Checkbox.d.ts +20 -0
- package/dist/components/Checkbox/Checkbox.js +35 -0
- package/dist/components/Checkbox/index.d.ts +2 -0
- package/dist/components/ColorPicker/ColorPalette.d.ts +46 -0
- package/dist/components/ColorPicker/ColorPalette.js +171 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +18 -0
- package/dist/components/ColorPicker/ColorPicker.js +38 -0
- package/dist/components/ColorPicker/ColorPickerItem.d.ts +20 -0
- package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
- package/dist/components/ColorPicker/index.d.ts +5 -0
- package/dist/components/Combobox/Combobox.d.ts +31 -0
- package/dist/components/Combobox/Combobox.js +40 -0
- package/dist/components/Combobox/ComboboxTrigger.d.ts +9 -0
- package/dist/components/Combobox/ComboboxTrigger.js +30 -0
- package/dist/components/Combobox/index.d.ts +2 -0
- package/dist/components/Dropdown/Dropdown.d.ts +79 -0
- package/dist/components/Dropdown/Dropdown.js +60 -0
- package/dist/components/Dropdown/DropdownCheckboxItem.d.ts +24 -0
- package/dist/components/Dropdown/DropdownCheckboxItem.js +34 -0
- package/dist/components/Dropdown/DropdownContext.d.ts +8 -0
- package/dist/components/Dropdown/DropdownContext.js +11 -0
- package/dist/components/Dropdown/DropdownItem.d.ts +29 -0
- package/dist/components/Dropdown/DropdownItem.js +33 -0
- package/dist/components/Dropdown/DropdownMenu.d.ts +35 -0
- package/dist/components/Dropdown/DropdownMenu.js +26 -0
- package/dist/components/Dropdown/DropdownMenuGroup.d.ts +13 -0
- package/dist/components/Dropdown/DropdownMenuGroup.js +12 -0
- package/dist/components/Dropdown/DropdownRadioItem.d.ts +24 -0
- package/dist/components/Dropdown/DropdownRadioItem.js +34 -0
- package/dist/components/Dropdown/DropdownSeparator.d.ts +5 -0
- package/dist/components/Dropdown/DropdownSeparator.js +5 -0
- package/dist/components/Dropdown/DropdownTrigger.d.ts +37 -0
- package/dist/components/Dropdown/DropdownTrigger.js +34 -0
- package/dist/components/Dropdown/index.d.ts +2 -0
- package/dist/components/Dropzone/Dropzone.d.ts +52 -0
- package/dist/components/Dropzone/Dropzone.js +55 -0
- package/dist/components/Dropzone/DropzoneContext.d.ts +9 -0
- package/dist/components/Dropzone/DropzoneContext.js +12 -0
- package/dist/components/Dropzone/DropzoneDrag.d.ts +5 -0
- package/dist/components/Dropzone/DropzoneDrag.js +11 -0
- package/dist/components/Dropzone/DropzoneFile.d.ts +9 -0
- package/dist/components/Dropzone/DropzoneFile.js +30 -0
- package/dist/components/Dropzone/DropzoneImport.d.ts +5 -0
- package/dist/components/Dropzone/DropzoneImport.js +28 -0
- package/dist/components/Dropzone/index.d.ts +3 -0
- package/dist/components/EmptyScreen/EmptyScreen.d.ts +31 -0
- package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
- package/dist/components/EmptyScreen/index.d.ts +2 -0
- package/dist/components/Form/FormContext.d.ts +6 -0
- package/dist/components/Form/FormContext.js +11 -0
- package/dist/components/Form/FormControl.d.ts +42 -0
- package/dist/components/Form/FormControl.js +32 -0
- package/dist/components/Form/FormText.d.ts +8 -0
- package/dist/components/Form/FormText.js +17 -0
- package/dist/components/Form/index.d.ts +3 -0
- package/dist/components/Grid/Grid.d.ts +56 -0
- package/dist/components/Grid/Grid.js +32 -0
- package/dist/components/Grid/index.d.ts +1 -0
- package/dist/components/Heading/Heading.d.ts +27 -0
- package/dist/components/Heading/Heading.js +16 -0
- package/dist/components/Heading/index.d.ts +2 -0
- package/dist/components/Image/Image.d.ts +28 -0
- package/dist/components/Image/Image.js +41 -0
- package/dist/components/Image/index.d.ts +2 -0
- package/dist/components/Input/Input.d.ts +33 -0
- package/dist/components/Input/Input.js +31 -0
- package/dist/components/Input/index.d.ts +2 -0
- package/dist/components/Label/Label.d.ts +26 -0
- package/dist/components/Label/Label.js +37 -0
- package/dist/components/Label/index.d.ts +2 -0
- package/dist/components/Layout/Layout.d.ts +12 -0
- package/dist/components/Layout/Layout.js +44 -0
- package/dist/components/Layout/components/Header.d.ts +9 -0
- package/dist/components/Layout/components/Header.js +189 -0
- package/dist/components/Layout/components/Help.d.ts +8 -0
- package/dist/components/Layout/components/Help.js +25 -0
- package/dist/components/Layout/components/Main.d.ts +16 -0
- package/dist/components/Layout/components/NavItem.d.ts +6 -0
- package/dist/components/Layout/components/NavItem.js +14 -0
- package/dist/components/Layout/components/NavLink.d.ts +24 -0
- package/dist/components/Layout/components/NavLink.js +19 -0
- package/dist/components/Layout/components/Navbar.d.ts +6 -0
- package/dist/components/Layout/components/Navbar.js +13 -0
- package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
- package/dist/components/Layout/components/NavbarNav.js +13 -0
- package/dist/components/Layout/components/SearchEngine.d.ts +5 -0
- package/dist/components/Layout/components/SearchEngine.js +33 -0
- package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
- package/dist/components/Layout/components/WidgetApps.js +23 -0
- package/dist/components/Layout/hooks/index.d.ts +2 -0
- package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
- package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
- package/dist/components/Layout/hooks/useHelp.js +85 -0
- package/dist/components/Layout/index.d.ts +1 -0
- package/dist/components/List/List.d.ts +23 -0
- package/dist/components/List/List.js +50 -0
- package/dist/components/List/index.d.ts +1 -0
- package/dist/components/Loading/Loading.d.ts +29 -0
- package/dist/components/Loading/Loading.js +27 -0
- package/dist/components/Loading/index.d.ts +2 -0
- package/dist/components/LoadingScreen/LoadingScreen.d.ts +6 -0
- package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
- package/dist/components/LoadingScreen/index.d.ts +1 -0
- package/dist/components/Logo/Logo.d.ts +7 -0
- package/dist/components/Logo/Logo.js +14 -0
- package/dist/components/Logo/index.d.ts +2 -0
- package/dist/components/Menu/components/Menu.d.ts +14 -0
- package/dist/components/Menu/components/Menu.js +27 -0
- package/dist/components/Menu/components/MenuButton.d.ts +5 -0
- package/dist/components/Menu/components/MenuButton.js +21 -0
- package/dist/components/Menu/components/MenuContext.d.ts +10 -0
- package/dist/components/Menu/components/MenuContext.js +12 -0
- package/dist/components/Menu/components/MenuItem.d.ts +4 -0
- package/dist/components/Menu/components/MenuItem.js +19 -0
- package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
- package/dist/components/Menu/hooks/useMenu.js +50 -0
- package/dist/components/Menu/index.d.ts +2 -0
- package/dist/components/Modal/Modal.d.ts +55 -0
- package/dist/components/Modal/Modal.js +72 -0
- package/dist/components/Modal/ModalBody.d.ts +19 -0
- package/dist/components/Modal/ModalBody.js +15 -0
- package/dist/components/Modal/ModalContext.d.ts +7 -0
- package/dist/components/Modal/ModalContext.js +15 -0
- package/dist/components/Modal/ModalFooter.d.ts +12 -0
- package/dist/components/Modal/ModalFooter.js +5 -0
- package/dist/components/Modal/ModalHeader.d.ts +19 -0
- package/dist/components/Modal/ModalHeader.js +27 -0
- package/dist/components/Modal/ModalSubtitle.d.ts +12 -0
- package/dist/components/Modal/ModalSubtitle.js +5 -0
- package/dist/components/Modal/index.d.ts +2 -0
- package/dist/components/Popover/Popover.d.ts +33 -0
- package/dist/components/Popover/Popover.js +51 -0
- package/dist/components/Popover/index.d.ts +1 -0
- package/dist/components/Radio/Radio.d.ts +25 -0
- package/dist/components/Radio/Radio.js +31 -0
- package/dist/components/Radio/index.d.ts +2 -0
- package/dist/components/SearchBar/SearchBar.d.ts +51 -0
- package/dist/components/SearchBar/SearchBar.js +36 -0
- package/dist/components/SearchBar/index.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +39 -0
- package/dist/components/Select/Select.js +37 -0
- package/dist/components/Select/SelectTrigger.d.ts +8 -0
- package/dist/components/Select/SelectTrigger.js +6 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Table/components/Table.d.ts +30 -0
- package/dist/components/Table/components/Table.js +19 -0
- package/dist/components/Table/components/TableTbody.d.ts +6 -0
- package/dist/components/Table/components/TableTbody.js +11 -0
- package/dist/components/Table/components/TableTd.d.ts +4 -0
- package/dist/components/Table/components/TableTd.js +11 -0
- package/dist/components/Table/components/TableTh.d.ts +4 -0
- package/dist/components/Table/components/TableTh.js +11 -0
- package/dist/components/Table/components/TableThead.d.ts +4 -0
- package/dist/components/Table/components/TableThead.js +11 -0
- package/dist/components/Table/components/TableTr.d.ts +4 -0
- package/dist/components/Table/components/TableTr.js +11 -0
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Tabs/components/Tabs.d.ts +42 -0
- package/dist/components/Tabs/components/Tabs.js +45 -0
- package/dist/components/Tabs/components/TabsItem.d.ts +26 -0
- package/dist/components/Tabs/components/TabsItem.js +26 -0
- package/dist/components/Tabs/components/TabsList.d.ts +6 -0
- package/dist/components/Tabs/components/TabsList.js +24 -0
- package/dist/components/Tabs/components/TabsPanel.d.ts +17 -0
- package/dist/components/Tabs/components/TabsPanel.js +14 -0
- package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
- package/dist/components/Tabs/context/TabsContext.js +12 -0
- package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
- package/dist/components/Tabs/hooks/useTabs.js +61 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/TextArea/TextArea.d.ts +33 -0
- package/dist/components/TextArea/TextArea.js +34 -0
- package/dist/components/TextArea/TextareaCounter.d.ts +4 -0
- package/dist/components/TextArea/TextareaCounter.js +8 -0
- package/dist/components/TextArea/index.d.ts +2 -0
- package/dist/components/Toolbar/Toolbar.d.ts +76 -0
- package/dist/components/Toolbar/Toolbar.js +78 -0
- package/dist/components/Toolbar/index.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.d.ts +22 -0
- package/dist/components/Tooltip/Tooltip.js +41 -0
- package/dist/components/Tooltip/index.d.ts +2 -0
- package/dist/components/Tree/components/DndTree.d.ts +3 -0
- package/dist/components/Tree/components/DndTree.js +61 -0
- package/dist/components/Tree/components/SortableTree.d.ts +9 -0
- package/dist/components/Tree/components/SortableTree.js +138 -0
- package/dist/components/Tree/components/Tree.d.ts +7 -0
- package/dist/components/Tree/components/Tree.js +86 -0
- package/dist/components/Tree/hooks/useTree.d.ts +31 -0
- package/dist/components/Tree/hooks/useTree.js +85 -0
- package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
- package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
- package/dist/components/Tree/index.d.ts +6 -0
- package/dist/components/Tree/types/index.d.ts +174 -0
- package/dist/components/Tree/utilities/tree-sortable.d.ts +30 -0
- package/dist/components/Tree/utilities/tree-sortable.js +160 -0
- package/dist/components/Tree/utilities/tree.d.ts +34 -0
- package/dist/components/Tree/utilities/tree.js +44 -0
- package/dist/components/TreeView/TreeNode.d.ts +48 -0
- package/dist/components/TreeView/TreeNode.js +69 -0
- package/dist/components/TreeView/TreeView.d.ts +56 -0
- package/dist/components/TreeView/TreeView.js +37 -0
- package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
- package/dist/components/TreeView/hooks/useTreeView.js +105 -0
- package/dist/components/TreeView/index.d.ts +5 -0
- package/dist/components/TreeView/utilities/index.d.ts +1 -0
- package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
- package/dist/components/TreeView/utilities/treeview.js +177 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.js +8 -0
- package/dist/components/VisuallyHidden/index.d.ts +1 -0
- package/dist/components/index.d.ts +41 -0
- package/dist/editor.js +58 -0
- package/dist/hooks/index.d.ts +39 -0
- package/dist/hooks/useAvatar/index.d.ts +1 -0
- package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
- package/dist/hooks/useAvatar/useAvatar.js +30 -0
- package/dist/hooks/useBookmark/index.d.ts +1 -0
- package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
- package/dist/hooks/useBookmark/useBookmark.js +14 -0
- package/dist/hooks/useBreakpoint/index.d.ts +1 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
- package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
- package/dist/hooks/useBrowserInfo/index.d.ts +1 -0
- package/dist/hooks/useBrowserInfo/useBrowserInfo.d.ts +9 -0
- package/dist/hooks/useBrowserInfo/useBrowserInfo.js +16 -0
- package/dist/hooks/useCantoo/index.d.ts +1 -0
- package/dist/hooks/useCantoo/useCantoo.d.ts +1 -0
- package/dist/hooks/useCantoo/useCantoo.js +18 -0
- package/dist/hooks/useCheckable/index.d.ts +1 -0
- package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
- package/dist/hooks/useCheckable/useCheckable.js +21 -0
- package/dist/hooks/useClickOutside/index.d.ts +1 -0
- package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -0
- package/dist/hooks/useClickOutside/useClickOutside.js +26 -0
- package/dist/hooks/useConf/index.d.ts +1 -0
- package/dist/hooks/useConf/useConf.d.ts +4 -0
- package/dist/hooks/useConf/useConf.js +13 -0
- package/dist/hooks/useConversation/index.d.ts +1 -0
- package/dist/hooks/useConversation/useConversation.d.ts +6 -0
- package/dist/hooks/useConversation/useConversation.js +43 -0
- package/dist/hooks/useCookiesConsent/index.d.ts +1 -0
- package/dist/hooks/useCookiesConsent/useCookiesConsent.d.ts +5 -0
- package/dist/hooks/useCookiesConsent/useCookiesConsent.js +29 -0
- package/dist/hooks/useDate/index.d.ts +2 -0
- package/dist/hooks/useDate/useDate.d.ts +14 -0
- package/dist/hooks/useDate/useDate.js +65 -0
- package/dist/hooks/useDebounce/index.d.ts +1 -0
- package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
- package/dist/hooks/useDebounce/useDebounce.js +15 -0
- package/dist/hooks/useDirectory/index.d.ts +1 -0
- package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
- package/dist/hooks/useDirectory/useDirectory.js +16 -0
- package/dist/hooks/useDropdown/index.d.ts +1 -0
- package/dist/hooks/useDropdown/useDropdown.d.ts +32 -0
- package/dist/hooks/useDropdown/useDropdown.js +158 -0
- package/dist/hooks/useDropzone/index.d.ts +1 -0
- package/dist/hooks/useDropzone/useDropzone.d.ts +34 -0
- package/dist/hooks/useDropzone/useDropzone.js +78 -0
- package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
- package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
- package/dist/hooks/useHasWorkflow/index.d.ts +1 -0
- package/dist/hooks/useHasWorkflow/useHasWorkflow.d.ts +1 -0
- package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
- package/dist/hooks/useHeader/index.d.ts +1 -0
- package/dist/hooks/useHeader/useHeader.d.ts +5 -0
- package/dist/hooks/useHeader/useHeader.js +46 -0
- package/dist/hooks/useHover/index.d.ts +1 -0
- package/dist/hooks/useHover/useHover.d.ts +2 -0
- package/dist/hooks/useHover/useHover.js +22 -0
- package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
- package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
- package/dist/hooks/useImage/index.d.ts +1 -0
- package/dist/hooks/useImage/useImage.d.ts +9 -0
- package/dist/hooks/useImage/useImage.js +18 -0
- package/dist/hooks/useIsAdml/index.d.ts +1 -0
- package/dist/hooks/useIsAdml/useIsAdml.d.ts +3 -0
- package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
- package/dist/hooks/useKeyPress/index.d.ts +1 -0
- package/dist/hooks/useKeyPress/useKeyPress.d.ts +1 -0
- package/dist/hooks/useKeyPress/useKeyPress.js +14 -0
- package/dist/hooks/useLibraryUrl/index.d.ts +1 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.d.ts +7 -0
- package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
- package/dist/hooks/useMediaLibrary/index.d.ts +1 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
- package/dist/hooks/useMediaLibrary/useMediaLibrary.js +58 -0
- package/dist/hooks/usePreferences/index.d.ts +1 -0
- package/dist/hooks/usePreferences/usePreferences.d.ts +4 -0
- package/dist/hooks/usePreferences/usePreferences.js +10 -0
- package/dist/hooks/useResource/index.d.ts +1 -0
- package/dist/hooks/useResource/useResource.d.ts +3 -0
- package/dist/hooks/useResource/useResource.js +25 -0
- package/dist/hooks/useResourceSearch/index.d.ts +1 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
- package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
- package/dist/hooks/useScrollToTop/index.d.ts +1 -0
- package/dist/hooks/useScrollToTop/useScrollToTop.d.ts +1 -0
- package/dist/hooks/useScrollToTop/useScrollToTop.js +9 -0
- package/dist/hooks/useSession/index.d.ts +1 -0
- package/dist/hooks/useSession/useSession.d.ts +1 -0
- package/dist/hooks/useSession/useSession.js +11 -0
- package/dist/hooks/useThumbnail/index.d.ts +1 -0
- package/dist/hooks/useThumbnail/useThumbnail.d.ts +14 -0
- package/dist/hooks/useThumbnail/useThumbnail.js +29 -0
- package/dist/hooks/useTitle/index.d.ts +1 -0
- package/dist/hooks/useTitle/useTitle.d.ts +1 -0
- package/dist/hooks/useTitle/useTitle.js +10 -0
- package/dist/hooks/useToast/index.d.ts +1 -0
- package/dist/hooks/useToast/useToast.d.ts +17 -0
- package/dist/hooks/useToast/useToast.js +34 -0
- package/dist/hooks/useToggle/index.d.ts +1 -0
- package/dist/hooks/useToggle/useToggle.d.ts +1 -0
- package/dist/hooks/useToggle/useToggle.js +10 -0
- package/dist/hooks/useTrapFocus/index.d.ts +1 -0
- package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +1 -0
- package/dist/hooks/useTrapFocus/useTrapFocus.js +16 -0
- package/dist/hooks/useTrashedResource/index.d.ts +1 -0
- package/dist/hooks/useTrashedResource/useTrashedResource.d.ts +6 -0
- package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
- package/dist/hooks/useUpload/index.d.ts +1 -0
- package/dist/hooks/useUpload/useUpload.d.ts +18 -0
- package/dist/hooks/useUpload/useUpload.js +106 -0
- package/dist/hooks/useUploadFiles/index.d.ts +1 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
- package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
- package/dist/hooks/useUser/index.d.ts +1 -0
- package/dist/hooks/useUser/useUser.d.ts +7 -0
- package/dist/hooks/useUser/useUser.js +22 -0
- package/dist/hooks/useWorkspaceFile/index.d.ts +1 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
- package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
- package/dist/hooks/useWorkspaceSearch/index.d.ts +1 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
- package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
- package/dist/hooks/useXitiTrackPageLoad/index.d.ts +1 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +4 -0
- package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
- package/dist/hooks/useZendeskGuide/index.d.ts +1 -0
- package/dist/hooks/useZendeskGuide/useZendeskGuide.d.ts +2 -0
- package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
- package/dist/icons-apps.js +232 -0
- package/dist/icons-audience.js +28 -0
- package/dist/icons-nav.js +28 -0
- package/dist/icons.js +300 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +236 -0
- package/dist/modals.js +18 -0
- package/dist/modules/audience/ReactionChoice.d.ts +11 -0
- package/dist/modules/audience/ReactionChoice.js +33 -0
- package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
- package/dist/modules/audience/ReactionModal.Card.js +33 -0
- package/dist/modules/audience/ReactionModal.d.ts +20 -0
- package/dist/modules/audience/ReactionModal.js +72 -0
- package/dist/modules/audience/ReactionSummary.d.ts +10 -0
- package/dist/modules/audience/ReactionSummary.js +27 -0
- package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
- package/dist/modules/audience/ViewsByProfileCard.js +40 -0
- package/dist/modules/audience/ViewsCounter.d.ts +10 -0
- package/dist/modules/audience/ViewsCounter.js +18 -0
- package/dist/modules/audience/ViewsModal.d.ts +11 -0
- package/dist/modules/audience/ViewsModal.js +41 -0
- package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
- package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
- package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
- package/dist/modules/audience/hooks/useReactions.js +35 -0
- package/dist/modules/audience/hooks/useViews.d.ts +11 -0
- package/dist/modules/audience/index.d.ts +12 -0
- package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
- package/dist/modules/comments/components/BadgeProfile.js +18 -0
- package/dist/modules/comments/components/Comment.d.ts +7 -0
- package/dist/modules/comments/components/Comment.js +72 -0
- package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
- package/dist/modules/comments/components/CommentAvatar.js +17 -0
- package/dist/modules/comments/components/CommentDate.d.ts +4 -0
- package/dist/modules/comments/components/CommentDate.js +27 -0
- package/dist/modules/comments/components/CommentForm.d.ts +3 -0
- package/dist/modules/comments/components/CommentForm.js +37 -0
- package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
- package/dist/modules/comments/components/CommentHeader.js +8 -0
- package/dist/modules/comments/components/CommentList.d.ts +1 -0
- package/dist/modules/comments/components/CommentList.js +22 -0
- package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
- package/dist/modules/comments/components/CommentTitle.js +7 -0
- package/dist/modules/comments/components/TextCounter.d.ts +4 -0
- package/dist/modules/comments/components/TextCounter.js +8 -0
- package/dist/modules/comments/constants.d.ts +20 -0
- package/dist/modules/comments/constants.js +8 -0
- package/dist/modules/comments/context/Context.d.ts +16 -0
- package/dist/modules/comments/context/Context.js +5 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
- package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
- package/dist/modules/comments/hooks/useComments.d.ts +29 -0
- package/dist/modules/comments/hooks/useComments.js +66 -0
- package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
- package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
- package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
- package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
- package/dist/modules/comments/index.d.ts +1 -0
- package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
- package/dist/modules/comments/provider/CommentProvider.js +85 -0
- package/dist/modules/comments/types.d.ts +102 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
- package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
- package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
- package/dist/modules/editor/components/Editor/Editor.js +82 -0
- package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
- package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
- package/dist/modules/editor/components/Editor/index.d.ts +2 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
- package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
- package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
- package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
- package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.js +70 -0
- package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
- package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
- package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
- package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
- package/dist/modules/editor/components/index.d.ts +6 -0
- package/dist/modules/editor/hooks/index.d.ts +12 -0
- package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
- package/dist/modules/editor/hooks/useActionOptions.js +86 -0
- package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
- package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
- package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
- package/dist/modules/editor/hooks/useEditorContext.js +12 -0
- package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
- package/dist/modules/editor/hooks/useImageModal.js +46 -0
- package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
- package/dist/modules/editor/hooks/useImageSelection.js +46 -0
- package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
- package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
- package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
- package/dist/modules/editor/hooks/useMathsModal.js +17 -0
- package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
- package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
- package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
- package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
- package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
- package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
- package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
- package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
- package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
- package/dist/modules/editor/index.d.ts +3 -0
- package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
- package/dist/modules/editor/utilities/has-extension.js +4 -0
- package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
- package/dist/modules/editor/utilities/has-mark.js +4 -0
- package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
- package/dist/modules/editor/utilities/has-text-style.js +5 -0
- package/dist/modules/icons/components/IconAdd.d.ts +7 -0
- package/dist/modules/icons/components/IconAdd.js +12 -0
- package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
- package/dist/modules/icons/components/IconAddUser.js +12 -0
- package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertCircle.js +13 -0
- package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
- package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
- package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignCenter.js +12 -0
- package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignJustify.js +12 -0
- package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignLeft.js +12 -0
- package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
- package/dist/modules/icons/components/IconAlignRight.js +12 -0
- package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
- package/dist/modules/icons/components/IconAnswer.js +13 -0
- package/dist/modules/icons/components/IconApplications.d.ts +7 -0
- package/dist/modules/icons/components/IconApplications.js +12 -0
- package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowDown.js +13 -0
- package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowLeft.js +13 -0
- package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowRight.js +13 -0
- package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
- package/dist/modules/icons/components/IconArrowUp.js +13 -0
- package/dist/modules/icons/components/IconBlock.d.ts +7 -0
- package/dist/modules/icons/components/IconBlock.js +12 -0
- package/dist/modules/icons/components/IconBlur.d.ts +7 -0
- package/dist/modules/icons/components/IconBlur.js +13 -0
- package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
- package/dist/modules/icons/components/IconBookmark.js +12 -0
- package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
- package/dist/modules/icons/components/IconBulletList.js +16 -0
- package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
- package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
- package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendar.js +12 -0
- package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
- package/dist/modules/icons/components/IconCalendarLight.js +12 -0
- package/dist/modules/icons/components/IconCamera.d.ts +7 -0
- package/dist/modules/icons/components/IconCamera.js +13 -0
- package/dist/modules/icons/components/IconCenter.d.ts +7 -0
- package/dist/modules/icons/components/IconCenter.js +12 -0
- package/dist/modules/icons/components/IconCheck.d.ts +7 -0
- package/dist/modules/icons/components/IconCheck.js +12 -0
- package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
- package/dist/modules/icons/components/IconChecklist.js +13 -0
- package/dist/modules/icons/components/IconClock.d.ts +7 -0
- package/dist/modules/icons/components/IconClock.js +12 -0
- package/dist/modules/icons/components/IconClose.d.ts +7 -0
- package/dist/modules/icons/components/IconClose.js +13 -0
- package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
- package/dist/modules/icons/components/IconCode.d.ts +7 -0
- package/dist/modules/icons/components/IconCode.js +12 -0
- package/dist/modules/icons/components/IconCopy.d.ts +7 -0
- package/dist/modules/icons/components/IconCopy.js +12 -0
- package/dist/modules/icons/components/IconCrop.d.ts +7 -0
- package/dist/modules/icons/components/IconCrop.js +13 -0
- package/dist/modules/icons/components/IconCut.d.ts +7 -0
- package/dist/modules/icons/components/IconCut.js +13 -0
- package/dist/modules/icons/components/IconDelete.d.ts +7 -0
- package/dist/modules/icons/components/IconDelete.js +12 -0
- package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColor.js +13 -0
- package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
- package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRow.js +12 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
- package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
- package/dist/modules/icons/components/IconDownload.d.ts +7 -0
- package/dist/modules/icons/components/IconDownload.js +17 -0
- package/dist/modules/icons/components/IconEdit.d.ts +7 -0
- package/dist/modules/icons/components/IconEdit.js +13 -0
- package/dist/modules/icons/components/IconError.d.ts +7 -0
- package/dist/modules/icons/components/IconError.js +12 -0
- package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
- package/dist/modules/icons/components/IconExternalLink.js +13 -0
- package/dist/modules/icons/components/IconFiles.d.ts +7 -0
- package/dist/modules/icons/components/IconFiles.js +12 -0
- package/dist/modules/icons/components/IconFilter.d.ts +7 -0
- package/dist/modules/icons/components/IconFilter.js +12 -0
- package/dist/modules/icons/components/IconFlag.d.ts +7 -0
- package/dist/modules/icons/components/IconFlag.js +12 -0
- package/dist/modules/icons/components/IconFolder.d.ts +7 -0
- package/dist/modules/icons/components/IconFolder.js +12 -0
- package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderMove.js +17 -0
- package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
- package/dist/modules/icons/components/IconForgoing.js +12 -0
- package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
- package/dist/modules/icons/components/IconFullScreen.js +12 -0
- package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
- package/dist/modules/icons/components/IconGlobe.js +12 -0
- package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
- package/dist/modules/icons/components/IconHeadphone.js +12 -0
- package/dist/modules/icons/components/IconHide.d.ts +7 -0
- package/dist/modules/icons/components/IconHide.js +13 -0
- package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
- package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
- package/dist/modules/icons/components/IconHighlightRow.js +12 -0
- package/dist/modules/icons/components/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/IconHome.js +12 -0
- package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
- package/dist/modules/icons/components/IconHourglass.js +12 -0
- package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
- package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
- package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
- package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
- package/dist/modules/icons/components/IconInbox.d.ts +7 -0
- package/dist/modules/icons/components/IconInbox.js +12 -0
- package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
- package/dist/modules/icons/components/IconInfoCircle.js +13 -0
- package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
- package/dist/modules/icons/components/IconLandscape.js +12 -0
- package/dist/modules/icons/components/IconLink.d.ts +7 -0
- package/dist/modules/icons/components/IconLink.js +16 -0
- package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
- package/dist/modules/icons/components/IconListOrder.js +12 -0
- package/dist/modules/icons/components/IconLoader.d.ts +7 -0
- package/dist/modules/icons/components/IconLoader.js +12 -0
- package/dist/modules/icons/components/IconLock.d.ts +7 -0
- package/dist/modules/icons/components/IconLock.js +12 -0
- package/dist/modules/icons/components/IconMail.d.ts +7 -0
- package/dist/modules/icons/components/IconMail.js +13 -0
- package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
- package/dist/modules/icons/components/IconMergeCells.js +13 -0
- package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
- package/dist/modules/icons/components/IconMessageInfo.js +13 -0
- package/dist/modules/icons/components/IconMic.d.ts +7 -0
- package/dist/modules/icons/components/IconMic.js +12 -0
- package/dist/modules/icons/components/IconMinus.d.ts +7 -0
- package/dist/modules/icons/components/IconMinus.js +12 -0
- package/dist/modules/icons/components/IconMove.d.ts +7 -0
- package/dist/modules/icons/components/IconMove.js +14 -0
- package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
- package/dist/modules/icons/components/IconNoColors.js +12 -0
- package/dist/modules/icons/components/IconOptions.d.ts +7 -0
- package/dist/modules/icons/components/IconOptions.js +14 -0
- package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
- package/dist/modules/icons/components/IconOrderedList.js +16 -0
- package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
- package/dist/modules/icons/components/IconPaperclip.js +12 -0
- package/dist/modules/icons/components/IconPause.d.ts +7 -0
- package/dist/modules/icons/components/IconPause.js +12 -0
- package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOff.js +12 -0
- package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
- package/dist/modules/icons/components/IconPinOn.js +12 -0
- package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/IconPlay.d.ts +7 -0
- package/dist/modules/icons/components/IconPlay.js +12 -0
- package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
- package/dist/modules/icons/components/IconPlayFilled.js +12 -0
- package/dist/modules/icons/components/IconPlus.d.ts +7 -0
- package/dist/modules/icons/components/IconPlus.js +12 -0
- package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerDefault.js +12 -0
- package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
- package/dist/modules/icons/components/IconPointerHand.js +12 -0
- package/dist/modules/icons/components/IconPrint.d.ts +7 -0
- package/dist/modules/icons/components/IconPrint.js +12 -0
- package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
- package/dist/modules/icons/components/IconQuestion.js +14 -0
- package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterDown.js +12 -0
- package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterLeft.js +12 -0
- package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterRight.js +12 -0
- package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
- package/dist/modules/icons/components/IconRafterUp.js +12 -0
- package/dist/modules/icons/components/IconReaction.d.ts +7 -0
- package/dist/modules/icons/components/IconReaction.js +12 -0
- package/dist/modules/icons/components/IconRecord.d.ts +7 -0
- package/dist/modules/icons/components/IconRecord.js +12 -0
- package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordPause.js +12 -0
- package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordStop.js +12 -0
- package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconRecordVideo.js +12 -0
- package/dist/modules/icons/components/IconRedo.d.ts +7 -0
- package/dist/modules/icons/components/IconRedo.js +13 -0
- package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
- package/dist/modules/icons/components/IconRefresh.js +13 -0
- package/dist/modules/icons/components/IconReset.d.ts +7 -0
- package/dist/modules/icons/components/IconReset.js +12 -0
- package/dist/modules/icons/components/IconRestart.d.ts +7 -0
- package/dist/modules/icons/components/IconRestart.js +12 -0
- package/dist/modules/icons/components/IconRestore.d.ts +7 -0
- package/dist/modules/icons/components/IconRestore.js +12 -0
- package/dist/modules/icons/components/IconSave.d.ts +7 -0
- package/dist/modules/icons/components/IconSave.js +12 -0
- package/dist/modules/icons/components/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconSearch.js +12 -0
- package/dist/modules/icons/components/IconSee.d.ts +7 -0
- package/dist/modules/icons/components/IconSee.js +13 -0
- package/dist/modules/icons/components/IconSend.d.ts +7 -0
- package/dist/modules/icons/components/IconSend.js +12 -0
- package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
- package/dist/modules/icons/components/IconSetBackground.js +17 -0
- package/dist/modules/icons/components/IconSettings.d.ts +7 -0
- package/dist/modules/icons/components/IconSettings.js +16 -0
- package/dist/modules/icons/components/IconShare.d.ts +7 -0
- package/dist/modules/icons/components/IconShare.js +12 -0
- package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
- package/dist/modules/icons/components/IconSmartphone.js +13 -0
- package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
- package/dist/modules/icons/components/IconSmiley.js +13 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescending.js +13 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
- package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
- package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
- package/dist/modules/icons/components/IconSortTime.js +14 -0
- package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
- package/dist/modules/icons/components/IconSpeechToText.js +12 -0
- package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
- package/dist/modules/icons/components/IconSplitCells.js +13 -0
- package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
- package/dist/modules/icons/components/IconSquareRoot.js +12 -0
- package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSubscript.js +12 -0
- package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessFill.js +12 -0
- package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
- package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
- package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
- package/dist/modules/icons/components/IconSuperscript.js +12 -0
- package/dist/modules/icons/components/IconTable.d.ts +7 -0
- package/dist/modules/icons/components/IconTable.js +12 -0
- package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
- package/dist/modules/icons/components/IconTextBold.js +12 -0
- package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
- package/dist/modules/icons/components/IconTextColor.js +16 -0
- package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
- package/dist/modules/icons/components/IconTextHighlight.js +16 -0
- package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
- package/dist/modules/icons/components/IconTextItalic.js +12 -0
- package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
- package/dist/modules/icons/components/IconTextPage.js +12 -0
- package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
- package/dist/modules/icons/components/IconTextSize.js +12 -0
- package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
- package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
- package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
- package/dist/modules/icons/components/IconTextTypo.js +12 -0
- package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
- package/dist/modules/icons/components/IconTextUnderline.js +13 -0
- package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
- package/dist/modules/icons/components/IconTextVanilla.js +13 -0
- package/dist/modules/icons/components/IconTool.d.ts +7 -0
- package/dist/modules/icons/components/IconTool.js +12 -0
- package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
- package/dist/modules/icons/components/IconTrendingUp.js +16 -0
- package/dist/modules/icons/components/IconUndo.d.ts +7 -0
- package/dist/modules/icons/components/IconUndo.js +13 -0
- package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlink.js +13 -0
- package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
- package/dist/modules/icons/components/IconUnlock.js +13 -0
- package/dist/modules/icons/components/IconUpload.d.ts +7 -0
- package/dist/modules/icons/components/IconUpload.js +18 -0
- package/dist/modules/icons/components/IconUser.d.ts +7 -0
- package/dist/modules/icons/components/IconUser.js +12 -0
- package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
- package/dist/modules/icons/components/IconUserSearch.js +13 -0
- package/dist/modules/icons/components/IconUsers.d.ts +7 -0
- package/dist/modules/icons/components/IconUsers.js +13 -0
- package/dist/modules/icons/components/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/IconVideo.js +12 -0
- package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
- package/dist/modules/icons/components/IconViewCalendar.js +12 -0
- package/dist/modules/icons/components/IconViewList.d.ts +7 -0
- package/dist/modules/icons/components/IconViewList.js +15 -0
- package/dist/modules/icons/components/IconWand.d.ts +7 -0
- package/dist/modules/icons/components/IconWand.js +12 -0
- package/dist/modules/icons/components/IconWrite.d.ts +7 -0
- package/dist/modules/icons/components/IconWrite.js +12 -0
- package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomIn.js +12 -0
- package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
- package/dist/modules/icons/components/IconZoomOut.js +12 -0
- package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAccount.js +12 -0
- package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconActualites.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
- package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
- package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconArchive.js +12 -0
- package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
- package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAssr.js +12 -0
- package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconAward.js +12 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
- package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
- package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBlog.js +12 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
- package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
- package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCcn.js +12 -0
- package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCerise.js +12 -0
- package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
- package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCharte.js +12 -0
- package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconChat.js +12 -0
- package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCidj.js +12 -0
- package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCns.js +12 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
- package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
- package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
- package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconConversation.js +12 -0
- package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
- package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
- package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
- package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElectron.js +12 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
- package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
- package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
- package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
- package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForms.js +16 -0
- package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconForum.js +12 -0
- package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGepi.js +12 -0
- package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
- package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
- package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconKne.js +12 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
- package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
- package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
- package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
- package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconLsu.js +12 -0
- package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
- package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
- package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
- package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
- package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
- package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
- package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
- package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNote.js +12 -0
- package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
- package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNotes.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
- package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
- package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPad.js +12 -0
- package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPages.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
- package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
- package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
- package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconParcours.js +12 -0
- package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
- package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPoll.js +12 -0
- package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPresences.js +16 -0
- package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconProeps.js +12 -0
- package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPronote.js +12 -0
- package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPublic.js +12 -0
- package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwant.js +12 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
- package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRack.js +12 -0
- package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRbs.js +12 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
- package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
- package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
- package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
- package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
- package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
- package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconStats.js +12 -0
- package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
- package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconSupport.js +12 -0
- package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
- package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
- package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
- package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
- package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVideo.js +12 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
- package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
- package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
- package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWiki.js +13 -0
- package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
- package/dist/modules/icons/components/apps/index.d.ts +115 -0
- package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
- package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreat.js +16 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
- package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconGuest.js +12 -0
- package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
- package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconParent.js +12 -0
- package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
- package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconStudent.js +20 -0
- package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
- package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanks.js +18 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
- package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
- package/dist/modules/icons/components/audience/index.d.ts +13 -0
- package/dist/modules/icons/components/index.d.ts +149 -0
- package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
- package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
- package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconHome.js +12 -0
- package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
- package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
- package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconProfile.js +12 -0
- package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconSearch.js +12 -0
- package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
- package/dist/modules/icons/components/nav/index.d.ts +13 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.d.ts +42 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.js +58 -0
- package/dist/modules/modals/OnboardingModal/index.d.ts +1 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
- package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
- package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
- package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
- package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.d.ts +7 -0
- package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
- package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
- package/dist/modules/modals/PublishModal/components/LangSelect.d.ts +5 -0
- package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.d.ts +1 -0
- package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.d.ts +7 -0
- package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
- package/dist/modules/modals/PublishModal/components/ToastError.d.ts +5 -0
- package/dist/modules/modals/PublishModal/components/ToastError.js +24 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
- package/dist/modules/modals/PublishModal/components/ToastSuccess.js +18 -0
- package/dist/modules/modals/PublishModal/constants/ageOptions.d.ts +1 -0
- package/dist/modules/modals/PublishModal/constants/ageOptions.js +4 -0
- package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.js +34 -0
- package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.js +43 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
- package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.d.ts +4 -0
- package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.js +118 -0
- package/dist/modules/modals/PublishModal/index.d.ts +1 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
- package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
- package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
- package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
- package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
- package/dist/modules/modals/ResourceModal/hooks/useThumb.js +17 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
- package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
- package/dist/modules/modals/ResourceModal/index.d.ts +3 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +8 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
- package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
- package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
- package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
- package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
- package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
- package/dist/modules/modals/ShareModal/index.d.ts +3 -0
- package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/hasRight.js +4 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
- package/dist/modules/modals/ShareModal/utils/showShareRightLine.js +4 -0
- package/dist/modules/modals/index.d.ts +4 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.d.ts +10 -0
- package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
- package/dist/modules/multimedia/AudioRecorder/index.d.ts +1 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
- package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
- package/dist/modules/multimedia/Embed/Embed.d.ts +5 -0
- package/dist/modules/multimedia/Embed/Embed.js +32 -0
- package/dist/modules/multimedia/Embed/index.d.ts +2 -0
- package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
- package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
- package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
- package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
- package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
- package/dist/modules/multimedia/FileCard/index.d.ts +2 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditor.d.ts +27 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
- package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
- package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
- package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
- package/dist/modules/multimedia/ImageEditor/effects/crop.js +155 -0
- package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
- package/dist/modules/multimedia/ImageEditor/effects/misc.js +162 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
- package/dist/modules/multimedia/ImageEditor/effects/resize.js +157 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
- package/dist/modules/multimedia/ImageEditor/effects/rotate.js +33 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.js +66 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.js +76 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
- package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.js +52 -0
- package/dist/modules/multimedia/ImageEditor/index.d.ts +1 -0
- package/dist/modules/multimedia/ImageEditor/utilities/aggregate.d.ts +9 -0
- package/dist/modules/multimedia/ImageEditor/utilities/aggregate.js +13 -0
- package/dist/modules/multimedia/ImageEditor/utilities/debounceAggregate.d.ts +10 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
- package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
- package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
- package/dist/modules/multimedia/Linker/index.d.ts +4 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
- package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
- package/dist/modules/multimedia/LinkerCard/index.d.ts +2 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
- package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.js +12 -0
- package/dist/modules/multimedia/MediaLibrary/index.d.ts +3 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.js +19 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.js +14 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Video.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Video.js +22 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.d.ts +1 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +10 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +21 -0
- package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
- package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
- package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
- package/dist/modules/multimedia/UploadFiles/index.d.ts +2 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
- package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
- package/dist/modules/multimedia/VideoEmbed/index.d.ts +1 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
- package/dist/modules/multimedia/VideoRecorder/index.d.ts +1 -0
- package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
- package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
- package/dist/modules/multimedia/Workspace/index.d.ts +2 -0
- package/dist/modules/multimedia/index.d.ts +7 -0
- package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
- package/dist/modules/widgets/BookmarkedApps/index.d.ts +2 -0
- package/dist/modules/widgets/Widget/Widget.d.ts +17 -0
- package/dist/modules/widgets/Widget/index.d.ts +2 -0
- package/dist/modules/widgets/index.d.ts +2 -0
- package/dist/multimedia.js +18 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +9 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
- package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +2 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
- package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
- package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
- package/dist/providers/MockedDataProvider/index.d.ts +1 -0
- package/dist/providers/index.d.ts +6 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/size.d.ts +1 -0
- package/dist/types/status.d.ts +1 -0
- package/dist/types/treedata.d.ts +30 -0
- package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
- package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
- package/dist/utilities/check-user-rights/index.d.ts +1 -0
- package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.d.ts +6 -0
- package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.js +49 -0
- package/dist/utilities/emptyscreen-mapping/index.d.ts +1 -0
- package/dist/utilities/index.d.ts +3 -0
- package/dist/utilities/refs/index.d.ts +1 -0
- package/dist/utilities/refs/ref.d.ts +5 -0
- package/dist/utilities/refs/ref.js +14 -0
- package/package.json +177 -0
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useState, useRef, useImperativeHandle, useEffect, useCallback } from "react";
|
|
3
|
+
import { odeServices } from "@edifice.io/client";
|
|
4
|
+
import { getBestSupportedMimeType, convertMsToMS } from "@edifice.io/utilities";
|
|
5
|
+
import { useTranslation } from "react-i18next";
|
|
6
|
+
import SvgIconPause from "../../icons/components/IconPause.js";
|
|
7
|
+
import SvgIconPlayFilled from "../../icons/components/IconPlayFilled.js";
|
|
8
|
+
import SvgIconRecordStop from "../../icons/components/IconRecordStop.js";
|
|
9
|
+
import SvgIconRecordVideo from "../../icons/components/IconRecordVideo.js";
|
|
10
|
+
import SvgIconRecord from "../../icons/components/IconRecord.js";
|
|
11
|
+
import SvgIconRefresh from "../../icons/components/IconRefresh.js";
|
|
12
|
+
import SvgIconSave from "../../icons/components/IconSave.js";
|
|
13
|
+
import useUpload from "../../../hooks/useUpload/useUpload.js";
|
|
14
|
+
import useBrowserInfo from "../../../hooks/useBrowserInfo/useBrowserInfo.js";
|
|
15
|
+
import FormControl from "../../../components/Form/FormControl.js";
|
|
16
|
+
import Label from "../../../components/Label/Label.js";
|
|
17
|
+
import Select from "../../../components/Select/Select.js";
|
|
18
|
+
import LoadingScreen from "../../../components/LoadingScreen/LoadingScreen.js";
|
|
19
|
+
import { Toolbar } from "../../../components/Toolbar/Toolbar.js";
|
|
20
|
+
const VIDEO_HEIGHT = 9, VIDEO_WIDTH = 16, VideoRecorder = /* @__PURE__ */ forwardRef(({
|
|
21
|
+
appCode,
|
|
22
|
+
caption,
|
|
23
|
+
onSuccess,
|
|
24
|
+
onError,
|
|
25
|
+
onRecordUpdated,
|
|
26
|
+
hideSaveAction = !1
|
|
27
|
+
}, ref) => {
|
|
28
|
+
const [maxDuration, setMaxDuration] = useState(18e4), [inputDevices, setInputDevices] = useState([]), [recording, setRecording] = useState(!1), [recorded, setRecorded] = useState(!1), [playing, setPlaying] = useState(!1), [saving, setSaving] = useState(!1), [saved, setSaved] = useState(!1), [mediaStreamConstraints, setMediaStreamConstraints] = useState({
|
|
29
|
+
audio: !0,
|
|
30
|
+
video: {
|
|
31
|
+
facingMode: "environment",
|
|
32
|
+
aspectRatio: VIDEO_WIDTH / VIDEO_HEIGHT
|
|
33
|
+
}
|
|
34
|
+
}), [stream, setStream] = useState(), [mimeType, setMimeType] = useState(""), [recordedChunks, setRecordedChunks] = useState([]), [recordedVideo, setRecordedVideo] = useState(), [recordedTime, setRecordedTime] = useState(0), [playedTime, setPlayedTime] = useState(0), videoRef = useRef(null), recorderRef = useRef(null), {
|
|
35
|
+
uploadBlob
|
|
36
|
+
} = useUpload(void 0, appCode), {
|
|
37
|
+
device
|
|
38
|
+
} = useBrowserInfo(navigator.userAgent);
|
|
39
|
+
useImperativeHandle(ref, () => ({
|
|
40
|
+
save: handleSave
|
|
41
|
+
}));
|
|
42
|
+
const {
|
|
43
|
+
t
|
|
44
|
+
} = useTranslation();
|
|
45
|
+
useEffect(() => {
|
|
46
|
+
initMaxDuration(), initInputDevices();
|
|
47
|
+
}, []), useEffect(() => (stream || enableStream(mediaStreamConstraints), () => {
|
|
48
|
+
stream && stream.getTracks().forEach((track) => track.stop());
|
|
49
|
+
}), [stream]), useEffect(() => {
|
|
50
|
+
if (recordedChunks.length && !recording && videoRef.current) {
|
|
51
|
+
const finalVideo = new Blob(recordedChunks, {
|
|
52
|
+
type: mimeType
|
|
53
|
+
});
|
|
54
|
+
if (setRecordedVideo(finalVideo), onRecordUpdated) {
|
|
55
|
+
const videoUrl = window.URL.createObjectURL(finalVideo);
|
|
56
|
+
onRecordUpdated(videoUrl);
|
|
57
|
+
}
|
|
58
|
+
videoRef.current.autoplay = !1, videoRef.current.srcObject = null, videoRef.current.src = window.URL.createObjectURL(finalVideo);
|
|
59
|
+
}
|
|
60
|
+
}, [recording, recordedChunks]), useEffect(() => {
|
|
61
|
+
if (recording) {
|
|
62
|
+
const startedAt = Date.now(), timer = window.setInterval(
|
|
63
|
+
// Compute exact elapsed time by diffing the start time.
|
|
64
|
+
() => setRecordedTime(Date.now() - startedAt),
|
|
65
|
+
500
|
|
66
|
+
);
|
|
67
|
+
return () => {
|
|
68
|
+
window.clearInterval(timer);
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
}, [recording]), useEffect(() => {
|
|
72
|
+
if (playing) {
|
|
73
|
+
const timer = window.setInterval(() => setPlayedTime((prev) => prev + 500), 500);
|
|
74
|
+
return () => {
|
|
75
|
+
window.clearInterval(timer);
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
}, [playing]);
|
|
79
|
+
const initMaxDuration = async () => {
|
|
80
|
+
const videoConfResponse = await odeServices.video().getVideoConf();
|
|
81
|
+
setMaxDuration((videoConfResponse.maxDuration ?? 3) * 60 * 1e3);
|
|
82
|
+
}, initInputDevices = async () => {
|
|
83
|
+
const videoDevices = (await navigator.mediaDevices.enumerateDevices()).filter((device2) => device2.kind === "videoinput");
|
|
84
|
+
switch (device.type) {
|
|
85
|
+
case "mobile":
|
|
86
|
+
case "tablet": {
|
|
87
|
+
const backCamera = {
|
|
88
|
+
deviceId: "environment",
|
|
89
|
+
label: t("video.back.camera"),
|
|
90
|
+
groupId: "",
|
|
91
|
+
kind: "videoinput"
|
|
92
|
+
}, frontCamera = {
|
|
93
|
+
deviceId: "user",
|
|
94
|
+
label: t("video.front.camera"),
|
|
95
|
+
groupId: "",
|
|
96
|
+
kind: "videoinput"
|
|
97
|
+
};
|
|
98
|
+
(videoDevices == null ? void 0 : videoDevices.length) > 1 ? setInputDevices([backCamera, frontCamera]) : setInputDevices([backCamera]);
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
default:
|
|
102
|
+
setInputDevices(videoDevices);
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
}, enableStream = async (mediaStreamConstraints2) => {
|
|
106
|
+
try {
|
|
107
|
+
const mediaStream = await navigator.mediaDevices.getUserMedia(mediaStreamConstraints2);
|
|
108
|
+
setStream(mediaStream), videoRef.current && (videoRef.current.src && (window.URL.revokeObjectURL(videoRef.current.src), videoRef.current.src = ""), videoRef.current.srcObject = mediaStream, videoRef.current.autoplay = !0, videoRef.current.volume = 1, videoRef.current.muted = !0);
|
|
109
|
+
} catch (err) {
|
|
110
|
+
console.error(err);
|
|
111
|
+
}
|
|
112
|
+
}, handleRecord = useCallback(() => {
|
|
113
|
+
setRecording(!0), videoRef && videoRef.current && (videoRef.current.muted = !0);
|
|
114
|
+
const mimeType2 = getBestSupportedMimeType();
|
|
115
|
+
setMimeType(mimeType2), stream && (recorderRef.current = new MediaRecorder(stream, {
|
|
116
|
+
mimeType: mimeType2
|
|
117
|
+
}), recorderRef.current.ondataavailable = ({
|
|
118
|
+
data
|
|
119
|
+
}) => {
|
|
120
|
+
data.size > 0 && setRecordedChunks((prev) => [...prev, data]);
|
|
121
|
+
}, recorderRef.current.onerror = (event) => console.error(event), recorderRef.current.start(1e3));
|
|
122
|
+
}, [stream]), handleStop = useCallback(() => {
|
|
123
|
+
var _a;
|
|
124
|
+
setRecording(!1), setRecorded(!0), ((_a = recorderRef.current) == null ? void 0 : _a.state) === "recording" && (recorderRef.current.requestData(), recorderRef.current.stop());
|
|
125
|
+
}, [recorderRef]), handlePlayPause = useCallback(() => {
|
|
126
|
+
var _a, _b;
|
|
127
|
+
videoRef && videoRef.current && (videoRef.current.muted = !1), playing ? ((_b = videoRef == null ? void 0 : videoRef.current) == null || _b.pause(), setPlaying(!1)) : ((_a = videoRef == null ? void 0 : videoRef.current) == null || _a.play(), setPlaying(!0));
|
|
128
|
+
}, [playing]), handleReset = () => {
|
|
129
|
+
setRecorded(!1), setRecording(!1), setPlaying(!1), setSaved(!1), setRecordedTime(0), setRecordedChunks([]), setRecordedVideo(void 0), enableStream(mediaStreamConstraints), onRecordUpdated && onRecordUpdated();
|
|
130
|
+
}, handleSave = async () => {
|
|
131
|
+
var _a;
|
|
132
|
+
if ((_a = videoRef == null ? void 0 : videoRef.current) == null || _a.pause(), setSaving(!0), !recordedVideo) {
|
|
133
|
+
console.error("Error while saving video: recorded video is undefined.");
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
const resVideo = await uploadBlob(recordedVideo, {
|
|
137
|
+
duration: recordedTime
|
|
138
|
+
});
|
|
139
|
+
if (resVideo != null)
|
|
140
|
+
return onSuccess == null || onSuccess([resVideo]), setSaving(!1), setSaved(!0), [resVideo];
|
|
141
|
+
onError("Error while uploading video"), setSaving(!1), setSaved(!0);
|
|
142
|
+
}, handleEnded = () => {
|
|
143
|
+
setPlaying(!1), setPlayedTime(0), videoRef.current && (videoRef.current.currentTime = 0);
|
|
144
|
+
}, handleInputDeviceChange = (option) => {
|
|
145
|
+
var _a;
|
|
146
|
+
const selectedDevice = inputDevices.find((inputDevice) => inputDevice.label === option);
|
|
147
|
+
let mediaStreamConstraints2 = {};
|
|
148
|
+
selectedDevice != null && selectedDevice.deviceId ? ((selectedDevice == null ? void 0 : selectedDevice.deviceId) === "environment" || (selectedDevice == null ? void 0 : selectedDevice.deviceId) === "user" ? mediaStreamConstraints2 = {
|
|
149
|
+
audio: !0,
|
|
150
|
+
video: {
|
|
151
|
+
aspectRatio: VIDEO_WIDTH / VIDEO_HEIGHT,
|
|
152
|
+
facingMode: selectedDevice == null ? void 0 : selectedDevice.deviceId
|
|
153
|
+
}
|
|
154
|
+
} : mediaStreamConstraints2 = {
|
|
155
|
+
audio: !0,
|
|
156
|
+
video: {
|
|
157
|
+
aspectRatio: VIDEO_WIDTH / VIDEO_HEIGHT,
|
|
158
|
+
deviceId: selectedDevice.deviceId
|
|
159
|
+
}
|
|
160
|
+
}, setMediaStreamConstraints(mediaStreamConstraints2), stream && (((_a = recorderRef.current) == null ? void 0 : _a.state) === "recording" && (recorderRef.current.requestData(), recorderRef.current.stop()), stream.getTracks().forEach((track) => track.stop()), setStream(void 0)), enableStream(mediaStreamConstraints2)) : console.error("Selected input device id is null");
|
|
161
|
+
};
|
|
162
|
+
useEffect(() => {
|
|
163
|
+
recordedTime >= maxDuration && handleStop();
|
|
164
|
+
}, [recordedTime, handleStop]);
|
|
165
|
+
const toolbarItems = [{
|
|
166
|
+
type: "icon",
|
|
167
|
+
name: "record",
|
|
168
|
+
props: {
|
|
169
|
+
icon: /* @__PURE__ */ jsx(SvgIconRecord, { color: recording || recorded ? "" : "red" }),
|
|
170
|
+
color: "danger",
|
|
171
|
+
disabled: recording || recorded || saving,
|
|
172
|
+
onClick: handleRecord,
|
|
173
|
+
"aria-label": t("bbm.video.record.start")
|
|
174
|
+
},
|
|
175
|
+
tooltip: t("bbm.video.record.start")
|
|
176
|
+
}, {
|
|
177
|
+
type: "icon",
|
|
178
|
+
name: "stop",
|
|
179
|
+
props: {
|
|
180
|
+
icon: /* @__PURE__ */ jsx(SvgIconRecordStop, {}),
|
|
181
|
+
disabled: !recording || recorded || saving,
|
|
182
|
+
onClick: handleStop,
|
|
183
|
+
"aria-label": t("bbm.video.record.stop")
|
|
184
|
+
},
|
|
185
|
+
tooltip: t("bbm.video.record.stop")
|
|
186
|
+
}, {
|
|
187
|
+
type: "icon",
|
|
188
|
+
name: "play",
|
|
189
|
+
visibility: playing ? "hide" : "show",
|
|
190
|
+
props: {
|
|
191
|
+
icon: /* @__PURE__ */ jsx(SvgIconPlayFilled, {}),
|
|
192
|
+
disabled: !recorded || saving,
|
|
193
|
+
onClick: handlePlayPause,
|
|
194
|
+
"aria-label": t("bbm.video.play.start")
|
|
195
|
+
},
|
|
196
|
+
tooltip: t("bbm.video.play.start")
|
|
197
|
+
}, {
|
|
198
|
+
type: "icon",
|
|
199
|
+
name: "pause",
|
|
200
|
+
visibility: playing ? "show" : "hide",
|
|
201
|
+
props: {
|
|
202
|
+
icon: /* @__PURE__ */ jsx(SvgIconPause, {}),
|
|
203
|
+
disabled: !recorded || saving,
|
|
204
|
+
onClick: handlePlayPause,
|
|
205
|
+
"aria-label": t("bbm.video.play.pause")
|
|
206
|
+
},
|
|
207
|
+
tooltip: t("bbm.video.play.pause")
|
|
208
|
+
}, {
|
|
209
|
+
type: "divider"
|
|
210
|
+
}, {
|
|
211
|
+
type: "icon",
|
|
212
|
+
name: "reset",
|
|
213
|
+
props: {
|
|
214
|
+
icon: /* @__PURE__ */ jsx(SvgIconRefresh, {}),
|
|
215
|
+
disabled: !recorded || saving,
|
|
216
|
+
onClick: handleReset,
|
|
217
|
+
"aria-label": t("bbm.video.record.reset")
|
|
218
|
+
},
|
|
219
|
+
tooltip: t("bbm.video.record.reset")
|
|
220
|
+
}, {
|
|
221
|
+
type: "icon",
|
|
222
|
+
name: "save",
|
|
223
|
+
visibility: hideSaveAction ? "hide" : "show",
|
|
224
|
+
props: {
|
|
225
|
+
icon: /* @__PURE__ */ jsx(SvgIconSave, {}),
|
|
226
|
+
disabled: !recorded || saving || saved,
|
|
227
|
+
onClick: handleSave,
|
|
228
|
+
"aria-label": t("bbm.video.record.save")
|
|
229
|
+
},
|
|
230
|
+
tooltip: t("bbm.video.record.save")
|
|
231
|
+
}];
|
|
232
|
+
return /* @__PURE__ */ jsxs("div", { className: "video-recorder d-flex flex-fill flex-column align-items-center pb-8", children: [
|
|
233
|
+
/* @__PURE__ */ jsx("div", { className: "video-recorder-caption d-none d-md-block", children: caption }),
|
|
234
|
+
inputDevices.length > 1 && /* @__PURE__ */ jsx("div", { className: "video-recorder-devices mb-12", children: /* @__PURE__ */ jsxs(FormControl, { id: "selectInputDevice", children: [
|
|
235
|
+
/* @__PURE__ */ jsx(Label, { className: "d-none d-md-block", children: t("bbm.video.record.select.devices.label") }),
|
|
236
|
+
/* @__PURE__ */ jsx(Select, { placeholderOption: t("bbm.video.record.select.devices.placeholder"), options: inputDevices.map((videoInputDevice) => videoInputDevice.label), onValueChange: handleInputDeviceChange })
|
|
237
|
+
] }) }),
|
|
238
|
+
/* @__PURE__ */ jsxs("div", { className: "video-recorder-video-container position-relative align-self-stretch", children: [
|
|
239
|
+
/* @__PURE__ */ jsx("video", { ref: videoRef, playsInline: !0, autoPlay: !0, controls: !1, muted: !0, onEnded: handleEnded, className: "rounded", children: /* @__PURE__ */ jsx("track", { default: !0, kind: "captions", srcLang: "fr", src: "" }) }),
|
|
240
|
+
(recording || recorded) && /* @__PURE__ */ jsxs("div", { className: "video-recorder-time d-flex align-items-center font-monospace fs-6 text-bg-dark rounded", children: [
|
|
241
|
+
recording && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
242
|
+
/* @__PURE__ */ jsx(SvgIconRecord, { width: 12, height: 12, color: "red", className: "me-4" }),
|
|
243
|
+
/* @__PURE__ */ jsxs("span", { children: [
|
|
244
|
+
convertMsToMS(recordedTime),
|
|
245
|
+
"/",
|
|
246
|
+
convertMsToMS(maxDuration)
|
|
247
|
+
] })
|
|
248
|
+
] }),
|
|
249
|
+
recorded && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
250
|
+
/* @__PURE__ */ jsx(SvgIconRecordVideo, { width: 14, height: 14, className: "me-4" }),
|
|
251
|
+
/* @__PURE__ */ jsxs("span", { children: [
|
|
252
|
+
convertMsToMS(playedTime),
|
|
253
|
+
"/",
|
|
254
|
+
convertMsToMS(recordedTime)
|
|
255
|
+
] })
|
|
256
|
+
] })
|
|
257
|
+
] }),
|
|
258
|
+
stream && /* @__PURE__ */ jsx(Toolbar, { items: toolbarItems, className: "position-absolute bottom-0 start-50 bg-white" })
|
|
259
|
+
] }),
|
|
260
|
+
saving && /* @__PURE__ */ jsx(LoadingScreen, { position: !1, caption: t("bbm.video.save.loader.caption") })
|
|
261
|
+
] });
|
|
262
|
+
});
|
|
263
|
+
export {
|
|
264
|
+
VideoRecorder as default
|
|
265
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as VideoRecorder } from './VideoRecorder';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Role, WorkspaceElement, WorkspaceSearchFilter } from '@edifice.io/client';
|
|
2
|
+
/**
|
|
3
|
+
* MediaLibrary component properties
|
|
4
|
+
*/
|
|
5
|
+
export interface WorkspaceProps {
|
|
6
|
+
/**
|
|
7
|
+
* Only display media elements having this role[s] (=generic file format).
|
|
8
|
+
* Set to null to display all medias.
|
|
9
|
+
*/
|
|
10
|
+
roles: Role | Role[] | null;
|
|
11
|
+
/**
|
|
12
|
+
* If defined, try to auto-select the folder dedicated to this filter.
|
|
13
|
+
*/
|
|
14
|
+
defaultFolder?: WorkspaceSearchFilter;
|
|
15
|
+
/**
|
|
16
|
+
* Allow selecting public documents.
|
|
17
|
+
*/
|
|
18
|
+
showPublicFolder?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Notify parent when media elements are successfully selected.
|
|
21
|
+
*/
|
|
22
|
+
onSelect: (result: WorkspaceElement[]) => void;
|
|
23
|
+
/**
|
|
24
|
+
* Boolean to know if we can select 1 or many files.
|
|
25
|
+
*/
|
|
26
|
+
multiple?: boolean | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* Optional class for styling purpose
|
|
29
|
+
*/
|
|
30
|
+
className?: string;
|
|
31
|
+
}
|
|
32
|
+
declare const Workspace: ({ roles, onSelect, multiple, className, defaultFolder, showPublicFolder, }: WorkspaceProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export default Workspace;
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useRef, useState, useCallback, useEffect } from "react";
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import { useTranslation } from "react-i18next";
|
|
5
|
+
import SvgIconSortAscendingLetters from "../../icons/components/IconSortAscendingLetters.js";
|
|
6
|
+
import SvgIconSortDescendingLetters from "../../icons/components/IconSortDescendingLetters.js";
|
|
7
|
+
import SvgIconSortTime from "../../icons/components/IconSortTime.js";
|
|
8
|
+
import illuTrash from "@edifice.io/bootstrap/dist/images/emptyscreen/illu-trash.svg";
|
|
9
|
+
import useWorkspaceSearch from "../../../hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
10
|
+
import { Grid } from "../../../components/Grid/Grid.js";
|
|
11
|
+
import TreeView from "../../../components/TreeView/TreeView.js";
|
|
12
|
+
import SearchBar from "../../../components/SearchBar/SearchBar.js";
|
|
13
|
+
import Dropdown from "../../../components/Dropdown/Dropdown.js";
|
|
14
|
+
import LoadingScreen from "../../../components/LoadingScreen/LoadingScreen.js";
|
|
15
|
+
import FileCard from "../FileCard/FileCard.js";
|
|
16
|
+
import EmptyScreen from "../../../components/EmptyScreen/EmptyScreen.js";
|
|
17
|
+
import { findTreeNode } from "../../../components/TreeView/utilities/treeview.js";
|
|
18
|
+
const Workspace = ({
|
|
19
|
+
roles,
|
|
20
|
+
onSelect,
|
|
21
|
+
multiple = !0,
|
|
22
|
+
className,
|
|
23
|
+
defaultFolder,
|
|
24
|
+
showPublicFolder
|
|
25
|
+
}) => {
|
|
26
|
+
const {
|
|
27
|
+
t
|
|
28
|
+
} = useTranslation(), {
|
|
29
|
+
root: ownerRoot,
|
|
30
|
+
loadContent: loadOwnerDocs
|
|
31
|
+
} = useWorkspaceSearch("root", t("workspace.tree.owner"), "owner", roles), {
|
|
32
|
+
root: sharedRoot,
|
|
33
|
+
loadContent: loadSharedDocs
|
|
34
|
+
} = useWorkspaceSearch("root", t("workspace.tree.shared"), "shared", roles), {
|
|
35
|
+
root: protectRoot,
|
|
36
|
+
loadContent: loadProtectedDocs
|
|
37
|
+
} = useWorkspaceSearch("root", t("workspace.tree.protected"), "protected", roles), {
|
|
38
|
+
root: publicRoot,
|
|
39
|
+
loadContent: loadPublicDocs
|
|
40
|
+
} = useWorkspaceSearch("root", t("workspace.tree.public"), "public", roles), ownerRef = useRef(null), sharedRef = useRef(null), protectRef = useRef(null), publicRef = useRef(null), [currentFilter, setCurrentFilter] = useState(() => defaultFolder === "public" ? showPublicFolder ? defaultFolder : "protected" : defaultFolder === "protected" || defaultFolder === "shared" ? defaultFolder : "owner"), [currentNode, setCurrentNode] = useState(() => defaultFolder === "public" ? showPublicFolder ? publicRoot : protectRoot : defaultFolder === "protected" ? protectRoot : defaultFolder === "shared" ? sharedRoot : ownerRoot), [documents, setDocuments] = useState(), [searchTerm, setSearchTerm] = useState(null), [sortOrder, setSortOrder] = useState(["modified", "desc"]), [selectedDocuments, setSelectedDocuments] = useState([]), rootNodeFor = useCallback((filter) => {
|
|
41
|
+
switch (filter) {
|
|
42
|
+
case "owner":
|
|
43
|
+
return {
|
|
44
|
+
root: ownerRoot,
|
|
45
|
+
othersRef: [sharedRef, protectRef, publicRef]
|
|
46
|
+
};
|
|
47
|
+
case "shared":
|
|
48
|
+
return {
|
|
49
|
+
root: sharedRoot,
|
|
50
|
+
othersRef: [ownerRef, protectRef, publicRef]
|
|
51
|
+
};
|
|
52
|
+
case "protected":
|
|
53
|
+
return {
|
|
54
|
+
root: protectRoot,
|
|
55
|
+
othersRef: [ownerRef, sharedRef, publicRef]
|
|
56
|
+
};
|
|
57
|
+
case "public":
|
|
58
|
+
return {
|
|
59
|
+
root: publicRoot,
|
|
60
|
+
othersRef: [ownerRef, sharedRef, protectRef]
|
|
61
|
+
};
|
|
62
|
+
default:
|
|
63
|
+
throw "no.root.node";
|
|
64
|
+
}
|
|
65
|
+
}, [ownerRoot, sharedRoot, protectRoot, publicRoot]), loadContent = useCallback(() => {
|
|
66
|
+
switch (currentFilter) {
|
|
67
|
+
case "owner":
|
|
68
|
+
loadOwnerDocs(currentNode.id);
|
|
69
|
+
break;
|
|
70
|
+
case "shared":
|
|
71
|
+
loadSharedDocs(currentNode.id);
|
|
72
|
+
break;
|
|
73
|
+
case "protected":
|
|
74
|
+
loadProtectedDocs(currentNode.id);
|
|
75
|
+
break;
|
|
76
|
+
case "public":
|
|
77
|
+
loadPublicDocs(currentNode.id);
|
|
78
|
+
break;
|
|
79
|
+
default:
|
|
80
|
+
throw "no.way";
|
|
81
|
+
}
|
|
82
|
+
}, [currentFilter, currentNode.id, loadOwnerDocs, loadProtectedDocs, loadPublicDocs, loadSharedDocs]);
|
|
83
|
+
function selectAndLoadContent(filter, nodeId) {
|
|
84
|
+
setCurrentFilter(filter);
|
|
85
|
+
const {
|
|
86
|
+
root,
|
|
87
|
+
othersRef
|
|
88
|
+
} = rootNodeFor(filter), targetNode = findTreeNode(root, (node) => node.id === nodeId);
|
|
89
|
+
targetNode && (setCurrentNode(targetNode), othersRef.forEach((otherRef) => {
|
|
90
|
+
var _a;
|
|
91
|
+
return (_a = otherRef.current) == null ? void 0 : _a.unselectAll();
|
|
92
|
+
}));
|
|
93
|
+
}
|
|
94
|
+
useEffect(() => {
|
|
95
|
+
var _a;
|
|
96
|
+
let ref;
|
|
97
|
+
switch (currentFilter) {
|
|
98
|
+
case "owner":
|
|
99
|
+
ref = ownerRef;
|
|
100
|
+
break;
|
|
101
|
+
case "shared":
|
|
102
|
+
ref = sharedRef;
|
|
103
|
+
break;
|
|
104
|
+
case "protected":
|
|
105
|
+
ref = protectRef;
|
|
106
|
+
break;
|
|
107
|
+
case "public":
|
|
108
|
+
ref = publicRef;
|
|
109
|
+
break;
|
|
110
|
+
default:
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
(_a = ref == null ? void 0 : ref.current) == null || _a.select("root");
|
|
114
|
+
}, [currentFilter]), useEffect(loadContent, [loadContent]), useEffect(() => {
|
|
115
|
+
if (currentNode.files) {
|
|
116
|
+
let list = [].concat(currentNode.files);
|
|
117
|
+
searchTerm && (list = list.filter((f) => f.name.indexOf(searchTerm) >= 0));
|
|
118
|
+
const sortFunction = sortOrder[0] === "name" ? sortOrder[1] === "asc" ? (a, b) => compare(a.name, b.name) : (a, b) => compare(b.name, a.name) : (a, b) => compare(b.modified, a.modified);
|
|
119
|
+
setDocuments(() => list.sort(sortFunction));
|
|
120
|
+
} else
|
|
121
|
+
setDocuments(void 0);
|
|
122
|
+
}, [currentNode, ownerRoot, protectRoot, sharedRoot, publicRoot, searchTerm, sortOrder]);
|
|
123
|
+
const handleSearchChange = useCallback((e) => {
|
|
124
|
+
setSearchTerm(e.target.value);
|
|
125
|
+
}, [setSearchTerm]);
|
|
126
|
+
function compare(a, b) {
|
|
127
|
+
return a ? b ? a.localeCompare(b) : 1 : -1;
|
|
128
|
+
}
|
|
129
|
+
function getSortOrderLabel() {
|
|
130
|
+
return sortOrder[0] === "name" ? sortOrder[1] === "asc" ? t("sort.order.alpha.asc") : t("sort.order.alpha.desc") : t("sort.order.modify.desc");
|
|
131
|
+
}
|
|
132
|
+
function handleSelectDoc(doc) {
|
|
133
|
+
let currentDocuments = [...selectedDocuments];
|
|
134
|
+
multiple ? currentDocuments.includes(doc) ? currentDocuments = currentDocuments.filter((selectedDocument) => selectedDocument._id !== doc._id) : currentDocuments = [...currentDocuments, doc] : currentDocuments = [doc], setSelectedDocuments(currentDocuments), onSelect(currentDocuments);
|
|
135
|
+
}
|
|
136
|
+
const workspace = clsx("workspace flex-grow-1 gap-0", className);
|
|
137
|
+
return /* @__PURE__ */ jsxs(Grid, { className: workspace, children: [
|
|
138
|
+
/* @__PURE__ */ jsx(Grid.Col, { sm: "12", md: "3", xl: "4", className: "workspace-folders p-12 pt-0 gap-12", children: /* @__PURE__ */ jsxs("div", { style: {
|
|
139
|
+
position: "sticky",
|
|
140
|
+
top: 0,
|
|
141
|
+
paddingTop: "1.2rem"
|
|
142
|
+
}, children: [
|
|
143
|
+
/* @__PURE__ */ jsx(TreeView, { ref: ownerRef, data: ownerRoot, onTreeItemClick: (nodeId) => selectAndLoadContent("owner", nodeId), onTreeItemUnfold: (nodeId) => selectAndLoadContent("owner", nodeId) }),
|
|
144
|
+
/* @__PURE__ */ jsx(TreeView, { ref: sharedRef, data: sharedRoot, onTreeItemClick: (nodeId) => selectAndLoadContent("shared", nodeId), onTreeItemUnfold: (nodeId) => selectAndLoadContent("shared", nodeId) }),
|
|
145
|
+
/* @__PURE__ */ jsx(TreeView, { ref: protectRef, data: protectRoot, onTreeItemClick: (nodeId) => selectAndLoadContent("protected", nodeId), onTreeItemUnfold: (nodeId) => selectAndLoadContent("protected", nodeId) }),
|
|
146
|
+
showPublicFolder && /* @__PURE__ */ jsx(TreeView, { ref: publicRef, data: publicRoot, onTreeItemClick: (nodeId) => selectAndLoadContent("public", nodeId), onTreeItemUnfold: (nodeId) => selectAndLoadContent("public", nodeId) })
|
|
147
|
+
] }) }),
|
|
148
|
+
/* @__PURE__ */ jsx(Grid.Col, { sm: "12", md: "5", xl: "8", children: /* @__PURE__ */ jsxs(Grid, { className: "flex-grow-1 gap-0", children: [
|
|
149
|
+
/* @__PURE__ */ jsxs(Grid.Col, { sm: "4", md: "8", xl: "12", children: [
|
|
150
|
+
/* @__PURE__ */ jsx("div", { className: "workspace-search px-16 py-8 ", children: /* @__PURE__ */ jsx(SearchBar, { isVariant: !0, className: "gap-16", onChange: handleSearchChange }) }),
|
|
151
|
+
/* @__PURE__ */ jsxs("div", { className: "d-flex align-items-center justify-content-end px-8 py-4", children: [
|
|
152
|
+
/* @__PURE__ */ jsx("small", { className: "text-muted", children: t("workspace.search.order") }),
|
|
153
|
+
/* @__PURE__ */ jsxs(Dropdown, { children: [
|
|
154
|
+
/* @__PURE__ */ jsx(Dropdown.Trigger, { size: "sm", label: getSortOrderLabel(), variant: "ghost" }),
|
|
155
|
+
/* @__PURE__ */ jsxs(Dropdown.Menu, { children: [
|
|
156
|
+
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortTime, {}), onClick: () => setSortOrder(["modified", "desc"]), children: t("sort.order.modify.desc") }),
|
|
157
|
+
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortAscendingLetters, {}), onClick: () => setSortOrder(["name", "asc"]), children: t("sort.order.alpha.asc") }),
|
|
158
|
+
/* @__PURE__ */ jsx(Dropdown.Item, { icon: /* @__PURE__ */ jsx(SvgIconSortDescendingLetters, {}), onClick: () => setSortOrder(["name", "desc"]), children: t("sort.order.alpha.desc") })
|
|
159
|
+
] })
|
|
160
|
+
] })
|
|
161
|
+
] })
|
|
162
|
+
] }),
|
|
163
|
+
/* @__PURE__ */ jsx(Grid.Col, { sm: "4", md: "8", xl: "12", className: "p-8 gap-8", children: documents ? documents.length !== 0 ? /* @__PURE__ */ jsx("div", { className: "grid grid-workspace", children: documents.map((doc) => {
|
|
164
|
+
const isSelected = selectedDocuments.includes(doc);
|
|
165
|
+
return /* @__PURE__ */ jsx(FileCard, { doc, isSelected, onClick: () => handleSelectDoc(doc) }, doc._id);
|
|
166
|
+
}) }) : /* @__PURE__ */ jsx(EmptyScreen, { imageSrc: illuTrash, text: t("workspace.empty.docSpace"), title: t("explorer.emptyScreen.trash.title") }) : /* @__PURE__ */ jsx(LoadingScreen, {}) })
|
|
167
|
+
] }) })
|
|
168
|
+
] });
|
|
169
|
+
};
|
|
170
|
+
export {
|
|
171
|
+
Workspace as default
|
|
172
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
declare function Widget({ children }: {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare namespace Widget {
|
|
6
|
+
var Header: ({ children }: {
|
|
7
|
+
children: string;
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
var Body: ({ children }: {
|
|
10
|
+
children: ReactNode;
|
|
11
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
var Footer: ({ children }: {
|
|
13
|
+
children: ReactNode;
|
|
14
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
var displayName: string;
|
|
16
|
+
}
|
|
17
|
+
export default Widget;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as default2 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
|
|
2
|
+
import { default as default3 } from "./modules/multimedia/Embed/Embed.js";
|
|
3
|
+
import { default as default4 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
4
|
+
import { default as default5 } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
|
|
5
|
+
import { default as default6 } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
|
|
6
|
+
import { default as default7 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
7
|
+
import { default as default8 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
8
|
+
import { default as default9 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
9
|
+
export {
|
|
10
|
+
default2 as AudioRecorder,
|
|
11
|
+
default3 as Embed,
|
|
12
|
+
default6 as ExternalLinker,
|
|
13
|
+
default4 as ImageEditor,
|
|
14
|
+
default5 as InternalLinker,
|
|
15
|
+
default9 as MediaLibrary,
|
|
16
|
+
default7 as VideoRecorder,
|
|
17
|
+
default8 as Workspace
|
|
18
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { App, IGetConf, IGetSession, IUserDescription, IUserInfo, IWebApp, UserProfile } from '@edifice.io/client';
|
|
3
|
+
import { UseQueryResult } from '../../../node_modules/@tanstack/react-query';
|
|
4
|
+
export interface EdificeClientParams {
|
|
5
|
+
alternativeApp?: boolean;
|
|
6
|
+
app: App;
|
|
7
|
+
cdnDomain?: string | null;
|
|
8
|
+
version?: string | null;
|
|
9
|
+
}
|
|
10
|
+
export interface EdificeClientProviderProps {
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
params: EdificeClientParams;
|
|
13
|
+
}
|
|
14
|
+
export interface EdificeClientContextProps {
|
|
15
|
+
appCode: App;
|
|
16
|
+
applications: IWebApp[] | undefined;
|
|
17
|
+
confQuery: UseQueryResult<IGetConf>;
|
|
18
|
+
currentApp: IWebApp | undefined;
|
|
19
|
+
currentLanguage: string | undefined;
|
|
20
|
+
init: boolean;
|
|
21
|
+
sessionQuery: UseQueryResult<IGetSession>;
|
|
22
|
+
user: IUserInfo | undefined;
|
|
23
|
+
userDescription: Partial<IUserDescription> | undefined;
|
|
24
|
+
userProfile: UserProfile | undefined;
|
|
25
|
+
}
|
|
26
|
+
export declare const EdificeClientContext: import('react').Context<EdificeClientContextProps | null>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { App } from '@edifice.io/client';
|
|
2
|
+
import { EdificeClientProviderProps } from './EdificeClientProvider.context';
|
|
3
|
+
export interface OdeProviderParams {
|
|
4
|
+
alternativeApp?: boolean;
|
|
5
|
+
app: App;
|
|
6
|
+
cdnDomain?: string | null;
|
|
7
|
+
version?: string | null;
|
|
8
|
+
}
|
|
9
|
+
export declare function EdificeClientProvider({ children, params, }: EdificeClientProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useEdificeClient(): import('./EdificeClientProvider.context').EdificeClientContextProps;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import { EdificeClientContext } from "./EdificeClientProvider.context.js";
|
|
3
|
+
function useEdificeClient() {
|
|
4
|
+
const context = useContext(EdificeClientContext);
|
|
5
|
+
if (!context)
|
|
6
|
+
throw new Error("Cannot be used outside of OdeClientProvider");
|
|
7
|
+
return context;
|
|
8
|
+
}
|
|
9
|
+
export {
|
|
10
|
+
useEdificeClient
|
|
11
|
+
};
|