@edifice.io/react 2.5.10 → 2.5.12-develop-integration.20260224153303

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.
Files changed (29) hide show
  1. package/dist/components/AddAttachments/AddAttachments.d.ts +18 -0
  2. package/dist/components/AddAttachments/AddAttachments.js +87 -0
  3. package/dist/components/AddAttachments/components/AddAttachmentToWorkspaceModal.d.ts +9 -0
  4. package/dist/components/AddAttachments/components/AddAttachmentToWorkspaceModal.js +41 -0
  5. package/dist/components/AddAttachments/components/SingleAttachment.d.ts +13 -0
  6. package/dist/components/AddAttachments/components/SingleAttachment.js +27 -0
  7. package/dist/components/AddAttachments/index.d.ts +2 -0
  8. package/dist/components/AddAttachments/models/attachment.d.ts +9 -0
  9. package/dist/components/Badge/Badge.js +1 -10
  10. package/dist/components/index.d.ts +1 -0
  11. package/dist/hooks/useConf/useConf.d.ts +1 -1
  12. package/dist/hooks/useConversation/useConversation.js +11 -4
  13. package/dist/hooks/useSession/useSession.d.ts +1 -1
  14. package/dist/icons.js +302 -298
  15. package/dist/index.js +2 -0
  16. package/dist/modules/icons/components/IconCollect.d.ts +7 -0
  17. package/dist/modules/icons/components/IconCollect.js +12 -0
  18. package/dist/modules/icons/components/IconSubmission.d.ts +7 -0
  19. package/dist/modules/icons/components/IconSubmission.js +12 -0
  20. package/dist/modules/icons/components/index.d.ts +2 -0
  21. package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +1 -1
  22. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +1 -1
  23. package/dist/modules/modals/ShareModal/ShareResources.d.ts +1 -1
  24. package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +1 -1
  25. package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +1 -1
  26. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +1 -1
  27. package/dist/types/color.d.ts +3 -0
  28. package/dist/utilities/react-query/react-query-utils.d.ts +1 -1
  29. package/package.json +6 -6
