@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.
Files changed (50) hide show
  1. package/dist/components/AddAttachments/AddAttachments.d.ts +3 -6
  2. package/dist/components/AddAttachments/AddAttachments.js +29 -17
  3. package/dist/components/AddAttachments/models/attachment.d.ts +0 -1
  4. package/dist/components/Tree/components/SortableTree.js +3 -4
  5. package/dist/components/Tree/components/Tree.js +3 -4
  6. package/dist/components/index.d.ts +0 -2
  7. package/dist/hooks/useDirectory/useDirectory.d.ts +2 -3
  8. package/dist/hooks/useDropzone/useDropzone.js +4 -4
  9. package/dist/icons.js +176 -180
  10. package/dist/index.js +0 -10
  11. package/dist/modules/icons/components/index.d.ts +0 -2
  12. package/dist/modules/modals/OnboardingModal/index.d.ts +1 -1
  13. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +1 -3
  14. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +1 -2
  15. package/dist/types/index.d.ts +0 -1
  16. package/dist/utilities/index.d.ts +0 -1
  17. package/package.json +7 -7
  18. package/dist/components/AddAttachments/hooks/useFileToAttachment.d.ts +0 -3
  19. package/dist/components/AddAttachments/hooks/useFileToAttachment.js +0 -16
  20. package/dist/components/UserRightsList/SaveBookmark.d.ts +0 -5
  21. package/dist/components/UserRightsList/SaveBookmark.js +0 -29
  22. package/dist/components/UserRightsList/UserRightsBookmarkRow.d.ts +0 -11
  23. package/dist/components/UserRightsList/UserRightsBookmarkRow.js +0 -30
  24. package/dist/components/UserRightsList/UserRightsItem.d.ts +0 -13
  25. package/dist/components/UserRightsList/UserRightsItem.js +0 -36
  26. package/dist/components/UserRightsList/UserRightsList.d.ts +0 -19
  27. package/dist/components/UserRightsList/UserRightsList.js +0 -94
  28. package/dist/components/UserRightsList/helpers/rightsHelpers.d.ts +0 -9
  29. package/dist/components/UserRightsList/helpers/rightsHelpers.js +0 -53
  30. package/dist/components/UserRightsList/hooks/useBookmarkEntries.d.ts +0 -19
  31. package/dist/components/UserRightsList/hooks/useBookmarkEntries.js +0 -58
  32. package/dist/components/UserRightsList/hooks/useSharingItems.d.ts +0 -20
  33. package/dist/components/UserRightsList/hooks/useSharingItems.js +0 -57
  34. package/dist/components/UserRightsList/index.d.ts +0 -2
  35. package/dist/components/UserRightsList/types/types.d.ts +0 -34
  36. package/dist/components/UserRightsList/types/types.js +0 -6
  37. package/dist/components/UserSearch/UserSearch.d.ts +0 -7
  38. package/dist/components/UserSearch/UserSearch.js +0 -82
  39. package/dist/components/UserSearch/index.d.ts +0 -3
  40. package/dist/components/UserSearch/types/types.d.ts +0 -24
  41. package/dist/components/UserSearch/types/visible.d.ts +0 -24
  42. package/dist/components/UserSearch/types/visible.js +0 -4
  43. package/dist/modules/icons/components/IconParcoursCitoyen.d.ts +0 -7
  44. package/dist/modules/icons/components/IconParcoursCitoyen.js +0 -14
  45. package/dist/modules/icons/components/IconParcoursSecours.d.ts +0 -7
  46. package/dist/modules/icons/components/IconParcoursSecours.js +0 -14
  47. package/dist/types/sharing.d.ts +0 -8
  48. package/dist/utilities/rotate-transition-style/get-rotate-transition-style.d.ts +0 -5
  49. package/dist/utilities/rotate-transition-style/get-rotate-transition-style.js +0 -12
  50. 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
- onChange?: (attachments: Attachment[]) => void;
7
- onFilesSelected?: (files: File[]) => void;
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, onChange, onFilesSelected, onRemoveAttachment, editMode, isMutating, onCopyToWorkspace, getDownloadUrl, downloadAllUrl, }: AddAttachmentsProps): import("react/jsx-runtime").JSX.Element | null;
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), fileToAttachment = useFileToAttachment(), [attachmentsToAddToWorkspace, setAttachmentsToAddToWorkspace] = useState(void 0);
29
- if (!editMode && !attachments.length) return null;
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
- const newAttachments = files.map(fileToAttachment);
39
- onChange == null || onChange([...attachments, ...newAttachments]), onFilesSelected == null || onFilesSelected(files);
49
+ onFilesSelected(files);
50
+ const newOptimistic = files.map(fileToAttachment);
51
+ setOptimisticAttachments((prev) => [...prev, ...newOptimistic]);
40
52
  }
