@edifice.io/react 2.5.5-develop-pedago.20260121100338 → 2.5.5-develop-pedago.20260122115953

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.
Files changed (32) hide show
  1. package/dist/components/Dropdown/DropdownContext.js +1 -1
  2. package/dist/components/Form/FormContext.js +1 -1
  3. package/dist/components/Layout/Layout.js +1 -2
  4. package/dist/components/PromotionCard/PromotionCard.d.ts +74 -0
  5. package/dist/components/PromotionCard/PromotionCard.js +31 -0
  6. package/dist/components/PromotionCard/PromotionCardBody.d.ts +10 -0
  7. package/dist/components/PromotionCard/PromotionCardBody.js +15 -0
  8. package/dist/components/PromotionCard/PromotionCardDescription.d.ts +9 -0
  9. package/dist/components/PromotionCard/PromotionCardDescription.js +12 -0
  10. package/dist/components/PromotionCard/PromotionCardFooter.d.ts +9 -0
  11. package/dist/components/PromotionCard/PromotionCardFooter.js +12 -0
  12. package/dist/components/PromotionCard/PromotionCardHeader.d.ts +11 -0
  13. package/dist/components/PromotionCard/PromotionCardHeader.js +17 -0
  14. package/dist/components/PromotionCard/PromotionCardIcon.d.ts +10 -0
  15. package/dist/components/PromotionCard/PromotionCardIcon.js +15 -0
  16. package/dist/components/PromotionCard/PromotionCardTitle.d.ts +9 -0
  17. package/dist/components/PromotionCard/PromotionCardTitle.js +12 -0
  18. package/dist/components/PromotionCard/index.d.ts +2 -0
  19. package/dist/components/Toolbar/Toolbar.js +1 -1
  20. package/dist/components/index.d.ts +1 -0
  21. package/dist/editor.js +40 -40
  22. package/dist/hooks/useDropdown/useDropdown.js +1 -1
  23. package/dist/index.js +231 -228
  24. package/dist/modals.js +18 -18
  25. package/dist/modules/editor/hooks/useTipTapEditor.js +4 -4
  26. package/dist/modules/modals/ResourceModal/ResourceModal.js +1 -2
  27. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +1 -2
  28. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +1 -2
  29. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +1 -1
  30. package/dist/multimedia.js +10 -10
  31. package/dist/providers/AntThemeProvider/antThemeConfig.js +1 -2
  32. package/package.json +6 -6
@@ -1,4 +1,4 @@
1
- import { createContext, useContext } from "react";
1
+ import { useContext, createContext } from "react";
2
2
  const DropdownContext = /* @__PURE__ */ createContext(null), useDropdownContext = () => {
3
3
  const context = useContext(DropdownContext);
4
4
  if (!context)
@@ -1,4 +1,4 @@
1
- import { createContext, useContext } from "react";
1
+ import { useContext, createContext } from "react";
2
2
  const Context = /* @__PURE__ */ createContext(null), useFormControl = () => {
3
3
  const context = useContext(Context);
4
4
  if (!context)
@@ -42,6 +42,5 @@ const Layout = ({
42
42
  ] });
43
43
  };
44
44
  export {
45
- Layout,
46
- Layout as default
45
+ Layout
47
46
  };
