@edifice.io/react 2.3.2-develop-wl.20250925113622 → 2.3.2-develop-b2school.20251001090200
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/Avatar/Avatar.d.ts +5 -0
- package/dist/components/Avatar/Avatar.js +8 -2
- package/dist/components/AvatarGroup/AvatarGroup.d.ts +10 -0
- package/dist/components/AvatarGroup/AvatarGroup.js +5 -5
- package/dist/components/Dropdown/Dropdown.d.ts +10 -4
- package/dist/components/Dropdown/Dropdown.js +24 -8
- package/dist/components/Flex/Flex.d.ts +2 -1
- package/dist/components/Flex/Flex.js +8 -6
- package/dist/components/Layout/Layout.d.ts +5 -1
- package/dist/components/Layout/Layout.js +5 -2
- 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/RadioCard/RadioCard.d.ts +37 -0
- package/dist/components/RadioCard/index.d.ts +2 -0
- package/dist/components/StackedGroup/StackedGroup.d.ts +5 -0
- package/dist/components/StackedGroup/StackedGroup.js +10 -8
- package/dist/components/Stepper/Stepper.d.ts +18 -0
- package/dist/components/Stepper/Stepper.js +15 -0
- package/dist/components/Stepper/index.d.ts +1 -0
- package/dist/components/Tabs/components/Tabs.d.ts +27 -3
- package/dist/components/Tabs/components/Tabs.js +9 -3
- package/dist/components/Tabs/components/TabsList.d.ts +15 -1
- package/dist/components/Tabs/components/TabsList.js +15 -5
- package/dist/components/Tabs/components/TabsPanel.d.ts +9 -1
- package/dist/components/Tabs/components/TabsPanel.js +8 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/editor.js +18 -16
- package/dist/hooks/useDropdown/useDropdown.d.ts +2 -0
- package/dist/hooks/useDropdown/useDropdown.js +2 -0
- package/dist/icons-nav.js +28 -26
- package/dist/icons.js +190 -184
- package/dist/index.js +124 -120
- package/dist/modules/editor/components/MathsModal/MathsModal.js +1 -1
- package/dist/modules/editor/components/NodeView/IframeNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/IframeNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +1 -0
- package/dist/modules/editor/components/Renderer/MediaRenderer.js +20 -6
- package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +1 -1
- package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +1 -1
- package/dist/modules/editor/hooks/useResizeMedia.d.ts +4 -1
- package/dist/modules/editor/hooks/useResizeMedia.js +33 -21
- package/dist/modules/editor/hooks/useTipTapEditor.js +4 -4
- package/dist/modules/icons/components/IconMegaphone.d.ts +7 -0
- package/dist/modules/icons/components/IconMegaphone.js +12 -0
- package/dist/modules/icons/components/IconNotes.d.ts +7 -0
- package/dist/modules/icons/components/IconNotes.js +13 -0
- package/dist/modules/icons/components/IconUnion.d.ts +7 -0
- package/dist/modules/icons/components/IconUnion.js +15 -0
- package/dist/modules/icons/components/apps/IconCommunities.js +2 -2
- package/dist/modules/icons/components/index.d.ts +3 -0
- package/dist/modules/icons/components/nav/IconCommunities.d.ts +7 -0
- package/dist/modules/icons/components/nav/IconCommunities.js +12 -0
- package/dist/modules/icons/components/nav/index.d.ts +1 -0
- package/dist/modules/modals/OnboardingModal/OnboardingModal.js +1 -1
- package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +57 -2
- package/dist/modules/modals/ResourceModal/ResourceModal.js +20 -16
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +1 -1
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +12 -6
- package/dist/modules/modals/ShareModal/ShareModal.js +2 -0
- package/dist/modules/modals/ShareModal/hooks/useShareRightDisabled.d.ts +8 -0
- package/dist/modules/modals/ShareModal/hooks/useShareRightDisabled.js +11 -0
- package/dist/modules/modals/ShareModal/hooks/useShareRightVisible.d.ts +11 -0
- package/dist/modules/modals/ShareModal/hooks/useShareRightVisible.js +11 -0
- package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -2
- package/dist/modules/multimedia/FileCard/FileCard.js +15 -5
- package/dist/modules/multimedia/FileCard/FileIcon.d.ts +5 -1
- package/dist/modules/multimedia/FileCard/FileIcon.js +2 -2
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +3 -1
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +7 -6
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +3 -1
- package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +7 -2
- package/dist/modules/multimedia/index.d.ts +1 -0
- package/dist/multimedia.js +12 -10
- package/package.json +7 -9
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
2
3
|
import { useTabsContext } from "../context/TabsContext.js";
|
|
3
4
|
const TabsPanel = ({
|
|
4
5
|
children,
|
|
5
|
-
currentItem
|
|
6
|
+
currentItem,
|
|
7
|
+
fullHeight,
|
|
8
|
+
className
|
|
6
9
|
}) => {
|
|
7
10
|
const {
|
|
8
11
|
activeTab
|
|
9
|
-
} = useTabsContext()
|
|
10
|
-
|
|
12
|
+
} = useTabsContext(), contentClasses = clsx("tab-content d-flex flex-fill w-100", {
|
|
13
|
+
"position-relative h-100": fullHeight
|
|
14
|
+
}, className);
|
|
15
|
+
return /* @__PURE__ */ jsx("div", { className: contentClasses, children: /* @__PURE__ */ jsx("div", { className: `tab-pane flex-fill w-100 fade ${activeTab === (currentItem == null ? void 0 : currentItem.id) ? "show active" : ""}`, id: `tabpanel-${currentItem == null ? void 0 : currentItem.id}`, role: "tabpanel", "aria-labelledby": `tab-${currentItem == null ? void 0 : currentItem.id}`, tabIndex: 0, children }) });
|
|
11
16
|
};
|
|
12
17
|
export {
|
|
13
18
|
TabsPanel as default
|
package/dist/editor.js
CHANGED
|
@@ -10,14 +10,15 @@ import { default as default9 } from "./modules/editor/components/NodeView/ImageN
|
|
|
10
10
|
import { default as default10 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
|
|
11
11
|
import { default as default11 } from "./modules/editor/components/NodeView/VideoNodeView.js";
|
|
12
12
|
import { default as default12 } from "./modules/editor/components/NodeView/InformationPaneNodeView.js";
|
|
13
|
-
import { default as default13 } from "./modules/editor/components/
|
|
14
|
-
import { default as default14 } from "./modules/editor/components/Renderer/
|
|
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/Toolbar/
|
|
13
|
+
import { default as default13 } from "./modules/editor/components/NodeView/IframeNodeView.js";
|
|
14
|
+
import { default as default14 } from "./modules/editor/components/Renderer/AttachmentRenderer.js";
|
|
15
|
+
import { default as default15 } from "./modules/editor/components/Renderer/AudioRenderer.js";
|
|
16
|
+
import { default as default16 } from "./modules/editor/components/Renderer/ConversationHistoryRenderer.js";
|
|
17
|
+
import { default as default17 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
|
|
18
|
+
import { default as default18 } from "./modules/editor/components/Renderer/MediaRenderer.js";
|
|
19
|
+
import { default as default19 } from "./modules/editor/components/Renderer/InformationPaneRenderer.js";
|
|
20
|
+
import { default as default20 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
21
|
+
import { default as default21 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
21
22
|
import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
|
|
22
23
|
import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
|
|
23
24
|
import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
|
|
@@ -34,27 +35,28 @@ import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
|
34
35
|
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
35
36
|
export {
|
|
36
37
|
default6 as AttachmentNodeView,
|
|
37
|
-
|
|
38
|
+
default14 as AttachmentRenderer,
|
|
38
39
|
default7 as AudioNodeView,
|
|
39
|
-
|
|
40
|
+
default15 as AudioRenderer,
|
|
40
41
|
default5 as BubbleMenuEditImage,
|
|
41
42
|
default8 as ConversationHistoryNodeView,
|
|
42
|
-
|
|
43
|
+
default16 as ConversationHistoryRenderer,
|
|
43
44
|
default3 as Editor,
|
|
44
45
|
EditorContent,
|
|
45
46
|
EditorContext,
|
|
46
47
|
Editor as EditorInstance,
|
|
47
48
|
default4 as EditorSkeleton,
|
|
48
49
|
EditorToolbar,
|
|
50
|
+
default13 as IframeNodeView,
|
|
49
51
|
default9 as ImageNodeView,
|
|
50
52
|
default12 as InformationPaneNodeView,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
default19 as InformationPaneRenderer,
|
|
54
|
+
default21 as LinkToolbar,
|
|
53
55
|
default10 as LinkerNodeView,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
+
default17 as LinkerRenderer,
|
|
57
|
+
default18 as MediaRenderer,
|
|
56
58
|
default2 as StarterKit,
|
|
57
|
-
|
|
59
|
+
default20 as TableToolbar,
|
|
58
60
|
default11 as VideoNodeView,
|
|
59
61
|
useActionOptions,
|
|
60
62
|
useCantooEditor,
|
|
@@ -28,6 +28,8 @@ export interface UseDropdownProps {
|
|
|
28
28
|
itemProps: Record<string, any>;
|
|
29
29
|
setVisible: Dispatch<SetStateAction<boolean>>;
|
|
30
30
|
openOnSpace?: boolean;
|
|
31
|
+
openDropdown: () => void;
|
|
32
|
+
closeDropdown: () => void;
|
|
31
33
|
}
|
|
32
34
|
declare const useDropdown: (placement: Placement | undefined, extraTriggerKeyDownHandler?: (event: React.KeyboardEvent<HTMLButtonElement>) => void, isTriggerHovered?: boolean, focusOnVisible?: boolean, openOnSpace?: boolean, focusOnMouseEnter?: boolean) => UseDropdownProps;
|
|
33
35
|
export default useDropdown;
|
package/dist/icons-nav.js
CHANGED
|
@@ -1,28 +1,30 @@
|
|
|
1
|
-
import { default as default2 } from "./modules/icons/components/nav/
|
|
2
|
-
import { default as default3 } from "./modules/icons/components/nav/
|
|
3
|
-
import { default as default4 } from "./modules/icons/components/nav/
|
|
4
|
-
import { default as default5 } from "./modules/icons/components/nav/
|
|
5
|
-
import { default as default6 } from "./modules/icons/components/nav/
|
|
6
|
-
import { default as default7 } from "./modules/icons/components/nav/
|
|
7
|
-
import { default as default8 } from "./modules/icons/components/nav/
|
|
8
|
-
import { default as default9 } from "./modules/icons/components/nav/
|
|
9
|
-
import { default as default10 } from "./modules/icons/components/nav/
|
|
10
|
-
import { default as default11 } from "./modules/icons/components/nav/
|
|
11
|
-
import { default as default12 } from "./modules/icons/components/nav/
|
|
12
|
-
import { default as default13 } from "./modules/icons/components/nav/
|
|
13
|
-
import { default as default14 } from "./modules/icons/components/nav/
|
|
1
|
+
import { default as default2 } from "./modules/icons/components/nav/IconCommunities.js";
|
|
2
|
+
import { default as default3 } from "./modules/icons/components/nav/IconCommunity.js";
|
|
3
|
+
import { default as default4 } from "./modules/icons/components/nav/IconDisconnect.js";
|
|
4
|
+
import { default as default5 } from "./modules/icons/components/nav/IconHome.js";
|
|
5
|
+
import { default as default6 } from "./modules/icons/components/nav/IconMyApps.js";
|
|
6
|
+
import { default as default7 } from "./modules/icons/components/nav/IconNeoAssistance.js";
|
|
7
|
+
import { default as default8 } from "./modules/icons/components/nav/IconNeoMessaging.js";
|
|
8
|
+
import { default as default9 } from "./modules/icons/components/nav/IconNewRelease.js";
|
|
9
|
+
import { default as default10 } from "./modules/icons/components/nav/IconOneAssistance.js";
|
|
10
|
+
import { default as default11 } from "./modules/icons/components/nav/IconOneMessaging.js";
|
|
11
|
+
import { default as default12 } from "./modules/icons/components/nav/IconOneProfile.js";
|
|
12
|
+
import { default as default13 } from "./modules/icons/components/nav/IconProfile.js";
|
|
13
|
+
import { default as default14 } from "./modules/icons/components/nav/IconSearch.js";
|
|
14
|
+
import { default as default15 } from "./modules/icons/components/nav/IconUserbook.js";
|
|
14
15
|
export {
|
|
15
|
-
default2 as
|
|
16
|
-
default3 as
|
|
17
|
-
default4 as
|
|
18
|
-
default5 as
|
|
19
|
-
default6 as
|
|
20
|
-
default7 as
|
|
21
|
-
default8 as
|
|
22
|
-
default9 as
|
|
23
|
-
default10 as
|
|
24
|
-
default11 as
|
|
25
|
-
default12 as
|
|
26
|
-
default13 as
|
|
27
|
-
default14 as
|
|
16
|
+
default2 as IconCommunities,
|
|
17
|
+
default3 as IconCommunity,
|
|
18
|
+
default4 as IconDisconnect,
|
|
19
|
+
default5 as IconHome,
|
|
20
|
+
default6 as IconMyApps,
|
|
21
|
+
default7 as IconNeoAssistance,
|
|
22
|
+
default8 as IconNeoMessaging,
|
|
23
|
+
default9 as IconNewRelease,
|
|
24
|
+
default10 as IconOneAssistance,
|
|
25
|
+
default11 as IconOneMessaging,
|
|
26
|
+
default12 as IconOneProfile,
|
|
27
|
+
default13 as IconProfile,
|
|
28
|
+
default14 as IconSearch,
|
|
29
|
+
default15 as IconUserbook
|
|
28
30
|
};
|
package/dist/icons.js
CHANGED
|
@@ -75,98 +75,101 @@ import { default as default75 } from "./modules/icons/components/IconLoader.js";
|
|
|
75
75
|
import { default as default76 } from "./modules/icons/components/IconLock.js";
|
|
76
76
|
import { default as default77 } from "./modules/icons/components/IconMailRecall.js";
|
|
77
77
|
import { default as default78 } from "./modules/icons/components/IconMail.js";
|
|
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/
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconMegaphone.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconMergeCells.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconMessageInfo.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconMicOff.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconMic.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconMinus.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconMove.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconNoColors.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconNotes.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconNotification.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconOptions.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconOrderedList.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconPaperclip.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconPause.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconPinOff.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconPinOn.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconPlaceholder.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconPlayFilled.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconPlay.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconPlus.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconPointerDefault.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconPointerHand.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconPrint.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconQuestionMark.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconQuestion.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRafterDown.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRafterLeft.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconRafterRight.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconRafterUp.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconReaction.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconReadMail.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconRecordPause.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconRecordStop.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconRecordVideo.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconRecord.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconRedo.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconRefresh.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconReset.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconRestart.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconRestore.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSave.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSearch.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSee.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSend.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSetBackground.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSettings.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconShare.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconSignature.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconSmartphone.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconSmiley.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconSortDescending.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconSortTime.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconSpeechToText.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconSplitCells.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconSquareRoot.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconStarFull.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconStar.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconSubscript.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconSuccessFill.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconSuperscript.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconTable.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconTextBold.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconTextColor.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconTextHighlight.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconTextItalic.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconTextPage.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconTextSize.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconTextToSpeechOff.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconTextTypo.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconTextUnderline.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconTextVanilla.js";
|
|
153
|
+
import { default as default154 } from "./modules/icons/components/IconToolCenter.js";
|
|
154
|
+
import { default as default155 } from "./modules/icons/components/IconTool.js";
|
|
155
|
+
import { default as default156 } from "./modules/icons/components/IconTrendingUp.js";
|
|
156
|
+
import { default as default157 } from "./modules/icons/components/IconUndoAll.js";
|
|
157
|
+
import { default as default158 } from "./modules/icons/components/IconUndo.js";
|
|
158
|
+
import { default as default159 } from "./modules/icons/components/IconUnion.js";
|
|
159
|
+
import { default as default160 } from "./modules/icons/components/IconUnlink.js";
|
|
160
|
+
import { default as default161 } from "./modules/icons/components/IconUnlock.js";
|
|
161
|
+
import { default as default162 } from "./modules/icons/components/IconUnreadMail.js";
|
|
162
|
+
import { default as default163 } from "./modules/icons/components/IconUpload.js";
|
|
163
|
+
import { default as default164 } from "./modules/icons/components/IconUserSearch.js";
|
|
164
|
+
import { default as default165 } from "./modules/icons/components/IconUser.js";
|
|
165
|
+
import { default as default166 } from "./modules/icons/components/IconUsers.js";
|
|
166
|
+
import { default as default167 } from "./modules/icons/components/IconVideo.js";
|
|
167
|
+
import { default as default168 } from "./modules/icons/components/IconViewCalendar.js";
|
|
168
|
+
import { default as default169 } from "./modules/icons/components/IconViewList.js";
|
|
169
|
+
import { default as default170 } from "./modules/icons/components/IconWand.js";
|
|
170
|
+
import { default as default171 } from "./modules/icons/components/IconWrite.js";
|
|
171
|
+
import { default as default172 } from "./modules/icons/components/IconZoomIn.js";
|
|
172
|
+
import { default as default173 } from "./modules/icons/components/IconZoomOut.js";
|
|
170
173
|
export {
|
|
171
174
|
default3 as IconAdd,
|
|
172
175
|
default2 as IconAddUser,
|
|
@@ -245,96 +248,99 @@ export {
|
|
|
245
248
|
default76 as IconLock,
|
|
246
249
|
default78 as IconMail,
|
|
247
250
|
default77 as IconMailRecall,
|
|
248
|
-
default79 as
|
|
249
|
-
default80 as
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
default84 as
|
|
254
|
-
default85 as
|
|
255
|
-
default86 as
|
|
256
|
-
default87 as
|
|
257
|
-
default88 as
|
|
258
|
-
default89 as
|
|
259
|
-
default90 as
|
|
260
|
-
default91 as
|
|
261
|
-
default92 as
|
|
262
|
-
default93 as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
default98 as
|
|
268
|
-
default99 as
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
default104 as
|
|
274
|
-
default105 as
|
|
275
|
-
default106 as
|
|
276
|
-
default107 as
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
default110 as
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
default114 as
|
|
284
|
-
default115 as
|
|
285
|
-
default116 as
|
|
286
|
-
default117 as
|
|
287
|
-
default118 as
|
|
288
|
-
default119 as
|
|
289
|
-
default120 as
|
|
290
|
-
default121 as
|
|
291
|
-
default122 as
|
|
292
|
-
default123 as
|
|
293
|
-
default124 as
|
|
294
|
-
default125 as
|
|
295
|
-
default126 as
|
|
296
|
-
default127 as
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
default132 as
|
|
302
|
-
default133 as
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
default138 as
|
|
308
|
-
default139 as
|
|
309
|
-
default140 as
|
|
310
|
-
default141 as
|
|
311
|
-
default142 as
|
|
312
|
-
default143 as
|
|
313
|
-
default144 as
|
|
314
|
-
default145 as
|
|
315
|
-
default146 as
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
default151 as
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
default159 as
|
|
329
|
-
default160 as
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
default163 as
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
default166 as
|
|
336
|
-
default167 as
|
|
337
|
-
default168 as
|
|
338
|
-
default169 as
|
|
339
|
-
default170 as
|
|
251
|
+
default79 as IconMegaphone,
|
|
252
|
+
default80 as IconMergeCells,
|
|
253
|
+
default81 as IconMessageInfo,
|
|
254
|
+
default83 as IconMic,
|
|
255
|
+
default82 as IconMicOff,
|
|
256
|
+
default84 as IconMinus,
|
|
257
|
+
default85 as IconMove,
|
|
258
|
+
default86 as IconNoColors,
|
|
259
|
+
default87 as IconNotes,
|
|
260
|
+
default88 as IconNotification,
|
|
261
|
+
default89 as IconOptions,
|
|
262
|
+
default90 as IconOrderedList,
|
|
263
|
+
default91 as IconPaperclip,
|
|
264
|
+
default92 as IconPause,
|
|
265
|
+
default93 as IconPinOff,
|
|
266
|
+
default94 as IconPinOn,
|
|
267
|
+
default95 as IconPlaceholder,
|
|
268
|
+
default97 as IconPlay,
|
|
269
|
+
default96 as IconPlayFilled,
|
|
270
|
+
default98 as IconPlus,
|
|
271
|
+
default99 as IconPointerDefault,
|
|
272
|
+
default100 as IconPointerHand,
|
|
273
|
+
default101 as IconPrint,
|
|
274
|
+
default103 as IconQuestion,
|
|
275
|
+
default102 as IconQuestionMark,
|
|
276
|
+
default104 as IconRafterDown,
|
|
277
|
+
default105 as IconRafterLeft,
|
|
278
|
+
default106 as IconRafterRight,
|
|
279
|
+
default107 as IconRafterUp,
|
|
280
|
+
default108 as IconReaction,
|
|
281
|
+
default109 as IconReadMail,
|
|
282
|
+
default113 as IconRecord,
|
|
283
|
+
default110 as IconRecordPause,
|
|
284
|
+
default111 as IconRecordStop,
|
|
285
|
+
default112 as IconRecordVideo,
|
|
286
|
+
default114 as IconRedo,
|
|
287
|
+
default115 as IconRefresh,
|
|
288
|
+
default116 as IconReset,
|
|
289
|
+
default117 as IconRestart,
|
|
290
|
+
default118 as IconRestore,
|
|
291
|
+
default119 as IconSave,
|
|
292
|
+
default120 as IconSearch,
|
|
293
|
+
default121 as IconSee,
|
|
294
|
+
default122 as IconSend,
|
|
295
|
+
default123 as IconSetBackground,
|
|
296
|
+
default124 as IconSettings,
|
|
297
|
+
default125 as IconShare,
|
|
298
|
+
default126 as IconSignature,
|
|
299
|
+
default127 as IconSmartphone,
|
|
300
|
+
default128 as IconSmiley,
|
|
301
|
+
default129 as IconSortAscendingLetters,
|
|
302
|
+
default131 as IconSortDescending,
|
|
303
|
+
default130 as IconSortDescendingLetters,
|
|
304
|
+
default132 as IconSortTime,
|
|
305
|
+
default133 as IconSpeechToText,
|
|
306
|
+
default134 as IconSplitCells,
|
|
307
|
+
default135 as IconSquareRoot,
|
|
308
|
+
default137 as IconStar,
|
|
309
|
+
default136 as IconStarFull,
|
|
310
|
+
default138 as IconSubscript,
|
|
311
|
+
default139 as IconSuccessFill,
|
|
312
|
+
default140 as IconSuccessOutline,
|
|
313
|
+
default141 as IconSuperscript,
|
|
314
|
+
default142 as IconTable,
|
|
315
|
+
default143 as IconTextBold,
|
|
316
|
+
default144 as IconTextColor,
|
|
317
|
+
default145 as IconTextHighlight,
|
|
318
|
+
default146 as IconTextItalic,
|
|
319
|
+
default147 as IconTextPage,
|
|
320
|
+
default148 as IconTextSize,
|
|
321
|
+
default150 as IconTextToSpeech,
|
|
322
|
+
default149 as IconTextToSpeechOff,
|
|
323
|
+
default151 as IconTextTypo,
|
|
324
|
+
default152 as IconTextUnderline,
|
|
325
|
+
default153 as IconTextVanilla,
|
|
326
|
+
default155 as IconTool,
|
|
327
|
+
default154 as IconToolCenter,
|
|
328
|
+
default156 as IconTrendingUp,
|
|
329
|
+
default158 as IconUndo,
|
|
330
|
+
default157 as IconUndoAll,
|
|
331
|
+
default159 as IconUnion,
|
|
332
|
+
default160 as IconUnlink,
|
|
333
|
+
default161 as IconUnlock,
|
|
334
|
+
default162 as IconUnreadMail,
|
|
335
|
+
default163 as IconUpload,
|
|
336
|
+
default165 as IconUser,
|
|
337
|
+
default164 as IconUserSearch,
|
|
338
|
+
default166 as IconUsers,
|
|
339
|
+
default167 as IconVideo,
|
|
340
|
+
default168 as IconViewCalendar,
|
|
341
|
+
default169 as IconViewList,
|
|
342
|
+
default170 as IconWand,
|
|
343
|
+
default171 as IconWrite,
|
|
344
|
+
default172 as IconZoomIn,
|
|
345
|
+
default173 as IconZoomOut
|
|
340
346
|
};
|