41
53
  resetInputValue();
42
54
  }, handleDetachAllClick = () => {
43
- onChange == null || onChange([]), attachments.forEach((a) => onRemoveAttachment == null ? void 0 : onRemoveAttachment(a.id)), resetInputValue();
55
+ setOptimisticAttachments([]), attachments.forEach((attachment) => {
56
+ onRemoveAttachment(attachment.id);
57
+ }), resetInputValue();
44
58
  }, handleDetachClick = (attachmentId) => {
45
- const next = attachments.filter((a) => a.id !== attachmentId);
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
- !!attachments.length && /* @__PURE__ */ jsxs(Fragment, { children: [
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
- attachments.length > 1 && /* @__PURE__ */ jsxs("div", { children: [
57
- onCopyToWorkspace && /* @__PURE__ */ jsx(IconButton, { title: t("conversation.copy.all.toworkspace"), color: "tertiary", type: "button", icon: /* @__PURE__ */ jsx(SvgIconFolderAdd, {}), onClick: () => handleCopyToWorkspace(attachments), variant: "ghost" }),
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: attachments.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}-${attachment.name}`)) })
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, {}), "data-testid": "common-add-attachments-button-add-attachment", children: t("add.attachment") }),
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
  };
@@ -6,5 +6,4 @@ export type Attachment = {
6
6
  filename: string;
7
7
  name: string;
8
8
  size: number;
9
- file: File;
10
9
  };
@@ -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: getRotateTransitionStyle(expanded, {
118
- degrees: 90
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: getRotateTransitionStyle(expanded, {
71
- degrees: 90
72
- }) }) }) : /* @__PURE__ */ jsx("div", { className: "py-8 invisible" }),
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,
@@ -52,6 +52,4 @@ export * from './Toolbar';
52
52
  export * from './Tooltip';
53
53
  export * from './Tree';
54
54
  export * from './TreeView';
55
- export * from './UserRightsList';
56
- export * from './UserSearch';
57
55
  export * from './VisuallyHidden';
@@ -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: AvatarType) => string | undefined;
5
- getUserbookURL: (userId: ID, type: AvatarType) => string;
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 heicToLib;
39
- return files2.some((file) => HEIC_MIME_TYPES.includes(file.type)) && (heicToLib = await import("heic-to")), Promise.all(files2.map(async (file) => {
40
- if (heicToLib && heicToLib.isHeic(file))
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 heicToLib.heicTo({
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/IconParcoursCitoyen.js";
99
- import { default as default100 } from "./modules/icons/components/IconParcoursSecours.js";
100
- import { default as default101 } from "./modules/icons/components/IconPause.js";
101
- import { default as default102 } from "./modules/icons/components/IconPinOff.js";
102
- import { default as default103 } from "./modules/icons/components/IconPinOn.js";
103
- import { default as default104 } from "./modules/icons/components/IconPlaceholder.js";
104
- import { default as default105 } from "./modules/icons/components/IconPlayFilled.js";
105
- import { default as default106 } from "./modules/icons/components/IconPlay.js";
106
- import { default as default107 } from "./modules/icons/components/IconPlus.js";
107
- import { default as default108 } from "./modules/icons/components/IconPointerDefault.js";
108
- import { default as default109 } from "./modules/icons/components/IconPointerHand.js";
109
- import { default as default110 } from "./modules/icons/components/IconPrint.js";
110
- import { default as default111 } from "./modules/icons/components/IconQuestionMark.js";
111
- import { default as default112 } from "./modules/icons/components/IconQuestion.js";
112
- import { default as default113 } from "./modules/icons/components/IconRafterDown.js";
113
- import { default as default114 } from "./modules/icons/components/IconRafterLeft.js";
114
- import { default as default115 } from "./modules/icons/components/IconRafterRight.js";
115
- import { default as default116 } from "./modules/icons/components/IconRafterUp.js";
116
- import { default as default117 } from "./modules/icons/components/IconReaction.js";
117
- import { default as default118 } from "./modules/icons/components/IconReadMail.js";
118
- import { default as default119 } from "./modules/icons/components/IconRecordPause.js";
119
- import { default as default120 } from "./modules/icons/components/IconRecordStop.js";
120
- import { default as default121 } from "./modules/icons/components/IconRecordVideo.js";
121
- import { default as default122 } from "./modules/icons/components/IconRecord.js";
122
- import { default as default123 } from "./modules/icons/components/IconRedo.js";
123
- import { default as default124 } from "./modules/icons/components/IconRefresh.js";
124
- import { default as default125 } from "./modules/icons/components/IconReset.js";
125
- import { default as default126 } from "./modules/icons/components/IconRestart.js";
126
- import { default as default127 } from "./modules/icons/components/IconRestore.js";
127
- import { default as default128 } from "./modules/icons/components/IconSave.js";
128
- import { default as default129 } from "./modules/icons/components/IconSearch.js";
129
- import { default as default130 } from "./modules/icons/components/IconSee.js";
130
- import { default as default131 } from "./modules/icons/components/IconSend.js";
131
- import { default as default132 } from "./modules/icons/components/IconSetBackground.js";
132
- import { default as default133 } from "./modules/icons/components/IconSettings.js";
133
- import { default as default134 } from "./modules/icons/components/IconShare.js";
134
- import { default as default135 } from "./modules/icons/components/IconSignature.js";
135
- import { default as default136 } from "./modules/icons/components/IconSmartphone.js";
136
- import { default as default137 } from "./modules/icons/components/IconSmiley.js";
137
- import { default as default138 } from "./modules/icons/components/IconSortAscendingLetters.js";
138
- import { default as default139 } from "./modules/icons/components/IconSortDescendingLetters.js";
139
- import { default as default140 } from "./modules/icons/components/IconSortDescending.js";
140
- import { default as default141 } from "./modules/icons/components/IconSortTime.js";
141
- import { default as default142 } from "./modules/icons/components/IconSpeechToText.js";
142
- import { default as default143 } from "./modules/icons/components/IconSplitCells.js";
143
- import { default as default144 } from "./modules/icons/components/IconSquareRoot.js";
144
- import { default as default145 } from "./modules/icons/components/IconStarFull.js";
145
- import { default as default146 } from "./modules/icons/components/IconStar.js";
146
- import { default as default147 } from "./modules/icons/components/IconSubmission.js";
147
- import { default as default148 } from "./modules/icons/components/IconSubmitToValidate.js";
148
- import { default as default149 } from "./modules/icons/components/IconSubscript.js";
149
- import { default as default150 } from "./modules/icons/components/IconSuccessFill.js";
150
- import { default as default151 } from "./modules/icons/components/IconSuccessOutline.js";
151
- import { default as default152 } from "./modules/icons/components/IconSuperscript.js";
152
- import { default as default153 } from "./modules/icons/components/IconTable.js";
153
- import { default as default154 } from "./modules/icons/components/IconTeacher.js";
154
- import { default as default155 } from "./modules/icons/components/IconTextBold.js";
155
- import { default as default156 } from "./modules/icons/components/IconTextColor.js";
156
- import { default as default157 } from "./modules/icons/components/IconTextHighlight.js";
157
- import { default as default158 } from "./modules/icons/components/IconTextItalic.js";
158
- import { default as default159 } from "./modules/icons/components/IconTextPage.js";
159
- import { default as default160 } from "./modules/icons/components/IconTextSize.js";
160
- import { default as default161 } from "./modules/icons/components/IconTextToSpeechOff.js";
161
- import { default as default162 } from "./modules/icons/components/IconTextToSpeech.js";
162
- import { default as default163 } from "./modules/icons/components/IconTextTypo.js";
163
- import { default as default164 } from "./modules/icons/components/IconTextUnderline.js";
164
- import { default as default165 } from "./modules/icons/components/IconTextVanilla.js";
165
- import { default as default166 } from "./modules/icons/components/IconThumbDown.js";
166
- import { default as default167 } from "./modules/icons/components/IconThumbUp.js";
167
- import { default as default168 } from "./modules/icons/components/IconToolCenter.js";
168
- import { default as default169 } from "./modules/icons/components/IconTool.js";
169
- import { default as default170 } from "./modules/icons/components/IconTrendingUp.js";
170
- import { default as default171 } from "./modules/icons/components/IconUndoAll.js";
171
- import { default as default172 } from "./modules/icons/components/IconUndoSlashed.js";
172
- import { default as default173 } from "./modules/icons/components/IconUndo.js";
173
- import { default as default174 } from "./modules/icons/components/IconUnion.js";
174
- import { default as default175 } from "./modules/icons/components/IconUnlink.js";
175
- import { default as default176 } from "./modules/icons/components/IconUnlock.js";
176
- import { default as default177 } from "./modules/icons/components/IconUnreadMail.js";
177
- import { default as default178 } from "./modules/icons/components/IconUpload.js";
178
- import { default as default179 } from "./modules/icons/components/IconUserSearch.js";
179
- import { default as default180 } from "./modules/icons/components/IconUser.js";
180
- import { default as default181 } from "./modules/icons/components/IconUsers.js";
181
- import { default as default182 } from "./modules/icons/components/IconVideo.js";
182
- import { default as default183 } from "./modules/icons/components/IconViewCalendar.js";
183
- import { default as default184 } from "./modules/icons/components/IconViewList.js";
184
- import { default as default185 } from "./modules/icons/components/IconWand.js";
185
- import { default as default186 } from "./modules/icons/components/IconWrite.js";
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 IconParcoursCitoyen,
287
- default100 as IconParcoursSecours,
288
- default101 as IconPause,
289
- default102 as IconPinOff,
290
- default103 as IconPinOn,
291
- default104 as IconPlaceholder,
292
- default106 as IconPlay,
293
- default105 as IconPlayFilled,
294
- default107 as IconPlus,
295
- default108 as IconPointerDefault,
296
- default109 as IconPointerHand,
297
- default110 as IconPrint,
298
- default112 as IconQuestion,
299
- default111 as IconQuestionMark,
300
- default113 as IconRafterDown,
301
- default114 as IconRafterLeft,
302
- default115 as IconRafterRight,
303
- default116 as IconRafterUp,
304
- default117 as IconReaction,
305
- default118 as IconReadMail,
306
- default122 as IconRecord,
307
- default119 as IconRecordPause,
308
- default120 as IconRecordStop,
309
- default121 as IconRecordVideo,
310
- default123 as IconRedo,
311
- default124 as IconRefresh,
312
- default125 as IconReset,
313
- default126 as IconRestart,
314
- default127 as IconRestore,
315
- default128 as IconSave,
316
- default129 as IconSearch,
317
- default130 as IconSee,
318
- default131 as IconSend,
319
- default132 as IconSetBackground,
320
- default133 as IconSettings,
321
- default134 as IconShare,
322
- default135 as IconSignature,
323
- default136 as IconSmartphone,
324
- default137 as IconSmiley,
325
- default138 as IconSortAscendingLetters,
326
- default140 as IconSortDescending,
327
- default139 as IconSortDescendingLetters,
328
- default141 as IconSortTime,
329
- default142 as IconSpeechToText,
330
- default143 as IconSplitCells,
331
- default144 as IconSquareRoot,
332
- default146 as IconStar,
333
- default145 as IconStarFull,
334
- default147 as IconSubmission,
335
- default148 as IconSubmitToValidate,
336
- default149 as IconSubscript,
337
- default150 as IconSuccessFill,
338
- default151 as IconSuccessOutline,
339
- default152 as IconSuperscript,
340
- default153 as IconTable,
341
- default154 as IconTeacher,
342
- default155 as IconTextBold,
343
- default156 as IconTextColor,
344
- default157 as IconTextHighlight,
345
- default158 as IconTextItalic,
346
- default159 as IconTextPage,
347
- default160 as IconTextSize,
348
- default162 as IconTextToSpeech,
349
- default161 as IconTextToSpeechOff,
350
- default163 as IconTextTypo,
351
- default164 as IconTextUnderline,
352
- default165 as IconTextVanilla,
353
- default166 as IconThumbDown,
354
- default167 as IconThumbUp,
355
- default169 as IconTool,
356
- default168 as IconToolCenter,
357
- default170 as IconTrendingUp,
358
- default173 as IconUndo,
359
- default171 as IconUndoAll,
360
- default172 as IconUndoSlashed,
361
- default174 as IconUnion,
362
- default175 as IconUnlink,
363
- default176 as IconUnlock,
364
- default177 as IconUnreadMail,
365
- default178 as IconUpload,
366
- default180 as IconUser,
367
- default179 as IconUserSearch,
368
- default181 as IconUsers,
369
- default182 as IconVideo,
370
- default183 as IconViewCalendar,
371
- default184 as IconViewList,
372
- default185 as IconWand,
373
- default186 as IconWrite,
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
  };