@@ -0,0 +1,18 @@
1
+ import { Attachment } from './models/attachment';
2
+ export interface AddAttachmentsProps {
3
+ attachments: Attachment[];
4
+ onFilesSelected: (files: File[]) => void;
5
+ onRemoveAttachment: (attachmentId: string) => void;
6
+ editMode?: boolean;
7
+ isMutating?: boolean;
8
+ onCopyToWorkspace?: (attachments: Attachment[], folderId: string) => Promise<boolean>;
9
+ /** Si fourni, chaque pièce jointe affiche un bouton télécharger avec l'URL retournée. */
10
+ getDownloadUrl?: (attachmentId: string) => string;
11
+ /** Si fourni et qu'il y a plusieurs pièces jointes, affiche un bouton « télécharger tout ». */
12
+ downloadAllUrl?: string;
13
+ }
14
+ export declare const AddAttachments: {
15
+ ({ attachments, onFilesSelected, onRemoveAttachment, editMode, isMutating, onCopyToWorkspace, getDownloadUrl, downloadAllUrl, }: AddAttachmentsProps): import("react/jsx-runtime").JSX.Element | null;
16
+ displayName: string;
17
+ };
18
+ export default AddAttachments;
@@ -0,0 +1,87 @@
1
+ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ import { useRef, useState, useEffect } from "react";
4
+ import { useTranslation } from "react-i18next";
5
+ import SvgIconDelete from "../../modules/icons/components/IconDelete.js";
6
+ import SvgIconDownload from "../../modules/icons/components/IconDownload.js";
7
+ import SvgIconFolderAdd from "../../modules/icons/components/IconFolderAdd.js";
8
+ import SvgIconPlus from "../../modules/icons/components/IconPlus.js";
9
+ import { AddAttachmentToWorkspaceModal } from "./components/AddAttachmentToWorkspaceModal.js";
10
+ import { SingleAttachment } from "./components/SingleAttachment.js";
11
+ import Flex from "../Flex/Flex.js";
12
+ import IconButton from "../Button/IconButton.js";
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
+ }
25
+ const AddAttachments = ({
26
+ attachments,
27
+ onFilesSelected,
28
+ onRemoveAttachment,
29
+ editMode = !1,
30
+ isMutating = !1,
31
+ onCopyToWorkspace,
32
+ getDownloadUrl,
33
+ downloadAllUrl
34
+ }) => {
35
+ const {
36
+ t
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;
41
+ const resetInputValue = () => {
42
+ inputRef.current && (inputRef.current.value = "");
43
+ }, handleAttachClick = () => {
44
+ var _a;
45
+ return (_a = inputRef == null ? void 0 : inputRef.current) == null ? void 0 : _a.click();
46
+ }, handleFileChange = (event) => {
47
+ const files = Array.from(event.target.files ?? []);
48
+ if (files.length > 0) {
49
+ onFilesSelected(files);
50
+ const newOptimistic = files.map(fileToAttachment);
51
+ setOptimisticAttachments((prev) => [...prev, ...newOptimistic]);
52
+ }
53
+ resetInputValue();
54
+ }, handleDetachAllClick = () => {
55
+ setOptimisticAttachments([]), attachments.forEach((attachment) => {
56
+ onRemoveAttachment(attachment.id);
57
+ }), resetInputValue();
58
+ }, handleDetachClick = (attachmentId) => {
59
+ optimisticAttachments.some((attachment) => attachment.id === attachmentId) ? setOptimisticAttachments((prev) => prev.filter((attachment) => attachment.id !== attachmentId)) : onRemoveAttachment(attachmentId), resetInputValue();
60
+ }, handleCopyToWorkspace = (attachments2) => {
61
+ setAttachmentsToAddToWorkspace(attachments2);
62
+ }, className = clsx("bg-gray-200 rounded px-12 py-8 message-attachments align-self-start gap-8 d-flex flex-column mw-100", {
63
+ "border add-attachments-edit mx-16": editMode
64
+ });
65
+ return /* @__PURE__ */ jsxs("div", { className, "data-drag-handle": !0, children: [
66
+ !!displayedAttachments.length && /* @__PURE__ */ jsxs(Fragment, { children: [
67
+ /* @__PURE__ */ jsxs(Flex, { direction: "row", align: "center", justify: "between", className: "border-bottom", children: [
68
+ /* @__PURE__ */ jsx("span", { className: "caption fw-bold my-8", children: t("attachments") }),
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" }),
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" }) }),
72
+ editMode && /* @__PURE__ */ jsx(IconButton, { title: t("remove.all.attachment"), color: "danger", type: "button", icon: /* @__PURE__ */ jsx(SvgIconDelete, {}), variant: "ghost", onClick: handleDetachAllClick, disabled: isMutating })
73
+ ] })
74
+ ] }),
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)) })
76
+ ] }),
77
+ editMode && /* @__PURE__ */ jsxs(Fragment, { children: [
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") }),
79
+ /* @__PURE__ */ jsx("input", { ref: inputRef, multiple: !0, type: "file", name: "attachment-input", id: "attachment-input", onChange: handleFileChange, hidden: !0 })
80
+ ] }),
81
+ onCopyToWorkspace && !!attachmentsToAddToWorkspace && /* @__PURE__ */ jsx(AddAttachmentToWorkspaceModal, { isOpen: !0, onModalClose: () => setAttachmentsToAddToWorkspace(void 0), attachments: attachmentsToAddToWorkspace, onCopyToWorkspace })
82
+ ] });
83
+ };
84
+ export {
85
+ AddAttachments,
86
+ AddAttachments as default
87
+ };
@@ -0,0 +1,9 @@
1
+ import { Attachment } from '../models/attachment';
2
+ interface AddAttachmentToWorkspaceModalProps {
3
+ attachments: Attachment[];
4
+ onModalClose: () => void;
5
+ isOpen?: boolean;
6
+ onCopyToWorkspace: (attachments: Attachment[], folderId: string) => Promise<boolean>;
7
+ }
8
+ export declare function AddAttachmentToWorkspaceModal({ attachments, isOpen, onModalClose, onCopyToWorkspace, }: AddAttachmentToWorkspaceModalProps): import('react').ReactPortal;
9
+ export {};
@@ -0,0 +1,41 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { useState, useEffect } from "react";
3
+ import { createPortal } from "react-dom";
4
+ import { toast } from "react-hot-toast";
5
+ import { useTranslation } from "react-i18next";
6
+ import Modal from "../../Modal/Modal.js";
7
+ import WorkspaceFolders from "../../../modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
8
+ import Button from "../../Button/Button.js";
9
+ function AddAttachmentToWorkspaceModal({
10
+ attachments,
11
+ isOpen = !1,
12
+ onModalClose,
13
+ onCopyToWorkspace
14
+ }) {
15
+ const {
16
+ t
17
+ } = useTranslation(), [selectedFolderIdToCopyFile, setSelectedFolderIdToCopyFile] = useState(void 0), [isLoading, setIsLoading] = useState(!1), [disabled, setDisabled] = useState(!1), handleFolderSelected = (folderId, canCopyFileInto) => {
18
+ setSelectedFolderIdToCopyFile(canCopyFileInto ? folderId : void 0);
19
+ }, handleAddAttachmentToWorkspace = async () => {
20
+ if (selectedFolderIdToCopyFile === void 0) return;
21
+ setIsLoading(!0), await onCopyToWorkspace(attachments, selectedFolderIdToCopyFile) ? onModalClose() : toast.error(t("attachments.add.to.folder.modal.error")), setIsLoading(!1);
22
+ };
23
+ return useEffect(() => {
24
+ setDisabled(selectedFolderIdToCopyFile === void 0);
25
+ }, [selectedFolderIdToCopyFile]), /* @__PURE__ */ createPortal(/* @__PURE__ */ jsxs(Modal, { isOpen, onModalClose, id: "add-attachment-to-workspace-modal", size: "md", children: [
26
+ /* @__PURE__ */ jsx(Modal.Header, { onModalClose, children: t("attachments.add.to.folder.modal.title") }),
27
+ /* @__PURE__ */ jsx(Modal.Body, { children: /* @__PURE__ */ jsxs("div", { className: "d-flex flex-column gap-12", children: [
28
+ /* @__PURE__ */ jsx("p", { children: t("attachments.add.to.folder.modal.description", {
29
+ count: attachments.length
30
+ }) }),
31
+ /* @__PURE__ */ jsx(WorkspaceFolders, { onFolderSelected: handleFolderSelected })
32
+ ] }) }),
33
+ /* @__PURE__ */ jsxs(Modal.Footer, { children: [
34
+ /* @__PURE__ */ jsx(Button, { type: "button", color: "tertiary", variant: "ghost", onClick: onModalClose, children: t("attachments.add.to.folder.modal.cancel") }),
35
+ /* @__PURE__ */ jsx(Button, { color: "primary", variant: "filled", onClick: handleAddAttachmentToWorkspace, disabled: isLoading || disabled, isLoading, children: t("attachments.add.to.folder.modal.add") })
36
+ ] })
37
+ ] }), document.getElementById("portal"));
38
+ }
39
+ export {
40
+ AddAttachmentToWorkspaceModal
41
+ };
@@ -0,0 +1,13 @@
1
+ import { Attachment } from '../models/attachment';
2
+ export interface SingleAttachmentProps {
3
+ attachment: Attachment;
4
+ onDelete: (attachmentId: string) => void;
5
+ editMode?: boolean;
6
+ /** Si fourni, affiche le bouton « copier vers l'espace » et appelle ce callback au clic. */
7
+ onCopyToWorkspace?: (attachment: Attachment) => void;
8
+ /** Si fourni, affiche le bouton télécharger avec l'URL retournée. */
9
+ getDownloadUrl?: (attachmentId: string) => string;
10
+ /** Désactive les boutons d'action (ex. pendant une suppression). */
11
+ disabled?: boolean;
12
+ }
13
+ export declare function SingleAttachment({ attachment, onDelete, editMode, onCopyToWorkspace, getDownloadUrl, disabled, }: SingleAttachmentProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,27 @@
1
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
+ import SvgIconDelete from "../../../modules/icons/components/IconDelete.js";
3
+ import SvgIconDownload from "../../../modules/icons/components/IconDownload.js";
4
+ import SvgIconFolderAdd from "../../../modules/icons/components/IconFolderAdd.js";
5
+ import { useTranslation } from "react-i18next";
6
+ import Attachment from "../../Attachment/Attachment.js";
7
+ import IconButton from "../../Button/IconButton.js";
8
+ function SingleAttachment({
9
+ attachment,
10
+ onDelete,
11
+ editMode = !1,
12
+ onCopyToWorkspace,
13
+ getDownloadUrl,
14
+ disabled = !1
15
+ }) {
16
+ const {
17
+ t
18
+ } = useTranslation(), downloadUrl = getDownloadUrl == null ? void 0 : getDownloadUrl(attachment.id);
19
+ return /* @__PURE__ */ jsx(Attachment, { name: attachment.filename, options: /* @__PURE__ */ jsxs(Fragment, { children: [
20
+ onCopyToWorkspace && /* @__PURE__ */ jsx(IconButton, { title: t("conversation.copy.toworkspace"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconFolderAdd, {}), variant: "ghost", onClick: () => onCopyToWorkspace(attachment), disabled }),
21
+ downloadUrl !== void 0 && /* @__PURE__ */ jsx("a", { href: downloadUrl, download: !0, children: /* @__PURE__ */ jsx(IconButton, { title: t("download.attachment"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconDownload, {}), variant: "ghost", disabled }) }),
22
+ editMode && /* @__PURE__ */ jsx(IconButton, { title: t("remove.attachment"), color: "danger", type: "button", icon: /* @__PURE__ */ jsx(SvgIconDelete, {}), variant: "ghost", onClick: () => onDelete(attachment.id), disabled })
23
+ ] }) });
24
+ }
25
+ export {
26
+ SingleAttachment
27
+ };
@@ -0,0 +1,2 @@
1
+ export { default as AddAttachments } from './AddAttachments';
2
+ export * from './AddAttachments';
@@ -0,0 +1,9 @@
1
+ export type Attachment = {
2
+ id: string;
3
+ charset: string;
4
+ contentTransferEncoding: string;
5
+ contentType: string;
6
+ filename: string;
7
+ name: string;
8
+ size: number;
9
+ };
@@ -23,16 +23,7 @@ const Badge = /* @__PURE__ */ forwardRef(({
23
23
  }
24
24
  console.log(badgeColorClassName);
25
25
  const classes = clsx("badge rounded-pill", (variant.type === "content" || variant.type === "user") && "background" in variant ? "bg-gray-200" : (variant.type === "content" || variant.type === "user") && !("background" in variant) ? "border border-0" : "", variant.type === "content" && `text-${variant.level}`, variant.type === "notification" && `badge-notification bg-${variant.level} text-light border border-0`, variant.type === "user" && `badge-profile-${variant.profile.toLowerCase()}`, variant.type === "link" && "badge-link border border-0", variant.type === "chip" && "bg-gray-200", variant.type === "beta" && badgeColorClassName, className);
26
- return /* @__PURE__ */ jsxs("span", { ref, className: classes, style: (() => {
27
- if (variant.type !== "beta") return;
28
- const color = variant.color ?? "#000000";
29
- return {
30
- borderColor: color,
31
- color,
32
- backgroundColor: `${color}10`
33
- // the 2 last hexadecimal numbers are for opacity
34
- };
35
- })(), ...restProps, children: [
26
+ return /* @__PURE__ */ jsxs("span", { ref, className: classes, ...restProps, children: [
36
27
  variant.type === "chip" && /* @__PURE__ */ jsx("div", { className: "d-flex fw-800 align-items-center", children }),
37
28
  variant.type === "beta" && (children ?? "BÊTA"),
38
29
  variant.type !== "chip" && variant.type !== "beta" && children
@@ -1,4 +1,5 @@
1
1
  export * from './ActionBar';
2
+ export * from './AddAttachments';
2
3
  export * from './Alert';
3
4
  export * from './AppHeader';
4
5
  export * from './AppIcon';
@@ -1,4 +1,4 @@
1
1
  import { App, IGetConf } from '@edifice.io/client';
2
2
  export default function useConf({ appCode }: {
3
3
  appCode: App;
4
- }): import('../../node_modules/@tanstack/react-query').UseQueryResult<IGetConf, Error>;
4
+ }): import('../../../node_modules/@tanstack/react-query').UseQueryResult<IGetConf, Error>;
@@ -3,7 +3,7 @@ import { odeServices } from "@edifice.io/client";
3
3
  import { useQuery } from "@tanstack/react-query";
4
4
  import useHasWorkflow from "../useHasWorkflow/useHasWorkflow.js";
5
5
  const useConversation = () => {
6
- const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), [msgLink, setMsgLink] = useState(""), queryParams = {
6
+ const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), conversationWorkflow = useHasWorkflow("org.entcore.conversation.controllers.ConversationController|view"), [msgLink, setMsgLink] = useState(""), queryParams = {
7
7
  unread: !0,
8
8
  _: (/* @__PURE__ */ new Date()).getTime()
9
9
  };
@@ -12,9 +12,16 @@ const useConversation = () => {
12
12
  data: messages
13
13
  } = useQuery({
14
14
  queryKey: ["folder", "count", "inbox"],
15
- queryFn: async () => await odeServices.http().get(zimbraWorkflow ? "/zimbra/count/INBOX" : "/conversation/count/inbox", {
16
- queryParams
17
- }),
15
+ queryFn: async () => {
16
+ if (zimbraWorkflow)
17
+ return await odeServices.http().get("/zimbra/count/INBOX", {
18
+ queryParams
19
+ });
20
+ if (conversationWorkflow)
21
+ return await odeServices.http().get("/conversation/count/inbox", {
22
+ queryParams
23
+ });
24
+ },
18
25
  staleTime: 5 * 60 * 1e3
19
26
  // 5 minutes
20
27
  }), goToMessagerie = async () => {
@@ -1,2 +1,2 @@
1
1
  import { IGetSession } from '@edifice.io/client';
2
- export default function useSession(): import('../../node_modules/@tanstack/react-query').UseQueryResult<IGetSession, Error>;
2
+ export default function useSession(): import('../../../node_modules/@tanstack/react-query').UseQueryResult<IGetSession, Error>;
package/dist/icons.js CHANGED
@@ -32,155 +32,157 @@ import { default as default32 } from "./modules/icons/components/IconClock.js";
32
32
  import { default as default33 } from "./modules/icons/components/IconCloseFullScreen.js";
33
33
  import { default as default34 } from "./modules/icons/components/IconClose.js";
34
34
  import { default as default35 } from "./modules/icons/components/IconCode.js";
35
- import { default as default36 } from "./modules/icons/components/IconCopy.js";
36
- import { default as default37 } from "./modules/icons/components/IconCrop.js";
37
- import { default as default38 } from "./modules/icons/components/IconCut.js";
38
- import { default as default39 } from "./modules/icons/components/IconDeleteColor.js";
39
- import { default as default40 } from "./modules/icons/components/IconDeleteColumnHighlight.js";
40
- import { default as default41 } from "./modules/icons/components/IconDeleteColumn.js";
41
- import { default as default42 } from "./modules/icons/components/IconDeleteRowHighlight.js";
42
- import { default as default43 } from "./modules/icons/components/IconDeleteRow.js";
43
- import { default as default44 } from "./modules/icons/components/IconDelete.js";
44
- import { default as default45 } from "./modules/icons/components/IconDepositeInbox.js";
45
- import { default as default46 } from "./modules/icons/components/IconDownload.js";
46
- import { default as default47 } from "./modules/icons/components/IconEdit.js";
47
- import { default as default48 } from "./modules/icons/components/IconError.js";
48
- import { default as default49 } from "./modules/icons/components/IconExercizerAi.js";
49
- import { default as default50 } from "./modules/icons/components/IconExternalLink.js";
50
- import { default as default51 } from "./modules/icons/components/IconFiles.js";
51
- import { default as default52 } from "./modules/icons/components/IconFilter.js";
52
- import { default as default53 } from "./modules/icons/components/IconFlag.js";
53
- import { default as default54 } from "./modules/icons/components/IconFolderAdd.js";
54
- import { default as default55 } from "./modules/icons/components/IconFolderDelete.js";
55
- import { default as default56 } from "./modules/icons/components/IconFolderMove.js";
56
- import { default as default57 } from "./modules/icons/components/IconFolder.js";
57
- import { default as default58 } from "./modules/icons/components/IconForgoing.js";
58
- import { default as default59 } from "./modules/icons/components/IconFullScreen.js";
59
- import { default as default60 } from "./modules/icons/components/IconGlobe2.js";
60
- import { default as default61 } from "./modules/icons/components/IconGlobe.js";
61
- import { default as default62 } from "./modules/icons/components/IconGroupAvatar.js";
62
- import { default as default63 } from "./modules/icons/components/IconHandMove.js";
63
- import { default as default64 } from "./modules/icons/components/IconHeadphone.js";
64
- import { default as default65 } from "./modules/icons/components/IconHide.js";
65
- import { default as default66 } from "./modules/icons/components/IconHighlightColumn.js";
66
- import { default as default67 } from "./modules/icons/components/IconHighlightRow.js";
67
- import { default as default68 } from "./modules/icons/components/IconHome.js";
68
- import { default as default69 } from "./modules/icons/components/IconHourglass.js";
69
- import { default as default70 } from "./modules/icons/components/IconImageSizeLarge.js";
70
- import { default as default71 } from "./modules/icons/components/IconImageSizeMedium.js";
71
- import { default as default72 } from "./modules/icons/components/IconImageSizeSmall.js";
72
- import { default as default73 } from "./modules/icons/components/IconInbox.js";
73
- import { default as default74 } from "./modules/icons/components/IconInfoCircle.js";
74
- import { default as default75 } from "./modules/icons/components/IconInfoRectangle.js";
75
- import { default as default76 } from "./modules/icons/components/IconLabel.js";
76
- import { default as default77 } from "./modules/icons/components/IconLandscape.js";
77
- import { default as default78 } from "./modules/icons/components/IconLibrary.js";
78
- import { default as default79 } from "./modules/icons/components/IconLink.js";
79
- import { default as default80 } from "./modules/icons/components/IconListOrder.js";
80
- import { default as default81 } from "./modules/icons/components/IconLoader.js";
81
- import { default as default82 } from "./modules/icons/components/IconLock.js";
82
- import { default as default83 } from "./modules/icons/components/IconMailRecall.js";
83
- import { default as default84 } from "./modules/icons/components/IconMail.js";
84
- import { default as default85 } from "./modules/icons/components/IconMegaphone.js";
85
- import { default as default86 } from "./modules/icons/components/IconMergeCells.js";
86
- import { default as default87 } from "./modules/icons/components/IconMessageInfo.js";
87
- import { default as default88 } from "./modules/icons/components/IconMicOff.js";
88
- import { default as default89 } from "./modules/icons/components/IconMic.js";
89
- import { default as default90 } from "./modules/icons/components/IconMinus.js";
90
- import { default as default91 } from "./modules/icons/components/IconMove.js";
91
- import { default as default92 } from "./modules/icons/components/IconNoColors.js";
92
- import { default as default93 } from "./modules/icons/components/IconNotes.js";
93
- import { default as default94 } from "./modules/icons/components/IconNotification.js";
94
- import { default as default95 } from "./modules/icons/components/IconOptions.js";
95
- import { default as default96 } from "./modules/icons/components/IconOrderedList.js";
96
- import { default as default97 } from "./modules/icons/components/IconPaperclip.js";
97
- import { default as default98 } from "./modules/icons/components/IconPause.js";
98
- import { default as default99 } from "./modules/icons/components/IconPinOff.js";
99
- import { default as default100 } from "./modules/icons/components/IconPinOn.js";
100
- import { default as default101 } from "./modules/icons/components/IconPlaceholder.js";
101
- import { default as default102 } from "./modules/icons/components/IconPlayFilled.js";
102
- import { default as default103 } from "./modules/icons/components/IconPlay.js";
103
- import { default as default104 } from "./modules/icons/components/IconPlus.js";
104
- import { default as default105 } from "./modules/icons/components/IconPointerDefault.js";
105
- import { default as default106 } from "./modules/icons/components/IconPointerHand.js";
106
- import { default as default107 } from "./modules/icons/components/IconPrint.js";
107
- import { default as default108 } from "./modules/icons/components/IconQuestionMark.js";
108
- import { default as default109 } from "./modules/icons/components/IconQuestion.js";
109
- import { default as default110 } from "./modules/icons/components/IconRafterDown.js";
110
- import { default as default111 } from "./modules/icons/components/IconRafterLeft.js";
111
- import { default as default112 } from "./modules/icons/components/IconRafterRight.js";
112
- import { default as default113 } from "./modules/icons/components/IconRafterUp.js";
113
- import { default as default114 } from "./modules/icons/components/IconReaction.js";
114
- import { default as default115 } from "./modules/icons/components/IconReadMail.js";
115
- import { default as default116 } from "./modules/icons/components/IconRecordPause.js";
116
- import { default as default117 } from "./modules/icons/components/IconRecordStop.js";
117
- import { default as default118 } from "./modules/icons/components/IconRecordVideo.js";
118
- import { default as default119 } from "./modules/icons/components/IconRecord.js";
119
- import { default as default120 } from "./modules/icons/components/IconRedo.js";
120
- import { default as default121 } from "./modules/icons/components/IconRefresh.js";
121
- import { default as default122 } from "./modules/icons/components/IconReset.js";
122
- import { default as default123 } from "./modules/icons/components/IconRestart.js";
123
- import { default as default124 } from "./modules/icons/components/IconRestore.js";
124
- import { default as default125 } from "./modules/icons/components/IconSave.js";
125
- import { default as default126 } from "./modules/icons/components/IconSearch.js";
126
- import { default as default127 } from "./modules/icons/components/IconSee.js";
127
- import { default as default128 } from "./modules/icons/components/IconSend.js";
128
- import { default as default129 } from "./modules/icons/components/IconSetBackground.js";
129
- import { default as default130 } from "./modules/icons/components/IconSettings.js";
130
- import { default as default131 } from "./modules/icons/components/IconShare.js";
131
- import { default as default132 } from "./modules/icons/components/IconSignature.js";
132
- import { default as default133 } from "./modules/icons/components/IconSmartphone.js";
133
- import { default as default134 } from "./modules/icons/components/IconSmiley.js";
134
- import { default as default135 } from "./modules/icons/components/IconSortAscendingLetters.js";
135
- import { default as default136 } from "./modules/icons/components/IconSortDescendingLetters.js";
136
- import { default as default137 } from "./modules/icons/components/IconSortDescending.js";
137
- import { default as default138 } from "./modules/icons/components/IconSortTime.js";
138
- import { default as default139 } from "./modules/icons/components/IconSpeechToText.js";
139
- import { default as default140 } from "./modules/icons/components/IconSplitCells.js";
140
- import { default as default141 } from "./modules/icons/components/IconSquareRoot.js";
141
- import { default as default142 } from "./modules/icons/components/IconStarFull.js";
142
- import { default as default143 } from "./modules/icons/components/IconStar.js";
143
- import { default as default144 } from "./modules/icons/components/IconSubmitToValidate.js";
144
- import { default as default145 } from "./modules/icons/components/IconSubscript.js";
145
- import { default as default146 } from "./modules/icons/components/IconSuccessFill.js";
146
- import { default as default147 } from "./modules/icons/components/IconSuccessOutline.js";
147
- import { default as default148 } from "./modules/icons/components/IconSuperscript.js";
148
- import { default as default149 } from "./modules/icons/components/IconTable.js";
149
- import { default as default150 } from "./modules/icons/components/IconTeacher.js";
150
- import { default as default151 } from "./modules/icons/components/IconTextBold.js";
151
- import { default as default152 } from "./modules/icons/components/IconTextColor.js";
152
- import { default as default153 } from "./modules/icons/components/IconTextHighlight.js";
153
- import { default as default154 } from "./modules/icons/components/IconTextItalic.js";
154
- import { default as default155 } from "./modules/icons/components/IconTextPage.js";
155
- import { default as default156 } from "./modules/icons/components/IconTextSize.js";
156
- import { default as default157 } from "./modules/icons/components/IconTextToSpeechOff.js";
157
- import { default as default158 } from "./modules/icons/components/IconTextToSpeech.js";
158
- import { default as default159 } from "./modules/icons/components/IconTextTypo.js";
159
- import { default as default160 } from "./modules/icons/components/IconTextUnderline.js";
160
- import { default as default161 } from "./modules/icons/components/IconTextVanilla.js";
161
- import { default as default162 } from "./modules/icons/components/IconThumbDown.js";
162
- import { default as default163 } from "./modules/icons/components/IconThumbUp.js";
163
- import { default as default164 } from "./modules/icons/components/IconToolCenter.js";
164
- import { default as default165 } from "./modules/icons/components/IconTool.js";
165
- import { default as default166 } from "./modules/icons/components/IconTrendingUp.js";
166
- import { default as default167 } from "./modules/icons/components/IconUndoAll.js";
167
- import { default as default168 } from "./modules/icons/components/IconUndoSlashed.js";
168
- import { default as default169 } from "./modules/icons/components/IconUndo.js";
169
- import { default as default170 } from "./modules/icons/components/IconUnion.js";
170
- import { default as default171 } from "./modules/icons/components/IconUnlink.js";
171
- import { default as default172 } from "./modules/icons/components/IconUnlock.js";
172
- import { default as default173 } from "./modules/icons/components/IconUnreadMail.js";
173
- import { default as default174 } from "./modules/icons/components/IconUpload.js";
174
- import { default as default175 } from "./modules/icons/components/IconUserSearch.js";
175
- import { default as default176 } from "./modules/icons/components/IconUser.js";
176
- import { default as default177 } from "./modules/icons/components/IconUsers.js";
177
- import { default as default178 } from "./modules/icons/components/IconVideo.js";
178
- import { default as default179 } from "./modules/icons/components/IconViewCalendar.js";
179
- import { default as default180 } from "./modules/icons/components/IconViewList.js";
180
- import { default as default181 } from "./modules/icons/components/IconWand.js";
181
- import { default as default182 } from "./modules/icons/components/IconWrite.js";
182
- import { default as default183 } from "./modules/icons/components/IconZoomIn.js";
183
- import { default as default184 } from "./modules/icons/components/IconZoomOut.js";
35
+ import { default as default36 } from "./modules/icons/components/IconCollect.js";
36
+ import { default as default37 } from "./modules/icons/components/IconCopy.js";
37
+ import { default as default38 } from "./modules/icons/components/IconCrop.js";
38
+ import { default as default39 } from "./modules/icons/components/IconCut.js";
39
+ import { default as default40 } from "./modules/icons/components/IconDeleteColor.js";
40
+ import { default as default41 } from "./modules/icons/components/IconDeleteColumnHighlight.js";
41
+ import { default as default42 } from "./modules/icons/components/IconDeleteColumn.js";
42
+ import { default as default43 } from "./modules/icons/components/IconDeleteRowHighlight.js";
43
+ import { default as default44 } from "./modules/icons/components/IconDeleteRow.js";
44
+ import { default as default45 } from "./modules/icons/components/IconDelete.js";
45
+ import { default as default46 } from "./modules/icons/components/IconDepositeInbox.js";
46
+ import { default as default47 } from "./modules/icons/components/IconDownload.js";
47
+ import { default as default48 } from "./modules/icons/components/IconEdit.js";
48
+ import { default as default49 } from "./modules/icons/components/IconError.js";
49
+ import { default as default50 } from "./modules/icons/components/IconExercizerAi.js";
50
+ import { default as default51 } from "./modules/icons/components/IconExternalLink.js";
51
+ import { default as default52 } from "./modules/icons/components/IconFiles.js";
52
+ import { default as default53 } from "./modules/icons/components/IconFilter.js";
53
+ import { default as default54 } from "./modules/icons/components/IconFlag.js";
54
+ import { default as default55 } from "./modules/icons/components/IconFolderAdd.js";
55
+ import { default as default56 } from "./modules/icons/components/IconFolderDelete.js";
56
+ import { default as default57 } from "./modules/icons/components/IconFolderMove.js";
57
+ import { default as default58 } from "./modules/icons/components/IconFolder.js";
58
+ import { default as default59 } from "./modules/icons/components/IconForgoing.js";
59
+ import { default as default60 } from "./modules/icons/components/IconFullScreen.js";
60
+ import { default as default61 } from "./modules/icons/components/IconGlobe2.js";
61
+ import { default as default62 } from "./modules/icons/components/IconGlobe.js";
62
+ import { default as default63 } from "./modules/icons/components/IconGroupAvatar.js";
63
+ import { default as default64 } from "./modules/icons/components/IconHandMove.js";
64
+ import { default as default65 } from "./modules/icons/components/IconHeadphone.js";
65
+ import { default as default66 } from "./modules/icons/components/IconHide.js";
66
+ import { default as default67 } from "./modules/icons/components/IconHighlightColumn.js";
67
+ import { default as default68 } from "./modules/icons/components/IconHighlightRow.js";
68
+ import { default as default69 } from "./modules/icons/components/IconHome.js";
69
+ import { default as default70 } from "./modules/icons/components/IconHourglass.js";
70
+ import { default as default71 } from "./modules/icons/components/IconImageSizeLarge.js";
71
+ import { default as default72 } from "./modules/icons/components/IconImageSizeMedium.js";
72
+ import { default as default73 } from "./modules/icons/components/IconImageSizeSmall.js";
73
+ import { default as default74 } from "./modules/icons/components/IconInbox.js";
74
+ import { default as default75 } from "./modules/icons/components/IconInfoCircle.js";
75
+ import { default as default76 } from "./modules/icons/components/IconInfoRectangle.js";
76
+ import { default as default77 } from "./modules/icons/components/IconLabel.js";
77
+ import { default as default78 } from "./modules/icons/components/IconLandscape.js";
78
+ import { default as default79 } from "./modules/icons/components/IconLibrary.js";
79
+ import { default as default80 } from "./modules/icons/components/IconLink.js";
80
+ import { default as default81 } from "./modules/icons/components/IconListOrder.js";
81
+ import { default as default82 } from "./modules/icons/components/IconLoader.js";
82
+ import { default as default83 } from "./modules/icons/components/IconLock.js";
83
+ import { default as default84 } from "./modules/icons/components/IconMailRecall.js";
84
+ import { default as default85 } from "./modules/icons/components/IconMail.js";
85
+ import { default as default86 } from "./modules/icons/components/IconMegaphone.js";
86
+ import { default as default87 } from "./modules/icons/components/IconMergeCells.js";
87
+ import { default as default88 } from "./modules/icons/components/IconMessageInfo.js";
88
+ import { default as default89 } from "./modules/icons/components/IconMicOff.js";
89
+ import { default as default90 } from "./modules/icons/components/IconMic.js";
90
+ import { default as default91 } from "./modules/icons/components/IconMinus.js";
91
+ import { default as default92 } from "./modules/icons/components/IconMove.js";
92
+ import { default as default93 } from "./modules/icons/components/IconNoColors.js";
93
+ import { default as default94 } from "./modules/icons/components/IconNotes.js";
94
+ import { default as default95 } from "./modules/icons/components/IconNotification.js";
95
+ import { default as default96 } from "./modules/icons/components/IconOptions.js";
96
+ import { default as default97 } from "./modules/icons/components/IconOrderedList.js";
97
+ import { default as default98 } from "./modules/icons/components/IconPaperclip.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";
184
186
  export {
185
187
  default3 as IconAdd,
186
188
  default2 as IconAddUser,
@@ -216,153 +218,155 @@ export {
216
218
  default34 as IconClose,
217
219
  default33 as IconCloseFullScreen,
218
220
  default35 as IconCode,
219
- default36 as IconCopy,
220
- default37 as IconCrop,
221
- default38 as IconCut,
222
- default44 as IconDelete,
223
- default39 as IconDeleteColor,
224
- default41 as IconDeleteColumn,
225
- default40 as IconDeleteColumnHighlight,
226
- default43 as IconDeleteRow,
227
- default42 as IconDeleteRowHighlight,
228
- default45 as IconDepositeInbox,
229
- default46 as IconDownload,
230
- default47 as IconEdit,
231
- default48 as IconError,
232
- default49 as IconExercizerAi,
233
- default50 as IconExternalLink,
234
- default51 as IconFiles,
235
- default52 as IconFilter,
236
- default53 as IconFlag,
237
- default57 as IconFolder,
238
- default54 as IconFolderAdd,
239
- default55 as IconFolderDelete,
240
- default56 as IconFolderMove,
241
- default58 as IconForgoing,
242
- default59 as IconFullScreen,
243
- default61 as IconGlobe,
244
- default60 as IconGlobe2,
245
- default62 as IconGroupAvatar,
246
- default63 as IconHandMove,
247
- default64 as IconHeadphone,
248
- default65 as IconHide,
249
- default66 as IconHighlightColumn,
250
- default67 as IconHighlightRow,
251
- default68 as IconHome,
252
- default69 as IconHourglass,
253
- default70 as IconImageSizeLarge,
254
- default71 as IconImageSizeMedium,
255
- default72 as IconImageSizeSmall,
256
- default73 as IconInbox,
257
- default74 as IconInfoCircle,
258
- default75 as IconInfoRectangle,
259
- default76 as IconLabel,
260
- default77 as IconLandscape,
261
- default78 as IconLibrary,
262
- default79 as IconLink,
263
- default80 as IconListOrder,
264
- default81 as IconLoader,
265
- default82 as IconLock,
266
- default84 as IconMail,
267
- default83 as IconMailRecall,
268
- default85 as IconMegaphone,
269
- default86 as IconMergeCells,
270
- default87 as IconMessageInfo,
271
- default89 as IconMic,
272
- default88 as IconMicOff,
273
- default90 as IconMinus,
274
- default91 as IconMove,
275
- default92 as IconNoColors,
276
- default93 as IconNotes,
277
- default94 as IconNotification,
278
- default95 as IconOptions,
279
- default96 as IconOrderedList,
280
- default97 as IconPaperclip,
281
- default98 as IconPause,
282
- default99 as IconPinOff,
283
- default100 as IconPinOn,
284
- default101 as IconPlaceholder,
285
- default103 as IconPlay,
286
- default102 as IconPlayFilled,
287
- default104 as IconPlus,
288
- default105 as IconPointerDefault,
289
- default106 as IconPointerHand,
290
- default107 as IconPrint,
291
- default109 as IconQuestion,
292
- default108 as IconQuestionMark,
293
- default110 as IconRafterDown,
294
- default111 as IconRafterLeft,
295
- default112 as IconRafterRight,
296
- default113 as IconRafterUp,
297
- default114 as IconReaction,
298
- default115 as IconReadMail,
299
- default119 as IconRecord,
300
- default116 as IconRecordPause,
301
- default117 as IconRecordStop,
302
- default118 as IconRecordVideo,
303
- default120 as IconRedo,
304
- default121 as IconRefresh,
305
- default122 as IconReset,
306
- default123 as IconRestart,
307
- default124 as IconRestore,
308
- default125 as IconSave,
309
- default126 as IconSearch,
310
- default127 as IconSee,
311
- default128 as IconSend,
312
- default129 as IconSetBackground,
313
- default130 as IconSettings,
314
- default131 as IconShare,
315
- default132 as IconSignature,
316
- default133 as IconSmartphone,
317
- default134 as IconSmiley,
318
- default135 as IconSortAscendingLetters,
319
- default137 as IconSortDescending,
320
- default136 as IconSortDescendingLetters,
321
- default138 as IconSortTime,
322
- default139 as IconSpeechToText,
323
- default140 as IconSplitCells,
324
- default141 as IconSquareRoot,
325
- default143 as IconStar,
326
- default142 as IconStarFull,
327
- default144 as IconSubmitToValidate,
328
- default145 as IconSubscript,
329
- default146 as IconSuccessFill,
330
- default147 as IconSuccessOutline,
331
- default148 as IconSuperscript,
332
- default149 as IconTable,
333
- default150 as IconTeacher,
334
- default151 as IconTextBold,
335
- default152 as IconTextColor,
336
- default153 as IconTextHighlight,
337
- default154 as IconTextItalic,
338
- default155 as IconTextPage,
339
- default156 as IconTextSize,
340
- default158 as IconTextToSpeech,
341
- default157 as IconTextToSpeechOff,
342
- default159 as IconTextTypo,
343
- default160 as IconTextUnderline,
344
- default161 as IconTextVanilla,
345
- default162 as IconThumbDown,
346
- default163 as IconThumbUp,
347
- default165 as IconTool,
348
- default164 as IconToolCenter,
349
- default166 as IconTrendingUp,
350
- default169 as IconUndo,
351
- default167 as IconUndoAll,
352
- default168 as IconUndoSlashed,
353
- default170 as IconUnion,
354
- default171 as IconUnlink,
355
- default172 as IconUnlock,
356
- default173 as IconUnreadMail,
357
- default174 as IconUpload,
358
- default176 as IconUser,
359
- default175 as IconUserSearch,
360
- default177 as IconUsers,
361
- default178 as IconVideo,
362
- default179 as IconViewCalendar,
363
- default180 as IconViewList,
364
- default181 as IconWand,
365
- default182 as IconWrite,
366
- default183 as IconZoomIn,
367
- default184 as IconZoomOut
221
+ default36 as IconCollect,
222
+ default37 as IconCopy,
223
+ default38 as IconCrop,
224
+ default39 as IconCut,
225
+ default45 as IconDelete,
226
+ default40 as IconDeleteColor,
227
+ default42 as IconDeleteColumn,
228
+ default41 as IconDeleteColumnHighlight,
229
+ default44 as IconDeleteRow,
230
+ default43 as IconDeleteRowHighlight,
231
+ default46 as IconDepositeInbox,
232
+ default47 as IconDownload,
233
+ default48 as IconEdit,
234
+ default49 as IconError,
235
+ default50 as IconExercizerAi,
236
+ default51 as IconExternalLink,
237
+ default52 as IconFiles,
238
+ default53 as IconFilter,
239
+ default54 as IconFlag,
240
+ default58 as IconFolder,
241
+ default55 as IconFolderAdd,
242
+ default56 as IconFolderDelete,
243
+ default57 as IconFolderMove,
244
+ default59 as IconForgoing,
245
+ default60 as IconFullScreen,
246
+ default62 as IconGlobe,
247
+ default61 as IconGlobe2,
248
+ default63 as IconGroupAvatar,
249
+ default64 as IconHandMove,
250
+ default65 as IconHeadphone,
251
+ default66 as IconHide,
252
+ default67 as IconHighlightColumn,
253
+ default68 as IconHighlightRow,
254
+ default69 as IconHome,
255
+ default70 as IconHourglass,
256
+ default71 as IconImageSizeLarge,
257
+ default72 as IconImageSizeMedium,
258
+ default73 as IconImageSizeSmall,
259
+ default74 as IconInbox,
260
+ default75 as IconInfoCircle,
261
+ default76 as IconInfoRectangle,
262
+ default77 as IconLabel,
263
+ default78 as IconLandscape,
264
+ default79 as IconLibrary,
265
+ default80 as IconLink,
266
+ default81 as IconListOrder,
267
+ default82 as IconLoader,
268
+ default83 as IconLock,
269
+ default85 as IconMail,
270
+ default84 as IconMailRecall,
271
+ default86 as IconMegaphone,
272
+ default87 as IconMergeCells,
273
+ default88 as IconMessageInfo,
274
+ default90 as IconMic,
275
+ default89 as IconMicOff,
276
+ default91 as IconMinus,
277
+ default92 as IconMove,
278
+ default93 as IconNoColors,
279
+ default94 as IconNotes,
280
+ default95 as IconNotification,
281
+ default96 as IconOptions,
282
+ default97 as IconOrderedList,
283
+ default98 as IconPaperclip,
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
368
372
  };
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { default as default2 } from "./components/ActionBar/ActionBar.js";
2
+ import { AddAttachments } from "./components/AddAttachments/AddAttachments.js";
2
3
  import { default as default3 } from "./components/Alert/Alert.js";
3
4
  import { default as default4 } from "./components/AppHeader/AppHeader.js";
4
5
  import { default as default5 } from "./components/AppIcon/AppIcon.js";
@@ -145,6 +146,7 @@ import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
145
146
  export {
146
147
  AccessiblePalette,
147
148
  default2 as ActionBar,
149
+ AddAttachments,
148
150
  default3 as Alert,
149
151
  AntProvider,
150
152
  default4 as AppHeader,
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconCollect: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconCollect;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconCollect = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 20 20", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M14.988 1.667c.852 0 1.619.519 1.935 1.31l1.352 3.38q.008.02.013.04.006.015.01.03l.012.043.015.08.005.039.003.06.001.018v9.382a2.26 2.26 0 0 1-.693 1.625c-.44.425-1.03.659-1.64.659h-12c-.61 0-1.2-.234-1.64-.66a2.26 2.26 0 0 1-.693-1.624v-9.4l.003-.06.005-.04.015-.08.008-.03.006-.02a1 1 0 0 1 .028-.077L3.08 2.977a2.08 2.08 0 0 1 1.934-1.31zM3.334 16.049c0 .154.063.31.186.428.123.119.296.19.481.19h12a.7.7 0 0 0 .481-.19.6.6 0 0 0 .186-.428V7.5H3.334zm8.334-6.882a.833.833 0 0 1 0 1.666H8.334a.833.833 0 0 1 0-1.666zM5.014 3.333a.42.42 0 0 0-.386.263l-.896 2.237h12.539l-.896-2.237a.42.42 0 0 0-.387-.263z" })
9
+ ] });
10
+ export {
11
+ SvgIconCollect as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconSubmission: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconSubmission;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconSubmission = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 20 20", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M14.583 1.667c1.15 0 2.083.933 2.083 2.083v5.542q.432-.117.864-.053a2.05 2.05 0 0 1 1.369.87c.595.856.597 2.194-.462 3.041-1.04.832-2.047 1.71-3.063 2.548-.99.818-1.975 1.587-2.875 2.107-.425.245-.906.351-1.367.395-.464.044-.962.03-1.453-.002-1.037-.067-2-.202-3.013-.202-.851 0-1.428.492-1.742 1.179a.833.833 0 1 1-1.516-.693c.52-1.137 1.61-2.153 3.258-2.153 1.071 0 2.253.151 3.12.207.462.03.857.037 1.189.005.334-.032.552-.098.691-.179.768-.443 1.658-1.132 2.647-1.949.963-.795 2.039-1.728 3.083-2.563.29-.233.293-.562.135-.79a.39.39 0 0 0-.254-.173c-.078-.012-.255-.008-.528.197-1.205.904-3.4 2.484-4.368 3.362-.471.428-1.058.554-1.548.554h-2.5a.834.834 0 0 1 0-1.666h2.5c.228 0 .36-.06.428-.122a.37.37 0 0 0 .097-.183.5.5 0 0 0-.003-.268.3.3 0 0 0-.116-.164c-.053-.039-.17-.097-.406-.097-.833 0-2.184-.224-3.285-.372a18 18 0 0 0-1.534-.155 4 4 0 0 0-.508.004c-.118.012-.155.028-.143.023-.698.351-1.412.978-2.037 1.67-.622.69-1.107 1.392-1.353 1.823a.834.834 0 0 1-1.447-.827c.309-.541.866-1.34 1.563-2.112.58-.643 1.293-1.306 2.077-1.79V3.75c0-1.15.933-2.083 2.083-2.083zM6.25 3.333a.417.417 0 0 0-.416.417v6.552q.124 0 .25.005c.508.02 1.102.091 1.687.17 1.228.164 2.378.357 3.063.357.524 0 .994.135 1.374.406.271.194.47.439.607.705.728-.56 1.527-1.152 2.185-1.64V3.75a.417.417 0 0 0-.416-.417zM11.666 5a.833.833 0 0 1 0 1.667h-2.5a.834.834 0 0 1 0-1.667z" })
9
+ ] });
10
+ export {
11
+ SvgIconSubmission as default
12
+ };
@@ -32,6 +32,7 @@ export { default as IconClock } from './IconClock';
32
32
  export { default as IconCloseFullScreen } from './IconCloseFullScreen';
33
33
  export { default as IconClose } from './IconClose';
34
34
  export { default as IconCode } from './IconCode';
35
+ export { default as IconCollect } from './IconCollect';
35
36
  export { default as IconCopy } from './IconCopy';
36
37
  export { default as IconCrop } from './IconCrop';
37
38
  export { default as IconCut } from './IconCut';
@@ -140,6 +141,7 @@ export { default as IconSplitCells } from './IconSplitCells';
140
141
  export { default as IconSquareRoot } from './IconSquareRoot';
141
142
  export { default as IconStarFull } from './IconStarFull';
142
143
  export { default as IconStar } from './IconStar';
144
+ export { default as IconSubmission } from './IconSubmission';
143
145
  export { default as IconSubmitToValidate } from './IconSubmitToValidate';
144
146
  export { default as IconSubscript } from './IconSubscript';
145
147
  export { default as IconSuccessFill } from './IconSuccessFill';
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { CreateParameters, CreateResult, ID, IFolder, UpdateParameters, UpdateResult } from '@edifice.io/client';
3
- import { UseMutationResult } from '../../../node_modules/@tanstack/react-query';
3
+ import { UseMutationResult } from '../../../../node_modules/@tanstack/react-query';
4
4
  export interface FormInputs {
5
5
  title: string;
6
6
  description: string;
@@ -1,5 +1,5 @@
1
1
  import { UpdateParameters, UpdateResult } from '@edifice.io/client';
2
- import { UseMutationOptions, UseMutationResult } from '../../../../node_modules/@tanstack/react-query';
2
+ import { UseMutationOptions, UseMutationResult } from '../../../../../node_modules/@tanstack/react-query';
3
3
  declare const useUpdateMutation: ({ application, options, }: {
4
4
  application: string;
5
5
  options?: UseMutationOptions<UpdateResult, Error, UpdateParameters>;
@@ -1,5 +1,5 @@
1
1
  import { ID, PutShareResponse, RightStringified, ShareRight, ShareRightAction, ShareRightActionDisplayName, ShareUrls } from '@edifice.io/client';
2
- import { UseMutationResult } from '../../../node_modules/@tanstack/react-query';
2
+ import { UseMutationResult } from '../../../../node_modules/@tanstack/react-query';
3
3
  /**
4
4
  * Configuration options for sharing a resource
5
5
  *
@@ -1,5 +1,5 @@
1
1
  import { ID, UpdateParameters, UpdateResult } from '@edifice.io/client';
2
- import { UseMutationResult } from '../../../../node_modules/@tanstack/react-query';
2
+ import { UseMutationResult } from '../../../../../node_modules/@tanstack/react-query';
3
3
  export type PublicationType = 'RESTRAINT' | 'IMMEDIATE' | undefined;
4
4
  export interface ShareBlogProps {
5
5
  resourceId: ID;
@@ -1,5 +1,5 @@
1
1
  import { PutShareResponse, ShareRight } from '@edifice.io/client';
2
- import { UseMutationOptions, UseMutationResult } from '../../../../node_modules/@tanstack/react-query';
2
+ import { UseMutationOptions, UseMutationResult } from '../../../../../node_modules/@tanstack/react-query';
3
3
  declare const useShareMutation: ({ application, options, }: {
4
4
  application: string;
5
5
  options?: UseMutationOptions<PutShareResponse, Error, {
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { App, IGetConf, IGetSession, IUserDescription, IUserInfo, IWebApp, UserProfile } from '@edifice.io/client';
3
- import { UseQueryResult } from '../../node_modules/@tanstack/react-query';
3
+ import { UseQueryResult } from '../../../node_modules/@tanstack/react-query';
4
4
  export interface EdificeClientParams {
5
5
  alternativeApp?: boolean;
6
6
  app: App;
@@ -0,0 +1,3 @@
1
+ export type CommonColor = 'black' | 'gray-800' | 'gray-700' | 'gray-600' | 'gray-500' | 'gray-400' | 'gray-300' | 'gray-200' | 'white' | 'danger' | 'warning' | 'success' | 'info' | 'danger-800' | 'warning-800' | 'success-800' | 'info-800' | 'danger-300' | 'warning-300' | 'success-300' | 'info-300' | 'danger-200' | 'warning-200' | 'success-200' | 'info-200' | 'accessible-blue' | 'accessible-deep-blue' | 'accessible-pink' | 'accessible-salamander' | 'accessible-sunshade' | 'accessible-yellow';
2
+ export type ThemeColor = 'primary' | 'primary-800' | 'primary-300' | 'primary-200' | 'secondary' | 'secondary-800' | 'secondary-300' | 'secondary-200';
3
+ export type Color = CommonColor | ThemeColor;
@@ -1,4 +1,4 @@
1
- import { InvalidateQueryFilters, QueryClient } from '../../node_modules/@tanstack/react-query';
1
+ import { InvalidateQueryFilters, QueryClient } from '../../../node_modules/@tanstack/react-query';
2
2
  /**
3
3
  * Invalidates queries and resets infinite query data to only contain the first page.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/react",
3
- "version": "2.5.10",
3
+ "version": "2.5.12-develop-integration.20260224153303",
4
4
  "description": "Edifice React Library",
5
5
  "keywords": [
6
6
  "react",
@@ -135,9 +135,9 @@
135
135
  "swiper": "^10.1.0",
136
136
  "ua-parser-js": "^1.0.36",
137
137
  "react-pdf": "10.2.0",
138
- "@edifice.io/bootstrap": "2.5.10",
139
- "@edifice.io/utilities": "2.5.10",
140
- "@edifice.io/tiptap-extensions": "2.5.10"
138
+ "@edifice.io/bootstrap": "2.5.12-develop-integration.20260224153303",
139
+ "@edifice.io/tiptap-extensions": "2.5.12-develop-integration.20260224153303",
140
+ "@edifice.io/utilities": "2.5.12-develop-integration.20260224153303"
141
141
  },
142
142
  "devDependencies": {
143
143
  "@babel/plugin-transform-react-pure-annotations": "^7.23.3",
@@ -168,8 +168,8 @@
168
168
  "vite": "^5.4.11",
169
169
  "vite-plugin-dts": "^4.1.0",
170
170
  "vite-tsconfig-paths": "^5.0.1",
171
- "@edifice.io/client": "2.5.10",
172
- "@edifice.io/config": "2.5.10"
171
+ "@edifice.io/client": "2.5.12-develop-integration.20260224153303",
172
+ "@edifice.io/config": "2.5.12-develop-integration.20260224153303"
173
173
  },
174
174
  "peerDependencies": {
175
175
  "@react-spring/web": "^9.7.5",