@edifice.io/react 2.3.1-develop-b2school-actualites.20250916153920 → 2.3.1-develop-b2school.20250918153251
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/index.d.ts +0 -2
- package/dist/editor.js +34 -38
- package/dist/icons.js +286 -288
- package/dist/index.js +0 -4
- package/dist/modules/editor/components/Editor/index.d.ts +0 -2
- package/dist/modules/icons/components/index.d.ts +0 -1
- package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +34 -143
- package/dist/modules/multimedia/VideoRecorder/VideoRecorderToolbar.d.ts +18 -0
- package/dist/modules/multimedia/VideoRecorder/VideoRecorderToolbar.js +96 -0
- package/dist/modules/multimedia/VideoRecorder/useCameras.d.ts +10 -0
- package/dist/modules/multimedia/VideoRecorder/useCameras.js +86 -0
- package/package.json +6 -6
- package/dist/components/Divider/Divider.d.ts +0 -5
- package/dist/components/Divider/Divider.js +0 -21
- package/dist/components/Divider/index.d.ts +0 -1
- package/dist/components/SeparatedInfo/SeparatedInfo.d.ts +0 -6
- package/dist/components/SeparatedInfo/SeparatedInfo.js +0 -13
- package/dist/components/SeparatedInfo/index.d.ts +0 -1
- package/dist/modules/editor/components/Editor/EditorPreview.d.ts +0 -14
- package/dist/modules/editor/components/Editor/EditorPreview.js +0 -56
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.d.ts +0 -8
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.js +0 -24
- package/dist/modules/icons/components/IconClockAlert.d.ts +0 -7
- package/dist/modules/icons/components/IconClockAlert.js +0 -17
|
@@ -12,7 +12,6 @@ export * from './Card';
|
|
|
12
12
|
export * from './Checkbox';
|
|
13
13
|
export * from './ColorPicker';
|
|
14
14
|
export * from './Combobox';
|
|
15
|
-
export * from './Divider';
|
|
16
15
|
export * from './Dropdown';
|
|
17
16
|
export * from './Dropzone';
|
|
18
17
|
export * from './EmptyScreen';
|
|
@@ -35,7 +34,6 @@ export * from './PreventPropagation';
|
|
|
35
34
|
export * from './Radio';
|
|
36
35
|
export * from './SearchBar';
|
|
37
36
|
export * from './Select';
|
|
38
|
-
export * from './SeparatedInfo';
|
|
39
37
|
export * from './Skeleton';
|
|
40
38
|
export * from './StackedGroup';
|
|
41
39
|
export * from './Switch';
|
package/dist/editor.js
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { EditorContent, Editor, useEditor } from "@tiptap/react";
|
|
2
2
|
import { default as default2 } from "@tiptap/starter-kit";
|
|
3
3
|
import { default as default3 } from "./modules/editor/components/Editor/Editor.js";
|
|
4
|
-
import { default as default4 } from "./modules/editor/components/Editor/
|
|
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/
|
|
8
|
-
import { default as default8 } from "./modules/editor/components/NodeView/
|
|
9
|
-
import { default as default9 } from "./modules/editor/components/NodeView/
|
|
10
|
-
import { default as default10 } from "./modules/editor/components/NodeView/
|
|
11
|
-
import { default as default11 } from "./modules/editor/components/NodeView/
|
|
12
|
-
import { default as default12 } from "./modules/editor/components/NodeView/
|
|
13
|
-
import { default as default13 } from "./modules/editor/components/
|
|
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/Renderer/
|
|
17
|
-
import { default as default17 } from "./modules/editor/components/Renderer/
|
|
18
|
-
import { default as default18 } from "./modules/editor/components/Renderer/
|
|
19
|
-
import { default as default19 } from "./modules/editor/components/
|
|
20
|
-
import { default as default20 } from "./modules/editor/components/
|
|
21
|
-
import { default as default21 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
22
|
-
import { default as default22 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
4
|
+
import { default as default4 } from "./modules/editor/components/Editor/EditorSkeleton.js";
|
|
5
|
+
import { default as default5 } from "./modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js";
|
|
6
|
+
import { default as default6 } from "./modules/editor/components/NodeView/AttachmentNodeView.js";
|
|
7
|
+
import { default as default7 } from "./modules/editor/components/NodeView/AudioNodeView.js";
|
|
8
|
+
import { default as default8 } from "./modules/editor/components/NodeView/ConversationHistoryNodeView.js";
|
|
9
|
+
import { default as default9 } from "./modules/editor/components/NodeView/ImageNodeView.js";
|
|
10
|
+
import { default as default10 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
|
|
11
|
+
import { default as default11 } from "./modules/editor/components/NodeView/VideoNodeView.js";
|
|
12
|
+
import { default as default12 } from "./modules/editor/components/NodeView/InformationPaneNodeView.js";
|
|
13
|
+
import { default as default13 } from "./modules/editor/components/Renderer/AttachmentRenderer.js";
|
|
14
|
+
import { default as default14 } from "./modules/editor/components/Renderer/AudioRenderer.js";
|
|
15
|
+
import { default as default15 } from "./modules/editor/components/Renderer/ConversationHistoryRenderer.js";
|
|
16
|
+
import { default as default16 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
|
|
17
|
+
import { default as default17 } from "./modules/editor/components/Renderer/MediaRenderer.js";
|
|
18
|
+
import { default as default18 } from "./modules/editor/components/Renderer/InformationPaneRenderer.js";
|
|
19
|
+
import { default as default19 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
20
|
+
import { default as default20 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
23
21
|
import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
|
|
24
22
|
import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
|
|
25
23
|
import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
|
|
@@ -35,31 +33,29 @@ import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisi
|
|
|
35
33
|
import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
36
34
|
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
37
35
|
export {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
36
|
+
default6 as AttachmentNodeView,
|
|
37
|
+
default13 as AttachmentRenderer,
|
|
38
|
+
default7 as AudioNodeView,
|
|
39
|
+
default14 as AudioRenderer,
|
|
40
|
+
default5 as BubbleMenuEditImage,
|
|
41
|
+
default8 as ConversationHistoryNodeView,
|
|
42
|
+
default15 as ConversationHistoryRenderer,
|
|
45
43
|
default3 as Editor,
|
|
46
44
|
EditorContent,
|
|
47
45
|
EditorContext,
|
|
48
46
|
Editor as EditorInstance,
|
|
49
|
-
default4 as
|
|
50
|
-
default5 as EditorPreviewSkeleton,
|
|
51
|
-
default6 as EditorSkeleton,
|
|
47
|
+
default4 as EditorSkeleton,
|
|
52
48
|
EditorToolbar,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
49
|
+
default9 as ImageNodeView,
|
|
50
|
+
default12 as InformationPaneNodeView,
|
|
51
|
+
default18 as InformationPaneRenderer,
|
|
52
|
+
default20 as LinkToolbar,
|
|
53
|
+
default10 as LinkerNodeView,
|
|
54
|
+
default16 as LinkerRenderer,
|
|
55
|
+
default17 as MediaRenderer,
|
|
60
56
|
default2 as StarterKit,
|
|
61
|
-
|
|
62
|
-
|
|
57
|
+
default19 as TableToolbar,
|
|
58
|
+
default11 as VideoNodeView,
|
|
63
59
|
useActionOptions,
|
|
64
60
|
useCantooEditor,
|
|
65
61
|
useCommentEditor,
|