@edifice.io/react 2.3.2-develop-pedago.20251001105735 → 2.3.2-develop-b2school-actualites.20251001121550
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/Divider/Divider.d.ts +5 -0
- package/dist/components/Divider/Divider.js +21 -0
- package/dist/components/Divider/index.d.ts +1 -0
- package/dist/components/Layout/components/Header.js +2 -3
- package/dist/components/Layout/components/WidgetApps.js +1 -1
- package/dist/components/Layout/hooks/useHeader.js +4 -11
- package/dist/components/SeparatedInfo/SeparatedInfo.d.ts +6 -0
- package/dist/components/SeparatedInfo/SeparatedInfo.js +13 -0
- package/dist/components/SeparatedInfo/index.d.ts +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/editor.js +40 -36
- package/dist/icons.js +294 -292
- package/dist/index.js +4 -0
- package/dist/modules/editor/components/Editor/EditorPreview.d.ts +14 -0
- package/dist/modules/editor/components/Editor/EditorPreview.js +56 -0
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.d.ts +8 -0
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.js +24 -0
- package/dist/modules/editor/components/Editor/index.d.ts +2 -0
- package/dist/modules/editor/components/MathsModal/MathsModal.js +1 -1
- package/dist/modules/editor/hooks/useTipTapEditor.js +1 -1
- package/dist/modules/icons/components/IconClockAlert.d.ts +7 -0
- package/dist/modules/icons/components/IconClockAlert.js +17 -0
- package/dist/modules/icons/components/index.d.ts +1 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.js +1 -1
- package/package.json +7 -9
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import Flex from "../Flex/Flex.js";
|
|
3
|
+
function Divider({
|
|
4
|
+
children,
|
|
5
|
+
color = "var(--edifice-gray-400)"
|
|
6
|
+
}) {
|
|
7
|
+
return /* @__PURE__ */ jsxs(Flex, { align: "center", justify: "around", gap: "16", wrap: "nowrap", className: "flex-fill", children: [
|
|
8
|
+
/* @__PURE__ */ jsx("hr", { className: "divider m-12 ms-0 flex-fill", style: {
|
|
9
|
+
borderColor: color
|
|
10
|
+
} }),
|
|
11
|
+
/* @__PURE__ */ jsxs(Flex, { gap: "12", align: "center", justify: "around", children: [
|
|
12
|
+
...children
|
|
13
|
+
] }),
|
|
14
|
+
/* @__PURE__ */ jsx("hr", { className: "divider m-12 me-0 flex-fill", style: {
|
|
15
|
+
borderColor: color
|
|
16
|
+
} })
|
|
17
|
+
] });
|
|
18
|
+
}
|
|
19
|
+
export {
|
|
20
|
+
Divider
|
|
21
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Divider';
|
|
@@ -70,8 +70,7 @@ const Header = ({
|
|
|
70
70
|
conversationWorflow,
|
|
71
71
|
searchWorkflow,
|
|
72
72
|
isCollapsed,
|
|
73
|
-
toggleCollapsedNav
|
|
74
|
-
handleLogout
|
|
73
|
+
toggleCollapsedNav
|
|
75
74
|
} = useHeader({
|
|
76
75
|
user,
|
|
77
76
|
avatar
|
|
@@ -104,7 +103,7 @@ const Header = ({
|
|
|
104
103
|
] }),
|
|
105
104
|
/* @__PURE__ */ jsx(Help, { isHelpOpen, setIsHelpOpen, parsedContent, parsedHeadline, error })
|
|
106
105
|
] }) : null,
|
|
107
|
-
/* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("
|
|
106
|
+
/* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("a", { href: "/auth/logout?callback=" + ((theme == null ? void 0 : theme.logoutCallback) ?? "/"), className: "nav-link", children: [
|
|
108
107
|
/* @__PURE__ */ jsx(SvgIconDisconnect, { className: "icon logout" }),
|
|
109
108
|
/* @__PURE__ */ jsx(VisuallyHidden, { children: t("navbar.disconnect") })
|
|
110
109
|
] }) }),
|
|
@@ -14,7 +14,7 @@ const WidgetAppsFooter = () => {
|
|
|
14
14
|
} = useTranslation();
|
|
15
15
|
return /* @__PURE__ */ jsxs("div", { className: "widget-body d-flex flex-wrap", children: [
|
|
16
16
|
!bookmarkedApps.length && /* @__PURE__ */ jsx("div", { className: "text-dark", children: t("navbar.myapps.more") }),
|
|
17
|
-
bookmarkedApps.slice(0, 6).map((app, index) => /* @__PURE__ */ jsx("a", { href: app.address, className: "bookmarked-app", children: /* @__PURE__ */ jsx(AppIcon, { app, size: "32" }) }, index))
|
|
17
|
+
bookmarkedApps.slice(0, 6).map((app, index) => /* @__PURE__ */ jsx("a", { href: app.address, className: "bookmarked-app", target: app.isExternal || app.category === "connector" ? "_blank" : void 0, children: /* @__PURE__ */ jsx(AppIcon, { app, size: "32" }) }, index))
|
|
18
18
|
] });
|
|
19
19
|
};
|
|
20
20
|
export {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { useState, useId, useCallback, useMemo } from "react";
|
|
2
|
-
import { odeServices } from "@edifice.io/client";
|
|
3
2
|
import { useHover } from "@uidotdev/usehooks";
|
|
4
3
|
import { useTranslation } from "react-i18next";
|
|
5
4
|
import { useEdificeClient } from "../../../providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
6
|
-
import { useEdificeTheme } from "../../../providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
7
5
|
import useBookmark from "../../../hooks/useBookmark/useBookmark.js";
|
|
8
6
|
import useHasWorkflow from "../../../hooks/useHasWorkflow/useHasWorkflow.js";
|
|
9
7
|
function useHeader({
|
|
@@ -14,15 +12,11 @@ function useHeader({
|
|
|
14
12
|
appCode
|
|
15
13
|
} = useEdificeClient(), {
|
|
16
14
|
t
|
|
17
|
-
} = useTranslation(), {
|
|
18
|
-
theme
|
|
19
|
-
} = useEdificeTheme(), title = t(appCode), [isCollapsed, setIsCollapsed] = useState(!0), [appsRef, isAppsHovered] = useHover(), popoverAppsId = useId(), popoverSearchId = useId(), userAvatar = avatar, userName = user == null ? void 0 : user.username, welcomeUser = t("welcome", {
|
|
15
|
+
} = useTranslation(), title = t(appCode), [isCollapsed, setIsCollapsed] = useState(!0), [appsRef, isAppsHovered] = useHover(), popoverAppsId = useId(), popoverSearchId = useId(), userAvatar = avatar, userName = user == null ? void 0 : user.username, welcomeUser = t("welcome", {
|
|
20
16
|
username: user == null ? void 0 : user.firstName
|
|
21
17
|
}), bookmarkedApps = useBookmark(), communityWorkflow = useHasWorkflow("net.atos.entng.community.controllers.CommunityController|view"), conversationWorflow = useHasWorkflow("org.entcore.conversation.controllers.ConversationController|view"), searchWorkflow = useHasWorkflow("fr.openent.searchengine.controllers.SearchEngineController|view"), toggleCollapsedNav = useCallback(() => {
|
|
22
18
|
setIsCollapsed(!isCollapsed);
|
|
23
|
-
}, [isCollapsed])
|
|
24
|
-
await odeServices.session().logout(), window.location.href = (theme == null ? void 0 : theme.logoutCallback) ?? "/auth/login";
|
|
25
|
-
};
|
|
19
|
+
}, [isCollapsed]);
|
|
26
20
|
return useMemo(() => ({
|
|
27
21
|
title,
|
|
28
22
|
bookmarkedApps,
|
|
@@ -37,9 +31,8 @@ function useHeader({
|
|
|
37
31
|
conversationWorflow,
|
|
38
32
|
searchWorkflow,
|
|
39
33
|
isCollapsed,
|
|
40
|
-
toggleCollapsedNav
|
|
41
|
-
|
|
42
|
-
}), [appsRef, bookmarkedApps, communityWorkflow, conversationWorflow, handleLogout, isAppsHovered, isCollapsed, popoverAppsId, popoverSearchId, searchWorkflow, title, toggleCollapsedNav, userAvatar, userName, welcomeUser]);
|
|
34
|
+
toggleCollapsedNav
|
|
35
|
+
}), [appsRef, bookmarkedApps, communityWorkflow, conversationWorflow, isAppsHovered, isCollapsed, popoverAppsId, popoverSearchId, searchWorkflow, title, toggleCollapsedNav, userAvatar, userName, welcomeUser]);
|
|
43
36
|
}
|
|
44
37
|
export {
|
|
45
38
|
useHeader as default
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Flex from "../Flex/Flex.js";
|
|
3
|
+
function SeparatedInfo({
|
|
4
|
+
children,
|
|
5
|
+
className
|
|
6
|
+
}) {
|
|
7
|
+
return /* @__PURE__ */ jsxs(Flex, { direction: "row", className: `separated-info ${className}`, children: [
|
|
8
|
+
...children
|
|
9
|
+
] });
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
SeparatedInfo
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './SeparatedInfo';
|
|
@@ -12,6 +12,7 @@ export * from './Card';
|
|
|
12
12
|
export * from './Checkbox';
|
|
13
13
|
export * from './ColorPicker';
|
|
14
14
|
export * from './Combobox';
|
|
15
|
+
export * from './Divider';
|
|
15
16
|
export * from './Dropdown';
|
|
16
17
|
export * from './Dropzone';
|
|
17
18
|
export * from './EmptyScreen';
|
|
@@ -34,6 +35,7 @@ export * from './PreventPropagation';
|
|
|
34
35
|
export * from './Radio';
|
|
35
36
|
export * from './SearchBar';
|
|
36
37
|
export * from './Select';
|
|
38
|
+
export * from './SeparatedInfo';
|
|
37
39
|
export * from './Skeleton';
|
|
38
40
|
export * from './StackedGroup';
|
|
39
41
|
export * from './Stepper';
|
package/dist/editor.js
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
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/NodeView/
|
|
14
|
-
import { default as default14 } from "./modules/editor/components/
|
|
15
|
-
import { default as default15 } from "./modules/editor/components/
|
|
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/Renderer/
|
|
20
|
-
import { default as default20 } from "./modules/editor/components/
|
|
21
|
-
import { default as default21 } from "./modules/editor/components/
|
|
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";
|
|
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";
|
|
22
|
+
import { default as default22 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
23
|
+
import { default as default23 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
22
24
|
import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
|
|
23
25
|
import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
|
|
24
26
|
import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
|
|
@@ -34,30 +36,32 @@ import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisi
|
|
|
34
36
|
import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
35
37
|
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
36
38
|
export {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
default8 as AttachmentNodeView,
|
|
40
|
+
default16 as AttachmentRenderer,
|
|
41
|
+
default9 as AudioNodeView,
|
|
42
|
+
default17 as AudioRenderer,
|
|
43
|
+
default7 as BubbleMenuEditImage,
|
|
44
|
+
default10 as ConversationHistoryNodeView,
|
|
45
|
+
default18 as ConversationHistoryRenderer,
|
|
44
46
|
default3 as Editor,
|
|
45
47
|
EditorContent,
|
|
46
48
|
EditorContext,
|
|
47
49
|
Editor as EditorInstance,
|
|
48
|
-
default4 as
|
|
50
|
+
default4 as EditorPreview,
|
|
51
|
+
default5 as EditorPreviewSkeleton,
|
|
52
|
+
default6 as EditorSkeleton,
|
|
49
53
|
EditorToolbar,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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,
|
|
58
62
|
default2 as StarterKit,
|
|
59
|
-
|
|
60
|
-
|
|
63
|
+
default22 as TableToolbar,
|
|
64
|
+
default13 as VideoNodeView,
|
|
61
65
|
useActionOptions,
|
|
62
66
|
useCantooEditor,
|
|
63
67
|
useCommentEditor,
|
package/dist/icons.js
CHANGED
|
@@ -24,152 +24,153 @@ import { default as default24 } from "./modules/icons/components/IconCantoo.js";
|
|
|
24
24
|
import { default as default25 } from "./modules/icons/components/IconCenter.js";
|
|
25
25
|
import { default as default26 } from "./modules/icons/components/IconCheck.js";
|
|
26
26
|
import { default as default27 } from "./modules/icons/components/IconChecklist.js";
|
|
27
|
-
import { default as default28 } from "./modules/icons/components/
|
|
28
|
-
import { default as default29 } from "./modules/icons/components/
|
|
29
|
-
import { default as default30 } from "./modules/icons/components/
|
|
30
|
-
import { default as default31 } from "./modules/icons/components/
|
|
31
|
-
import { default as default32 } from "./modules/icons/components/
|
|
32
|
-
import { default as default33 } from "./modules/icons/components/
|
|
33
|
-
import { default as default34 } from "./modules/icons/components/
|
|
34
|
-
import { default as default35 } from "./modules/icons/components/
|
|
35
|
-
import { default as default36 } from "./modules/icons/components/
|
|
36
|
-
import { default as default37 } from "./modules/icons/components/
|
|
37
|
-
import { default as default38 } from "./modules/icons/components/
|
|
38
|
-
import { default as default39 } from "./modules/icons/components/
|
|
39
|
-
import { default as default40 } from "./modules/icons/components/
|
|
40
|
-
import { default as default41 } from "./modules/icons/components/
|
|
41
|
-
import { default as default42 } from "./modules/icons/components/
|
|
42
|
-
import { default as default43 } from "./modules/icons/components/
|
|
43
|
-
import { default as default44 } from "./modules/icons/components/
|
|
44
|
-
import { default as default45 } from "./modules/icons/components/
|
|
45
|
-
import { default as default46 } from "./modules/icons/components/
|
|
46
|
-
import { default as default47 } from "./modules/icons/components/
|
|
47
|
-
import { default as default48 } from "./modules/icons/components/
|
|
48
|
-
import { default as default49 } from "./modules/icons/components/
|
|
49
|
-
import { default as default50 } from "./modules/icons/components/
|
|
50
|
-
import { default as default51 } from "./modules/icons/components/
|
|
51
|
-
import { default as default52 } from "./modules/icons/components/
|
|
52
|
-
import { default as default53 } from "./modules/icons/components/
|
|
53
|
-
import { default as default54 } from "./modules/icons/components/
|
|
54
|
-
import { default as default55 } from "./modules/icons/components/
|
|
55
|
-
import { default as default56 } from "./modules/icons/components/
|
|
56
|
-
import { default as default57 } from "./modules/icons/components/
|
|
57
|
-
import { default as default58 } from "./modules/icons/components/
|
|
58
|
-
import { default as default59 } from "./modules/icons/components/
|
|
59
|
-
import { default as default60 } from "./modules/icons/components/
|
|
60
|
-
import { default as default61 } from "./modules/icons/components/
|
|
61
|
-
import { default as default62 } from "./modules/icons/components/
|
|
62
|
-
import { default as default63 } from "./modules/icons/components/
|
|
63
|
-
import { default as default64 } from "./modules/icons/components/
|
|
64
|
-
import { default as default65 } from "./modules/icons/components/
|
|
65
|
-
import { default as default66 } from "./modules/icons/components/
|
|
66
|
-
import { default as default67 } from "./modules/icons/components/
|
|
67
|
-
import { default as default68 } from "./modules/icons/components/
|
|
68
|
-
import { default as default69 } from "./modules/icons/components/
|
|
69
|
-
import { default as default70 } from "./modules/icons/components/
|
|
70
|
-
import { default as default71 } from "./modules/icons/components/
|
|
71
|
-
import { default as default72 } from "./modules/icons/components/
|
|
72
|
-
import { default as default73 } from "./modules/icons/components/
|
|
73
|
-
import { default as default74 } from "./modules/icons/components/
|
|
74
|
-
import { default as default75 } from "./modules/icons/components/
|
|
75
|
-
import { default as default76 } from "./modules/icons/components/
|
|
76
|
-
import { default as default77 } from "./modules/icons/components/
|
|
77
|
-
import { default as default78 } from "./modules/icons/components/
|
|
78
|
-
import { default as default79 } from "./modules/icons/components/
|
|
79
|
-
import { default as default80 } from "./modules/icons/components/
|
|
80
|
-
import { default as default81 } from "./modules/icons/components/
|
|
81
|
-
import { default as default82 } from "./modules/icons/components/
|
|
82
|
-
import { default as default83 } from "./modules/icons/components/
|
|
83
|
-
import { default as default84 } from "./modules/icons/components/
|
|
84
|
-
import { default as default85 } from "./modules/icons/components/
|
|
85
|
-
import { default as default86 } from "./modules/icons/components/
|
|
86
|
-
import { default as default87 } from "./modules/icons/components/
|
|
87
|
-
import { default as default88 } from "./modules/icons/components/
|
|
88
|
-
import { default as default89 } from "./modules/icons/components/
|
|
89
|
-
import { default as default90 } from "./modules/icons/components/
|
|
90
|
-
import { default as default91 } from "./modules/icons/components/
|
|
91
|
-
import { default as default92 } from "./modules/icons/components/
|
|
92
|
-
import { default as default93 } from "./modules/icons/components/
|
|
93
|
-
import { default as default94 } from "./modules/icons/components/
|
|
94
|
-
import { default as default95 } from "./modules/icons/components/
|
|
95
|
-
import { default as default96 } from "./modules/icons/components/
|
|
96
|
-
import { default as default97 } from "./modules/icons/components/
|
|
97
|
-
import { default as default98 } from "./modules/icons/components/
|
|
98
|
-
import { default as default99 } from "./modules/icons/components/
|
|
99
|
-
import { default as default100 } from "./modules/icons/components/
|
|
100
|
-
import { default as default101 } from "./modules/icons/components/
|
|
101
|
-
import { default as default102 } from "./modules/icons/components/
|
|
102
|
-
import { default as default103 } from "./modules/icons/components/
|
|
103
|
-
import { default as default104 } from "./modules/icons/components/
|
|
104
|
-
import { default as default105 } from "./modules/icons/components/
|
|
105
|
-
import { default as default106 } from "./modules/icons/components/
|
|
106
|
-
import { default as default107 } from "./modules/icons/components/
|
|
107
|
-
import { default as default108 } from "./modules/icons/components/
|
|
108
|
-
import { default as default109 } from "./modules/icons/components/
|
|
109
|
-
import { default as default110 } from "./modules/icons/components/
|
|
110
|
-
import { default as default111 } from "./modules/icons/components/
|
|
111
|
-
import { default as default112 } from "./modules/icons/components/
|
|
112
|
-
import { default as default113 } from "./modules/icons/components/
|
|
113
|
-
import { default as default114 } from "./modules/icons/components/
|
|
114
|
-
import { default as default115 } from "./modules/icons/components/
|
|
115
|
-
import { default as default116 } from "./modules/icons/components/
|
|
116
|
-
import { default as default117 } from "./modules/icons/components/
|
|
117
|
-
import { default as default118 } from "./modules/icons/components/
|
|
118
|
-
import { default as default119 } from "./modules/icons/components/
|
|
119
|
-
import { default as default120 } from "./modules/icons/components/
|
|
120
|
-
import { default as default121 } from "./modules/icons/components/
|
|
121
|
-
import { default as default122 } from "./modules/icons/components/
|
|
122
|
-
import { default as default123 } from "./modules/icons/components/
|
|
123
|
-
import { default as default124 } from "./modules/icons/components/
|
|
124
|
-
import { default as default125 } from "./modules/icons/components/
|
|
125
|
-
import { default as default126 } from "./modules/icons/components/
|
|
126
|
-
import { default as default127 } from "./modules/icons/components/
|
|
127
|
-
import { default as default128 } from "./modules/icons/components/
|
|
128
|
-
import { default as default129 } from "./modules/icons/components/
|
|
129
|
-
import { default as default130 } from "./modules/icons/components/
|
|
130
|
-
import { default as default131 } from "./modules/icons/components/
|
|
131
|
-
import { default as default132 } from "./modules/icons/components/
|
|
132
|
-
import { default as default133 } from "./modules/icons/components/
|
|
133
|
-
import { default as default134 } from "./modules/icons/components/
|
|
134
|
-
import { default as default135 } from "./modules/icons/components/
|
|
135
|
-
import { default as default136 } from "./modules/icons/components/
|
|
136
|
-
import { default as default137 } from "./modules/icons/components/
|
|
137
|
-
import { default as default138 } from "./modules/icons/components/
|
|
138
|
-
import { default as default139 } from "./modules/icons/components/
|
|
139
|
-
import { default as default140 } from "./modules/icons/components/
|
|
140
|
-
import { default as default141 } from "./modules/icons/components/
|
|
141
|
-
import { default as default142 } from "./modules/icons/components/
|
|
142
|
-
import { default as default143 } from "./modules/icons/components/
|
|
143
|
-
import { default as default144 } from "./modules/icons/components/
|
|
144
|
-
import { default as default145 } from "./modules/icons/components/
|
|
145
|
-
import { default as default146 } from "./modules/icons/components/
|
|
146
|
-
import { default as default147 } from "./modules/icons/components/
|
|
147
|
-
import { default as default148 } from "./modules/icons/components/
|
|
148
|
-
import { default as default149 } from "./modules/icons/components/
|
|
149
|
-
import { default as default150 } from "./modules/icons/components/
|
|
150
|
-
import { default as default151 } from "./modules/icons/components/
|
|
151
|
-
import { default as default152 } from "./modules/icons/components/
|
|
152
|
-
import { default as default153 } from "./modules/icons/components/
|
|
153
|
-
import { default as default154 } from "./modules/icons/components/
|
|
154
|
-
import { default as default155 } from "./modules/icons/components/
|
|
155
|
-
import { default as default156 } from "./modules/icons/components/
|
|
156
|
-
import { default as default157 } from "./modules/icons/components/
|
|
157
|
-
import { default as default158 } from "./modules/icons/components/
|
|
158
|
-
import { default as default159 } from "./modules/icons/components/
|
|
159
|
-
import { default as default160 } from "./modules/icons/components/
|
|
160
|
-
import { default as default161 } from "./modules/icons/components/
|
|
161
|
-
import { default as default162 } from "./modules/icons/components/
|
|
162
|
-
import { default as default163 } from "./modules/icons/components/
|
|
163
|
-
import { default as default164 } from "./modules/icons/components/
|
|
164
|
-
import { default as default165 } from "./modules/icons/components/
|
|
165
|
-
import { default as default166 } from "./modules/icons/components/
|
|
166
|
-
import { default as default167 } from "./modules/icons/components/
|
|
167
|
-
import { default as default168 } from "./modules/icons/components/
|
|
168
|
-
import { default as default169 } from "./modules/icons/components/
|
|
169
|
-
import { default as default170 } from "./modules/icons/components/
|
|
170
|
-
import { default as default171 } from "./modules/icons/components/
|
|
171
|
-
import { default as default172 } from "./modules/icons/components/
|
|
172
|
-
import { default as default173 } from "./modules/icons/components/
|
|
27
|
+
import { default as default28 } from "./modules/icons/components/IconClockAlert.js";
|
|
28
|
+
import { default as default29 } from "./modules/icons/components/IconClock.js";
|
|
29
|
+
import { default as default30 } from "./modules/icons/components/IconCloseFullScreen.js";
|
|
30
|
+
import { default as default31 } from "./modules/icons/components/IconClose.js";
|
|
31
|
+
import { default as default32 } from "./modules/icons/components/IconCode.js";
|
|
32
|
+
import { default as default33 } from "./modules/icons/components/IconCopy.js";
|
|
33
|
+
import { default as default34 } from "./modules/icons/components/IconCrop.js";
|
|
34
|
+
import { default as default35 } from "./modules/icons/components/IconCut.js";
|
|
35
|
+
import { default as default36 } from "./modules/icons/components/IconDeleteColor.js";
|
|
36
|
+
import { default as default37 } from "./modules/icons/components/IconDeleteColumnHighlight.js";
|
|
37
|
+
import { default as default38 } from "./modules/icons/components/IconDeleteColumn.js";
|
|
38
|
+
import { default as default39 } from "./modules/icons/components/IconDeleteRowHighlight.js";
|
|
39
|
+
import { default as default40 } from "./modules/icons/components/IconDeleteRow.js";
|
|
40
|
+
import { default as default41 } from "./modules/icons/components/IconDelete.js";
|
|
41
|
+
import { default as default42 } from "./modules/icons/components/IconDepositeInbox.js";
|
|
42
|
+
import { default as default43 } from "./modules/icons/components/IconDownload.js";
|
|
43
|
+
import { default as default44 } from "./modules/icons/components/IconEdit.js";
|
|
44
|
+
import { default as default45 } from "./modules/icons/components/IconError.js";
|
|
45
|
+
import { default as default46 } from "./modules/icons/components/IconExternalLink.js";
|
|
46
|
+
import { default as default47 } from "./modules/icons/components/IconFiles.js";
|
|
47
|
+
import { default as default48 } from "./modules/icons/components/IconFilter.js";
|
|
48
|
+
import { default as default49 } from "./modules/icons/components/IconFlag.js";
|
|
49
|
+
import { default as default50 } from "./modules/icons/components/IconFolderAdd.js";
|
|
50
|
+
import { default as default51 } from "./modules/icons/components/IconFolderDelete.js";
|
|
51
|
+
import { default as default52 } from "./modules/icons/components/IconFolderMove.js";
|
|
52
|
+
import { default as default53 } from "./modules/icons/components/IconFolder.js";
|
|
53
|
+
import { default as default54 } from "./modules/icons/components/IconForgoing.js";
|
|
54
|
+
import { default as default55 } from "./modules/icons/components/IconFullScreen.js";
|
|
55
|
+
import { default as default56 } from "./modules/icons/components/IconGlobe2.js";
|
|
56
|
+
import { default as default57 } from "./modules/icons/components/IconGlobe.js";
|
|
57
|
+
import { default as default58 } from "./modules/icons/components/IconGroupAvatar.js";
|
|
58
|
+
import { default as default59 } from "./modules/icons/components/IconHandMove.js";
|
|
59
|
+
import { default as default60 } from "./modules/icons/components/IconHeadphone.js";
|
|
60
|
+
import { default as default61 } from "./modules/icons/components/IconHide.js";
|
|
61
|
+
import { default as default62 } from "./modules/icons/components/IconHighlightColumn.js";
|
|
62
|
+
import { default as default63 } from "./modules/icons/components/IconHighlightRow.js";
|
|
63
|
+
import { default as default64 } from "./modules/icons/components/IconHome.js";
|
|
64
|
+
import { default as default65 } from "./modules/icons/components/IconHourglass.js";
|
|
65
|
+
import { default as default66 } from "./modules/icons/components/IconImageSizeLarge.js";
|
|
66
|
+
import { default as default67 } from "./modules/icons/components/IconImageSizeMedium.js";
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/IconImageSizeSmall.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/IconInbox.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/IconInfoCircle.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/IconInfoRectangle.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/IconLandscape.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/IconLibrary.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/IconLink.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/IconListOrder.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/IconLoader.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/IconLock.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconMailRecall.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconMail.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconMegaphone.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconMergeCells.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconMessageInfo.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconMicOff.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconMic.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconMinus.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconMove.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconNoColors.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconNotes.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconNotification.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconOptions.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconOrderedList.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconPaperclip.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconPause.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconPinOff.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconPinOn.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconPlaceholder.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconPlayFilled.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconPlay.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconPlus.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconPointerDefault.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconPointerHand.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconPrint.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconQuestionMark.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconQuestion.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRafterDown.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconRafterLeft.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconRafterRight.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconRafterUp.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconReaction.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconReadMail.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconRecordPause.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconRecordStop.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconRecordVideo.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconRecord.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconRedo.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconRefresh.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconReset.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconRestart.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconRestore.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSave.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSearch.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSee.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSend.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSetBackground.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconSettings.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconShare.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconSignature.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconSmartphone.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconSmiley.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconSortDescending.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconSortTime.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconSpeechToText.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconSplitCells.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconSquareRoot.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconStarFull.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconStar.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconSubscript.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconSuccessFill.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconSuperscript.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconTable.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconTextBold.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconTextColor.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconTextHighlight.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconTextItalic.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconTextPage.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconTextSize.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconTextToSpeechOff.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconTextTypo.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconTextUnderline.js";
|
|
153
|
+
import { default as default154 } from "./modules/icons/components/IconTextVanilla.js";
|
|
154
|
+
import { default as default155 } from "./modules/icons/components/IconToolCenter.js";
|
|
155
|
+
import { default as default156 } from "./modules/icons/components/IconTool.js";
|
|
156
|
+
import { default as default157 } from "./modules/icons/components/IconTrendingUp.js";
|
|
157
|
+
import { default as default158 } from "./modules/icons/components/IconUndoAll.js";
|
|
158
|
+
import { default as default159 } from "./modules/icons/components/IconUndo.js";
|
|
159
|
+
import { default as default160 } from "./modules/icons/components/IconUnion.js";
|
|
160
|
+
import { default as default161 } from "./modules/icons/components/IconUnlink.js";
|
|
161
|
+
import { default as default162 } from "./modules/icons/components/IconUnlock.js";
|
|
162
|
+
import { default as default163 } from "./modules/icons/components/IconUnreadMail.js";
|
|
163
|
+
import { default as default164 } from "./modules/icons/components/IconUpload.js";
|
|
164
|
+
import { default as default165 } from "./modules/icons/components/IconUserSearch.js";
|
|
165
|
+
import { default as default166 } from "./modules/icons/components/IconUser.js";
|
|
166
|
+
import { default as default167 } from "./modules/icons/components/IconUsers.js";
|
|
167
|
+
import { default as default168 } from "./modules/icons/components/IconVideo.js";
|
|
168
|
+
import { default as default169 } from "./modules/icons/components/IconViewCalendar.js";
|
|
169
|
+
import { default as default170 } from "./modules/icons/components/IconViewList.js";
|
|
170
|
+
import { default as default171 } from "./modules/icons/components/IconWand.js";
|
|
171
|
+
import { default as default172 } from "./modules/icons/components/IconWrite.js";
|
|
172
|
+
import { default as default173 } from "./modules/icons/components/IconZoomIn.js";
|
|
173
|
+
import { default as default174 } from "./modules/icons/components/IconZoomOut.js";
|
|
173
174
|
export {
|
|
174
175
|
default3 as IconAdd,
|
|
175
176
|
default2 as IconAddUser,
|
|
@@ -197,150 +198,151 @@ export {
|
|
|
197
198
|
default25 as IconCenter,
|
|
198
199
|
default26 as IconCheck,
|
|
199
200
|
default27 as IconChecklist,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
default32 as
|
|
205
|
-
default33 as
|
|
206
|
-
default34 as
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
default42 as
|
|
215
|
-
default43 as
|
|
216
|
-
default44 as
|
|
217
|
-
default45 as
|
|
218
|
-
default46 as
|
|
219
|
-
default47 as
|
|
220
|
-
default48 as
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
default50 as
|
|
224
|
-
default51 as
|
|
225
|
-
|
|
226
|
-
default54 as
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
default58 as
|
|
231
|
-
default59 as
|
|
232
|
-
default60 as
|
|
233
|
-
default61 as
|
|
234
|
-
default62 as
|
|
235
|
-
default63 as
|
|
236
|
-
default64 as
|
|
237
|
-
default65 as
|
|
238
|
-
default66 as
|
|
239
|
-
default67 as
|
|
240
|
-
default68 as
|
|
241
|
-
default69 as
|
|
242
|
-
default70 as
|
|
243
|
-
default71 as
|
|
244
|
-
default72 as
|
|
245
|
-
default73 as
|
|
246
|
-
default74 as
|
|
247
|
-
default75 as
|
|
248
|
-
default76 as
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
default80 as
|
|
253
|
-
default81 as
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
default85 as
|
|
258
|
-
default86 as
|
|
259
|
-
default87 as
|
|
260
|
-
default88 as
|
|
261
|
-
default89 as
|
|
262
|
-
default90 as
|
|
263
|
-
default91 as
|
|
264
|
-
default92 as
|
|
265
|
-
default93 as
|
|
266
|
-
default94 as
|
|
267
|
-
default95 as
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
default99 as
|
|
272
|
-
default100 as
|
|
273
|
-
default101 as
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
default105 as
|
|
278
|
-
default106 as
|
|
279
|
-
default107 as
|
|
280
|
-
default108 as
|
|
281
|
-
default109 as
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
default111 as
|
|
285
|
-
default112 as
|
|
286
|
-
|
|
287
|
-
default115 as
|
|
288
|
-
default116 as
|
|
289
|
-
default117 as
|
|
290
|
-
default118 as
|
|
291
|
-
default119 as
|
|
292
|
-
default120 as
|
|
293
|
-
default121 as
|
|
294
|
-
default122 as
|
|
295
|
-
default123 as
|
|
296
|
-
default124 as
|
|
297
|
-
default125 as
|
|
298
|
-
default126 as
|
|
299
|
-
default127 as
|
|
300
|
-
default128 as
|
|
301
|
-
default129 as
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
default133 as
|
|
306
|
-
default134 as
|
|
307
|
-
default135 as
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
default139 as
|
|
312
|
-
default140 as
|
|
313
|
-
default141 as
|
|
314
|
-
default142 as
|
|
315
|
-
default143 as
|
|
316
|
-
default144 as
|
|
317
|
-
default145 as
|
|
318
|
-
default146 as
|
|
319
|
-
default147 as
|
|
320
|
-
default148 as
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
default152 as
|
|
325
|
-
default153 as
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
default160 as
|
|
333
|
-
default161 as
|
|
334
|
-
default162 as
|
|
335
|
-
default163 as
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
default167 as
|
|
340
|
-
default168 as
|
|
341
|
-
default169 as
|
|
342
|
-
default170 as
|
|
343
|
-
default171 as
|
|
344
|
-
default172 as
|
|
345
|
-
default173 as
|
|
201
|
+
default29 as IconClock,
|
|
202
|
+
default28 as IconClockAlert,
|
|
203
|
+
default31 as IconClose,
|
|
204
|
+
default30 as IconCloseFullScreen,
|
|
205
|
+
default32 as IconCode,
|
|
206
|
+
default33 as IconCopy,
|
|
207
|
+
default34 as IconCrop,
|
|
208
|
+
default35 as IconCut,
|
|
209
|
+
default41 as IconDelete,
|
|
210
|
+
default36 as IconDeleteColor,
|
|
211
|
+
default38 as IconDeleteColumn,
|
|
212
|
+
default37 as IconDeleteColumnHighlight,
|
|
213
|
+
default40 as IconDeleteRow,
|
|
214
|
+
default39 as IconDeleteRowHighlight,
|
|
215
|
+
default42 as IconDepositeInbox,
|
|
216
|
+
default43 as IconDownload,
|
|
217
|
+
default44 as IconEdit,
|
|
218
|
+
default45 as IconError,
|
|
219
|
+
default46 as IconExternalLink,
|
|
220
|
+
default47 as IconFiles,
|
|
221
|
+
default48 as IconFilter,
|
|
222
|
+
default49 as IconFlag,
|
|
223
|
+
default53 as IconFolder,
|
|
224
|
+
default50 as IconFolderAdd,
|
|
225
|
+
default51 as IconFolderDelete,
|
|
226
|
+
default52 as IconFolderMove,
|
|
227
|
+
default54 as IconForgoing,
|
|
228
|
+
default55 as IconFullScreen,
|
|
229
|
+
default57 as IconGlobe,
|
|
230
|
+
default56 as IconGlobe2,
|
|
231
|
+
default58 as IconGroupAvatar,
|
|
232
|
+
default59 as IconHandMove,
|
|
233
|
+
default60 as IconHeadphone,
|
|
234
|
+
default61 as IconHide,
|
|
235
|
+
default62 as IconHighlightColumn,
|
|
236
|
+
default63 as IconHighlightRow,
|
|
237
|
+
default64 as IconHome,
|
|
238
|
+
default65 as IconHourglass,
|
|
239
|
+
default66 as IconImageSizeLarge,
|
|
240
|
+
default67 as IconImageSizeMedium,
|
|
241
|
+
default68 as IconImageSizeSmall,
|
|
242
|
+
default69 as IconInbox,
|
|
243
|
+
default70 as IconInfoCircle,
|
|
244
|
+
default71 as IconInfoRectangle,
|
|
245
|
+
default72 as IconLandscape,
|
|
246
|
+
default73 as IconLibrary,
|
|
247
|
+
default74 as IconLink,
|
|
248
|
+
default75 as IconListOrder,
|
|
249
|
+
default76 as IconLoader,
|
|
250
|
+
default77 as IconLock,
|
|
251
|
+
default79 as IconMail,
|
|
252
|
+
default78 as IconMailRecall,
|
|
253
|
+
default80 as IconMegaphone,
|
|
254
|
+
default81 as IconMergeCells,
|
|
255
|
+
default82 as IconMessageInfo,
|
|
256
|
+
default84 as IconMic,
|
|
257
|
+
default83 as IconMicOff,
|
|
258
|
+
default85 as IconMinus,
|
|
259
|
+
default86 as IconMove,
|
|
260
|
+
default87 as IconNoColors,
|
|
261
|
+
default88 as IconNotes,
|
|
262
|
+
default89 as IconNotification,
|
|
263
|
+
default90 as IconOptions,
|
|
264
|
+
default91 as IconOrderedList,
|
|
265
|
+
default92 as IconPaperclip,
|
|
266
|
+
default93 as IconPause,
|
|
267
|
+
default94 as IconPinOff,
|
|
268
|
+
default95 as IconPinOn,
|
|
269
|
+
default96 as IconPlaceholder,
|
|
270
|
+
default98 as IconPlay,
|
|
271
|
+
default97 as IconPlayFilled,
|
|
272
|
+
default99 as IconPlus,
|
|
273
|
+
default100 as IconPointerDefault,
|
|
274
|
+
default101 as IconPointerHand,
|
|
275
|
+
default102 as IconPrint,
|
|
276
|
+
default104 as IconQuestion,
|
|
277
|
+
default103 as IconQuestionMark,
|
|
278
|
+
default105 as IconRafterDown,
|
|
279
|
+
default106 as IconRafterLeft,
|
|
280
|
+
default107 as IconRafterRight,
|
|
281
|
+
default108 as IconRafterUp,
|
|
282
|
+
default109 as IconReaction,
|
|
283
|
+
default110 as IconReadMail,
|
|
284
|
+
default114 as IconRecord,
|
|
285
|
+
default111 as IconRecordPause,
|
|
286
|
+
default112 as IconRecordStop,
|
|
287
|
+
default113 as IconRecordVideo,
|
|
288
|
+
default115 as IconRedo,
|
|
289
|
+
default116 as IconRefresh,
|
|
290
|
+
default117 as IconReset,
|
|
291
|
+
default118 as IconRestart,
|
|
292
|
+
default119 as IconRestore,
|
|
293
|
+
default120 as IconSave,
|
|
294
|
+
default121 as IconSearch,
|
|
295
|
+
default122 as IconSee,
|
|
296
|
+
default123 as IconSend,
|
|
297
|
+
default124 as IconSetBackground,
|
|
298
|
+
default125 as IconSettings,
|
|
299
|
+
default126 as IconShare,
|
|
300
|
+
default127 as IconSignature,
|
|
301
|
+
default128 as IconSmartphone,
|
|
302
|
+
default129 as IconSmiley,
|
|
303
|
+
default130 as IconSortAscendingLetters,
|
|
304
|
+
default132 as IconSortDescending,
|
|
305
|
+
default131 as IconSortDescendingLetters,
|
|
306
|
+
default133 as IconSortTime,
|
|
307
|
+
default134 as IconSpeechToText,
|
|
308
|
+
default135 as IconSplitCells,
|
|
309
|
+
default136 as IconSquareRoot,
|
|
310
|
+
default138 as IconStar,
|
|
311
|
+
default137 as IconStarFull,
|
|
312
|
+
default139 as IconSubscript,
|
|
313
|
+
default140 as IconSuccessFill,
|
|
314
|
+
default141 as IconSuccessOutline,
|
|
315
|
+
default142 as IconSuperscript,
|
|
316
|
+
default143 as IconTable,
|
|
317
|
+
default144 as IconTextBold,
|
|
318
|
+
default145 as IconTextColor,
|
|
319
|
+
default146 as IconTextHighlight,
|
|
320
|
+
default147 as IconTextItalic,
|
|
321
|
+
default148 as IconTextPage,
|
|
322
|
+
default149 as IconTextSize,
|
|
323
|
+
default151 as IconTextToSpeech,
|
|
324
|
+
default150 as IconTextToSpeechOff,
|
|
325
|
+
default152 as IconTextTypo,
|
|
326
|
+
default153 as IconTextUnderline,
|
|
327
|
+
default154 as IconTextVanilla,
|
|
328
|
+
default156 as IconTool,
|
|
329
|
+
default155 as IconToolCenter,
|
|
330
|
+
default157 as IconTrendingUp,
|
|
331
|
+
default159 as IconUndo,
|
|
332
|
+
default158 as IconUndoAll,
|
|
333
|
+
default160 as IconUnion,
|
|
334
|
+
default161 as IconUnlink,
|
|
335
|
+
default162 as IconUnlock,
|
|
336
|
+
default163 as IconUnreadMail,
|
|
337
|
+
default164 as IconUpload,
|
|
338
|
+
default166 as IconUser,
|
|
339
|
+
default165 as IconUserSearch,
|
|
340
|
+
default167 as IconUsers,
|
|
341
|
+
default168 as IconVideo,
|
|
342
|
+
default169 as IconViewCalendar,
|
|
343
|
+
default170 as IconViewList,
|
|
344
|
+
default171 as IconWand,
|
|
345
|
+
default172 as IconWrite,
|
|
346
|
+
default173 as IconZoomIn,
|
|
347
|
+
default174 as IconZoomOut
|
|
346
348
|
};
|
package/dist/index.js
CHANGED
|
@@ -100,12 +100,14 @@ import { default as default99 } from "./modules/multimedia/VideoRecorder/VideoRe
|
|
|
100
100
|
import { default as default100 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
101
101
|
import { default as default101 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
102
102
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
103
|
+
import { Divider } from "./components/Divider/Divider.js";
|
|
103
104
|
import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
|
|
104
105
|
import { Column, Grid } from "./components/Grid/Grid.js";
|
|
105
106
|
import { Layout } from "./components/Layout/Layout.js";
|
|
106
107
|
import { List } from "./components/List/List.js";
|
|
107
108
|
import { Menu } from "./components/Menu/components/Menu.js";
|
|
108
109
|
import { Popover, PopoverBody, PopoverFooter, PopoverHeader } from "./components/Popover/Popover.js";
|
|
110
|
+
import { SeparatedInfo } from "./components/SeparatedInfo/SeparatedInfo.js";
|
|
109
111
|
import { Tabs } from "./components/Tabs/components/Tabs.js";
|
|
110
112
|
import { Toolbar } from "./components/Toolbar/Toolbar.js";
|
|
111
113
|
import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
|
|
@@ -150,6 +152,7 @@ export {
|
|
|
150
152
|
default18 as Combobox,
|
|
151
153
|
default84 as ConfirmModal,
|
|
152
154
|
DefaultPalette,
|
|
155
|
+
Divider,
|
|
153
156
|
DndTree,
|
|
154
157
|
default19 as Dropdown,
|
|
155
158
|
default20 as Dropzone,
|
|
@@ -195,6 +198,7 @@ export {
|
|
|
195
198
|
default35 as SearchBar,
|
|
196
199
|
default13 as SearchButton,
|
|
197
200
|
default36 as Select,
|
|
201
|
+
SeparatedInfo,
|
|
198
202
|
default90 as ShareBlog,
|
|
199
203
|
default89 as ShareModal,
|
|
200
204
|
default45 as SortableTree,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Editor component properties
|
|
3
|
+
*/
|
|
4
|
+
export interface EditorPreviewProps {
|
|
5
|
+
/** Rich content to render. */
|
|
6
|
+
content: string;
|
|
7
|
+
/** Display with or without a border */
|
|
8
|
+
variant?: 'outline' | 'ghost';
|
|
9
|
+
onDetailClick?: () => void;
|
|
10
|
+
onMediaClick?: () => void;
|
|
11
|
+
maxMediaDisplayed?: number;
|
|
12
|
+
}
|
|
13
|
+
declare const EditorPreview: ({ content, variant, onDetailClick, onMediaClick, maxMediaDisplayed, }: EditorPreviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default EditorPreview;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useState, useEffect } from "react";
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import { getThumbnail } from "@edifice.io/utilities";
|
|
5
|
+
import { useTranslation } from "react-i18next";
|
|
6
|
+
import Image from "../../../../components/Image/Image.js";
|
|
7
|
+
const EditorPreview = ({
|
|
8
|
+
content,
|
|
9
|
+
variant = "outline",
|
|
10
|
+
onDetailClick,
|
|
11
|
+
onMediaClick,
|
|
12
|
+
maxMediaDisplayed = 3
|
|
13
|
+
}) => {
|
|
14
|
+
const {
|
|
15
|
+
t
|
|
16
|
+
} = useTranslation(), [summaryContent, setSummaryContent] = useState(""), [medias, setMedias] = useState([]), borderClass = clsx(variant === "outline" && "border rounded-3 py-12 px-16"), hasMediaCallback = onDetailClick || onMediaClick, handleMediaClick = (e) => {
|
|
17
|
+
onMediaClick && (e.stopPropagation(), onMediaClick());
|
|
18
|
+
};
|
|
19
|
+
return useEffect(() => {
|
|
20
|
+
const contentHTML = content;
|
|
21
|
+
if (contentHTML) {
|
|
22
|
+
const doc = new DOMParser().parseFromString(contentHTML, "text/html"), mediaElements = Array.from(doc.querySelectorAll("img, video, iframe, audio, embed"));
|
|
23
|
+
setMedias(mediaElements.filter((el) => el.tagName.toLowerCase() === "img").map((el) => {
|
|
24
|
+
const image = el;
|
|
25
|
+
return image.src ? {
|
|
26
|
+
url: getThumbnail(image.src, 0, 300),
|
|
27
|
+
alt: image.alt
|
|
28
|
+
} : {
|
|
29
|
+
url: "",
|
|
30
|
+
alt: ""
|
|
31
|
+
};
|
|
32
|
+
})), mediaElements.forEach((el) => {
|
|
33
|
+
var _a;
|
|
34
|
+
return (_a = el.parentNode) == null ? void 0 : _a.removeChild(el);
|
|
35
|
+
}), setSummaryContent(doc.body.textContent || "");
|
|
36
|
+
}
|
|
37
|
+
}, [content]), /* @__PURE__ */ jsxs("div", { className: borderClass, "data-testid": "editor-preview", onClick: onDetailClick, tabIndex: onDetailClick ? -1 : void 0, role: onDetailClick ? "button" : void 0, children: [
|
|
38
|
+
/* @__PURE__ */ jsx("div", { className: "flex-fill text-truncate text-truncate-2 post-preview-content overflow-hidden", children: summaryContent }),
|
|
39
|
+
/* @__PURE__ */ jsx("div", { onClick: handleMediaClick, tabIndex: hasMediaCallback ? -1 : void 0, role: hasMediaCallback ? "button" : void 0, className: "d-flex align-items-center justify-content-center gap-24 px-32 pt-16", children: medias.slice(0, maxMediaDisplayed).map((media, index) => /* @__PURE__ */ jsxs("div", { className: clsx("position-relative col-12 col-md-4 ", {
|
|
40
|
+
"d-none d-md-block": index >= 1
|
|
41
|
+
}), style: {
|
|
42
|
+
maxWidth: "150px"
|
|
43
|
+
}, children: [
|
|
44
|
+
/* @__PURE__ */ jsx(Image, { alt: media.alt, objectFit: "cover", ratio: "16", className: "rounded", src: media.url, sizes: "" }),
|
|
45
|
+
(index === 0 || index === 2) && medias.length - (index + 1) > 0 && /* @__PURE__ */ jsx("div", { className: clsx("position-absolute top-0 bottom-0 start-0 end-0 d-flex justify-content-center align-items-center rounded text-light bg-dark bg-opacity-50", {
|
|
46
|
+
"d-flex d-md-none": index === 0,
|
|
47
|
+
"d-none d-md-flex": index === 2
|
|
48
|
+
}), children: t("editor.preview.moreMedia", {
|
|
49
|
+
mediaCount: medias.length - (index + 1)
|
|
50
|
+
}) })
|
|
51
|
+
] }, media.url)) })
|
|
52
|
+
] });
|
|
53
|
+
};
|
|
54
|
+
export {
|
|
55
|
+
EditorPreview as default
|
|
56
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Editor component properties
|
|
3
|
+
*/
|
|
4
|
+
export interface EditorPreviewSkeletonProps {
|
|
5
|
+
variant?: 'outline' | 'ghost';
|
|
6
|
+
}
|
|
7
|
+
declare const EditorPreview: ({ variant }: EditorPreviewSkeletonProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default EditorPreview;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
import TextSkeleton from "../../../../components/Skeleton/TextSkeleton.js";
|
|
4
|
+
import Image from "../../../../components/Image/Image.js";
|
|
5
|
+
const EditorPreview = ({
|
|
6
|
+
variant = "outline"
|
|
7
|
+
}) => {
|
|
8
|
+
const borderClass = clsx(variant === "outline" && "border rounded-3"), contentClass = clsx("mt-16", variant === "outline" && "my-12 mx-16");
|
|
9
|
+
return /* @__PURE__ */ jsx("div", { className: borderClass, "data-testid": "editor-preview", children: /* @__PURE__ */ jsxs("div", { className: contentClass, children: [
|
|
10
|
+
/* @__PURE__ */ jsx(TextSkeleton, { className: "col-12" }),
|
|
11
|
+
/* @__PURE__ */ jsx(TextSkeleton, { className: "col-12" }),
|
|
12
|
+
/* @__PURE__ */ jsxs("div", { className: "d-flex justify-content-center gap-24 px-32 pt-16", children: [
|
|
13
|
+
/* @__PURE__ */ jsx("div", { style: {
|
|
14
|
+
maxWidth: "150px"
|
|
15
|
+
}, className: "col-12 col-md-4", children: /* @__PURE__ */ jsx(Image, { alt: "", objectFit: "cover", ratio: "16", className: "rounded placeholder", src: "", sizes: "" }) }),
|
|
16
|
+
/* @__PURE__ */ jsx("div", { style: {
|
|
17
|
+
maxWidth: "150px"
|
|
18
|
+
}, className: "col-12 col-md-4", children: /* @__PURE__ */ jsx(Image, { alt: "", objectFit: "cover", ratio: "16", className: "rounded placeholder", src: "", sizes: "" }) })
|
|
19
|
+
] })
|
|
20
|
+
] }) });
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
EditorPreview as default
|
|
24
|
+
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export * from './Editor';
|
|
2
2
|
export { default as Editor } from './Editor';
|
|
3
|
+
export { default as EditorPreview } from './EditorPreview';
|
|
4
|
+
export { default as EditorPreviewSkeleton } from './EditorPreviewSkeleton';
|
|
3
5
|
export { default as EditorSkeleton } from './EditorSkeleton';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useEffect } from "react";
|
|
3
|
-
import Mathematics from "@tiptap
|
|
3
|
+
import Mathematics from "@tiptap/extension-mathematics";
|
|
4
4
|
import { useEditor, EditorContent } from "@tiptap/react";
|
|
5
5
|
import StarterKit from "@tiptap/starter-kit";
|
|
6
6
|
import { useTranslation } from "react-i18next";
|
|
@@ -7,7 +7,7 @@ import { Hyperlink } from "@edifice.io/tiptap-extensions/hyperlink";
|
|
|
7
7
|
import { SpeechRecognition } from "@edifice.io/tiptap-extensions/speech-recognition";
|
|
8
8
|
import { SpeechSynthesis } from "@edifice.io/tiptap-extensions/speech-synthesis";
|
|
9
9
|
import { TableCell } from "@edifice.io/tiptap-extensions/table-cell";
|
|
10
|
-
import { Mathematics } from "@tiptap
|
|
10
|
+
import { Mathematics } from "@tiptap/extension-mathematics";
|
|
11
11
|
import Color from "@tiptap/extension-color";
|
|
12
12
|
import Focus from "@tiptap/extension-focus";
|
|
13
13
|
import FontFamily from "@tiptap/extension-font-family";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconClockAlert: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconClockAlert;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconClockAlert = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-clock-alert_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M0 10.075C0 4.51 4.51 0 10.075 0c4.573 0 8.431 3.046 9.663 7.217a1 1 0 0 1-1.918.566A8.075 8.075 0 1 0 7.783 17.82a1 1 0 0 1-.566 1.918C3.046 18.506 0 14.648 0 10.075" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M10.075 4.108a1 1 0 0 1 1 1v5.43a1 1 0 0 1-.357.767L7.83 13.728a1 1 0 1 1-1.286-1.532l2.53-2.123V5.108a1 1 0 0 1 1-1M17 13.3a1 1 0 0 1 1 1v2.2a1 1 0 1 1-2 0v-2.2a1 1 0 0 1 1-1M17 18.4a1 1 0 1 0 0 2h.006a1 1 0 1 0 0-2z" }),
|
|
11
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M17 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14m-5 7a5 5 0 1 1 10 0 5 5 0 0 1-10 0", clipRule: "evenodd" })
|
|
12
|
+
] }),
|
|
13
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-clock-alert_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
14
|
+
] });
|
|
15
|
+
export {
|
|
16
|
+
SvgIconClockAlert as default
|
|
17
|
+
};
|
|
@@ -24,6 +24,7 @@ export { default as IconCantoo } from './IconCantoo';
|
|
|
24
24
|
export { default as IconCenter } from './IconCenter';
|
|
25
25
|
export { default as IconCheck } from './IconCheck';
|
|
26
26
|
export { default as IconChecklist } from './IconChecklist';
|
|
27
|
+
export { default as IconClockAlert } from './IconClockAlert';
|
|
27
28
|
export { default as IconClock } from './IconClock';
|
|
28
29
|
export { default as IconCloseFullScreen } from './IconCloseFullScreen';
|
|
29
30
|
export { default as IconClose } from './IconClose';
|
|
@@ -66,7 +66,7 @@ const OnboardingModal = /* @__PURE__ */ forwardRef(({
|
|
|
66
66
|
isOnboarding ? handleCloseWithPreference() : handleCloseWithoutPreference();
|
|
67
67
|
}, children: t(closeText || "explorer.modal.onboarding.trash.close") })
|
|
68
68
|
] })
|
|
69
|
-
] }), document.getElementById("portal"));
|
|
69
|
+
] }), document.getElementById("portal") || document.body);
|
|
70
70
|
});
|
|
71
71
|
export {
|
|
72
72
|
OnboardingModal as default
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.3.2-develop-
|
|
3
|
+
"version": "2.3.2-develop-b2school-actualites.20251001121550",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"@tiptap/extension-image": "2.11.0",
|
|
91
91
|
"@tiptap/extension-link": "2.11.0",
|
|
92
92
|
"@tiptap/extension-list-item": "2.11.0",
|
|
93
|
+
"@tiptap/extension-mathematics": "2.22.0",
|
|
93
94
|
"@tiptap/extension-placeholder": "2.11.0",
|
|
94
95
|
"@tiptap/extension-subscript": "2.11.0",
|
|
95
96
|
"@tiptap/extension-superscript": "2.11.0",
|
|
@@ -130,9 +131,9 @@
|
|
|
130
131
|
"react-slugify": "^3.0.3",
|
|
131
132
|
"swiper": "^10.1.0",
|
|
132
133
|
"ua-parser-js": "^1.0.36",
|
|
133
|
-
"@edifice.io/bootstrap": "2.3.2-develop-
|
|
134
|
-
"@edifice.io/tiptap-extensions": "2.3.2-develop-
|
|
135
|
-
"@edifice.io/utilities": "2.3.2-develop-
|
|
134
|
+
"@edifice.io/bootstrap": "2.3.2-develop-b2school-actualites.20251001121550",
|
|
135
|
+
"@edifice.io/tiptap-extensions": "2.3.2-develop-b2school-actualites.20251001121550",
|
|
136
|
+
"@edifice.io/utilities": "2.3.2-develop-b2school-actualites.20251001121550"
|
|
136
137
|
},
|
|
137
138
|
"devDependencies": {
|
|
138
139
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -163,8 +164,8 @@
|
|
|
163
164
|
"vite": "^5.4.11",
|
|
164
165
|
"vite-plugin-dts": "^4.1.0",
|
|
165
166
|
"vite-tsconfig-paths": "^5.0.1",
|
|
166
|
-
"@edifice.io/
|
|
167
|
-
"@edifice.io/
|
|
167
|
+
"@edifice.io/config": "2.3.2-develop-b2school-actualites.20251001121550",
|
|
168
|
+
"@edifice.io/client": "2.3.2-develop-b2school-actualites.20251001121550"
|
|
168
169
|
},
|
|
169
170
|
"peerDependencies": {
|
|
170
171
|
"@react-spring/web": "^9.7.5",
|
|
@@ -174,9 +175,6 @@
|
|
|
174
175
|
"react-hook-form": "^7.53.0",
|
|
175
176
|
"react-i18next": "^14.1.0"
|
|
176
177
|
},
|
|
177
|
-
"optionalDependencies": {
|
|
178
|
-
"@tiptap-pro/extension-mathematics": "2.2.1"
|
|
179
|
-
},
|
|
180
178
|
"publishConfig": {
|
|
181
179
|
"access": "public"
|
|
182
180
|
},
|