@edifice.io/react 2.5.15-develop-pedago.20260327124327 → 2.5.15-develop-b2school.20260327180304
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/AddAttachments/AddAttachments.d.ts +3 -6
- package/dist/components/AddAttachments/AddAttachments.js +29 -17
- package/dist/components/AddAttachments/models/attachment.d.ts +0 -1
- package/dist/components/Tree/components/SortableTree.js +3 -4
- package/dist/components/Tree/components/Tree.js +3 -4
- package/dist/components/index.d.ts +0 -2
- package/dist/hooks/useDirectory/useDirectory.d.ts +2 -3
- package/dist/hooks/useDropzone/useDropzone.js +4 -4
- package/dist/icons.js +176 -180
- package/dist/index.js +0 -10
- package/dist/modules/icons/components/index.d.ts +0 -2
- package/dist/modules/modals/OnboardingModal/index.d.ts +1 -1
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +1 -3
- package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +1 -2
- package/dist/types/index.d.ts +0 -1
- package/dist/utilities/index.d.ts +0 -1
- package/package.json +7 -7
- package/dist/components/AddAttachments/hooks/useFileToAttachment.d.ts +0 -3
- package/dist/components/AddAttachments/hooks/useFileToAttachment.js +0 -16
- package/dist/components/UserRightsList/SaveBookmark.d.ts +0 -5
- package/dist/components/UserRightsList/SaveBookmark.js +0 -29
- package/dist/components/UserRightsList/UserRightsBookmarkRow.d.ts +0 -11
- package/dist/components/UserRightsList/UserRightsBookmarkRow.js +0 -30
- package/dist/components/UserRightsList/UserRightsItem.d.ts +0 -13
- package/dist/components/UserRightsList/UserRightsItem.js +0 -36
- package/dist/components/UserRightsList/UserRightsList.d.ts +0 -19
- package/dist/components/UserRightsList/UserRightsList.js +0 -94
- package/dist/components/UserRightsList/helpers/rightsHelpers.d.ts +0 -9
- package/dist/components/UserRightsList/helpers/rightsHelpers.js +0 -53
- package/dist/components/UserRightsList/hooks/useBookmarkEntries.d.ts +0 -19
- package/dist/components/UserRightsList/hooks/useBookmarkEntries.js +0 -58
- package/dist/components/UserRightsList/hooks/useSharingItems.d.ts +0 -20
- package/dist/components/UserRightsList/hooks/useSharingItems.js +0 -57
- package/dist/components/UserRightsList/index.d.ts +0 -2
- package/dist/components/UserRightsList/types/types.d.ts +0 -34
- package/dist/components/UserRightsList/types/types.js +0 -6
- package/dist/components/UserSearch/UserSearch.d.ts +0 -7
- package/dist/components/UserSearch/UserSearch.js +0 -82
- package/dist/components/UserSearch/index.d.ts +0 -3
- package/dist/components/UserSearch/types/types.d.ts +0 -24
- package/dist/components/UserSearch/types/visible.d.ts +0 -24
- package/dist/components/UserSearch/types/visible.js +0 -4
- package/dist/modules/icons/components/IconParcoursCitoyen.d.ts +0 -7
- package/dist/modules/icons/components/IconParcoursCitoyen.js +0 -14
- package/dist/modules/icons/components/IconParcoursSecours.d.ts +0 -7
- package/dist/modules/icons/components/IconParcoursSecours.js +0 -14
- package/dist/types/sharing.d.ts +0 -8
- package/dist/utilities/rotate-transition-style/get-rotate-transition-style.d.ts +0 -5
- package/dist/utilities/rotate-transition-style/get-rotate-transition-style.js +0 -12
- package/dist/utilities/rotate-transition-style/index.d.ts +0 -1
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { Attachment } from './models/attachment';
|
|
2
|
-
export type SingleAttachmentType = Attachment;
|
|
3
|
-
export { useFileToAttachment } from './hooks/useFileToAttachment';
|
|
4
2
|
export interface AddAttachmentsProps {
|
|
5
3
|
attachments: Attachment[];
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
onRemoveAttachment?: (attachmentId: string) => void;
|
|
4
|
+
onFilesSelected: (files: File[]) => void;
|
|
5
|
+
onRemoveAttachment: (attachmentId: string) => void;
|
|
9
6
|
editMode?: boolean;
|
|
10
7
|
isMutating?: boolean;
|
|
11
8
|
onCopyToWorkspace?: (attachments: Attachment[], folderId: string) => Promise<boolean>;
|
|
@@ -15,7 +12,7 @@ export interface AddAttachmentsProps {
|
|
|
15
12
|
downloadAllUrl?: string;
|
|
16
13
|
}
|
|
17
14
|
export declare const AddAttachments: {
|
|
18
|
-
({ attachments,
|
|
15
|
+
({ attachments, onFilesSelected, onRemoveAttachment, editMode, isMutating, onCopyToWorkspace, getDownloadUrl, downloadAllUrl, }: AddAttachmentsProps): import("react/jsx-runtime").JSX.Element | null;
|
|
19
16
|
displayName: string;
|
|
20
17
|
};
|
|
21
18
|
export default AddAttachments;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
|
-
import { useRef, useState } from "react";
|
|
3
|
+
import { useRef, useState, useEffect } from "react";
|
|
4
4
|
import { useTranslation } from "react-i18next";
|
|
5
5
|
import SvgIconDelete from "../../modules/icons/components/IconDelete.js";
|
|
6
6
|
import SvgIconDownload from "../../modules/icons/components/IconDownload.js";
|
|
@@ -8,13 +8,22 @@ import SvgIconFolderAdd from "../../modules/icons/components/IconFolderAdd.js";
|
|
|
8
8
|
import SvgIconPlus from "../../modules/icons/components/IconPlus.js";
|
|
9
9
|
import { AddAttachmentToWorkspaceModal } from "./components/AddAttachmentToWorkspaceModal.js";
|
|
10
10
|
import { SingleAttachment } from "./components/SingleAttachment.js";
|
|
11
|
-
import { useFileToAttachment } from "./hooks/useFileToAttachment.js";
|
|
12
11
|
import Flex from "../Flex/Flex.js";
|
|
13
12
|
import IconButton from "../Button/IconButton.js";
|
|
14
13
|
import Button from "../Button/Button.js";
|
|
14
|
+
function fileToAttachment(file) {
|
|
15
|
+
return {
|
|
16
|
+
id: `${file.name}-${Date.now()}-${Math.random().toString(36).slice(2, 9)}`,
|
|
17
|
+
charset: "UTF-8",
|
|
18
|
+
contentTransferEncoding: "binary",
|
|
19
|
+
contentType: file.type || "application/octet-stream",
|
|
20
|
+
filename: file.name,
|
|
21
|
+
name: file.name,
|
|
22
|
+
size: file.size
|
|
23
|
+
};
|
|
24
|
+
}
|
|
15
25
|
const AddAttachments = ({
|
|
16
26
|
attachments,
|
|
17
|
-
onChange,
|
|
18
27
|
onFilesSelected,
|
|
19
28
|
onRemoveAttachment,
|
|
20
29
|
editMode = !1,
|
|
@@ -25,8 +34,10 @@ const AddAttachments = ({
|
|
|
25
34
|
}) => {
|
|
26
35
|
const {
|
|
27
36
|
t
|
|
28
|
-
} = useTranslation(), inputRef = useRef(null),
|
|
29
|
-
if (
|
|
37
|
+
} = useTranslation(), inputRef = useRef(null), [optimisticAttachments, setOptimisticAttachments] = useState([]), [attachmentsToAddToWorkspace, setAttachmentsToAddToWorkspace] = useState(void 0), prevAttachmentsLengthRef = useRef(attachments.length), displayedAttachments = [...attachments, ...optimisticAttachments];
|
|
38
|
+
if (useEffect(() => {
|
|
39
|
+
attachments.length > prevAttachmentsLengthRef.current && setOptimisticAttachments([]), prevAttachmentsLengthRef.current = attachments.length;
|
|
40
|
+
}, [attachments.length]), !editMode && !displayedAttachments.length) return null;
|
|
30
41
|
const resetInputValue = () => {
|
|
31
42
|
inputRef.current && (inputRef.current.value = "");
|
|
32
43
|
}, handleAttachClick = () => {
|
|
@@ -35,34 +46,36 @@ const AddAttachments = ({
|
|
|
35
46
|
}, handleFileChange = (event) => {
|
|
36
47
|
const files = Array.from(event.target.files ?? []);
|
|
37
48
|
if (files.length > 0) {
|
|
38
|
-
|
|
39
|
-
|
|
49
|
+
onFilesSelected(files);
|
|
50
|
+
const newOptimistic = files.map(fileToAttachment);
|
|
51
|
+
setOptimisticAttachments((prev) => [...prev, ...newOptimistic]);
|
|
40
52
|
}
|
|
41
53
|
resetInputValue();
|
|
42
54
|
}, handleDetachAllClick = () => {
|
|
43
|
-
|
|
55
|
+
setOptimisticAttachments([]), attachments.forEach((attachment) => {
|
|
56
|
+
onRemoveAttachment(attachment.id);
|
|
57
|
+
}), resetInputValue();
|
|
44
58
|
}, handleDetachClick = (attachmentId) => {
|
|
45
|
-
|
|
46
|
-
onChange == null || onChange(next), onRemoveAttachment == null || onRemoveAttachment(attachmentId), resetInputValue();
|
|
59
|
+
optimisticAttachments.some((attachment) => attachment.id === attachmentId) ? setOptimisticAttachments((prev) => prev.filter((attachment) => attachment.id !== attachmentId)) : onRemoveAttachment(attachmentId), resetInputValue();
|
|
47
60
|
}, handleCopyToWorkspace = (attachments2) => {
|
|
48
61
|
setAttachmentsToAddToWorkspace(attachments2);
|
|
49
62
|
}, className = clsx("bg-gray-200 rounded px-12 py-8 message-attachments align-self-start gap-8 d-flex flex-column mw-100", {
|
|
50
63
|
"border add-attachments-edit mx-16": editMode
|
|
51
64
|
});
|
|
52
65
|
return /* @__PURE__ */ jsxs("div", { className, "data-drag-handle": !0, children: [
|
|
53
|
-
!!
|
|
66
|
+
!!displayedAttachments.length && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
54
67
|
/* @__PURE__ */ jsxs(Flex, { direction: "row", align: "center", justify: "between", className: "border-bottom", children: [
|
|
55
68
|
/* @__PURE__ */ jsx("span", { className: "caption fw-bold my-8", children: t("attachments") }),
|
|
56
|
-
|
|
57
|
-
onCopyToWorkspace && /* @__PURE__ */ jsx(IconButton, { title: t("conversation.copy.all.toworkspace"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconFolderAdd, {}), onClick: () => handleCopyToWorkspace(
|
|
69
|
+
displayedAttachments.length > 1 && /* @__PURE__ */ jsxs("div", { children: [
|
|
70
|
+
onCopyToWorkspace && /* @__PURE__ */ jsx(IconButton, { title: t("conversation.copy.all.toworkspace"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconFolderAdd, {}), onClick: () => handleCopyToWorkspace(displayedAttachments), variant: "ghost" }),
|
|
58
71
|
downloadAllUrl && /* @__PURE__ */ jsx("a", { href: downloadAllUrl, download: !0, children: /* @__PURE__ */ jsx(IconButton, { title: t("download.all.attachment"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconDownload, {}), variant: "ghost" }) }),
|
|
59
72
|
editMode && /* @__PURE__ */ jsx(IconButton, { title: t("remove.all.attachment"), color: "danger", type: "button", icon: /* @__PURE__ */ jsx(SvgIconDelete, {}), variant: "ghost", onClick: handleDetachAllClick, disabled: isMutating })
|
|
60
73
|
] })
|
|
61
74
|
] }),
|
|
62
|
-
/* @__PURE__ */ jsx("ul", { className: "d-flex gap-8 flex-column list-unstyled m-0", children:
|
|
75
|
+
/* @__PURE__ */ jsx("ul", { className: "d-flex gap-8 flex-column list-unstyled m-0", children: displayedAttachments.map((attachment) => /* @__PURE__ */ jsx("li", { className: "mw-100", children: /* @__PURE__ */ jsx(SingleAttachment, { attachment, editMode, onDelete: handleDetachClick, onCopyToWorkspace: onCopyToWorkspace ? (attachment2) => handleCopyToWorkspace([attachment2]) : void 0, getDownloadUrl, disabled: isMutating }) }, attachment.id)) })
|
|
63
76
|
] }),
|
|
64
77
|
editMode && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
65
|
-
/* @__PURE__ */ jsx(Button, { color: "secondary", variant: "ghost", isLoading: isMutating, onClick: handleAttachClick, disabled: isMutating, className: "align-self-start", leftIcon: /* @__PURE__ */ jsx(SvgIconPlus, {}),
|
|
78
|
+
/* @__PURE__ */ jsx(Button, { color: "secondary", variant: "ghost", isLoading: isMutating, onClick: handleAttachClick, disabled: isMutating, className: "align-self-start", leftIcon: /* @__PURE__ */ jsx(SvgIconPlus, {}), children: t("add.attachment") }),
|
|
66
79
|
/* @__PURE__ */ jsx("input", { ref: inputRef, multiple: !0, type: "file", name: "attachment-input", id: "attachment-input", onChange: handleFileChange, hidden: !0 })
|
|
67
80
|
] }),
|
|
68
81
|
onCopyToWorkspace && !!attachmentsToAddToWorkspace && /* @__PURE__ */ jsx(AddAttachmentToWorkspaceModal, { isOpen: !0, onModalClose: () => setAttachmentsToAddToWorkspace(void 0), attachments: attachmentsToAddToWorkspace, onCopyToWorkspace })
|
|
@@ -70,6 +83,5 @@ const AddAttachments = ({
|
|
|
70
83
|
};
|
|
71
84
|
export {
|
|
72
85
|
AddAttachments,
|
|
73
|
-
AddAttachments as default
|
|
74
|
-
useFileToAttachment
|
|
86
|
+
AddAttachments as default
|
|
75
87
|
};
|
|
@@ -11,7 +11,6 @@ import SvgIconRafterRight from "../../../modules/icons/components/IconRafterRigh
|
|
|
11
11
|
import { useTree } from "../hooks/useTree.js";
|
|
12
12
|
import { useTreeSortable } from "../hooks/useTreeSortable.js";
|
|
13
13
|
import { flattenNodes } from "../utilities/tree-sortable.js";
|
|
14
|
-
import { getRotateTransitionStyle } from "../../../utilities/rotate-transition-style/get-rotate-transition-style.js";
|
|
15
14
|
import { mergeRefs } from "../../../utilities/refs/ref.js";
|
|
16
15
|
const SortableTree = ({
|
|
17
16
|
nodes,
|
|
@@ -114,9 +113,9 @@ const SortableTree = ({
|
|
|
114
113
|
...style,
|
|
115
114
|
marginLeft: spaceGestion()
|
|
116
115
|
}, ...listeners, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("div", { className: treeItemClasses.action, children: [
|
|
117
|
-
node.haveChilds && /* @__PURE__ */ jsx("div", { tabIndex: 0, role: "button", onClick: () => onToggleNode == null ? void 0 : onToggleNode(node.id), onKeyDown: handleItemToggleKeyDown, "aria-label": t("foldUnfold"), children: /* @__PURE__ */ jsx(SvgIconRafterRight, { width: 16, style:
|
|
118
|
-
|
|
119
|
-
}
|
|
116
|
+
node.haveChilds && /* @__PURE__ */ jsx("div", { tabIndex: 0, role: "button", onClick: () => onToggleNode == null ? void 0 : onToggleNode(node.id), onKeyDown: handleItemToggleKeyDown, "aria-label": t("foldUnfold"), children: /* @__PURE__ */ jsx(SvgIconRafterRight, { width: 16, style: {
|
|
117
|
+
transform: expanded ? "rotate(90deg)" : ""
|
|
118
|
+
} }) }),
|
|
120
119
|
node.children && showIcon ? /* @__PURE__ */ jsx(SvgIconFolder, { title: "folder", width: 20, height: 20 }) : null,
|
|
121
120
|
/* @__PURE__ */ jsx("div", { tabIndex: 0, role: "button", className: treeItemClasses.button, onClick: () => onTreeItemClick(node.id), onKeyDown: handleItemKeyDown, children: renderNode ? renderNode({
|
|
122
121
|
node,
|
|
@@ -5,7 +5,6 @@ import { useTranslation } from "react-i18next";
|
|
|
5
5
|
import SvgIconFolder from "../../../modules/icons/components/IconFolder.js";
|
|
6
6
|
import SvgIconRafterRight from "../../../modules/icons/components/IconRafterRight.js";
|
|
7
7
|
import { useTree } from "../hooks/useTree.js";
|
|
8
|
-
import { getRotateTransitionStyle } from "../../../utilities/rotate-transition-style/get-rotate-transition-style.js";
|
|
9
8
|
const Tree = ({
|
|
10
9
|
nodes,
|
|
11
10
|
selectedNodeId: externalSelectedNodeId,
|
|
@@ -67,9 +66,9 @@ const Tree = ({
|
|
|
67
66
|
};
|
|
68
67
|
return /* @__PURE__ */ createElement("li", { ...restProps, ref, key: node.id, id: `treeitem-${node.id}`, role: "treeitem", "aria-selected": selected, "aria-expanded": expanded }, /* @__PURE__ */ jsxs("div", { children: [
|
|
69
68
|
/* @__PURE__ */ jsxs("div", { className: treeItemClasses.action, children: [
|
|
70
|
-
node.children && node.children.length > 0 ? /* @__PURE__ */ jsx("div", { className: treeItemClasses.arrow, tabIndex: 0, role: "button", onClick: () => onToggleNode == null ? void 0 : onToggleNode(node.id), onKeyDown: handleItemToggleKeyDown, "aria-label": t("foldUnfold"), children: /* @__PURE__ */ jsx(SvgIconRafterRight, { width: 16, style:
|
|
71
|
-
|
|
72
|
-
}
|
|
69
|
+
node.children && node.children.length > 0 ? /* @__PURE__ */ jsx("div", { className: treeItemClasses.arrow, tabIndex: 0, role: "button", onClick: () => onToggleNode == null ? void 0 : onToggleNode(node.id), onKeyDown: handleItemToggleKeyDown, "aria-label": t("foldUnfold"), children: /* @__PURE__ */ jsx(SvgIconRafterRight, { width: 16, style: {
|
|
70
|
+
transform: expanded ? "rotate(90deg)" : ""
|
|
71
|
+
} }) }) : /* @__PURE__ */ jsx("div", { className: "py-8 invisible" }),
|
|
73
72
|
node.children && showIcon ? /* @__PURE__ */ jsx(SvgIconFolder, { title: "folder", width: 20, height: 20 }) : null,
|
|
74
73
|
/* @__PURE__ */ jsx("div", { tabIndex: 0, role: "button", className: treeItemClasses.button, onClick: () => onTreeItemClick(node.id), onKeyDown: handleItemKeyDown, children: renderNode ? renderNode({
|
|
75
74
|
node,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ID } from '@edifice.io/client';
|
|
2
|
-
import { AvatarType } from '../../types';
|
|
3
2
|
declare const useDirectory: () => {
|
|
4
|
-
getAvatarURL: (userId: ID, type:
|
|
5
|
-
getUserbookURL: (userId: ID, type:
|
|
3
|
+
getAvatarURL: (userId: ID, type: "user" | "group") => string | undefined;
|
|
4
|
+
getUserbookURL: (userId: ID, type: "user" | "group") => string;
|
|
6
5
|
};
|
|
7
6
|
export default useDirectory;
|
|
@@ -35,11 +35,11 @@ const useDropzone = (props) => {
|
|
|
35
35
|
}, convertHEICImages = async (files2) => {
|
|
36
36
|
if (files2 === null || files2.length === 0)
|
|
37
37
|
return [];
|
|
38
|
-
let
|
|
39
|
-
return files2.some((file) => HEIC_MIME_TYPES.includes(file.type)) && (
|
|
40
|
-
if (
|
|
38
|
+
let heic2any;
|
|
39
|
+
return files2.some((file) => HEIC_MIME_TYPES.includes(file.type)) && (heic2any = (await import("heic2any")).default), Promise.all(files2.map(async (file) => {
|
|
40
|
+
if (HEIC_MIME_TYPES.includes(file.type) && heic2any)
|
|
41
41
|
try {
|
|
42
|
-
const converted = await
|
|
42
|
+
const converted = await heic2any({
|
|
43
43
|
blob: file,
|
|
44
44
|
toType: "image/jpeg"
|
|
45
45
|
});
|
package/dist/icons.js
CHANGED
|
@@ -95,96 +95,94 @@ import { default as default95 } from "./modules/icons/components/IconNotificatio
|
|
|
95
95
|
import { default as default96 } from "./modules/icons/components/IconOptions.js";
|
|
96
96
|
import { default as default97 } from "./modules/icons/components/IconOrderedList.js";
|
|
97
97
|
import { default as default98 } from "./modules/icons/components/IconPaperclip.js";
|
|
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/
|
|
173
|
-
import { default as default174 } from "./modules/icons/components/
|
|
174
|
-
import { default as default175 } from "./modules/icons/components/
|
|
175
|
-
import { default as default176 } from "./modules/icons/components/
|
|
176
|
-
import { default as default177 } from "./modules/icons/components/
|
|
177
|
-
import { default as default178 } from "./modules/icons/components/
|
|
178
|
-
import { default as default179 } from "./modules/icons/components/
|
|
179
|
-
import { default as default180 } from "./modules/icons/components/
|
|
180
|
-
import { default as default181 } from "./modules/icons/components/
|
|
181
|
-
import { default as default182 } from "./modules/icons/components/
|
|
182
|
-
import { default as default183 } from "./modules/icons/components/
|
|
183
|
-
import { default as default184 } from "./modules/icons/components/
|
|
184
|
-
import { default as default185 } from "./modules/icons/components/
|
|
185
|
-
import { default as default186 } from "./modules/icons/components/
|
|
186
|
-
import { default as default187 } from "./modules/icons/components/IconZoomIn.js";
|
|
187
|
-
import { default as default188 } from "./modules/icons/components/IconZoomOut.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconPause.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconPinOff.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconPinOn.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconPlaceholder.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconPlayFilled.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconPlay.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconPlus.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconPointerDefault.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconPointerHand.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconPrint.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconQuestionMark.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconQuestion.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconRafterDown.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconRafterLeft.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconRafterRight.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconRafterUp.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconReaction.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconReadMail.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconRecordPause.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconRecordStop.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconRecordVideo.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconRecord.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconRedo.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconRefresh.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconReset.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconRestart.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconRestore.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconSave.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconSearch.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconSee.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconSend.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconSetBackground.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconSettings.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconShare.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconSignature.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconSmartphone.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconSmiley.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconSortDescending.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconSortTime.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconSpeechToText.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconSplitCells.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconSquareRoot.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconStarFull.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconStar.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconSubmission.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconSubmitToValidate.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconSubscript.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconSuccessFill.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconSuperscript.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconTable.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconTeacher.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconTextBold.js";
|
|
153
|
+
import { default as default154 } from "./modules/icons/components/IconTextColor.js";
|
|
154
|
+
import { default as default155 } from "./modules/icons/components/IconTextHighlight.js";
|
|
155
|
+
import { default as default156 } from "./modules/icons/components/IconTextItalic.js";
|
|
156
|
+
import { default as default157 } from "./modules/icons/components/IconTextPage.js";
|
|
157
|
+
import { default as default158 } from "./modules/icons/components/IconTextSize.js";
|
|
158
|
+
import { default as default159 } from "./modules/icons/components/IconTextToSpeechOff.js";
|
|
159
|
+
import { default as default160 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
160
|
+
import { default as default161 } from "./modules/icons/components/IconTextTypo.js";
|
|
161
|
+
import { default as default162 } from "./modules/icons/components/IconTextUnderline.js";
|
|
162
|
+
import { default as default163 } from "./modules/icons/components/IconTextVanilla.js";
|
|
163
|
+
import { default as default164 } from "./modules/icons/components/IconThumbDown.js";
|
|
164
|
+
import { default as default165 } from "./modules/icons/components/IconThumbUp.js";
|
|
165
|
+
import { default as default166 } from "./modules/icons/components/IconToolCenter.js";
|
|
166
|
+
import { default as default167 } from "./modules/icons/components/IconTool.js";
|
|
167
|
+
import { default as default168 } from "./modules/icons/components/IconTrendingUp.js";
|
|
168
|
+
import { default as default169 } from "./modules/icons/components/IconUndoAll.js";
|
|
169
|
+
import { default as default170 } from "./modules/icons/components/IconUndoSlashed.js";
|
|
170
|
+
import { default as default171 } from "./modules/icons/components/IconUndo.js";
|
|
171
|
+
import { default as default172 } from "./modules/icons/components/IconUnion.js";
|
|
172
|
+
import { default as default173 } from "./modules/icons/components/IconUnlink.js";
|
|
173
|
+
import { default as default174 } from "./modules/icons/components/IconUnlock.js";
|
|
174
|
+
import { default as default175 } from "./modules/icons/components/IconUnreadMail.js";
|
|
175
|
+
import { default as default176 } from "./modules/icons/components/IconUpload.js";
|
|
176
|
+
import { default as default177 } from "./modules/icons/components/IconUserSearch.js";
|
|
177
|
+
import { default as default178 } from "./modules/icons/components/IconUser.js";
|
|
178
|
+
import { default as default179 } from "./modules/icons/components/IconUsers.js";
|
|
179
|
+
import { default as default180 } from "./modules/icons/components/IconVideo.js";
|
|
180
|
+
import { default as default181 } from "./modules/icons/components/IconViewCalendar.js";
|
|
181
|
+
import { default as default182 } from "./modules/icons/components/IconViewList.js";
|
|
182
|
+
import { default as default183 } from "./modules/icons/components/IconWand.js";
|
|
183
|
+
import { default as default184 } from "./modules/icons/components/IconWrite.js";
|
|
184
|
+
import { default as default185 } from "./modules/icons/components/IconZoomIn.js";
|
|
185
|
+
import { default as default186 } from "./modules/icons/components/IconZoomOut.js";
|
|
188
186
|
export {
|
|
189
187
|
default3 as IconAdd,
|
|
190
188
|
default2 as IconAddUser,
|
|
@@ -283,94 +281,92 @@ export {
|
|
|
283
281
|
default96 as IconOptions,
|
|
284
282
|
default97 as IconOrderedList,
|
|
285
283
|
default98 as IconPaperclip,
|
|
286
|
-
default99 as
|
|
287
|
-
default100 as
|
|
288
|
-
default101 as
|
|
289
|
-
default102 as
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
default107 as
|
|
295
|
-
default108 as
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
default113 as
|
|
301
|
-
default114 as
|
|
302
|
-
default115 as
|
|
303
|
-
default116 as
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
default119 as
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
default123 as
|
|
311
|
-
default124 as
|
|
312
|
-
default125 as
|
|
313
|
-
default126 as
|
|
314
|
-
default127 as
|
|
315
|
-
default128 as
|
|
316
|
-
default129 as
|
|
317
|
-
default130 as
|
|
318
|
-
default131 as
|
|
319
|
-
default132 as
|
|
320
|
-
default133 as
|
|
321
|
-
default134 as
|
|
322
|
-
default135 as
|
|
323
|
-
default136 as
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
default141 as
|
|
329
|
-
default142 as
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
default147 as
|
|
335
|
-
default148 as
|
|
336
|
-
default149 as
|
|
337
|
-
default150 as
|
|
338
|
-
default151 as
|
|
339
|
-
default152 as
|
|
340
|
-
default153 as
|
|
341
|
-
default154 as
|
|
342
|
-
default155 as
|
|
343
|
-
default156 as
|
|
344
|
-
default157 as
|
|
345
|
-
default158 as
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
default163 as
|
|
351
|
-
default164 as
|
|
352
|
-
default165 as
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
default174 as
|
|
362
|
-
default175 as
|
|
363
|
-
default176 as
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
default181 as
|
|
369
|
-
default182 as
|
|
370
|
-
default183 as
|
|
371
|
-
default184 as
|
|
372
|
-
default185 as
|
|
373
|
-
default186 as
|
|
374
|
-
default187 as IconZoomIn,
|
|
375
|
-
default188 as IconZoomOut
|
|
284
|
+
default99 as IconPause,
|
|
285
|
+
default100 as IconPinOff,
|
|
286
|
+
default101 as IconPinOn,
|
|
287
|
+
default102 as IconPlaceholder,
|
|
288
|
+
default104 as IconPlay,
|
|
289
|
+
default103 as IconPlayFilled,
|
|
290
|
+
default105 as IconPlus,
|
|
291
|
+
default106 as IconPointerDefault,
|
|
292
|
+
default107 as IconPointerHand,
|
|
293
|
+
default108 as IconPrint,
|
|
294
|
+
default110 as IconQuestion,
|
|
295
|
+
default109 as IconQuestionMark,
|
|
296
|
+
default111 as IconRafterDown,
|
|
297
|
+
default112 as IconRafterLeft,
|
|
298
|
+
default113 as IconRafterRight,
|
|
299
|
+
default114 as IconRafterUp,
|
|
300
|
+
default115 as IconReaction,
|
|
301
|
+
default116 as IconReadMail,
|
|
302
|
+
default120 as IconRecord,
|
|
303
|
+
default117 as IconRecordPause,
|
|
304
|
+
default118 as IconRecordStop,
|
|
305
|
+
default119 as IconRecordVideo,
|
|
306
|
+
default121 as IconRedo,
|
|
307
|
+
default122 as IconRefresh,
|
|
308
|
+
default123 as IconReset,
|
|
309
|
+
default124 as IconRestart,
|
|
310
|
+
default125 as IconRestore,
|
|
311
|
+
default126 as IconSave,
|
|
312
|
+
default127 as IconSearch,
|
|
313
|
+
default128 as IconSee,
|
|
314
|
+
default129 as IconSend,
|
|
315
|
+
default130 as IconSetBackground,
|
|
316
|
+
default131 as IconSettings,
|
|
317
|
+
default132 as IconShare,
|
|
318
|
+
default133 as IconSignature,
|
|
319
|
+
default134 as IconSmartphone,
|
|
320
|
+
default135 as IconSmiley,
|
|
321
|
+
default136 as IconSortAscendingLetters,
|
|
322
|
+
default138 as IconSortDescending,
|
|
323
|
+
default137 as IconSortDescendingLetters,
|
|
324
|
+
default139 as IconSortTime,
|
|
325
|
+
default140 as IconSpeechToText,
|
|
326
|
+
default141 as IconSplitCells,
|
|
327
|
+
default142 as IconSquareRoot,
|
|
328
|
+
default144 as IconStar,
|
|
329
|
+
default143 as IconStarFull,
|
|
330
|
+
default145 as IconSubmission,
|
|
331
|
+
default146 as IconSubmitToValidate,
|
|
332
|
+
default147 as IconSubscript,
|
|
333
|
+
default148 as IconSuccessFill,
|
|
334
|
+
default149 as IconSuccessOutline,
|
|
335
|
+
default150 as IconSuperscript,
|
|
336
|
+
default151 as IconTable,
|
|
337
|
+
default152 as IconTeacher,
|
|
338
|
+
default153 as IconTextBold,
|
|
339
|
+
default154 as IconTextColor,
|
|
340
|
+
default155 as IconTextHighlight,
|
|
341
|
+
default156 as IconTextItalic,
|
|
342
|
+
default157 as IconTextPage,
|
|
343
|
+
default158 as IconTextSize,
|
|
344
|
+
default160 as IconTextToSpeech,
|
|
345
|
+
default159 as IconTextToSpeechOff,
|
|
346
|
+
default161 as IconTextTypo,
|
|
347
|
+
default162 as IconTextUnderline,
|
|
348
|
+
default163 as IconTextVanilla,
|
|
349
|
+
default164 as IconThumbDown,
|
|
350
|
+
default165 as IconThumbUp,
|
|
351
|
+
default167 as IconTool,
|
|
352
|
+
default166 as IconToolCenter,
|
|
353
|
+
default168 as IconTrendingUp,
|
|
354
|
+
default171 as IconUndo,
|
|
355
|
+
default169 as IconUndoAll,
|
|
356
|
+
default170 as IconUndoSlashed,
|
|
357
|
+
default172 as IconUnion,
|
|
358
|
+
default173 as IconUnlink,
|
|
359
|
+
default174 as IconUnlock,
|
|
360
|
+
default175 as IconUnreadMail,
|
|
361
|
+
default176 as IconUpload,
|
|
362
|
+
default178 as IconUser,
|
|
363
|
+
default177 as IconUserSearch,
|
|
364
|
+
default179 as IconUsers,
|
|
365
|
+
default180 as IconVideo,
|
|
366
|
+
default181 as IconViewCalendar,
|
|
367
|
+
default182 as IconViewList,
|
|
368
|
+
default183 as IconWand,
|
|
369
|
+
default184 as IconWrite,
|
|
370
|
+
default185 as IconZoomIn,
|
|
371
|
+
default186 as IconZoomOut
|
|
376
372
|
};
|