@edifice.io/react 2.1.0 → 2.1.1-develop-integration.20250213121025
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/AppIcon/AppIcon.js +1 -1
- package/dist/components/Form/FormContext.js +1 -1
- package/dist/components/Form/FormControl.js +1 -1
- package/dist/components/Layout/components/WidgetApps.js +1 -1
- package/dist/editor.js +2 -0
- package/dist/hooks/useDropdown/useDropdown.js +1 -1
- package/dist/hooks/useUploadFiles/useUploadFiles.js +1 -1
- package/dist/icons.js +260 -254
- package/dist/index.js +149 -149
- package/dist/modules/audience/ReactionModal.Card.js +1 -1
- package/dist/modules/comments/components/CommentAvatar.js +1 -1
- package/dist/modules/comments/provider/CommentProvider.js +1 -1
- package/dist/modules/editor/components/Editor/CantooModal.d.ts +2 -0
- package/dist/modules/editor/components/Editor/CantooModal.js +13 -0
- package/dist/modules/editor/components/Editor/Editor.js +10 -5
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Cantoo.d.ts +8 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Cantoo.js +54 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +3 -1
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +18 -3
- package/dist/modules/editor/components/Renderer/LinkerRenderer.js +1 -1
- package/dist/modules/editor/hooks/index.d.ts +1 -0
- package/dist/modules/editor/hooks/useCantooEditor.d.ts +9 -0
- package/dist/modules/editor/hooks/useCantooEditor.js +51 -0
- package/dist/modules/editor/hooks/useCantooModal.d.ts +15 -0
- package/dist/modules/editor/hooks/useCantooModal.js +17 -0
- package/dist/modules/editor/hooks/useTipTapEditor.js +3 -3
- package/dist/modules/icons/components/IconCantoo.d.ts +7 -0
- package/dist/modules/icons/components/IconCantoo.js +23 -0
- package/dist/modules/icons/components/IconMicOff.d.ts +7 -0
- package/dist/modules/icons/components/IconMicOff.js +12 -0
- package/dist/modules/icons/components/IconTextToSpeechOff.d.ts +7 -0
- package/dist/modules/icons/components/IconTextToSpeechOff.js +12 -0
- package/dist/modules/icons/components/index.d.ts +3 -0
- package/dist/modules/multimedia/UploadCard/UploadCard.js +2 -2
- package/dist/multimedia.js +10 -10
- package/dist/providers/MockedProvider/MockedProvider.js +1 -1
- package/package.json +9 -6
|
@@ -2,9 +2,9 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import * as iconsApps from "../../icons-apps.js";
|
|
5
|
+
import useEdificeIcons from "../../hooks/useEdificeIcons/useEdificeIcons.js";
|
|
5
6
|
import SvgIconPlaceholder from "../../modules/icons/components/apps/IconPlaceholder.js";
|
|
6
7
|
import Image from "../Image/Image.js";
|
|
7
|
-
import useEdificeIcons from "../../hooks/useEdificeIcons/useEdificeIcons.js";
|
|
8
8
|
const AppIcon = /* @__PURE__ */ forwardRef(({
|
|
9
9
|
app,
|
|
10
10
|
size = "24",
|
|
@@ -2,8 +2,8 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef, useMemo } from "react";
|
|
3
3
|
import { Context } from "./FormContext.js";
|
|
4
4
|
import FormText from "./FormText.js";
|
|
5
|
-
import Label from "../Label/Label.js";
|
|
6
5
|
import Input from "../Input/Input.js";
|
|
6
|
+
import Label from "../Label/Label.js";
|
|
7
7
|
const Root = /* @__PURE__ */ forwardRef(({
|
|
8
8
|
children,
|
|
9
9
|
className,
|
package/dist/editor.js
CHANGED
|
@@ -25,6 +25,7 @@ import { useResizeMedia } from "./modules/editor/hooks/useResizeMedia.js";
|
|
|
25
25
|
import { useSpeechRecognition } from "./modules/editor/hooks/useSpeechRecognition.js";
|
|
26
26
|
import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisis.js";
|
|
27
27
|
import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
28
|
+
import { useCantooEditor } from "./modules/editor/hooks/useCantooEditor.js";
|
|
28
29
|
export {
|
|
29
30
|
default5 as AttachmentNodeView,
|
|
30
31
|
default10 as AttachmentRenderer,
|
|
@@ -43,6 +44,7 @@ export {
|
|
|
43
44
|
default13 as TableToolbar,
|
|
44
45
|
default8 as VideoNodeView,
|
|
45
46
|
useActionOptions,
|
|
47
|
+
useCantooEditor,
|
|
46
48
|
useCommentEditor,
|
|
47
49
|
useEditor,
|
|
48
50
|
useEditorContext,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useId, useState, useRef, useEffect, useCallback } from "react";
|
|
2
|
-
import { useFloating,
|
|
2
|
+
import { useFloating, offset, size, flip, autoUpdate, useHover, safePolygon } from "@floating-ui/react";
|
|
3
3
|
import { mergeRefs } from "../../utilities/refs/ref.js";
|
|
4
4
|
const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !1) => {
|
|
5
5
|
const id = useId(), [visible, setVisible] = useState(!1), [activeIndex, setActiveIndex] = useState(-1), [isFocused, setIsFocused] = useState(null), {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useState, useCallback, useEffect } from "react";
|
|
2
2
|
import { ImageResizer, addTimestampToImageUrl } from "@edifice.io/utilities";
|
|
3
3
|
import { useDropzoneContext } from "../../components/Dropzone/DropzoneContext.js";
|
|
4
|
-
import useUpload from "../useUpload/useUpload.js";
|
|
5
4
|
import useWorkspaceFile from "../useWorkspaceFile/useWorkspaceFile.js";
|
|
5
|
+
import useUpload from "../useUpload/useUpload.js";
|
|
6
6
|
const useUploadFiles = ({
|
|
7
7
|
handleOnChange,
|
|
8
8
|
visibility,
|
package/dist/icons.js
CHANGED
|
@@ -20,133 +20,136 @@ import { default as default20 } from "./modules/icons/components/IconBurgerMenu.
|
|
|
20
20
|
import { default as default21 } from "./modules/icons/components/IconCalendarLight.js";
|
|
21
21
|
import { default as default22 } from "./modules/icons/components/IconCalendar.js";
|
|
22
22
|
import { default as default23 } from "./modules/icons/components/IconCamera.js";
|
|
23
|
-
import { default as default24 } from "./modules/icons/components/
|
|
24
|
-
import { default as default25 } from "./modules/icons/components/
|
|
25
|
-
import { default as default26 } from "./modules/icons/components/
|
|
26
|
-
import { default as default27 } from "./modules/icons/components/
|
|
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/
|
|
23
|
+
import { default as default24 } from "./modules/icons/components/IconCantoo.js";
|
|
24
|
+
import { default as default25 } from "./modules/icons/components/IconCenter.js";
|
|
25
|
+
import { default as default26 } from "./modules/icons/components/IconCheck.js";
|
|
26
|
+
import { default as default27 } from "./modules/icons/components/IconChecklist.js";
|
|
27
|
+
import { default as default28 } from "./modules/icons/components/IconClock.js";
|
|
28
|
+
import { default as default29 } from "./modules/icons/components/IconCloseFullScreen.js";
|
|
29
|
+
import { default as default30 } from "./modules/icons/components/IconClose.js";
|
|
30
|
+
import { default as default31 } from "./modules/icons/components/IconCode.js";
|
|
31
|
+
import { default as default32 } from "./modules/icons/components/IconCopy.js";
|
|
32
|
+
import { default as default33 } from "./modules/icons/components/IconCrop.js";
|
|
33
|
+
import { default as default34 } from "./modules/icons/components/IconCut.js";
|
|
34
|
+
import { default as default35 } from "./modules/icons/components/IconDeleteColor.js";
|
|
35
|
+
import { default as default36 } from "./modules/icons/components/IconDeleteColumnHighlight.js";
|
|
36
|
+
import { default as default37 } from "./modules/icons/components/IconDeleteColumn.js";
|
|
37
|
+
import { default as default38 } from "./modules/icons/components/IconDeleteRowHighlight.js";
|
|
38
|
+
import { default as default39 } from "./modules/icons/components/IconDeleteRow.js";
|
|
39
|
+
import { default as default40 } from "./modules/icons/components/IconDelete.js";
|
|
40
|
+
import { default as default41 } from "./modules/icons/components/IconDepositeInbox.js";
|
|
41
|
+
import { default as default42 } from "./modules/icons/components/IconDownload.js";
|
|
42
|
+
import { default as default43 } from "./modules/icons/components/IconEdit.js";
|
|
43
|
+
import { default as default44 } from "./modules/icons/components/IconError.js";
|
|
44
|
+
import { default as default45 } from "./modules/icons/components/IconExternalLink.js";
|
|
45
|
+
import { default as default46 } from "./modules/icons/components/IconFiles.js";
|
|
46
|
+
import { default as default47 } from "./modules/icons/components/IconFilter.js";
|
|
47
|
+
import { default as default48 } from "./modules/icons/components/IconFlag.js";
|
|
48
|
+
import { default as default49 } from "./modules/icons/components/IconFolderMove.js";
|
|
49
|
+
import { default as default50 } from "./modules/icons/components/IconFolder.js";
|
|
50
|
+
import { default as default51 } from "./modules/icons/components/IconForgoing.js";
|
|
51
|
+
import { default as default52 } from "./modules/icons/components/IconFullScreen.js";
|
|
52
|
+
import { default as default53 } from "./modules/icons/components/IconGlobe.js";
|
|
53
|
+
import { default as default54 } from "./modules/icons/components/IconHeadphone.js";
|
|
54
|
+
import { default as default55 } from "./modules/icons/components/IconHide.js";
|
|
55
|
+
import { default as default56 } from "./modules/icons/components/IconHighlightColumn.js";
|
|
56
|
+
import { default as default57 } from "./modules/icons/components/IconHighlightRow.js";
|
|
57
|
+
import { default as default58 } from "./modules/icons/components/IconHome.js";
|
|
58
|
+
import { default as default59 } from "./modules/icons/components/IconHourglass.js";
|
|
59
|
+
import { default as default60 } from "./modules/icons/components/IconImageSizeLarge.js";
|
|
60
|
+
import { default as default61 } from "./modules/icons/components/IconImageSizeMedium.js";
|
|
61
|
+
import { default as default62 } from "./modules/icons/components/IconImageSizeSmall.js";
|
|
62
|
+
import { default as default63 } from "./modules/icons/components/IconInbox.js";
|
|
63
|
+
import { default as default64 } from "./modules/icons/components/IconInfoCircle.js";
|
|
64
|
+
import { default as default65 } from "./modules/icons/components/IconLandscape.js";
|
|
65
|
+
import { default as default66 } from "./modules/icons/components/IconLink.js";
|
|
66
|
+
import { default as default67 } from "./modules/icons/components/IconListOrder.js";
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/IconLoader.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/IconLock.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/IconMail.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/IconMergeCells.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/IconMessageInfo.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/IconMicOff.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/IconMic.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/IconMinus.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/IconMove.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/IconNoColors.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconOptions.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconOrderedList.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconPaperclip.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconPause.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconPinOff.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconPinOn.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconPlaceholder.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconPlayFilled.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconPlay.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconPlus.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconPointerDefault.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconPointerHand.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconPrint.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconQuestion.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconRafterDown.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconRafterLeft.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconRafterRight.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconRafterUp.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconReaction.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconRecordPause.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconRecordStop.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconRecordVideo.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconRecord.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconRedo.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconRefresh.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconReset.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRestart.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRestore.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconSave.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconSearch.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconSee.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconSend.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconSetBackground.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconSettings.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconShare.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconSmartphone.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconSmiley.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconSortDescending.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconSortTime.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSpeechToText.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSplitCells.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSquareRoot.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSubscript.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSuccessFill.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconSuperscript.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconTable.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconTextBold.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconTextColor.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconTextHighlight.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconTextItalic.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconTextPage.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconTextSize.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconTextToSpeechOff.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconTextTypo.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconTextUnderline.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconTextVanilla.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconTool.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconTrendingUp.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconUndo.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconUnlink.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconUnlock.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconUpload.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconUserSearch.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconUser.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconUsers.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconVideo.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconViewCalendar.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconViewList.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconWand.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconWrite.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconZoomIn.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconZoomOut.js";
|
|
150
153
|
export {
|
|
151
154
|
default3 as IconAdd,
|
|
152
155
|
default2 as IconAddUser,
|
|
@@ -170,131 +173,134 @@ export {
|
|
|
170
173
|
default22 as IconCalendar,
|
|
171
174
|
default21 as IconCalendarLight,
|
|
172
175
|
default23 as IconCamera,
|
|
173
|
-
default24 as
|
|
174
|
-
default25 as
|
|
175
|
-
default26 as
|
|
176
|
-
default27 as
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
default31 as
|
|
181
|
-
default32 as
|
|
182
|
-
default33 as
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
default41 as
|
|
191
|
-
default42 as
|
|
192
|
-
default43 as
|
|
193
|
-
default44 as
|
|
194
|
-
default45 as
|
|
195
|
-
default46 as
|
|
196
|
-
default47 as
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
default51 as
|
|
201
|
-
default52 as
|
|
202
|
-
default53 as
|
|
203
|
-
default54 as
|
|
204
|
-
default55 as
|
|
205
|
-
default56 as
|
|
206
|
-
default57 as
|
|
207
|
-
default58 as
|
|
208
|
-
default59 as
|
|
209
|
-
default60 as
|
|
210
|
-
default61 as
|
|
211
|
-
default62 as
|
|
212
|
-
default63 as
|
|
213
|
-
default64 as
|
|
214
|
-
default65 as
|
|
215
|
-
default66 as
|
|
216
|
-
default67 as
|
|
217
|
-
default68 as
|
|
218
|
-
default69 as
|
|
219
|
-
default70 as
|
|
220
|
-
default71 as
|
|
221
|
-
default72 as
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
default75 as
|
|
225
|
-
default76 as
|
|
226
|
-
default77 as
|
|
227
|
-
default78 as
|
|
228
|
-
default79 as
|
|
229
|
-
default80 as
|
|
230
|
-
default81 as
|
|
231
|
-
default82 as
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
default87 as
|
|
237
|
-
default88 as
|
|
238
|
-
default89 as
|
|
239
|
-
default90 as
|
|
240
|
-
default91 as
|
|
241
|
-
default92 as
|
|
242
|
-
default93 as
|
|
243
|
-
default94 as
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
default97 as
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
default101 as
|
|
251
|
-
default102 as
|
|
252
|
-
default103 as
|
|
253
|
-
default104 as
|
|
254
|
-
default105 as
|
|
255
|
-
default106 as
|
|
256
|
-
default107 as
|
|
257
|
-
default108 as
|
|
258
|
-
default109 as
|
|
259
|
-
default110 as
|
|
260
|
-
default111 as
|
|
261
|
-
default112 as
|
|
262
|
-
default113 as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
default118 as
|
|
268
|
-
default119 as
|
|
269
|
-
default120 as
|
|
270
|
-
default121 as
|
|
271
|
-
default122 as
|
|
272
|
-
default123 as
|
|
273
|
-
default124 as
|
|
274
|
-
default125 as
|
|
275
|
-
default126 as
|
|
276
|
-
default127 as
|
|
277
|
-
default128 as
|
|
278
|
-
default129 as
|
|
279
|
-
default130 as
|
|
280
|
-
default131 as
|
|
281
|
-
default132 as
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
default135 as
|
|
285
|
-
default136 as
|
|
286
|
-
default137 as
|
|
287
|
-
default138 as
|
|
288
|
-
default139 as
|
|
289
|
-
default140 as
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
default143 as
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
default146 as
|
|
296
|
-
default147 as
|
|
297
|
-
default148 as
|
|
298
|
-
default149 as
|
|
299
|
-
default150 as
|
|
176
|
+
default24 as IconCantoo,
|
|
177
|
+
default25 as IconCenter,
|
|
178
|
+
default26 as IconCheck,
|
|
179
|
+
default27 as IconChecklist,
|
|
180
|
+
default28 as IconClock,
|
|
181
|
+
default30 as IconClose,
|
|
182
|
+
default29 as IconCloseFullScreen,
|
|
183
|
+
default31 as IconCode,
|
|
184
|
+
default32 as IconCopy,
|
|
185
|
+
default33 as IconCrop,
|
|
186
|
+
default34 as IconCut,
|
|
187
|
+
default40 as IconDelete,
|
|
188
|
+
default35 as IconDeleteColor,
|
|
189
|
+
default37 as IconDeleteColumn,
|
|
190
|
+
default36 as IconDeleteColumnHighlight,
|
|
191
|
+
default39 as IconDeleteRow,
|
|
192
|
+
default38 as IconDeleteRowHighlight,
|
|
193
|
+
default41 as IconDepositeInbox,
|
|
194
|
+
default42 as IconDownload,
|
|
195
|
+
default43 as IconEdit,
|
|
196
|
+
default44 as IconError,
|
|
197
|
+
default45 as IconExternalLink,
|
|
198
|
+
default46 as IconFiles,
|
|
199
|
+
default47 as IconFilter,
|
|
200
|
+
default48 as IconFlag,
|
|
201
|
+
default50 as IconFolder,
|
|
202
|
+
default49 as IconFolderMove,
|
|
203
|
+
default51 as IconForgoing,
|
|
204
|
+
default52 as IconFullScreen,
|
|
205
|
+
default53 as IconGlobe,
|
|
206
|
+
default54 as IconHeadphone,
|
|
207
|
+
default55 as IconHide,
|
|
208
|
+
default56 as IconHighlightColumn,
|
|
209
|
+
default57 as IconHighlightRow,
|
|
210
|
+
default58 as IconHome,
|
|
211
|
+
default59 as IconHourglass,
|
|
212
|
+
default60 as IconImageSizeLarge,
|
|
213
|
+
default61 as IconImageSizeMedium,
|
|
214
|
+
default62 as IconImageSizeSmall,
|
|
215
|
+
default63 as IconInbox,
|
|
216
|
+
default64 as IconInfoCircle,
|
|
217
|
+
default65 as IconLandscape,
|
|
218
|
+
default66 as IconLink,
|
|
219
|
+
default67 as IconListOrder,
|
|
220
|
+
default68 as IconLoader,
|
|
221
|
+
default69 as IconLock,
|
|
222
|
+
default70 as IconMail,
|
|
223
|
+
default71 as IconMergeCells,
|
|
224
|
+
default72 as IconMessageInfo,
|
|
225
|
+
default74 as IconMic,
|
|
226
|
+
default73 as IconMicOff,
|
|
227
|
+
default75 as IconMinus,
|
|
228
|
+
default76 as IconMove,
|
|
229
|
+
default77 as IconNoColors,
|
|
230
|
+
default78 as IconOptions,
|
|
231
|
+
default79 as IconOrderedList,
|
|
232
|
+
default80 as IconPaperclip,
|
|
233
|
+
default81 as IconPause,
|
|
234
|
+
default82 as IconPinOff,
|
|
235
|
+
default83 as IconPinOn,
|
|
236
|
+
default84 as IconPlaceholder,
|
|
237
|
+
default86 as IconPlay,
|
|
238
|
+
default85 as IconPlayFilled,
|
|
239
|
+
default87 as IconPlus,
|
|
240
|
+
default88 as IconPointerDefault,
|
|
241
|
+
default89 as IconPointerHand,
|
|
242
|
+
default90 as IconPrint,
|
|
243
|
+
default91 as IconQuestion,
|
|
244
|
+
default92 as IconRafterDown,
|
|
245
|
+
default93 as IconRafterLeft,
|
|
246
|
+
default94 as IconRafterRight,
|
|
247
|
+
default95 as IconRafterUp,
|
|
248
|
+
default96 as IconReaction,
|
|
249
|
+
default100 as IconRecord,
|
|
250
|
+
default97 as IconRecordPause,
|
|
251
|
+
default98 as IconRecordStop,
|
|
252
|
+
default99 as IconRecordVideo,
|
|
253
|
+
default101 as IconRedo,
|
|
254
|
+
default102 as IconRefresh,
|
|
255
|
+
default103 as IconReset,
|
|
256
|
+
default104 as IconRestart,
|
|
257
|
+
default105 as IconRestore,
|
|
258
|
+
default106 as IconSave,
|
|
259
|
+
default107 as IconSearch,
|
|
260
|
+
default108 as IconSee,
|
|
261
|
+
default109 as IconSend,
|
|
262
|
+
default110 as IconSetBackground,
|
|
263
|
+
default111 as IconSettings,
|
|
264
|
+
default112 as IconShare,
|
|
265
|
+
default113 as IconSmartphone,
|
|
266
|
+
default114 as IconSmiley,
|
|
267
|
+
default115 as IconSortAscendingLetters,
|
|
268
|
+
default117 as IconSortDescending,
|
|
269
|
+
default116 as IconSortDescendingLetters,
|
|
270
|
+
default118 as IconSortTime,
|
|
271
|
+
default119 as IconSpeechToText,
|
|
272
|
+
default120 as IconSplitCells,
|
|
273
|
+
default121 as IconSquareRoot,
|
|
274
|
+
default122 as IconSubscript,
|
|
275
|
+
default123 as IconSuccessFill,
|
|
276
|
+
default124 as IconSuccessOutline,
|
|
277
|
+
default125 as IconSuperscript,
|
|
278
|
+
default126 as IconTable,
|
|
279
|
+
default127 as IconTextBold,
|
|
280
|
+
default128 as IconTextColor,
|
|
281
|
+
default129 as IconTextHighlight,
|
|
282
|
+
default130 as IconTextItalic,
|
|
283
|
+
default131 as IconTextPage,
|
|
284
|
+
default132 as IconTextSize,
|
|
285
|
+
default134 as IconTextToSpeech,
|
|
286
|
+
default133 as IconTextToSpeechOff,
|
|
287
|
+
default135 as IconTextTypo,
|
|
288
|
+
default136 as IconTextUnderline,
|
|
289
|
+
default137 as IconTextVanilla,
|
|
290
|
+
default138 as IconTool,
|
|
291
|
+
default139 as IconTrendingUp,
|
|
292
|
+
default140 as IconUndo,
|
|
293
|
+
default141 as IconUnlink,
|
|
294
|
+
default142 as IconUnlock,
|
|
295
|
+
default143 as IconUpload,
|
|
296
|
+
default145 as IconUser,
|
|
297
|
+
default144 as IconUserSearch,
|
|
298
|
+
default146 as IconUsers,
|
|
299
|
+
default147 as IconVideo,
|
|
300
|
+
default148 as IconViewCalendar,
|
|
301
|
+
default149 as IconViewList,
|
|
302
|
+
default150 as IconWand,
|
|
303
|
+
default151 as IconWrite,
|
|
304
|
+
default152 as IconZoomIn,
|
|
305
|
+
default153 as IconZoomOut
|
|
300
306
|
};
|