@@ -0,0 +1,74 @@
1
+ export interface PromotionCardProps {
2
+ children: React.ReactNode;
3
+ borderColor?: string;
4
+ backgroundColor?: string;
5
+ className?: string;
6
+ }
7
+ /**
8
+ * Promotion Card component to display promotional features in a card format.
9
+ *
10
+ * The component PromotionCard is a Compound Component composed of:
11
+ * - PromotionCardHeader: information on the top right corner
12
+ * - PromotionCardIcon: Icon on the left side (background color and Icon)
13
+ * - PromotionCardBody:
14
+ * - PromotionCardTitle: Card Title
15
+ * - PromotionCardDescription: Card Description
16
+ * - PromotionCardAction: Card Action (mainly a button with a onClick action)
17
+ *
18
+ * @example
19
+ * <PromotionCard>
20
+ * <PromotionCard.Header backgroundColor="#faea9c">
21
+ * header content
22
+ * </PromotionCard.Header>
23
+ * <PromotionCard.Icon
24
+ * backgroundColor="#FFEFE3"
25
+ * icon={<IconEdit color="#FF8D2E" />}
26
+ * />
27
+ * <PromotionCard.Body>
28
+ * <PromotionCard.Title>Création Libre</PromotionCard.Title>
29
+ * <PromotionCard.Description>
30
+ * Vous n'avez pas peur de la "page blanche" ? Lancez-vous pour créer
31
+ * votre cours ou votre document !
32
+ * </PromotionCard.Description>
33
+ * <PromotionCard.Actions>
34
+ * <Button
35
+ * color="tertiary"
36
+ * variant="ghost"
37
+ * size="sm"
38
+ * onClick={() => {}}
39
+ * leftIcon={<IconPlus />}
40
+ * >
41
+ * Nouvelle page
42
+ * </Button>
43
+ * </PromotionCard.Actions>
44
+ * </PromotionCard.Body>
45
+ * </PromotionCard>
46
+ */
47
+ export declare const Root: ({ children, borderColor, backgroundColor, className, }: PromotionCardProps) => import("react/jsx-runtime").JSX.Element;
48
+ declare const PromotionCard: (({ children, borderColor, backgroundColor, className, }: PromotionCardProps) => import("react/jsx-runtime").JSX.Element) & {
49
+ Header: {
50
+ ({ backgroundColor, textColor, children, className, }: import('./PromotionCardHeader').PromotionCardHeaderProps): import("react/jsx-runtime").JSX.Element;
51
+ displayName: string;
52
+ };
53
+ Body: {
54
+ ({ children, textColor, className, }: import('./PromotionCardBody').PromotionCardBodyProps): import("react/jsx-runtime").JSX.Element;
55
+ displayName: string;
56
+ };
57
+ Icon: {
58
+ ({ backgroundColor, icon, className, }: import('./PromotionCardIcon').PromotionCardIconProps): import("react/jsx-runtime").JSX.Element;
59
+ displayName: string;
60
+ };
61
+ Title: {
62
+ ({ children, className, }: import('./PromotionCardTitle').PromotionCardTitleProps): import("react/jsx-runtime").JSX.Element;
63
+ displayName: string;
64
+ };
65
+ Description: {
66
+ ({ children, className, }: import('./PromotionCardDescription').PromotionCardDescriptionProps): import("react/jsx-runtime").JSX.Element;
67
+ displayName: string;
68
+ };
69
+ Footer: {
70
+ ({ children, className, }: import('./PromotionCardFooter').PromotionCardFooterProps): import("react/jsx-runtime").JSX.Element;
71
+ displayName: string;
72
+ };
73
+ };
74
+ export default PromotionCard;
@@ -0,0 +1,31 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import PromotionCardBody from "./PromotionCardBody.js";
3
+ import PromotionCardDescription from "./PromotionCardDescription.js";
4
+ import PromotionCardFooter from "./PromotionCardFooter.js";
5
+ import PromotionCardHeader from "./PromotionCardHeader.js";
6
+ import PromotionCardIcon from "./PromotionCardIcon.js";
7
+ import PromotionCardTitle from "./PromotionCardTitle.js";
8
+ import clsx from "clsx";
9
+ const Root = ({
10
+ children,
11
+ borderColor,
12
+ backgroundColor,
13
+ className
14
+ }) => {
15
+ const classNames = clsx("promotion-card", className);
16
+ return /* @__PURE__ */ jsx("div", { className: classNames, style: {
17
+ borderColor,
18
+ backgroundColor
19
+ }, children });
20
+ }, PromotionCard = /* @__PURE__ */ Object.assign(Root, {
21
+ Header: PromotionCardHeader,
22
+ Body: PromotionCardBody,
23
+ Icon: PromotionCardIcon,
24
+ Title: PromotionCardTitle,
25
+ Description: PromotionCardDescription,
26
+ Footer: PromotionCardFooter
27
+ });
28
+ export {
29
+ Root,
30
+ PromotionCard as default
31
+ };
@@ -0,0 +1,10 @@
1
+ export interface PromotionCardBodyProps {
2
+ children: React.ReactNode;
3
+ textColor?: string;
4
+ className?: string;
5
+ }
6
+ declare const PromotionCardBody: {
7
+ ({ children, textColor, className, }: PromotionCardBodyProps): import("react/jsx-runtime").JSX.Element;
8
+ displayName: string;
9
+ };
10
+ export default PromotionCardBody;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ const PromotionCardBody = ({
4
+ children,
5
+ textColor,
6
+ className
7
+ }) => {
8
+ const classNames = clsx("promotion-card-body", className);
9
+ return /* @__PURE__ */ jsx("div", { className: classNames, style: {
10
+ color: textColor
11
+ }, children });
12
+ };
13
+ export {
14
+ PromotionCardBody as default
15
+ };
@@ -0,0 +1,9 @@
1
+ export interface PromotionCardDescriptionProps {
2
+ children: React.ReactNode;
3
+ className?: string;
4
+ }
5
+ declare const PromotionCardDescription: {
6
+ ({ children, className, }: PromotionCardDescriptionProps): import("react/jsx-runtime").JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default PromotionCardDescription;
@@ -0,0 +1,12 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { clsx } from "clsx";
3
+ const PromotionCardDescription = ({
4
+ children,
5
+ className
6
+ }) => {
7
+ const classNames = clsx("promotion-card-description", className);
8
+ return /* @__PURE__ */ jsx("div", { className: classNames, children });
9
+ };
10
+ export {
11
+ PromotionCardDescription as default
12
+ };
@@ -0,0 +1,9 @@
1
+ export interface PromotionCardFooterProps {
2
+ children: React.ReactNode;
3
+ className?: string;
4
+ }
5
+ declare const PromotionCardFooter: {
6
+ ({ children, className, }: PromotionCardFooterProps): import("react/jsx-runtime").JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default PromotionCardFooter;
@@ -0,0 +1,12 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { clsx } from "clsx";
3
+ const PromotionCardFooter = ({
4
+ children,
5
+ className
6
+ }) => {
7
+ const classNames = clsx("promotion-card-footer", className);
8
+ return /* @__PURE__ */ jsx("div", { className: classNames, children });
9
+ };
10
+ export {
11
+ PromotionCardFooter as default
12
+ };
@@ -0,0 +1,11 @@
1
+ export interface PromotionCardHeaderProps {
2
+ children: React.ReactNode;
3
+ backgroundColor?: string;
4
+ textColor?: string;
5
+ className?: string;
6
+ }
7
+ declare const PromotionCardHeader: {
8
+ ({ backgroundColor, textColor, children, className, }: PromotionCardHeaderProps): import("react/jsx-runtime").JSX.Element;
9
+ displayName: string;
10
+ };
11
+ export default PromotionCardHeader;
@@ -0,0 +1,17 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { clsx } from "clsx";
3
+ const PromotionCardHeader = ({
4
+ backgroundColor,
5
+ textColor,
6
+ children,
7
+ className
8
+ }) => {
9
+ const classNames = clsx("promotion-card-header", className);
10
+ return /* @__PURE__ */ jsx("div", { className: classNames, style: {
11
+ backgroundColor,
12
+ color: textColor
13
+ }, children });
14
+ };
15
+ export {
16
+ PromotionCardHeader as default
17
+ };
@@ -0,0 +1,10 @@
1
+ export interface PromotionCardIconProps {
2
+ backgroundColor: string;
3
+ icon: React.ReactNode;
4
+ className?: string;
5
+ }
6
+ declare const PromotionCardIcon: {
7
+ ({ backgroundColor, icon, className, }: PromotionCardIconProps): import("react/jsx-runtime").JSX.Element;
8
+ displayName: string;
9
+ };
10
+ export default PromotionCardIcon;
@@ -0,0 +1,15 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { clsx } from "clsx";
3
+ const PromotionCardIcon = ({
4
+ backgroundColor,
5
+ icon,
6
+ className
7
+ }) => {
8
+ const classNames = clsx("promotion-card-icon", className);
9
+ return /* @__PURE__ */ jsx("div", { className: classNames, style: {
10
+ backgroundColor
11
+ }, children: icon });
12
+ };
13
+ export {
14
+ PromotionCardIcon as default
15
+ };
@@ -0,0 +1,9 @@
1
+ export interface PromotionCardTitleProps {
2
+ children: React.ReactNode;
3
+ className?: string;
4
+ }
5
+ declare const PromotionCardTitle: {
6
+ ({ children, className, }: PromotionCardTitleProps): import("react/jsx-runtime").JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default PromotionCardTitle;
@@ -0,0 +1,12 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ const PromotionCardTitle = ({
4
+ children,
5
+ className
6
+ }) => {
7
+ const classNames = clsx("promotion-card-title", className);
8
+ return /* @__PURE__ */ jsx("h3", { className: classNames, children });
9
+ };
10
+ export {
11
+ PromotionCardTitle as default
12
+ };
@@ -0,0 +1,2 @@
1
+ export { default as PromotionCard } from './PromotionCard';
2
+ export * from './PromotionCard';
@@ -2,11 +2,11 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { forwardRef, useState, useRef, useEffect, createElement } from "react";
3
3
  import clsx from "clsx";
4
4
  import useBreakpoint from "../../hooks/useBreakpoint/useBreakpoint.js";
5
- import { mergeRefs } from "../../utilities/refs/ref.js";
6
5
  import Tooltip from "../Tooltip/Tooltip.js";
7
6
  import Button from "../Button/Button.js";
8
7
  import Dropdown from "../Dropdown/Dropdown.js";
9
8
  import IconButton from "../Button/IconButton.js";
9
+ import { mergeRefs } from "../../utilities/refs/ref.js";
10
10
  const Toolbar = /* @__PURE__ */ forwardRef(({
11
11
  items,
12
12
  variant = "default",
@@ -34,6 +34,7 @@ export * from './Menu';
34
34
  export * from './Modal';
35
35
  export * from './Popover';
36
36
  export * from './PreventPropagation';
37
+ export * from './PromotionCard';
37
38
  export * from './Radio';
38
39
  export * from './RadioCard';
39
40
  export * from './SearchBar';
package/dist/editor.js CHANGED
@@ -1,30 +1,31 @@
1
1
  import { EditorContent, Editor, useEditor } from "@tiptap/react";
2
2
  import { default as default2 } from "@tiptap/starter-kit";
3
- import { default as default3 } from "./modules/editor/components/Editor/Editor.js";
4
- import { default as default4 } from "./modules/editor/components/Editor/EditorPreview.js";
5
- import { default as default5 } from "./modules/editor/components/Editor/EditorPreviewSkeleton.js";
6
- import { default as default6 } from "./modules/editor/components/Editor/EditorSkeleton.js";
3
+ import { default as default3 } from "./modules/editor/components/NodeView/AttachmentNodeView.js";
4
+ import { default as default4 } from "./modules/editor/components/Renderer/AttachmentRenderer.js";
5
+ import { default as default5 } from "./modules/editor/components/NodeView/AudioNodeView.js";
6
+ import { default as default6 } from "./modules/editor/components/Renderer/AudioRenderer.js";
7
7
  import { default as default7 } from "./modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js";
8
- import { default as default8 } from "./modules/editor/components/NodeView/AttachmentNodeView.js";
9
- import { default as default9 } from "./modules/editor/components/NodeView/AudioNodeView.js";
10
- import { default as default10 } from "./modules/editor/components/NodeView/ConversationHistoryNodeView.js";
11
- import { default as default11 } from "./modules/editor/components/NodeView/ImageNodeView.js";
12
- import { default as default12 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
13
- import { default as default13 } from "./modules/editor/components/NodeView/VideoNodeView.js";
14
- import { default as default14 } from "./modules/editor/components/NodeView/InformationPaneNodeView.js";
15
- import { default as default15 } from "./modules/editor/components/NodeView/IframeNodeView.js";
16
- import { default as default16 } from "./modules/editor/components/Renderer/AttachmentRenderer.js";
17
- import { default as default17 } from "./modules/editor/components/Renderer/AudioRenderer.js";
18
- import { default as default18 } from "./modules/editor/components/Renderer/ConversationHistoryRenderer.js";
19
- import { default as default19 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
20
- import { default as default20 } from "./modules/editor/components/Renderer/MediaRenderer.js";
21
- import { default as default21 } from "./modules/editor/components/Renderer/InformationPaneRenderer.js";
8
+ import { default as default8 } from "./modules/editor/components/NodeView/ConversationHistoryNodeView.js";
9
+ import { default as default9 } from "./modules/editor/components/Renderer/ConversationHistoryRenderer.js";
10
+ import { default as default10 } from "./modules/editor/components/Editor/Editor.js";
11
+ import { default as default11 } from "./modules/editor/components/Editor/EditorPreview.js";
12
+ import { default as default12 } from "./modules/editor/components/Editor/EditorPreviewSkeleton.js";
13
+ import { default as default13 } from "./modules/editor/components/Editor/EditorSkeleton.js";
14
+ import { default as default14 } from "./modules/editor/components/NodeView/IframeNodeView.js";
15
+ import { default as default15 } from "./modules/editor/components/NodeView/ImageNodeView.js";
16
+ import { default as default16 } from "./modules/editor/components/NodeView/InformationPaneNodeView.js";
17
+ import { default as default17 } from "./modules/editor/components/Renderer/InformationPaneRenderer.js";
18
+ import { default as default18 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
19
+ import { default as default19 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
20
+ import { default as default20 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
21
+ import { default as default21 } from "./modules/editor/components/Renderer/MediaRenderer.js";
22
22
  import { default as default22 } from "./modules/editor/components/Toolbar/TableToolbar.js";
23
- import { default as default23 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
23
+ import { default as default23 } from "./modules/editor/components/NodeView/VideoNodeView.js";
24
+ import { EditorContext, useEditorContext } from "./modules/editor/hooks/useEditorContext.js";
24
25
  import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
25
26
  import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
27
+ import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
26
28
  import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
27
- import { EditorContext, useEditorContext } from "./modules/editor/hooks/useEditorContext.js";
28
29
  import { useImageModal } from "./modules/editor/hooks/useImageModal.js";
29
30
  import { useImageSelection } from "./modules/editor/hooks/useImageSelection.js";
30
31
  import { useLinkToolbar } from "./modules/editor/hooks/useLinkToolbar.js";
@@ -34,34 +35,33 @@ import { useResizeMedia } from "./modules/editor/hooks/useResizeMedia.js";
34
35
  import { useSpeechRecognition } from "./modules/editor/hooks/useSpeechRecognition.js";
35
36
  import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisis.js";
36
37
  import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
37
- import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
38
38
  export {
39
- default8 as AttachmentNodeView,
40
- default16 as AttachmentRenderer,
41
- default9 as AudioNodeView,
42
- default17 as AudioRenderer,
39
+ default3 as AttachmentNodeView,
40
+ default4 as AttachmentRenderer,
41
+ default5 as AudioNodeView,
42
+ default6 as AudioRenderer,
43
43
  default7 as BubbleMenuEditImage,
44
- default10 as ConversationHistoryNodeView,
45
- default18 as ConversationHistoryRenderer,
46
- default3 as Editor,
44
+ default8 as ConversationHistoryNodeView,
45
+ default9 as ConversationHistoryRenderer,
46
+ default10 as Editor,
47
47
  EditorContent,
48
48
  EditorContext,
49
49
  Editor as EditorInstance,
50
- default4 as EditorPreview,
51
- default5 as EditorPreviewSkeleton,
52
- default6 as EditorSkeleton,
50
+ default11 as EditorPreview,
51
+ default12 as EditorPreviewSkeleton,
52
+ default13 as EditorSkeleton,
53
53
  EditorToolbar,
54
- default15 as IframeNodeView,
55
- default11 as ImageNodeView,
56
- default14 as InformationPaneNodeView,
57
- default21 as InformationPaneRenderer,
58
- default23 as LinkToolbar,
59
- default12 as LinkerNodeView,
60
- default19 as LinkerRenderer,
61
- default20 as MediaRenderer,
54
+ default14 as IframeNodeView,
55
+ default15 as ImageNodeView,
56
+ default16 as InformationPaneNodeView,
57
+ default17 as InformationPaneRenderer,
58
+ default18 as LinkToolbar,
59
+ default19 as LinkerNodeView,
60
+ default20 as LinkerRenderer,
61
+ default21 as MediaRenderer,
62
62
  default2 as StarterKit,
63
63
  default22 as TableToolbar,
64
- default13 as VideoNodeView,
64
+ default23 as VideoNodeView,
65
65
  useActionOptions,
66
66
  useCantooEditor,
67
67
  useCommentEditor,
@@ -1,5 +1,5 @@
1
1
  import { useId, useState, useRef, useEffect, useCallback } from "react";
2
- import { useFloating, offset, size, flip, autoUpdate, useHover, safePolygon } from "@floating-ui/react";
2
+ import { useFloating, autoUpdate, offset, size, flip, useHover, safePolygon } from "@floating-ui/react";
3
3
  import { mergeRefs } from "../../utilities/refs/ref.js";
4
4
  const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !1, focusOnVisible = !0, openOnSpace = !0, focusOnMouseEnter = !0) => {
5
5
  const id = useId(), [visible, setVisible] = useState(!1), [activeIndex, setActiveIndex] = useState(-1), [isFocused, setIsFocused] = useState(null), {
package/dist/index.js CHANGED
@@ -3,144 +3,145 @@ import { default as default3 } from "./components/Alert/Alert.js";
3
3
  import { default as default4 } from "./components/AppHeader/AppHeader.js";
4
4
  import { default as default5 } from "./components/AppIcon/AppIcon.js";
5
5
  import { default as default6 } from "./components/Attachment/Attachment.js";
6
- import { default as default7 } from "./components/Avatar/Avatar.js";
7
- import { default as default8 } from "./components/AvatarGroup/AvatarGroup.js";
8
- import { default as default9 } from "./components/Badge/Badge.js";
9
- import { default as default10 } from "./components/Breadcrumb/Breadcrumb.js";
10
- import { default as default11 } from "./components/Button/Button.js";
11
- import { default as default12 } from "./components/Button/IconButton.js";
12
- import { default as default13 } from "./components/Button/SearchButton.js";
13
- import { default as default14 } from "./components/Card/Card.js";
14
- import { default as default15 } from "./components/Checkbox/Checkbox.js";
15
- import { default as default16 } from "./components/ColorPicker/ColorPicker.js";
16
- import { default as default17 } from "./components/ColorPicker/ColorPickerItem.js";
17
- import { default as default18 } from "./components/Combobox/Combobox.js";
18
- import { default as default19 } from "./components/DatePicker/DatePicker.js";
19
- import { default as default20 } from "./components/Divider/Divider.js";
20
- import { default as default21 } from "./components/Dropdown/Dropdown.js";
21
- import { default as default22 } from "./components/Dropzone/Dropzone.js";
22
- import { default as default23 } from "./components/EmptyScreen/EmptyScreen.js";
23
- import { default as default24 } from "./components/Flex/Flex.js";
24
- import { default as default25 } from "./components/Form/FormText.js";
25
- import { default as default26 } from "./components/Form/FormControl.js";
26
- import { default as default27 } from "./components/Heading/Heading.js";
27
- import { default as default28 } from "./components/Image/Image.js";
28
- import { default as default29 } from "./components/Input/Input.js";
29
- import { default as default30 } from "./components/Label/Label.js";
30
- import { default as default31 } from "./components/Loading/Loading.js";
31
- import { default as default32 } from "./components/LoadingScreen/LoadingScreen.js";
32
- import { default as default33 } from "./components/Logo/Logo.js";
33
- import { default as default34 } from "./components/MediaViewer/MediaViewer.js";
34
- import { default as default35 } from "./components/Modal/Modal.js";
35
- import { default as default36 } from "./components/PreventPropagation/PreventPropagation.js";
36
- import { default as default37 } from "./components/Radio/Radio.js";
37
- import { default as default38 } from "./components/RadioCard/RadioCard.js";
38
- import { default as default39 } from "./components/SearchBar/SearchBar.js";
39
- import { default as default40 } from "./components/SegmentedControl/SegmentedControl.js";
40
- import { default as default41 } from "./components/Select/Select.js";
41
- import { default as default42 } from "./components/Skeleton/ButtonSkeleton.js";
42
- import { default as default43 } from "./components/Skeleton/TextSkeleton.js";
43
- import { default as default44 } from "./components/StackedGroup/StackedGroup.js";
44
- import { default as default45 } from "./components/Stepper/Stepper.js";
45
- import { default as default46 } from "./components/Switch/Switch.js";
46
- import { default as default47 } from "./components/Table/components/Table.js";
47
- import { default as default48 } from "./components/TextArea/TextArea.js";
48
- import { default as default49 } from "./components/Tooltip/Tooltip.js";
6
+ import { default as default7 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
7
+ import { default as default8 } from "./components/Avatar/Avatar.js";
8
+ import { default as default9 } from "./components/AvatarGroup/AvatarGroup.js";
9
+ import { default as default10 } from "./components/Badge/Badge.js";
10
+ import { default as default11 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
11
+ import { default as default12 } from "./components/Breadcrumb/Breadcrumb.js";
12
+ import { default as default13 } from "./components/Button/Button.js";
13
+ import { default as default14 } from "./components/Skeleton/ButtonSkeleton.js";
14
+ import { default as default15 } from "./components/Card/Card.js";
15
+ import { default as default16 } from "./components/Checkbox/Checkbox.js";
16
+ import { default as default17 } from "./components/ColorPicker/ColorPicker.js";
17
+ import { default as default18 } from "./components/ColorPicker/ColorPickerItem.js";
18
+ import { default as default19 } from "./components/Combobox/Combobox.js";
19
+ import { default as default20 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
20
+ import { default as default21 } from "./components/DatePicker/DatePicker.js";
21
+ import { default as default22 } from "./components/Divider/Divider.js";
49
22
  import { DndTree } from "./components/Tree/components/DndTree.js";
50
- import { default as default50 } from "./components/Tree/components/SortableTree.js";
51
- import { default as default51 } from "./components/Tree/components/Tree.js";
52
- import { default as default52 } from "./components/TreeView/TreeView.js";
53
- import { default as default53 } from "./components/VisuallyHidden/VisuallyHidden.js";
54
- import { default as default54 } from "./hooks/useBookmark/useBookmark.js";
55
- import { default as default55 } from "./hooks/useBreakpoint/useBreakpoint.js";
56
- import { default as default56 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
57
- import { default as default57 } from "./hooks/useCantoo/useCantoo.js";
58
- import { default as default58 } from "./hooks/useClickOutside/useClickOutside.js";
59
- import { default as default59 } from "./hooks/useConversation/useConversation.js";
60
- import { default as default60 } from "./hooks/useDate/useDate.js";
61
- import { default as default61 } from "./hooks/useDebounce/useDebounce.js";
62
- import { default as default62 } from "./hooks/useDirectory/useDirectory.js";
63
- import { default as default63 } from "./hooks/useDropdown/useDropdown.js";
64
- import { default as default64 } from "./hooks/useDropzone/useDropzone.js";
65
- import { default as default65 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
66
- import { default as default66 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
67
- import { default as default67 } from "./hooks/useHover/useHover.js";
68
- import { useHttpErrorToast } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
69
- import { default as default68 } from "./hooks/useImage/useImage.js";
70
- import { default as default69 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
71
- import { default as default70 } from "./hooks/useIsAdml/useIsAdml.js";
72
- import { default as default71 } from "./hooks/useIsAdmc/useIsAdmc.js";
73
- import { default as default72 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
74
- import { default as default73 } from "./hooks/useKeyPress/useKeyPress.js";
75
- import { default as default74 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
76
- import { default as default75 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
77
- import { default as default76 } from "./hooks/useScrollToTop/useScrollToTop.js";
78
- import { default as default77 } from "./hooks/useTitle/useTitle.js";
79
- import { default as default78 } from "./hooks/useToast/useToast.js";
80
- import { default as default79 } from "./hooks/useToggle/useToggle.js";
81
- import { default as default80 } from "./hooks/useTrapFocus/useTrapFocus.js";
82
- import { default as default81 } from "./hooks/useTrashedResource/useTrashedResource.js";
83
- import { default as default82 } from "./hooks/useUpload/useUpload.js";
84
- import { default as default83 } from "./hooks/useUploadFiles/useUploadFiles.js";
85
- import { default as default84 } from "./hooks/useUser/useUser.js";
86
- import { default as default85 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
87
- import { default as default86 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
88
- import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default87 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
89
- import { default as default88 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
90
- import { default as default89 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
91
- import { default as default90 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
92
- import { default as default91 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
93
- import { default as default92 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
94
- import { default as default93 } from "./modules/modals/PublishModal/PublishModal.js";
95
- import { default as default94 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
96
- import { default as default95 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
97
- import { default as default96 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
98
- import { default as default97 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
99
- import { default as default98 } from "./modules/modals/ShareModal/ShareModal.js";
100
- import { default as default99 } from "./modules/modals/ShareModal/ShareResources.js";
101
- import { default as default100 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
102
- import { default as default101 } from "./modules/multimedia/Embed/Embed.js";
103
- import { default as default102 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
104
- import { default as default103 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
105
- import { default as default104 } from "./modules/multimedia/FileCard/FileCard.js";
106
- import { default as default105 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
107
- import { default as default106 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
108
- import { default as default107 } from "./modules/multimedia/UploadCard/UploadCard.js";
109
- import { default as default108 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
110
- import { default as default109 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
111
- import { default as default110 } from "./modules/multimedia/Workspace/Workspace.js";
112
- import { default as default111 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
23
+ import { default as default23 } from "./components/Dropdown/Dropdown.js";
24
+ import { default as default24 } from "./components/Dropzone/Dropzone.js";
25
+ import { default as default25 } from "./modules/multimedia/Embed/Embed.js";
26
+ import { default as default26 } from "./components/EmptyScreen/EmptyScreen.js";
27
+ import { default as default27 } from "./modules/multimedia/FileCard/FileCard.js";
28
+ import { default as default28 } from "./components/Flex/Flex.js";
29
+ import { default as default29 } from "./components/Form/FormControl.js";
30
+ import { default as default30 } from "./components/Form/FormText.js";
31
+ import { default as default31 } from "./components/Heading/Heading.js";
32
+ import { default as default32 } from "./components/Button/IconButton.js";
33
+ import { default as default33 } from "./components/Image/Image.js";
34
+ import { default as default34 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
35
+ import { default as default35 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
36
+ import { default as default36 } from "./components/Input/Input.js";
37
+ import { default as default37 } from "./components/Label/Label.js";
38
+ import { default as default38 } from "./components/Loading/Loading.js";
39
+ import { default as default39 } from "./components/LoadingScreen/LoadingScreen.js";
40
+ import { default as default40 } from "./components/Logo/Logo.js";
41
+ import { default as default41 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
42
+ import { default as default42 } from "./components/MediaViewer/MediaViewer.js";
43
+ import { default as default43 } from "./components/Modal/Modal.js";
44
+ import { default as default44 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
45
+ import { default as default45 } from "./components/PreventPropagation/PreventPropagation.js";
46
+ import { default as default46, Root } from "./components/PromotionCard/PromotionCard.js";
47
+ import { default as default47 } from "./modules/modals/PublishModal/PublishModal.js";
48
+ import { default as default48 } from "./components/Radio/Radio.js";
49
+ import { default as default49 } from "./components/RadioCard/RadioCard.js";
50
+ import { default as default50 } from "./components/SearchBar/SearchBar.js";
51
+ import { default as default51 } from "./components/Button/SearchButton.js";
52
+ import { default as default52 } from "./components/SegmentedControl/SegmentedControl.js";
53
+ import { default as default53 } from "./components/Select/Select.js";
54
+ import { default as default54 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
55
+ import { default as default55 } from "./modules/modals/ShareModal/ShareModal.js";
56
+ import { default as default56 } from "./modules/modals/ShareModal/ShareResources.js";
57
+ import { default as default57 } from "./components/Tree/components/SortableTree.js";
58
+ import { default as default58 } from "./components/StackedGroup/StackedGroup.js";
59
+ import { default as default59 } from "./components/Stepper/Stepper.js";
60
+ import { default as default60 } from "./components/Switch/Switch.js";
61
+ import { default as default61 } from "./components/Table/components/Table.js";
62
+ import { default as default62 } from "./components/TextArea/TextArea.js";
63
+ import { default as default63 } from "./components/Skeleton/TextSkeleton.js";
64
+ import { default as default64 } from "./components/Tooltip/Tooltip.js";
65
+ import { default as default65 } from "./components/Tree/components/Tree.js";
66
+ import { default as default66 } from "./components/TreeView/TreeView.js";
67
+ import { default as default67 } from "./modules/multimedia/UploadCard/UploadCard.js";
68
+ import { default as default68 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
69
+ import { default as default69 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
70
+ import { default as default70 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
71
+ import { default as default71 } from "./components/VisuallyHidden/VisuallyHidden.js";
72
+ import { default as default72 } from "./modules/multimedia/Workspace/Workspace.js";
73
+ import { default as default73 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
74
+ import { default as default74 } from "./hooks/useBookmark/useBookmark.js";
75
+ import { default as default75 } from "./hooks/useBreakpoint/useBreakpoint.js";
76
+ import { default as default76 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
77
+ import { default as default77 } from "./hooks/useCantoo/useCantoo.js";
78
+ import { default as default78 } from "./hooks/useClickOutside/useClickOutside.js";
79
+ import { default as default79 } from "./hooks/useConversation/useConversation.js";
80
+ import { default as default80 } from "./hooks/useDate/useDate.js";
81
+ import { default as default81 } from "./hooks/useDebounce/useDebounce.js";
82
+ import { default as default82 } from "./hooks/useDirectory/useDirectory.js";
83
+ import { default as default83 } from "./hooks/useDropdown/useDropdown.js";
84
+ import { default as default84 } from "./hooks/useDropzone/useDropzone.js";
85
+ import { default as default85 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
86
+ import { default as default86 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
87
+ import { default as default87 } from "./hooks/useHover/useHover.js";
88
+ import { default as default88 } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
89
+ import { default as default89 } from "./hooks/useImage/useImage.js";
90
+ import { default as default90 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
91
+ import { default as default91 } from "./hooks/useIsAdmc/useIsAdmc.js";
92
+ import { default as default92 } from "./hooks/useIsAdml/useIsAdml.js";
93
+ import { default as default93 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
94
+ import { default as default94 } from "./hooks/useKeyPress/useKeyPress.js";
95
+ import { default as default95 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
96
+ import { default as default96 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
97
+ import { default as default97 } from "./hooks/useScrollToTop/useScrollToTop.js";
98
+ import { default as default98 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
99
+ import { default as default99 } from "./hooks/useTitle/useTitle.js";
100
+ import { default as default100 } from "./hooks/useToast/useToast.js";
101
+ import { default as default101 } from "./hooks/useToggle/useToggle.js";
102
+ import { default as default102 } from "./hooks/useTrapFocus/useTrapFocus.js";
103
+ import { default as default103 } from "./hooks/useTrashedResource/useTrashedResource.js";
104
+ import { default as default104 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
105
+ import { default as default105 } from "./hooks/useUpload/useUpload.js";
106
+ import { default as default106 } from "./hooks/useUploadFiles/useUploadFiles.js";
107
+ import { default as default107 } from "./hooks/useUser/useUser.js";
108
+ import { default as default108 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
109
+ import { default as default109 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
110
+ import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default110 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
111
+ import { default as default111 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
112
+ import { default as default112 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
113
+ import { default as default113 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
113
114
  import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
114
- import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
115
+ import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
115
116
  import { Column, Grid } from "./components/Grid/Grid.js";
117
+ import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
118
+ import { EdificeClientContext } from "./providers/EdificeClientProvider/EdificeClientProvider.context.js";
119
+ import { EdificeClientProvider } from "./providers/EdificeClientProvider/EdificeClientProvider.js";
120
+ import { EdificeThemeContext } from "./providers/EdificeThemeProvider/EdificeThemeProvider.context.js";
121
+ import { EdificeThemeProvider } from "./providers/EdificeThemeProvider/EdificeThemeProvider.js";
122
+ import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
123
+ import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
116
124
  import { Layout } from "./components/Layout/Layout.js";
117
125
  import { List } from "./components/List/List.js";
118
126
  import { Menu } from "./components/Menu/components/Menu.js";
127
+ import { MockedProvider } from "./providers/MockedProvider/MockedProvider.js";
119
128
  import { Popover, PopoverBody, PopoverFooter, PopoverHeader } from "./components/Popover/Popover.js";
129
+ import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
120
130
  import { Tabs } from "./components/Tabs/components/Tabs.js";
121
131
  import { Toolbar } from "./components/Toolbar/Toolbar.js";
122
- import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
123
- import { buildTree, determineNewParentId, findItemIndexInTree, flattenNodes, flattenTree, generateUpdateData, getActiveAndOverNodes, getDragDepth, getIndicesToUpdate, getProjection, updateParentIds } from "./components/Tree/utilities/tree-sortable.js";
124
- import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
125
132
  import { TreeNode } from "./components/TreeView/TreeNode.js";
126
133
  import { TreeNodeFolderWrapper, addNode, arrayUnique, deleteNode, findNodeById, findParentNode, findPathById, findTreeNode, getAncestors, hasChildren, modifyNode, moveNode, updateNode, wrapTreeNode } from "./components/TreeView/utilities/treeview.js";
127
- import { useCheckable } from "./hooks/useCheckable/useCheckable.js";
128
- import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
129
- import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
130
- import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
131
134
  import { Upload } from "./modules/multimedia/MediaLibrary/innertabs/Upload.js";
132
- import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
133
- import { EdificeClientProvider } from "./providers/EdificeClientProvider/EdificeClientProvider.js";
134
- import { EdificeClientContext } from "./providers/EdificeClientProvider/EdificeClientProvider.context.js";
135
- import { useEdificeClient } from "./providers/EdificeClientProvider/EdificeClientProvider.hook.js";
136
- import { EdificeThemeProvider } from "./providers/EdificeThemeProvider/EdificeThemeProvider.js";
137
- import { EdificeThemeContext } from "./providers/EdificeThemeProvider/EdificeThemeProvider.context.js";
138
- import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
139
- import { MockedProvider } from "./providers/MockedProvider/MockedProvider.js";
135
+ import { buildTree, determineNewParentId, findItemIndexInTree, flattenNodes, flattenTree, generateUpdateData, getActiveAndOverNodes, getDragDepth, getIndicesToUpdate, getProjection, updateParentIds } from "./components/Tree/utilities/tree-sortable.js";
140
136
  import { checkUserRight } from "./utilities/check-user-rights/check-user-rights.js";
141
137
  import { emptyScreenMapping } from "./utilities/emptyscreen-mapping/emptyscreen-mapping.js";
142
138
  import { invalidateQueriesWithFirstPage } from "./utilities/react-query/react-query-utils.js";
143
139
  import { mergeRefs, setRef } from "./utilities/refs/ref.js";
140
+ import { useCheckable } from "./hooks/useCheckable/useCheckable.js";
141
+ import { useEdificeClient } from "./providers/EdificeClientProvider/EdificeClientProvider.hook.js";
142
+ import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
143
+ import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
144
+ import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
144
145
  export {
145
146
  AccessiblePalette,
146
147
  default2 as ActionBar,
@@ -149,99 +150,101 @@ export {
149
150
  default4 as AppHeader,
150
151
  default5 as AppIcon,
151
152
  default6 as Attachment,
152
- default100 as AudioRecorder,
153
- default7 as Avatar,
154
- default8 as AvatarGroup,
155
- default9 as Badge,
156
- default94 as BlogPublic,
157
- default10 as Breadcrumb,
158
- default11 as Button,
159
- default42 as ButtonSkeleton,
160
- default14 as Card,
161
- default15 as Checkbox,
162
- default16 as ColorPicker,
163
- default17 as ColorPickerItem,
153
+ default7 as AudioRecorder,
154
+ default8 as Avatar,
155
+ default9 as AvatarGroup,
156
+ default10 as Badge,
157
+ default11 as BlogPublic,
158
+ default12 as Breadcrumb,
159
+ default13 as Button,
160
+ default14 as ButtonSkeleton,
161
+ default15 as Card,
162
+ default16 as Checkbox,
163
+ default17 as ColorPicker,
164
+ default18 as ColorPickerItem,
164
165
  Column,
165
- default18 as Combobox,
166
- default91 as ConfirmModal,
167
- default19 as DatePicker,
166
+ default19 as Combobox,
167
+ default20 as ConfirmModal,
168
+ default21 as DatePicker,
168
169
  DefaultPalette,
169
- default20 as Divider,
170
+ default22 as Divider,
170
171
  DndTree,
171
- default21 as Dropdown,
172
- default22 as Dropzone,
172
+ default23 as Dropdown,
173
+ default24 as Dropzone,
173
174
  DropzoneContext,
174
175
  EdificeClientContext,
175
176
  EdificeClientProvider,
176
177
  EdificeThemeContext,
177
178
  EdificeThemeProvider,
178
- default101 as Embed,
179
- default23 as EmptyScreen,
179
+ default25 as Embed,
180
+ default26 as EmptyScreen,
180
181
  ExternalLinker,
181
- default104 as FileCard,
182
- default24 as Flex,
183
- default26 as FormControl,
184
- default25 as FormText,
182
+ default27 as FileCard,
183
+ default28 as Flex,
184
+ default29 as FormControl,
185
+ default30 as FormText,
185
186
  Grid,
186
- default27 as Heading,
187
- default12 as IconButton,
188
- default28 as Image,
189
- default102 as ImageEditor,
190
- default103 as ImagePicker,
191
- default29 as Input,
187
+ default31 as Heading,
188
+ default32 as IconButton,
189
+ default33 as Image,
190
+ default34 as ImageEditor,
191
+ default35 as ImagePicker,
192
+ default36 as Input,
192
193
  InternalLinker,
193
- default30 as Label,
194
+ default37 as Label,
194
195
  Layout,
195
196
  List,
196
- default31 as Loading,
197
- default32 as LoadingScreen,
198
- default33 as Logo,
199
- default105 as MediaLibrary,
200
- default34 as MediaViewer,
197
+ default38 as Loading,
198
+ default39 as LoadingScreen,
199
+ default40 as Logo,
200
+ default41 as MediaLibrary,
201
+ default42 as MediaViewer,
201
202
  Menu,
202
203
  MockedProvider,
203
- default35 as Modal,
204
- default92 as OnboardingModal,
204
+ default43 as Modal,
205
+ default44 as OnboardingModal,
205
206
  Popover,
206
207
  PopoverBody,
207
208
  PopoverFooter,
208
209
  PopoverHeader,
209
- default36 as PreventPropagation,
210
- default93 as PublishModal,
211
- default37 as Radio,
212
- default38 as RadioCard,
210
+ default45 as PreventPropagation,
211
+ default46 as PromotionCard,
212
+ default47 as PublishModal,
213
+ default48 as Radio,
214
+ default49 as RadioCard,
213
215
  ResourceModal,
214
- default39 as SearchBar,
215
- default13 as SearchButton,
216
- default40 as SegmentedControl,
217
- default41 as Select,
218
- default96 as ShareBlog,
219
- default98 as ShareModal,
220
- default99 as ShareResources,
221
- default50 as SortableTree,
222
- default44 as StackedGroup,
223
- default45 as Stepper,
224
- default46 as Switch,
225
- default47 as Table,
216
+ Root,
217
+ default50 as SearchBar,
218
+ default51 as SearchButton,
219
+ default52 as SegmentedControl,
220
+ default53 as Select,
221
+ default54 as ShareBlog,
222
+ default55 as ShareModal,
223
+ default56 as ShareResources,
224
+ default57 as SortableTree,
225
+ default58 as StackedGroup,
226
+ default59 as Stepper,
227
+ default60 as Switch,
228
+ default61 as Table,
226
229
  Tabs,
227
- default48 as TextArea,
228
- default43 as TextSkeleton,
230
+ default62 as TextArea,
231
+ default63 as TextSkeleton,
229
232
  Toolbar,
230
- default49 as Tooltip,
231
- default51 as Tree,
233
+ default64 as Tooltip,
234
+ default65 as Tree,
232
235
  TreeNode,
233
236
  TreeNodeFolderWrapper,
234
- default52 as TreeView,
237
+ default66 as TreeView,
235
238
  Upload,
236
- default107 as UploadCard,
237
- default106 as UploadFiles,
238
- default108 as VideoEmbed,
239
- default109 as VideoRecorder,
240
- default53 as VisuallyHidden,
239
+ default67 as UploadCard,
240
+ default68 as UploadFiles,
241
+ default69 as VideoEmbed,
242
+ default70 as VideoRecorder,
243
+ default71 as VisuallyHidden,
241
244
  WORKSPACE_SHARED_FOLDER_ID,
242
245
  WORKSPACE_USER_FOLDER_ID,
243
- default110 as Workspace,
244
- default111 as WorkspaceFolders,
246
+ default72 as Workspace,
247
+ default73 as WorkspaceFolders,
245
248
  addNode,
246
249
  arrayUnique,
247
250
  buildTree,
@@ -270,51 +273,51 @@ export {
270
273
  setRef,
271
274
  updateNode,
272
275
  updateParentIds,
273
- default54 as useBookmark,
274
- default55 as useBreakpoint,
275
- default56 as useBrowserInfo,
276
- default57 as useCantoo,
276
+ default74 as useBookmark,
277
+ default75 as useBreakpoint,
278
+ default76 as useBrowserInfo,
279
+ default77 as useCantoo,
277
280
  useCheckable,
278
- default58 as useClickOutside,
279
- default59 as useConversation,
280
- default60 as useDate,
281
- default61 as useDebounce,
282
- default62 as useDirectory,
283
- default63 as useDropdown,
284
- default64 as useDropzone,
281
+ default78 as useClickOutside,
282
+ default79 as useConversation,
283
+ default80 as useDate,
284
+ default81 as useDebounce,
285
+ default82 as useDirectory,
286
+ default83 as useDropdown,
287
+ default84 as useDropzone,
285
288
  useDropzoneContext,
286
289
  useEdificeClient,
287
- default65 as useEdificeIcons,
290
+ default85 as useEdificeIcons,
288
291
  useEdificeTheme,
289
- default66 as useHasWorkflow,
290
- default67 as useHover,
291
- useHttpErrorToast,
292
- default68 as useImage,
293
- default69 as useInfiniteScroll,
294
- default71 as useIsAdmc,
295
- default70 as useIsAdml,
296
- default72 as useIsAdmlcOrAdmc,
297
- default73 as useKeyPress,
298
- default74 as useLibraryUrl,
299
- default75 as useMediaLibrary,
300
- default76 as useScrollToTop,
301
- default97 as useShareMutation,
302
- default77 as useTitle,
303
- default78 as useToast,
304
- default79 as useToggle,
305
- default80 as useTrapFocus,
306
- default81 as useTrashedResource,
292
+ default86 as useHasWorkflow,
293
+ default87 as useHover,
294
+ default88 as useHttpErrorToast,
295
+ default89 as useImage,
296
+ default90 as useInfiniteScroll,
297
+ default91 as useIsAdmc,
298
+ default92 as useIsAdml,
299
+ default93 as useIsAdmlcOrAdmc,
300
+ default94 as useKeyPress,
301
+ default95 as useLibraryUrl,
302
+ default96 as useMediaLibrary,
303
+ default97 as useScrollToTop,
304
+ default98 as useShareMutation,
305
+ default99 as useTitle,
306
+ default100 as useToast,
307
+ default101 as useToggle,
308
+ default102 as useTrapFocus,
309
+ default103 as useTrashedResource,
307
310
  useTreeSortable,
308
311
  useTreeView,
309
- default95 as useUpdateMutation,
310
- default82 as useUpload,
311
- default83 as useUploadFiles,
312
- default84 as useUser,
313
- default85 as useWorkspaceFile,
314
- default86 as useWorkspaceFolders,
315
- default87 as useWorkspaceFoldersTree,
316
- default88 as useWorkspaceSearch,
317
- default89 as useXitiTrackPageLoad,
318
- default90 as useZendeskGuide,
312
+ default104 as useUpdateMutation,
313
+ default105 as useUpload,
314
+ default106 as useUploadFiles,
315
+ default107 as useUser,
316
+ default108 as useWorkspaceFile,
317
+ default109 as useWorkspaceFolders,
318
+ default110 as useWorkspaceFoldersTree,
319
+ default111 as useWorkspaceSearch,
320
+ default112 as useXitiTrackPageLoad,
321
+ default113 as useZendeskGuide,
319
322
  wrapTreeNode
320
323
  };
package/dist/modals.js CHANGED
@@ -1,22 +1,22 @@
1
- import { default as default2 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
2
- import { default as default3 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
3
- import { default as default4 } from "./modules/modals/PublishModal/PublishModal.js";
4
- import { default as default5 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
5
- import { default as default6 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
6
- import { default as default7 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
7
- import { default as default8 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
8
- import { default as default9 } from "./modules/modals/ShareModal/ShareModal.js";
9
- import { default as default10 } from "./modules/modals/ShareModal/ShareResources.js";
1
+ import { default as default2 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
2
+ import { default as default3 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
3
+ import { default as default4 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
4
+ import { default as default5 } from "./modules/modals/PublishModal/PublishModal.js";
5
+ import { default as default6 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
6
+ import { default as default7 } from "./modules/modals/ShareModal/ShareModal.js";
7
+ import { default as default8 } from "./modules/modals/ShareModal/ShareResources.js";
8
+ import { default as default9 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
9
+ import { default as default10 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
10
10
  import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
11
11
  export {
12
- default5 as BlogPublic,
13
- default2 as ConfirmModal,
14
- default3 as OnboardingModal,
15
- default4 as PublishModal,
12
+ default2 as BlogPublic,
13
+ default3 as ConfirmModal,
14
+ default4 as OnboardingModal,
15
+ default5 as PublishModal,
16
16
  ResourceModal,
17
- default7 as ShareBlog,
18
- default9 as ShareModal,
19
- default10 as ShareResources,
20
- default8 as useShareMutation,
21
- default6 as useUpdateMutation
17
+ default6 as ShareBlog,
18
+ default7 as ShareModal,
19
+ default8 as ShareResources,
20
+ default9 as useShareMutation,
21
+ default10 as useUpdateMutation
22
22
  };
@@ -27,16 +27,16 @@ import { useTranslation } from "react-i18next";
27
27
  import { useEdificeClient } from "../../../providers/EdificeClientProvider/EdificeClientProvider.hook.js";
28
28
  import useUpload from "../../../hooks/useUpload/useUpload.js";
29
29
  import IframeNodeView from "../components/NodeView/IframeNodeView.js";
30
+ import MediaRenderer from "../components/Renderer/MediaRenderer.js";
30
31
  import VideoNodeView from "../components/NodeView/VideoNodeView.js";
31
32
  import AudioNodeView from "../components/NodeView/AudioNodeView.js";
33
+ import AudioRenderer from "../components/Renderer/AudioRenderer.js";
32
34
  import LinkerNodeView from "../components/NodeView/LinkerNodeView.js";
35
+ import LinkerRenderer from "../components/Renderer/LinkerRenderer.js";
33
36
  import ImageNodeView from "../components/NodeView/ImageNodeView.js";
34
37
  import AttachmentNodeView from "../components/NodeView/AttachmentNodeView.js";
35
- import InformationPaneNodeView from "../components/NodeView/InformationPaneNodeView.js";
36
- import MediaRenderer from "../components/Renderer/MediaRenderer.js";
37
- import AudioRenderer from "../components/Renderer/AudioRenderer.js";
38
- import LinkerRenderer from "../components/Renderer/LinkerRenderer.js";
39
38
  import AttachmentRenderer from "../components/Renderer/AttachmentRenderer.js";
39
+ import InformationPaneNodeView from "../components/NodeView/InformationPaneNodeView.js";
40
40
  import InformationPaneRenderer from "../components/Renderer/InformationPaneRenderer.js";
41
41
  const useTipTapEditor = (editable, content, focus, placeholder, onContentChange, visibility = "protected", extensions) => {
42
42
  const {
@@ -160,6 +160,5 @@ const DEFAULT_INPUT_MAX_LENGTH = 60, DEFAULT_TEXTAREA_MAX_LENGTH = 400, Resource
160
160
  ] }), document.getElementById("portal"));
161
161
  };
162
162
  export {
163
- ResourceModal,
164
- ResourceModal as default
163
+ ResourceModal
165
164
  };
@@ -41,6 +41,5 @@ const ExternalLinker = ({
41
41
  ] }) });
42
42
  };
43
43
  export {
44
- ExternalLinker,
45
- ExternalLinker as default
44
+ ExternalLinker
46
45
  };
@@ -130,6 +130,5 @@ const InternalLinker = ({
130
130
  ] });
131
131
  };
132
132
  export {
133
- InternalLinker,
134
- InternalLinker as default
133
+ InternalLinker
135
134
  };
@@ -12,7 +12,7 @@ import SvgIconSmartphone from "../../icons/components/IconSmartphone.js";
12
12
  import { InnerTabs } from "./innertabs/index.js";
13
13
  import { MediaLibraryContext } from "./MediaLibraryContext.js";
14
14
  import useHasWorkflow from "../../../hooks/useHasWorkflow/useHasWorkflow.js";
15
- import { useHttpErrorToast } from "../../../hooks/useHttpErrorToast/useHttpErrorToast.js";
15
+ import useHttpErrorToast from "../../../hooks/useHttpErrorToast/useHttpErrorToast.js";
16
16
  import Modal from "../../../components/Modal/Modal.js";
17
17
  import { Tabs } from "../../../components/Tabs/components/Tabs.js";
18
18
  import Button from "../../../components/Button/Button.js";
@@ -1,11 +1,11 @@
1
1
  import { default as default2 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
2
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/ImagePicker/ImagePicker.js";
5
- import { default as default6 } from "./modules/multimedia/FileCard/FileCard.js";
3
+ import { default as default4 } from "./modules/multimedia/FileCard/FileCard.js";
4
+ import { default as default5 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
5
+ import { default as default6 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
6
6
  import { default as default7 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
7
- import { default as default8 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
8
- import { default as default9 } from "./modules/multimedia/UploadCard/UploadCard.js";
7
+ import { default as default8 } from "./modules/multimedia/UploadCard/UploadCard.js";
8
+ import { default as default9 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
9
9
  import { default as default10 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
10
10
  import { default as default11 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
11
11
  import { default as default12 } from "./modules/multimedia/Workspace/Workspace.js";
@@ -17,14 +17,14 @@ export {
17
17
  default2 as AudioRecorder,
18
18
  default3 as Embed,
19
19
  ExternalLinker,
20
- default6 as FileCard,
21
- default4 as ImageEditor,
22
- default5 as ImagePicker,
20
+ default4 as FileCard,
21
+ default5 as ImageEditor,
22
+ default6 as ImagePicker,
23
23
  InternalLinker,
24
24
  default7 as MediaLibrary,
25
25
  Upload,
26
- default9 as UploadCard,
27
- default8 as UploadFiles,
26
+ default8 as UploadCard,
27
+ default9 as UploadFiles,
28
28
  default10 as VideoEmbed,
29
29
  default11 as VideoRecorder,
30
30
  default12 as Workspace,
@@ -5,6 +5,5 @@ const antTheme = {
5
5
  hashed: !1
6
6
  };
7
7
  export {
8
- antTheme,
9
- antTheme as default
8
+ antTheme
10
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/react",
3
- "version": "2.5.5-develop-pedago.20260121100338",
3
+ "version": "2.5.5-develop-pedago.20260122115953",
4
4
  "description": "Edifice React Library",
5
5
  "keywords": [
6
6
  "react",
@@ -135,9 +135,9 @@
135
135
  "swiper": "^10.1.0",
136
136
  "ua-parser-js": "^1.0.36",
137
137
  "react-pdf": "10.2.0",
138
- "@edifice.io/tiptap-extensions": "2.5.5-develop-pedago.20260121100338",
139
- "@edifice.io/utilities": "2.5.5-develop-pedago.20260121100338",
140
- "@edifice.io/bootstrap": "2.5.5-develop-pedago.20260121100338"
138
+ "@edifice.io/bootstrap": "2.5.5-develop-pedago.20260122115953",
139
+ "@edifice.io/tiptap-extensions": "2.5.5-develop-pedago.20260122115953",
140
+ "@edifice.io/utilities": "2.5.5-develop-pedago.20260122115953"
141
141
  },
142
142
  "devDependencies": {
143
143
  "@babel/plugin-transform-react-pure-annotations": "^7.23.3",
@@ -168,8 +168,8 @@
168
168
  "vite": "^5.4.11",
169
169
  "vite-plugin-dts": "^4.1.0",
170
170
  "vite-tsconfig-paths": "^5.0.1",
171
- "@edifice.io/client": "2.5.5-develop-pedago.20260121100338",
172
- "@edifice.io/config": "2.5.5-develop-pedago.20260121100338"
171
+ "@edifice.io/client": "2.5.5-develop-pedago.20260122115953",
172
+ "@edifice.io/config": "2.5.5-develop-pedago.20260122115953"
173
173
  },
174
174
  "peerDependencies": {
175
175
  "@react-spring/web": "^9.7.5",