@edifice.io/react 2.5.3-develop-integration.20260115153729 → 2.5.3-develop-integration.20260130101842
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/dist/components/Dropdown/DropdownContext.js +1 -1
- package/dist/components/Form/FormContext.js +1 -1
- package/dist/components/Layout/Layout.js +1 -2
- package/dist/components/Layout/components/Header.js +11 -2
- package/dist/components/Toolbar/Toolbar.js +1 -1
- package/dist/editor.js +36 -36
- package/dist/hooks/useDropdown/useDropdown.js +1 -1
- package/dist/index.js +212 -212
- package/dist/modals.js +14 -14
- package/dist/modules/editor/hooks/useTipTapEditor.js +4 -4
- package/dist/modules/modals/ResourceModal/ResourceModal.js +1 -2
- package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +1 -2
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +1 -2
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +1 -1
- package/dist/multimedia.js +6 -6
- package/dist/providers/AntThemeProvider/antThemeConfig.js +1 -2
- package/package.json +6 -6
|
@@ -93,7 +93,7 @@ const Header = ({
|
|
|
93
93
|
}, className: "position-absolute", children: messages }),
|
|
94
94
|
/* @__PURE__ */ jsx(VisuallyHidden, { children: t("navbar.messages") })
|
|
95
95
|
] }) }),
|
|
96
|
-
hasCarbonioPreauthWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("a", { href: "/auth/carbonio/preauth", className: "nav-link", children: [
|
|
96
|
+
hasCarbonioPreauthWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("a", { href: "/auth/carbonio/preauth", target: "_blank", className: "nav-link", children: [
|
|
97
97
|
/* @__PURE__ */ jsx(SvgIconOneMessaging, { className: "icon notification" }),
|
|
98
98
|
/* @__PURE__ */ jsx(VisuallyHidden, { children: t("navbar.messages") })
|
|
99
99
|
] }) }),
|
|
@@ -157,7 +157,16 @@ const Header = ({
|
|
|
157
157
|
level: "warning"
|
|
158
158
|
}, className: "position-absolute", children: messages })
|
|
159
159
|
] }) }),
|
|
160
|
-
hasCarbonioPreauthWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsx(
|
|
160
|
+
hasCarbonioPreauthWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsx(
|
|
161
|
+
NavLink,
|
|
162
|
+
{
|
|
163
|
+
className: "position-relative",
|
|
164
|
+
link: "/auth/carbonio/preauth",
|
|
165
|
+
translate: t("conversation"),
|
|
166
|
+
target: "_blank",
|
|
167
|
+
children: /* @__PURE__ */ jsx(SvgIconNeoMessaging, { color: "#fff" })
|
|
168
|
+
}
|
|
169
|
+
) }),
|
|
161
170
|
currentLanguage === "fr" && hasOldHelpEnableWorkflow ? /* @__PURE__ */ jsxs(NavItem, { children: [
|
|
162
171
|
/* @__PURE__ */ jsxs("button", { className: "nav-link btn btn-naked", onClick: () => {
|
|
163
172
|
setIsHelpOpen(!0);
|
|
@@ -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",
|
package/dist/editor.js
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
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/
|
|
4
|
-
import { default as default4 } from "./modules/editor/components/
|
|
5
|
-
import { default as default5 } from "./modules/editor/components/
|
|
6
|
-
import { default as default6 } from "./modules/editor/components/
|
|
7
|
-
import { default as default7 } from "./modules/editor/components/
|
|
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
|
+
import { default as default7 } from "./modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js";
|
|
8
8
|
import { default as default8 } from "./modules/editor/components/NodeView/ConversationHistoryNodeView.js";
|
|
9
|
-
import { default as default9 } from "./modules/editor/components/
|
|
10
|
-
import { default as default10 } from "./modules/editor/components/
|
|
11
|
-
import { default as default11 } from "./modules/editor/components/
|
|
12
|
-
import { default as default12 } from "./modules/editor/components/NodeView/
|
|
13
|
-
import { default as default13 } from "./modules/editor/components/NodeView/
|
|
14
|
-
import { default as default14 } from "./modules/editor/components/
|
|
15
|
-
import { default as default15 } from "./modules/editor/components/Renderer/
|
|
16
|
-
import { default as default16 } from "./modules/editor/components/
|
|
17
|
-
import { default as default17 } from "./modules/editor/components/
|
|
18
|
-
import { default as default18 } from "./modules/editor/components/Renderer/
|
|
19
|
-
import { default as default19 } from "./modules/editor/components/Renderer/
|
|
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/EditorSkeleton.js";
|
|
12
|
+
import { default as default12 } from "./modules/editor/components/NodeView/IframeNodeView.js";
|
|
13
|
+
import { default as default13 } from "./modules/editor/components/NodeView/ImageNodeView.js";
|
|
14
|
+
import { default as default14 } from "./modules/editor/components/NodeView/InformationPaneNodeView.js";
|
|
15
|
+
import { default as default15 } from "./modules/editor/components/Renderer/InformationPaneRenderer.js";
|
|
16
|
+
import { default as default16 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
17
|
+
import { default as default17 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
|
|
18
|
+
import { default as default18 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
|
|
19
|
+
import { default as default19 } from "./modules/editor/components/Renderer/MediaRenderer.js";
|
|
20
20
|
import { default as default20 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
21
|
-
import { default as default21 } from "./modules/editor/components/
|
|
21
|
+
import { default as default21 } from "./modules/editor/components/NodeView/VideoNodeView.js";
|
|
22
|
+
import { EditorContext, useEditorContext } from "./modules/editor/hooks/useEditorContext.js";
|
|
22
23
|
import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
|
|
23
24
|
import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
|
|
25
|
+
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
24
26
|
import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
|
|
25
|
-
import { EditorContext, useEditorContext } from "./modules/editor/hooks/useEditorContext.js";
|
|
26
27
|
import { useImageModal } from "./modules/editor/hooks/useImageModal.js";
|
|
27
28
|
import { useImageSelection } from "./modules/editor/hooks/useImageSelection.js";
|
|
28
29
|
import { useLinkToolbar } from "./modules/editor/hooks/useLinkToolbar.js";
|
|
@@ -32,32 +33,31 @@ import { useResizeMedia } from "./modules/editor/hooks/useResizeMedia.js";
|
|
|
32
33
|
import { useSpeechRecognition } from "./modules/editor/hooks/useSpeechRecognition.js";
|
|
33
34
|
import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisis.js";
|
|
34
35
|
import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
35
|
-
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
36
36
|
export {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
default3 as AttachmentNodeView,
|
|
38
|
+
default4 as AttachmentRenderer,
|
|
39
|
+
default5 as AudioNodeView,
|
|
40
|
+
default6 as AudioRenderer,
|
|
41
|
+
default7 as BubbleMenuEditImage,
|
|
42
42
|
default8 as ConversationHistoryNodeView,
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
default9 as ConversationHistoryRenderer,
|
|
44
|
+
default10 as Editor,
|
|
45
45
|
EditorContent,
|
|
46
46
|
EditorContext,
|
|
47
47
|
Editor as EditorInstance,
|
|
48
|
-
|
|
48
|
+
default11 as EditorSkeleton,
|
|
49
49
|
EditorToolbar,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
50
|
+
default12 as IframeNodeView,
|
|
51
|
+
default13 as ImageNodeView,
|
|
52
|
+
default14 as InformationPaneNodeView,
|
|
53
|
+
default15 as InformationPaneRenderer,
|
|
54
|
+
default16 as LinkToolbar,
|
|
55
|
+
default17 as LinkerNodeView,
|
|
56
|
+
default18 as LinkerRenderer,
|
|
57
|
+
default19 as MediaRenderer,
|
|
58
58
|
default2 as StarterKit,
|
|
59
59
|
default20 as TableToolbar,
|
|
60
|
-
|
|
60
|
+
default21 as VideoNodeView,
|
|
61
61
|
useActionOptions,
|
|
62
62
|
useCantooEditor,
|
|
63
63
|
useCommentEditor,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useId, useState, useRef, useEffect, useCallback } from "react";
|
|
2
|
-
import { useFloating, offset, size, flip,
|
|
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,134 +3,134 @@ 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 "./
|
|
7
|
-
import { default as default8 } from "./components/
|
|
8
|
-
import { default as default9 } from "./components/
|
|
9
|
-
import { default as default10 } from "./components/
|
|
10
|
-
import { default as default11 } from "./
|
|
11
|
-
import { default as default12 } from "./components/
|
|
12
|
-
import { default as default13 } from "./components/Button/
|
|
13
|
-
import { default as default14 } from "./components/
|
|
14
|
-
import { default as default15 } from "./components/
|
|
15
|
-
import { default as default16 } from "./components/
|
|
16
|
-
import { default as default17 } from "./components/ColorPicker/
|
|
17
|
-
import { default as default18 } from "./components/
|
|
18
|
-
import { default as default19 } from "./components/
|
|
19
|
-
import { default as default20 } from "./
|
|
20
|
-
import { default as default21 } from "./components/EmptyScreen/EmptyScreen.js";
|
|
21
|
-
import { default as default22 } from "./components/Flex/Flex.js";
|
|
22
|
-
import { default as default23 } from "./components/Form/FormText.js";
|
|
23
|
-
import { default as default24 } from "./components/Form/FormControl.js";
|
|
24
|
-
import { default as default25 } from "./components/Heading/Heading.js";
|
|
25
|
-
import { default as default26 } from "./components/Image/Image.js";
|
|
26
|
-
import { default as default27 } from "./components/Input/Input.js";
|
|
27
|
-
import { default as default28 } from "./components/Label/Label.js";
|
|
28
|
-
import { default as default29 } from "./components/Loading/Loading.js";
|
|
29
|
-
import { default as default30 } from "./components/LoadingScreen/LoadingScreen.js";
|
|
30
|
-
import { default as default31 } from "./components/Logo/Logo.js";
|
|
31
|
-
import { default as default32 } from "./components/Modal/Modal.js";
|
|
32
|
-
import { default as default33 } from "./components/PreventPropagation/PreventPropagation.js";
|
|
33
|
-
import { default as default34 } from "./components/Radio/Radio.js";
|
|
34
|
-
import { default as default35 } from "./components/RadioCard/RadioCard.js";
|
|
35
|
-
import { default as default36 } from "./components/SearchBar/SearchBar.js";
|
|
36
|
-
import { default as default37 } from "./components/Select/Select.js";
|
|
37
|
-
import { default as default38 } from "./components/Skeleton/ButtonSkeleton.js";
|
|
38
|
-
import { default as default39 } from "./components/Skeleton/TextSkeleton.js";
|
|
39
|
-
import { default as default40 } from "./components/StackedGroup/StackedGroup.js";
|
|
40
|
-
import { default as default41 } from "./components/Stepper/Stepper.js";
|
|
41
|
-
import { default as default42 } from "./components/Switch/Switch.js";
|
|
42
|
-
import { default as default43 } from "./components/Table/components/Table.js";
|
|
43
|
-
import { default as default44 } from "./components/TextArea/TextArea.js";
|
|
44
|
-
import { default as default45 } 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";
|
|
45
20
|
import { DndTree } from "./components/Tree/components/DndTree.js";
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import {
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import {
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
21
|
+
import { default as default21 } from "./components/Dropdown/Dropdown.js";
|
|
22
|
+
import { default as default22 } from "./components/Dropzone/Dropzone.js";
|
|
23
|
+
import { default as default23 } from "./modules/multimedia/Embed/Embed.js";
|
|
24
|
+
import { default as default24 } from "./components/EmptyScreen/EmptyScreen.js";
|
|
25
|
+
import { default as default25 } from "./modules/multimedia/FileCard/FileCard.js";
|
|
26
|
+
import { default as default26 } from "./components/Flex/Flex.js";
|
|
27
|
+
import { default as default27 } from "./components/Form/FormControl.js";
|
|
28
|
+
import { default as default28 } from "./components/Form/FormText.js";
|
|
29
|
+
import { default as default29 } from "./components/Heading/Heading.js";
|
|
30
|
+
import { default as default30 } from "./components/Button/IconButton.js";
|
|
31
|
+
import { default as default31 } from "./components/Image/Image.js";
|
|
32
|
+
import { default as default32 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
33
|
+
import { default as default33 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
|
|
34
|
+
import { default as default34 } from "./components/Input/Input.js";
|
|
35
|
+
import { default as default35 } from "./components/Label/Label.js";
|
|
36
|
+
import { default as default36 } from "./components/Loading/Loading.js";
|
|
37
|
+
import { default as default37 } from "./components/LoadingScreen/LoadingScreen.js";
|
|
38
|
+
import { default as default38 } from "./components/Logo/Logo.js";
|
|
39
|
+
import { default as default39 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
40
|
+
import { default as default40 } from "./components/Modal/Modal.js";
|
|
41
|
+
import { default as default41 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
|
|
42
|
+
import { default as default42 } from "./components/PreventPropagation/PreventPropagation.js";
|
|
43
|
+
import { default as default43 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
44
|
+
import { default as default44 } from "./components/Radio/Radio.js";
|
|
45
|
+
import { default as default45 } from "./components/RadioCard/RadioCard.js";
|
|
46
|
+
import { default as default46 } from "./components/SearchBar/SearchBar.js";
|
|
47
|
+
import { default as default47 } from "./components/Button/SearchButton.js";
|
|
48
|
+
import { default as default48 } from "./components/Select/Select.js";
|
|
49
|
+
import { default as default49 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
50
|
+
import { default as default50 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
51
|
+
import { default as default51 } from "./components/Tree/components/SortableTree.js";
|
|
52
|
+
import { default as default52 } from "./components/StackedGroup/StackedGroup.js";
|
|
53
|
+
import { default as default53 } from "./components/Stepper/Stepper.js";
|
|
54
|
+
import { default as default54 } from "./components/Switch/Switch.js";
|
|
55
|
+
import { default as default55 } from "./components/Table/components/Table.js";
|
|
56
|
+
import { default as default56 } from "./components/TextArea/TextArea.js";
|
|
57
|
+
import { default as default57 } from "./components/Skeleton/TextSkeleton.js";
|
|
58
|
+
import { default as default58 } from "./components/Tooltip/Tooltip.js";
|
|
59
|
+
import { default as default59 } from "./components/Tree/components/Tree.js";
|
|
60
|
+
import { default as default60 } from "./components/TreeView/TreeView.js";
|
|
61
|
+
import { default as default61 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
62
|
+
import { default as default62 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
63
|
+
import { default as default63 } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
64
|
+
import { default as default64 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
65
|
+
import { default as default65 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
66
|
+
import { default as default66 } from "./hooks/useBookmark/useBookmark.js";
|
|
67
|
+
import { default as default67 } from "./hooks/useBreakpoint/useBreakpoint.js";
|
|
68
|
+
import { default as default68 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
|
|
69
|
+
import { default as default69 } from "./hooks/useCantoo/useCantoo.js";
|
|
70
|
+
import { default as default70 } from "./hooks/useClickOutside/useClickOutside.js";
|
|
71
|
+
import { default as default71 } from "./hooks/useConversation/useConversation.js";
|
|
72
|
+
import { default as default72 } from "./hooks/useDate/useDate.js";
|
|
73
|
+
import { default as default73 } from "./hooks/useDebounce/useDebounce.js";
|
|
74
|
+
import { default as default74 } from "./hooks/useDirectory/useDirectory.js";
|
|
75
|
+
import { default as default75 } from "./hooks/useDropdown/useDropdown.js";
|
|
76
|
+
import { default as default76 } from "./hooks/useDropzone/useDropzone.js";
|
|
77
|
+
import { default as default77 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
|
|
78
|
+
import { default as default78 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
|
|
79
|
+
import { default as default79 } from "./hooks/useHover/useHover.js";
|
|
80
|
+
import { default as default80 } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
|
|
81
|
+
import { default as default81 } from "./hooks/useImage/useImage.js";
|
|
82
|
+
import { default as default82 } from "./hooks/useIsAdmc/useIsAdmc.js";
|
|
83
|
+
import { default as default83 } from "./hooks/useIsAdml/useIsAdml.js";
|
|
84
|
+
import { default as default84 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
|
|
85
|
+
import { default as default85 } from "./hooks/useKeyPress/useKeyPress.js";
|
|
86
|
+
import { default as default86 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
|
|
87
|
+
import { default as default87 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
|
|
88
|
+
import { default as default88 } from "./hooks/useScrollToTop/useScrollToTop.js";
|
|
89
|
+
import { default as default89 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
90
|
+
import { default as default90 } from "./hooks/useTitle/useTitle.js";
|
|
91
|
+
import { default as default91 } from "./hooks/useToast/useToast.js";
|
|
92
|
+
import { default as default92 } from "./hooks/useToggle/useToggle.js";
|
|
93
|
+
import { default as default93 } from "./hooks/useTrapFocus/useTrapFocus.js";
|
|
94
|
+
import { default as default94 } from "./hooks/useTrashedResource/useTrashedResource.js";
|
|
95
|
+
import { default as default95 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
96
|
+
import { default as default96 } from "./hooks/useUpload/useUpload.js";
|
|
97
|
+
import { default as default97 } from "./hooks/useUploadFiles/useUploadFiles.js";
|
|
98
|
+
import { default as default98 } from "./hooks/useUser/useUser.js";
|
|
99
|
+
import { default as default99 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
|
|
100
|
+
import { default as default100 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
|
|
101
|
+
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default101 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
|
|
102
|
+
import { default as default102 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
103
|
+
import { default as default103 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
104
|
+
import { default as default104 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
105
105
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
106
|
-
import {
|
|
106
|
+
import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
|
|
107
107
|
import { Column, Grid } from "./components/Grid/Grid.js";
|
|
108
|
+
import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
|
|
109
|
+
import { EdificeClientContext } from "./providers/EdificeClientProvider/EdificeClientProvider.context.js";
|
|
110
|
+
import { EdificeClientProvider } from "./providers/EdificeClientProvider/EdificeClientProvider.js";
|
|
111
|
+
import { EdificeThemeContext } from "./providers/EdificeThemeProvider/EdificeThemeProvider.context.js";
|
|
112
|
+
import { EdificeThemeProvider } from "./providers/EdificeThemeProvider/EdificeThemeProvider.js";
|
|
113
|
+
import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
|
|
114
|
+
import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
|
|
108
115
|
import { Layout } from "./components/Layout/Layout.js";
|
|
109
116
|
import { List } from "./components/List/List.js";
|
|
110
117
|
import { Menu } from "./components/Menu/components/Menu.js";
|
|
118
|
+
import { MockedProvider } from "./providers/MockedProvider/MockedProvider.js";
|
|
111
119
|
import { Popover, PopoverBody, PopoverFooter, PopoverHeader } from "./components/Popover/Popover.js";
|
|
120
|
+
import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
|
|
112
121
|
import { Tabs } from "./components/Tabs/components/Tabs.js";
|
|
113
122
|
import { Toolbar } from "./components/Toolbar/Toolbar.js";
|
|
114
|
-
import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
|
|
115
|
-
import { buildTree, determineNewParentId, findItemIndexInTree, flattenNodes, flattenTree, generateUpdateData, getActiveAndOverNodes, getDragDepth, getIndicesToUpdate, getProjection, updateParentIds } from "./components/Tree/utilities/tree-sortable.js";
|
|
116
|
-
import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
|
|
117
123
|
import { TreeNode } from "./components/TreeView/TreeNode.js";
|
|
118
124
|
import { TreeNodeFolderWrapper, addNode, arrayUnique, deleteNode, findNodeById, findParentNode, findPathById, findTreeNode, getAncestors, hasChildren, modifyNode, moveNode, updateNode, wrapTreeNode } from "./components/TreeView/utilities/treeview.js";
|
|
119
|
-
import {
|
|
120
|
-
import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
|
|
121
|
-
import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
|
|
122
|
-
import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
|
|
123
|
-
import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
|
|
124
|
-
import { EdificeClientProvider } from "./providers/EdificeClientProvider/EdificeClientProvider.js";
|
|
125
|
-
import { EdificeClientContext } from "./providers/EdificeClientProvider/EdificeClientProvider.context.js";
|
|
126
|
-
import { useEdificeClient } from "./providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
127
|
-
import { EdificeThemeProvider } from "./providers/EdificeThemeProvider/EdificeThemeProvider.js";
|
|
128
|
-
import { EdificeThemeContext } from "./providers/EdificeThemeProvider/EdificeThemeProvider.context.js";
|
|
129
|
-
import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
130
|
-
import { MockedProvider } from "./providers/MockedProvider/MockedProvider.js";
|
|
125
|
+
import { buildTree, determineNewParentId, findItemIndexInTree, flattenNodes, flattenTree, generateUpdateData, getActiveAndOverNodes, getDragDepth, getIndicesToUpdate, getProjection, updateParentIds } from "./components/Tree/utilities/tree-sortable.js";
|
|
131
126
|
import { checkUserRight } from "./utilities/check-user-rights/check-user-rights.js";
|
|
132
127
|
import { emptyScreenMapping } from "./utilities/emptyscreen-mapping/emptyscreen-mapping.js";
|
|
133
128
|
import { mergeRefs, setRef } from "./utilities/refs/ref.js";
|
|
129
|
+
import { useCheckable } from "./hooks/useCheckable/useCheckable.js";
|
|
130
|
+
import { useEdificeClient } from "./providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
131
|
+
import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
132
|
+
import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
|
|
133
|
+
import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
|
|
134
134
|
export {
|
|
135
135
|
AccessiblePalette,
|
|
136
136
|
default2 as ActionBar,
|
|
@@ -139,91 +139,91 @@ export {
|
|
|
139
139
|
default4 as AppHeader,
|
|
140
140
|
default5 as AppIcon,
|
|
141
141
|
default6 as Attachment,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
142
|
+
default7 as AudioRecorder,
|
|
143
|
+
default8 as Avatar,
|
|
144
|
+
default9 as AvatarGroup,
|
|
145
|
+
default10 as Badge,
|
|
146
|
+
default11 as BlogPublic,
|
|
147
|
+
default12 as Breadcrumb,
|
|
148
|
+
default13 as Button,
|
|
149
|
+
default14 as ButtonSkeleton,
|
|
150
|
+
default15 as Card,
|
|
151
|
+
default16 as Checkbox,
|
|
152
|
+
default17 as ColorPicker,
|
|
153
|
+
default18 as ColorPickerItem,
|
|
154
154
|
Column,
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
default19 as Combobox,
|
|
156
|
+
default20 as ConfirmModal,
|
|
157
157
|
DefaultPalette,
|
|
158
158
|
DndTree,
|
|
159
|
-
|
|
160
|
-
|
|
159
|
+
default21 as Dropdown,
|
|
160
|
+
default22 as Dropzone,
|
|
161
161
|
DropzoneContext,
|
|
162
162
|
EdificeClientContext,
|
|
163
163
|
EdificeClientProvider,
|
|
164
164
|
EdificeThemeContext,
|
|
165
165
|
EdificeThemeProvider,
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
default23 as Embed,
|
|
167
|
+
default24 as EmptyScreen,
|
|
168
168
|
ExternalLinker,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
169
|
+
default25 as FileCard,
|
|
170
|
+
default26 as Flex,
|
|
171
|
+
default27 as FormControl,
|
|
172
|
+
default28 as FormText,
|
|
173
173
|
Grid,
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
174
|
+
default29 as Heading,
|
|
175
|
+
default30 as IconButton,
|
|
176
|
+
default31 as Image,
|
|
177
|
+
default32 as ImageEditor,
|
|
178
|
+
default33 as ImagePicker,
|
|
179
|
+
default34 as Input,
|
|
180
180
|
InternalLinker,
|
|
181
|
-
|
|
181
|
+
default35 as Label,
|
|
182
182
|
Layout,
|
|
183
183
|
List,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
184
|
+
default36 as Loading,
|
|
185
|
+
default37 as LoadingScreen,
|
|
186
|
+
default38 as Logo,
|
|
187
|
+
default39 as MediaLibrary,
|
|
188
188
|
Menu,
|
|
189
189
|
MockedProvider,
|
|
190
|
-
|
|
191
|
-
|
|
190
|
+
default40 as Modal,
|
|
191
|
+
default41 as OnboardingModal,
|
|
192
192
|
Popover,
|
|
193
193
|
PopoverBody,
|
|
194
194
|
PopoverFooter,
|
|
195
195
|
PopoverHeader,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
196
|
+
default42 as PreventPropagation,
|
|
197
|
+
default43 as PublishModal,
|
|
198
|
+
default44 as Radio,
|
|
199
|
+
default45 as RadioCard,
|
|
200
200
|
ResourceModal,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
201
|
+
default46 as SearchBar,
|
|
202
|
+
default47 as SearchButton,
|
|
203
|
+
default48 as Select,
|
|
204
|
+
default49 as ShareBlog,
|
|
205
|
+
default50 as ShareModal,
|
|
206
|
+
default51 as SortableTree,
|
|
207
|
+
default52 as StackedGroup,
|
|
208
|
+
default53 as Stepper,
|
|
209
|
+
default54 as Switch,
|
|
210
|
+
default55 as Table,
|
|
211
211
|
Tabs,
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
default56 as TextArea,
|
|
213
|
+
default57 as TextSkeleton,
|
|
214
214
|
Toolbar,
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
default58 as Tooltip,
|
|
216
|
+
default59 as Tree,
|
|
217
217
|
TreeNode,
|
|
218
218
|
TreeNodeFolderWrapper,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
219
|
+
default60 as TreeView,
|
|
220
|
+
default61 as VideoEmbed,
|
|
221
|
+
default62 as VideoRecorder,
|
|
222
|
+
default63 as VisuallyHidden,
|
|
223
223
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
224
224
|
WORKSPACE_USER_FOLDER_ID,
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
default64 as Workspace,
|
|
226
|
+
default65 as WorkspaceFolders,
|
|
227
227
|
addNode,
|
|
228
228
|
arrayUnique,
|
|
229
229
|
buildTree,
|
|
@@ -251,50 +251,50 @@ export {
|
|
|
251
251
|
setRef,
|
|
252
252
|
updateNode,
|
|
253
253
|
updateParentIds,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
254
|
+
default66 as useBookmark,
|
|
255
|
+
default67 as useBreakpoint,
|
|
256
|
+
default68 as useBrowserInfo,
|
|
257
|
+
default69 as useCantoo,
|
|
258
258
|
useCheckable,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
259
|
+
default70 as useClickOutside,
|
|
260
|
+
default71 as useConversation,
|
|
261
|
+
default72 as useDate,
|
|
262
|
+
default73 as useDebounce,
|
|
263
|
+
default74 as useDirectory,
|
|
264
|
+
default75 as useDropdown,
|
|
265
|
+
default76 as useDropzone,
|
|
266
266
|
useDropzoneContext,
|
|
267
267
|
useEdificeClient,
|
|
268
|
-
|
|
268
|
+
default77 as useEdificeIcons,
|
|
269
269
|
useEdificeTheme,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
useHttpErrorToast,
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
270
|
+
default78 as useHasWorkflow,
|
|
271
|
+
default79 as useHover,
|
|
272
|
+
default80 as useHttpErrorToast,
|
|
273
|
+
default81 as useImage,
|
|
274
|
+
default82 as useIsAdmc,
|
|
275
|
+
default83 as useIsAdml,
|
|
276
|
+
default84 as useIsAdmlcOrAdmc,
|
|
277
|
+
default85 as useKeyPress,
|
|
278
|
+
default86 as useLibraryUrl,
|
|
279
|
+
default87 as useMediaLibrary,
|
|
280
|
+
default88 as useScrollToTop,
|
|
281
|
+
default89 as useShareMutation,
|
|
282
|
+
default90 as useTitle,
|
|
283
|
+
default91 as useToast,
|
|
284
|
+
default92 as useToggle,
|
|
285
|
+
default93 as useTrapFocus,
|
|
286
|
+
default94 as useTrashedResource,
|
|
287
287
|
useTreeSortable,
|
|
288
288
|
useTreeView,
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
289
|
+
default95 as useUpdateMutation,
|
|
290
|
+
default96 as useUpload,
|
|
291
|
+
default97 as useUploadFiles,
|
|
292
|
+
default98 as useUser,
|
|
293
|
+
default99 as useWorkspaceFile,
|
|
294
|
+
default100 as useWorkspaceFolders,
|
|
295
|
+
default101 as useWorkspaceFoldersTree,
|
|
296
|
+
default102 as useWorkspaceSearch,
|
|
297
|
+
default103 as useXitiTrackPageLoad,
|
|
298
|
+
default104 as useZendeskGuide,
|
|
299
299
|
wrapTreeNode
|
|
300
300
|
};
|
package/dist/modals.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { default as default2 } from "./modules/modals/
|
|
2
|
-
import { default as default3 } from "./modules/modals/
|
|
3
|
-
import { default as default4 } from "./modules/modals/
|
|
4
|
-
import { default as default5 } from "./modules/modals/
|
|
5
|
-
import { default as default6 } from "./modules/modals/
|
|
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
6
|
import { default as default7 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
7
|
-
import { default as default8 } from "./modules/modals/ShareModal/
|
|
8
|
-
import { default as default9 } from "./modules/modals/
|
|
7
|
+
import { default as default8 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
8
|
+
import { default as default9 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
9
9
|
import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
|
|
10
10
|
export {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
default2 as BlogPublic,
|
|
12
|
+
default3 as ConfirmModal,
|
|
13
|
+
default4 as OnboardingModal,
|
|
14
|
+
default5 as PublishModal,
|
|
15
15
|
ResourceModal,
|
|
16
|
-
|
|
16
|
+
default6 as ShareBlog,
|
|
17
17
|
default7 as ShareModal,
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
default8 as useShareMutation,
|
|
19
|
+
default9 as useUpdateMutation
|
|
20
20
|
};
|
|
@@ -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 {
|
|
@@ -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
|
|
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";
|
package/dist/multimedia.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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/
|
|
4
|
-
import { default as default5 } from "./modules/multimedia/
|
|
5
|
-
import { default as default6 } from "./modules/multimedia/
|
|
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
7
|
import { default as default8 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
8
8
|
import { default as default9 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
@@ -14,9 +14,9 @@ export {
|
|
|
14
14
|
default2 as AudioRecorder,
|
|
15
15
|
default3 as Embed,
|
|
16
16
|
ExternalLinker,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
default4 as FileCard,
|
|
18
|
+
default5 as ImageEditor,
|
|
19
|
+
default6 as ImagePicker,
|
|
20
20
|
InternalLinker,
|
|
21
21
|
default7 as MediaLibrary,
|
|
22
22
|
default8 as VideoEmbed,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.3-develop-integration.
|
|
3
|
+
"version": "2.5.3-develop-integration.20260130101842",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -133,9 +133,9 @@
|
|
|
133
133
|
"react-slugify": "^3.0.3",
|
|
134
134
|
"swiper": "^10.1.0",
|
|
135
135
|
"ua-parser-js": "^1.0.36",
|
|
136
|
-
"@edifice.io/bootstrap": "2.5.3-develop-integration.
|
|
137
|
-
"@edifice.io/utilities": "2.5.3-develop-integration.
|
|
138
|
-
"@edifice.io/tiptap-extensions": "2.5.3-develop-integration.
|
|
136
|
+
"@edifice.io/bootstrap": "2.5.3-develop-integration.20260130101842",
|
|
137
|
+
"@edifice.io/utilities": "2.5.3-develop-integration.20260130101842",
|
|
138
|
+
"@edifice.io/tiptap-extensions": "2.5.3-develop-integration.20260130101842"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
141
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -166,8 +166,8 @@
|
|
|
166
166
|
"vite": "^5.4.11",
|
|
167
167
|
"vite-plugin-dts": "^4.1.0",
|
|
168
168
|
"vite-tsconfig-paths": "^5.0.1",
|
|
169
|
-
"@edifice.io/client": "2.5.3-develop-integration.
|
|
170
|
-
"@edifice.io/config": "2.5.3-develop-integration.
|
|
169
|
+
"@edifice.io/client": "2.5.3-develop-integration.20260130101842",
|
|
170
|
+
"@edifice.io/config": "2.5.3-develop-integration.20260130101842"
|
|
171
171
|
},
|
|
172
172
|
"peerDependencies": {
|
|
173
173
|
"@react-spring/web": "^9.7.5",
|