@edifice.io/react 2.5.15 → 2.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/AddAttachments/AddAttachments.d.ts +6 -3
- package/dist/components/AddAttachments/AddAttachments.js +17 -29
- package/dist/components/AddAttachments/hooks/useFileToAttachment.d.ts +3 -0
- package/dist/components/AddAttachments/hooks/useFileToAttachment.js +16 -0
- package/dist/components/AddAttachments/models/attachment.d.ts +1 -0
- package/dist/components/Tree/components/SortableTree.js +4 -3
- package/dist/components/Tree/components/Tree.js +4 -3
- package/dist/components/UserRightsList/SaveBookmark.d.ts +5 -0
- package/dist/components/UserRightsList/SaveBookmark.js +29 -0
- package/dist/components/UserRightsList/UserRightsBookmarkRow.d.ts +11 -0
- package/dist/components/UserRightsList/UserRightsBookmarkRow.js +30 -0
- package/dist/components/UserRightsList/UserRightsItem.d.ts +13 -0
- package/dist/components/UserRightsList/UserRightsItem.js +36 -0
- package/dist/components/UserRightsList/UserRightsList.d.ts +19 -0
- package/dist/components/UserRightsList/UserRightsList.js +94 -0
- package/dist/components/UserRightsList/helpers/rightsHelpers.d.ts +9 -0
- package/dist/components/UserRightsList/helpers/rightsHelpers.js +53 -0
- package/dist/components/UserRightsList/hooks/useBookmarkEntries.d.ts +19 -0
- package/dist/components/UserRightsList/hooks/useBookmarkEntries.js +58 -0
- package/dist/components/UserRightsList/hooks/useSharingItems.d.ts +20 -0
- package/dist/components/UserRightsList/hooks/useSharingItems.js +57 -0
- package/dist/components/UserRightsList/index.d.ts +2 -0
- package/dist/components/UserRightsList/types/types.d.ts +34 -0
- package/dist/components/UserRightsList/types/types.js +6 -0
- package/dist/components/UserSearch/UserSearch.d.ts +7 -0
- package/dist/components/UserSearch/UserSearch.js +82 -0
- package/dist/components/UserSearch/index.d.ts +3 -0
- package/dist/components/UserSearch/types/types.d.ts +24 -0
- package/dist/components/UserSearch/types/visible.d.ts +24 -0
- package/dist/components/UserSearch/types/visible.js +4 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/hooks/useDirectory/useDirectory.d.ts +3 -2
- package/dist/hooks/useDropzone/useDropzone.js +4 -4
- package/dist/icons.js +364 -332
- package/dist/index.js +10 -0
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +1 -1
- package/dist/modules/icons/components/IconBulle.d.ts +7 -0
- package/dist/modules/icons/components/IconBulle.js +16 -0
- package/dist/modules/icons/components/IconBulleError.d.ts +7 -0
- package/dist/modules/icons/components/IconBulleError.js +13 -0
- package/dist/modules/icons/components/IconBulleSuccess.d.ts +7 -0
- package/dist/modules/icons/components/IconBulleSuccess.js +13 -0
- package/dist/modules/icons/components/IconLsuArt.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuArt.js +13 -0
- package/dist/modules/icons/components/IconLsuCompetenceNumerique.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuCompetenceNumerique.js +12 -0
- package/dist/modules/icons/components/IconLsuEmc.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuEmc.js +13 -0
- package/dist/modules/icons/components/IconLsuFrancais.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuFrancais.js +13 -0
- package/dist/modules/icons/components/IconLsuHistoireGeo.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuHistoireGeo.js +12 -0
- package/dist/modules/icons/components/IconLsuLangue.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuLangue.js +16 -0
- package/dist/modules/icons/components/IconLsuLangue2.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuLangue2.js +13 -0
- package/dist/modules/icons/components/IconLsuMath.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuMath.js +16 -0
- package/dist/modules/icons/components/IconLsuParcoursEducatif.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuParcoursEducatif.js +12 -0
- package/dist/modules/icons/components/IconLsuSport.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuSport.js +12 -0
- package/dist/modules/icons/components/IconLsuSvt.d.ts +7 -0
- package/dist/modules/icons/components/IconLsuSvt.js +12 -0
- package/dist/modules/icons/components/IconParcoursCitoyen.d.ts +7 -0
- package/dist/modules/icons/components/IconParcoursCitoyen.js +14 -0
- package/dist/modules/icons/components/IconParcoursSecours.d.ts +7 -0
- package/dist/modules/icons/components/IconParcoursSecours.js +14 -0
- package/dist/modules/icons/components/index.d.ts +16 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/sharing.d.ts +8 -0
- package/dist/utilities/index.d.ts +1 -0
- package/dist/utilities/rotate-transition-style/get-rotate-transition-style.d.ts +5 -0
- package/dist/utilities/rotate-transition-style/get-rotate-transition-style.js +12 -0
- package/dist/utilities/rotate-transition-style/index.d.ts +1 -0
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -133,14 +133,19 @@ import { Toolbar } from "./components/Toolbar/Toolbar.js";
|
|
|
133
133
|
import { TreeNode } from "./components/TreeView/TreeNode.js";
|
|
134
134
|
import { TreeNodeFolderWrapper, addNode, arrayUnique, deleteNode, findNodeById, findParentNode, findPathById, findTreeNode, getAncestors, hasChildren, modifyNode, moveNode, updateNode, wrapTreeNode } from "./components/TreeView/utilities/treeview.js";
|
|
135
135
|
import { Upload } from "./modules/multimedia/MediaLibrary/innertabs/Upload.js";
|
|
136
|
+
import { UserRightsList } from "./components/UserRightsList/UserRightsList.js";
|
|
137
|
+
import { UserSearch } from "./components/UserSearch/UserSearch.js";
|
|
138
|
+
import { VisibleType } from "./components/UserSearch/types/visible.js";
|
|
136
139
|
import { buildTree, determineNewParentId, findItemIndexInTree, flattenNodes, flattenTree, generateUpdateData, getActiveAndOverNodes, getDragDepth, getIndicesToUpdate, getProjection, updateParentIds } from "./components/Tree/utilities/tree-sortable.js";
|
|
137
140
|
import { checkUserRight } from "./utilities/check-user-rights/check-user-rights.js";
|
|
138
141
|
import { emptyScreenMapping } from "./utilities/emptyscreen-mapping/emptyscreen-mapping.js";
|
|
142
|
+
import { getRotateTransitionStyle } from "./utilities/rotate-transition-style/get-rotate-transition-style.js";
|
|
139
143
|
import { invalidateQueriesWithFirstPage } from "./utilities/react-query/react-query-utils.js";
|
|
140
144
|
import { mergeRefs, setRef } from "./utilities/refs/ref.js";
|
|
141
145
|
import { useCheckable } from "./hooks/useCheckable/useCheckable.js";
|
|
142
146
|
import { useEdificeClient } from "./providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
143
147
|
import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
148
|
+
import { useFileToAttachment } from "./components/AddAttachments/hooks/useFileToAttachment.js";
|
|
144
149
|
import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
|
|
145
150
|
import { useTreeView } from "./components/TreeView/hooks/useTreeView.js";
|
|
146
151
|
export {
|
|
@@ -240,8 +245,11 @@ export {
|
|
|
240
245
|
Upload,
|
|
241
246
|
default67 as UploadCard,
|
|
242
247
|
default68 as UploadFiles,
|
|
248
|
+
UserRightsList,
|
|
249
|
+
UserSearch,
|
|
243
250
|
default69 as VideoEmbed,
|
|
244
251
|
default70 as VideoRecorder,
|
|
252
|
+
VisibleType,
|
|
245
253
|
default71 as VisuallyHidden,
|
|
246
254
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
247
255
|
WORKSPACE_USER_FOLDER_ID,
|
|
@@ -267,6 +275,7 @@ export {
|
|
|
267
275
|
getDragDepth,
|
|
268
276
|
getIndicesToUpdate,
|
|
269
277
|
getProjection,
|
|
278
|
+
getRotateTransitionStyle,
|
|
270
279
|
hasChildren,
|
|
271
280
|
invalidateQueriesWithFirstPage,
|
|
272
281
|
mergeRefs,
|
|
@@ -291,6 +300,7 @@ export {
|
|
|
291
300
|
useEdificeClient,
|
|
292
301
|
default85 as useEdificeIcons,
|
|
293
302
|
useEdificeTheme,
|
|
303
|
+
useFileToAttachment,
|
|
294
304
|
default86 as useHasWorkflow,
|
|
295
305
|
default87 as useHover,
|
|
296
306
|
default88 as useHttpErrorToast,
|
|
@@ -28,9 +28,9 @@ import { EditorToolbarTextColor } from "./EditorToolbar.TextColor.js";
|
|
|
28
28
|
import { EditorToolbarTextSize } from "./EditorToolbar.TextSize.js";
|
|
29
29
|
import { EditorToolbarTypography } from "./EditorToolbar.Typography.js";
|
|
30
30
|
import { EditorToolbarCantoo } from "./EditorToolbar.Cantoo.js";
|
|
31
|
+
import { useEditorContext } from "../../hooks/useEditorContext.js";
|
|
31
32
|
import { useActionOptions } from "../../hooks/useActionOptions.js";
|
|
32
33
|
import { useSpeechRecognition } from "../../hooks/useSpeechRecognition.js";
|
|
33
|
-
import { useEditorContext } from "../../hooks/useEditorContext.js";
|
|
34
34
|
import { Toolbar } from "../../../../components/Toolbar/Toolbar.js";
|
|
35
35
|
const EditorToolbar = ({
|
|
36
36
|
mediaLibraryRef,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconBulle: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconBulle;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconBulle = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { clipPath: "url(#icon-bulle_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M24 10.683c-.013 1.957-.587 3.847-1.622 5.341-1.165 1.722-2.668 3.056-4.368 3.88-1.91.963-3.958 1.444-6.023 1.413a14 14 0 0 1-2.996-.335c-1.44 1.225-3.044 2.133-4.74 2.683q-.64.192-1.466.335H2.72a.55.55 0 0 1-.366-.184.6.6 0 0 1-.13-.2.7.7 0 0 1-.047-.247.2.2 0 0 1 0-.111.4.4 0 0 1 0-.152.4.4 0 0 0 0-.112v-.112l.059-.112.118-.111.091-.112.066-.072.392-.527.464-.599q.212-.29.366-.63a7 7 0 0 1 .426-.799c.164-.278.278-.597.333-.934-1.304-.898-2.423-2.149-3.27-3.656-.858-1.49-1.285-3.285-1.214-5.104s.636-3.557 1.607-4.94C2.78 3.58 4.275 2.252 5.964 1.422 7.872.46 9.92-.025 11.987.001c2.065-.024 4.113.46 6.023 1.421 1.699.827 3.2 2.161 4.368 3.88 1.04 1.507 1.614 3.411 1.622 5.381" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-bulle_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconBulle as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconBulleError: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconBulleError;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconBulleError = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#icon-bulle-error_svg__a)", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.986.001c2.066-.024 4.114.459 6.024 1.42 1.699.828 3.2 2.162 4.368 3.88 1.04 1.507 1.614 3.412 1.622 5.383-.014 1.956-.587 3.846-1.622 5.34-1.166 1.722-2.668 3.056-4.368 3.88-1.91.963-3.959 1.444-6.024 1.413a14 14 0 0 1-2.995-.335c-1.44 1.225-3.045 2.134-4.741 2.683-.425.128-.916.24-1.465.335H2.72a.55.55 0 0 1-.367-.184.6.6 0 0 1-.129-.199.7.7 0 0 1-.047-.248.2.2 0 0 1 0-.111.4.4 0 0 1 0-.152.4.4 0 0 0 0-.112v-.112l.06-.112.116-.112.092-.111.066-.072.392-.527.464-.598a3.6 3.6 0 0 0 .366-.631q.188-.419.425-.8c.165-.278.279-.596.334-.933-1.304-.898-2.423-2.149-3.27-3.656-.858-1.49-1.285-3.286-1.214-5.104.07-1.82.636-3.557 1.606-4.94 1.166-1.707 2.66-3.034 4.35-3.864C7.873.459 9.92-.025 11.986 0m3.903 7.11a.55.55 0 0 0-.778 0L12 10.223 8.889 7.11a.55.55 0 1 0-.778.778L11.223 11 8.11 14.111a.55.55 0 1 0 .778.778l3.11-3.112 3.112 3.112a.55.55 0 1 0 .778-.778L12.777 11l3.112-3.111a.55.55 0 0 0 0-.778" }) }),
|
|
9
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-bulle-error_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconBulleError as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconBulleSuccess: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconBulleSuccess;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconBulleSuccess = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#icon-bulle-success_svg__a)", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.986.001c2.066-.024 4.114.46 6.024 1.422 1.699.827 3.2 2.16 4.368 3.88 1.04 1.506 1.614 3.41 1.622 5.38-.013 1.957-.587 3.847-1.622 5.341-1.166 1.722-2.668 3.056-4.368 3.88-1.91.963-3.959 1.444-6.024 1.413a14 14 0 0 1-2.995-.335c-1.44 1.225-3.045 2.134-4.741 2.683-.425.128-.916.24-1.465.335H2.72a.55.55 0 0 1-.367-.184.6.6 0 0 1-.129-.199.7.7 0 0 1-.047-.248.2.2 0 0 1 0-.111.4.4 0 0 1 0-.152.4.4 0 0 0 0-.112v-.111l.06-.113.116-.11.092-.113.066-.071.392-.528.464-.598q.212-.29.366-.631.188-.42.425-.798c.165-.279.279-.598.334-.935-1.304-.898-2.422-2.149-3.27-3.656-.858-1.49-1.285-3.286-1.214-5.104.07-1.82.636-3.557 1.606-4.94 1.166-1.707 2.66-3.033 4.35-3.863C7.873.459 9.92-.025 11.986 0m4.319 7.103a.5.5 0 0 0-.702.091l-4.625 6.012-2.598-3.032a.5.5 0 0 0-.76.65l3 3.5a.502.502 0 0 0 .776-.02l5-6.5a.5.5 0 0 0-.091-.701" }) }),
|
|
9
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-bulle-success_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconBulleSuccess as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuArt: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuArt;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuArt = ({
|
|
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 24 24", "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: "m22.826 20.512-4.657-9.897c.491-.336.81-.723 1.012-1.043.889-1.426.398-2.989.162-3.74-.867-2.753-3.29-4.3-4.654-4.982L13.6.308l-.461 1.106a14.1 14.1 0 0 0-1.054 4.263c-.154 1.853-.289 3.453.949 4.647.682.659 1.68 1.017 2.711 1.017q.148 0 .289-.012l1.23 2.617c-.334-.166-.679-.317-1.031-.472-.938-.413-2.003-.88-3.064-1.666-1.234-.913-1.849-1.882-2.389-2.737-.701-1.106-1.425-2.252-3.157-2.558-1.279-.228-2.618.07-3.983.881C.983 8.986.424 11.89.315 12.741c-.607 4.775 3.979 9.436 8.475 10.638.949.254 1.928.375 2.891.375 2.067 0 4.058-.567 5.502-1.628.588-.435 1.93-1.426 2.426-3.177l1.173 2.491zm-5.34-2.31c-.247 1.12-1.158 1.794-1.65 2.155-1.556 1.146-4.147 1.503-6.453.888-3.597-.958-7.283-4.683-6.833-8.232.056-.427.42-2.623 2.258-3.718.285-.17 1.068-.637 1.976-.637q.213-.001.439.037c.72.129 1.008.541 1.646 1.551.611.965 1.376 2.17 2.944 3.335 1.263.936 2.505 1.481 3.502 1.92 1.459.64 2.025.943 2.186 1.58.113.454.019.966-.015 1.113zM14.91 8.96a1.1 1.1 0 0 1-.3-.203c-.465-.45-.412-1.345-.285-2.892.068-.8.218-1.6.458-2.388.94.645 1.972 1.632 2.407 3.01.169.542.427 1.357.071 1.928l-.075.107c-.146.184-.401.394-.847.53-.476.144-1.028.1-1.425-.096z" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M7.054 12.195c0-.633-.525-1.15-1.17-1.15s-1.17.517-1.17 1.15c0 .634.525 1.146 1.17 1.146a1.16 1.16 0 0 0 1.17-1.146M6.922 17.723a1.16 1.16 0 0 0 1.17-1.15 1.16 1.16 0 0 0-1.17-1.15 1.16 1.16 0 0 0-1.17 1.15c0 .635.524 1.15 1.17 1.15M10.74 17.7c-.645 0-1.17.516-1.17 1.15S10.095 20 10.74 20s1.17-.516 1.17-1.15-.525-1.15-1.17-1.15" })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconLsuArt as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuCompetenceNumerique: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuCompetenceNumerique;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuCompetenceNumerique = ({
|
|
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 24 24", "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: "M23.595 11.842a1.24 1.24 0 0 0-.765-.947l-3.45-1.382V4.597c0-1.282-1.061-2.321-2.363-2.321H2.753C1.448 2.276.39 3.319.39 4.597v8.884c0 1.283 1.061 2.322 2.363 2.322H8.52v4.082H3.799v2.211h11.269v-2.21H10.77v-4.083h3.769l.405 1.706c.101.424.412.755.832.892q.198.061.394.062c.292 0 .581-.103.81-.295l.154-.129 1.912-3.35 3.99-1.598.139-.114c.337-.28.495-.704.424-1.135zM2.753 13.588a.11.11 0 0 1-.113-.11V4.594c0-.063.053-.11.113-.11h14.26c.064 0 .113.05.113.11V8.61l-2.501-1.002a1.27 1.27 0 0 0-1.286.202c-.36.299-.514.767-.409 1.22l1.08 4.562H2.753zm16.627-1.422-1.912.766-.92 1.607-.224-.95-.765-3.221 1.571.63 2.25.902.334.133z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconLsuCompetenceNumerique 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 SvgIconLsuEmc: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuEmc;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuEmc = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#icon-lsu-emc_svg__a)", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M19.305 2.184a2.2 2.2 0 0 0-1.68-.785c-.641 0-1.256.287-1.68.785-.956 1.124-2.299 1.78-3.679 1.794l-3.337.04c-1.451.02-2.648 1.187-2.813 2.669L.405 14.988a2.24 2.24 0 0 0 .098 2.66l3.36 4.172a2.06 2.06 0 0 0 1.612.777c.484 0 .945-.169 1.324-.49.709-.604 1.552-.924 2.437-.932l5.573-.048.24-.125a3.2 3.2 0 0 0 1.552-1.868c.154-.49.173-.944.139-1.316a4.33 4.33 0 0 0 1.039-1.901q.142-.565.139-1.146a3.59 3.59 0 0 0 1.17-2.432 2.66 2.66 0 0 0 1.78-.932l2.543-2.985.593-.73-4.695-5.512zM16.77 12.649c-.154.39-.431.593-.581.681l-.642.376.113.726c.049.32.037.652-.041.958a2.17 2.17 0 0 1-.769 1.183l-.6.464.225.719c.034.114.105.412 0 .737a1.06 1.06 0 0 1-.293.46l-4.968.044a6.1 6.1 0 0 0-3.72 1.338L2.243 16.3s-.012-.066 0-.085l3.85-5.597v1.371c0 1.736 1.23 3.21 2.798 3.36q.146.017.285.015c.728 0 1.425-.265 1.984-.766a3.33 3.33 0 0 0 1.095-2.495v-1.669h3.746l.668.785c.093.203.337.822.093 1.433zm2.393-2.635c-.18.214-.436.21-.616 0l-1.496-1.765h-5.88l-1.132.022V12.1c0 .35-.135.67-.368.877a.72.72 0 0 1-.562.195c-.428-.04-.791-.586-.791-1.187V7.04c0-.453.292-.836.64-.84l3.338-.04c2.01-.022 3.949-.947 5.333-2.547l3.491 4.102z" }) }),
|
|
9
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-lsu-emc_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconLsuEmc as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuFrancais: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuFrancais;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuFrancais = ({
|
|
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 24 24", "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: "M17.599.37H1.417V20.13c0 1.916 1.587 3.474 3.537 3.474H22.53v-2.21h-2.974V18.86h2.974v-1.105h.067V5.283C22.598 2.574 20.356.37 17.6.37m0 2.212c1.515 0 2.749 1.212 2.749 2.7v11.372H4.954c-.454 0-.889.088-1.287.243V2.582zm-.293 18.814H4.954a1.277 1.277 0 0 1-1.287-1.264c0-.696.578-1.264 1.287-1.264h12.352V21.4z" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M17.67 4.815H7.174v2.21H17.67zM17.67 9.679H7.174v2.21H17.67z" })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconLsuFrancais as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuHistoireGeo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuHistoireGeo;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuHistoireGeo = ({
|
|
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 24 24", "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: "m22.609 12.457-1.118.807c.008-.074.02-.151.027-.225 0-.022.052-.545.052-1.043 0-2.152-.66-4.156-1.789-5.829.004-.015.012-.03.015-.04l-.056-.023a10.8 10.8 0 0 0-8.925-4.676C4.883 1.428.06 6.167.06 11.996c0 5.83 4.56 10.303 10.264 10.557v.011q.186.011.371.011c1.076 0 2.051-.29 2.835-.85 1.106-.793 1.826-2.127 1.973-3.667.153-1.585-.323-3.125-1.272-4.12-1.233-1.29-3.048-1.448-3.738-1.51-1.065-.093-1.778.088-2.295.22-.47.118-.66.17-1.035.056-.36-.107-.522-.258-.818-.535-.352-.328-.832-.777-1.695-1.08a5.2 5.2 0 0 0-2.257-.253q.04-.287.1-.568c.072 0 .14-.004.215-.007 2.28-.103 2.872-.273 3.318-.457.514-.206 1.467-.593 2.044-1.51.761-1.206.671-2.816-.165-4.15q.586-.212 1.211-.335c.454 1.315 1.455 3.294 3.582 4.455.566.31 1.687.92 3.01.92a4.1 4.1 0 0 0 1.553-.301c.44-.18.81-.424 1.122-.69.6 1.143.937 2.44.937 3.81 0 .395-.041.833-.041.845q-.036.406-.105.814l-1.208-1.43-1.732 1.411 2.557 3.03a1.14 1.14 0 0 0 1.53.187l3.623-2.609-1.331-1.783zm-18.72.711c.416.148.622.34.904.604.375.35.84.785 1.706 1.047.982.295 1.691.114 2.257-.03.44-.11.852-.217 1.534-.158.491.044 1.646.144 2.291.822.507.53.765 1.448.672 2.398-.087.907-.473 1.666-1.058 2.086-.435.31-.952.409-1.387.424-4.324-.004-7.898-3.191-8.434-7.296.555-.085 1.061-.048 1.507.11zm2.269-6.04c-.195.31-.638.49-.99.634-.128.052-.402.163-1.827.251A8.5 8.5 0 0 1 5.906 5.18c.465.653.578 1.434.252 1.95m10.233-.294c-.88.361-1.807-.074-2.606-.509-1.219-.663-1.924-1.754-2.321-2.66a8.54 8.54 0 0 1 5.614 2.686 2 2 0 0 1-.687.483" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconLsuHistoireGeo 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 SvgIconLsuLangue: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuLangue;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuLangue = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-lsu-langue_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M12.401.994h-.799C5.602.994.72 5.787.72 11.684v.633c0 5.895 4.879 10.69 10.879 10.69h11.677V11.682c0-5.896-4.878-10.69-10.878-10.69zm8.629 19.802h-9.428c-4.758 0-8.628-3.803-8.628-8.48v-.633c0-4.676 3.87-8.479 8.628-8.479h.8c4.758 0 8.628 3.803 8.628 8.48z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M14.171 8.3c0-.611-.502-1.105-1.125-1.105-.622 0-1.125.494-1.125 1.105v.498H9.015c-.622 0-1.125.494-1.125 1.105 0 .612.503 1.106 1.125 1.106h2.269c-.072 1.22-.428 2.93-1.744 4.083a4.6 4.6 0 0 1-.986.655c-.555.273-.78.94-.499 1.485.199.387.593.608 1.005.608.169 0 .341-.036.506-.117a6.7 6.7 0 0 0 1.47-.98c.912-.797 1.497-1.75 1.875-2.705.566.91 1.335 1.802 2.348 2.299a1.133 1.133 0 0 0 1.511-.494 1.095 1.095 0 0 0-.503-1.481c-1.143-.564-1.957-2.332-2.313-3.353h3.375V8.798h-3.154V8.3z" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-lsu-langue_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconLsuLangue as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuLangue2: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuLangue2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuLangue2 = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#icon-lsu-langue2_svg__a)", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M24 8.58h-5.453V6.566c0-.612-.502-1.105-1.125-1.105-.622 0-1.125.493-1.125 1.105v2.016H11.27L7.785 1.48A1.14 1.14 0 0 0 6.746.854a1.13 1.13 0 0 0-1.009.67L.277 14.078h2.445l1.43-3.287h5.7l1.612 3.287h2.497l-1.612-3.287h8.445c.101 1.53-.045 4.267-1.909 6.736a9.6 9.6 0 0 1-1.391 1.489c-.094-.081-.192-.162-.282-.254a5.6 5.6 0 0 1-1.248-1.813 1.13 1.13 0 0 0-1.474-.586c-.574.24-.84.888-.596 1.448a7.8 7.8 0 0 0 1.71 2.494c-.518.273-1.005.476-1.436.627a1.1 1.1 0 0 0-.683 1.411 1.123 1.123 0 0 0 1.44.667 12.7 12.7 0 0 0 2.67-1.304 8.7 8.7 0 0 0 2.989.855q.056.006.112.007c.57 0 1.061-.424 1.118-.995a1.113 1.113 0 0 0-1.005-1.212 6.5 6.5 0 0 1-1.23-.243 11.6 11.6 0 0 0 1.117-1.283c2.213-2.937 2.471-6.083 2.355-8.051h.945v-2.21zm-18.885 0 1.717-3.95 1.94 3.95z" }) }),
|
|
9
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-lsu-langue2_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconLsuLangue2 as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuMath: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuMath;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuMath = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-lsu-math_svg__a)", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M15.574 10.53V.234H4.15C1.88.234.026 2.051.026 4.288v11.224h10.527v8.206h9.708c2.048 0 3.713-1.636 3.713-3.648v-9.54zM2.276 13.3V4.289c0-1.017.84-1.843 1.875-1.843h9.173v8.085h-2.768v2.77zm19.448 6.77c0 .792-.657 1.437-1.463 1.437h-7.458V12.74h8.92z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M11.003 6.989H8.7V4.723H6.45v2.266H4.147v2.21H6.45v2.263H8.7V9.2h2.303zM20.392 15.795h-5.76v2.211h5.76z" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-lsu-math_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconLsuMath as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconLsuParcoursEducatif: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuParcoursEducatif;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuParcoursEducatif = ({
|
|
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 24 24", "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: "M13.695 12.509V2.464c0-.46-.232-.88-.626-1.131a1.38 1.38 0 0 0-1.305-.1L5.46 3.989c-.484.21-.795.664-.814 1.183-.019.52.259.995.724 1.238l6.075 3.199v2.818c-5.37.107-9.705 4.426-9.705 9.728v1.32h20.539v-1.32c0-4.926-3.747-9.005-8.584-9.643zM8.014 5.29l3.431-1.5V7.1zM4.042 21.264c.443-3.667 3.578-6.526 7.403-6.622v2.14h2.25V14.75c3.3.567 5.884 3.217 6.281 6.515z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconLsuParcoursEducatif 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 SvgIconLsuSport: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuSport;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuSport = ({
|
|
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 24 24", "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: "M12 1.303c-6.116 0-11.089 4.89-11.089 10.9S5.888 23.099 12 23.099c6.113 0 11.089-4.89 11.089-10.896S18.116 1.303 12 1.303m.705 7.933c2.805-.095 5.029-1.127 6.487-2.07a8.5 8.5 0 0 1 1.452 3.227 29.4 29.4 0 0 1-8.111 1.268q.032-1.216.172-2.42zm.349-2.233a28 28 0 0 1 .858-3.283 8.8 8.8 0 0 1 3.728 1.798 10.45 10.45 0 0 1-4.59 1.485zm-2.273-.08a10.4 10.4 0 0 1-4.155-1.61 8.88 8.88 0 0 1 4.991-1.788 31 31 0 0 0-.836 3.397m-.322 2.184q-.137 1.244-.173 2.499a29.3 29.3 0 0 1-6.918-1.268A8.6 8.6 0 0 1 5.01 6.897c1.226.866 3.075 1.853 5.449 2.214zm-.154 4.713c.023.509.064 1.017.113 1.526-2.34.36-4.167 1.334-5.385 2.189a8.56 8.56 0 0 1-1.864-4.942A31.7 31.7 0 0 0 10.3 13.82zm.405 3.718a30 30 0 0 0 .769 3.335 8.86 8.86 0 0 1-4.815-1.754 10.4 10.4 0 0 1 4.05-1.58zm2.269-.1c1.931.133 3.506.8 4.631 1.471a8.9 8.9 0 0 1-3.829 1.798 28 28 0 0 1-.802-3.272zm-.315-2.228a27 27 0 0 1-.101-1.342 31.5 31.5 0 0 0 8.268-1.223 8.53 8.53 0 0 1-1.657 4.624c-1.47-.943-3.698-1.978-6.51-2.063z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconLsuSport 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 SvgIconLsuSvt: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconLsuSvt;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconLsuSvt = ({
|
|
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 24 24", "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.115 9.487c1.474 0 3.634-.335 5.535-1.942 2.231-1.883 2.726-4.363 2.839-5.343l.09-.781-.72-.339c-2.569-1.201-5.61-.855-7.755.888-1.793 1.46-2.423 3.493-2.543 5.045a8 8 0 0 0-.753-.848C8.528 3.964 5.13 3.26 1.935 4.332l-.937.313.195.95c.24 1.165 1.117 4.102 4.08 6.15 2.167 1.504 4.425 1.806 5.887 1.806h.135v1.036H2.614v5.424c0 1.986 1.642 3.6 3.664 3.6h11.317c2.021 0 3.664-1.614 3.664-3.6v-5.424h-7.71V9.472q.262.018.57.019zm1.425-5.815c1.26-1.024 2.978-1.34 4.56-.888-.229.874-.742 2.097-1.912 3.088-1.534 1.297-3.315 1.456-4.384 1.404.052-.943.364-2.483 1.74-3.6zM6.574 9.94A7.77 7.77 0 0 1 3.69 6.163c2.044-.353 4.136.221 5.543 1.581 1.207 1.168 1.608 2.602 1.736 3.597-1.136-.026-2.798-.295-4.391-1.4zm12.431 10.067c0 .766-.634 1.39-1.414 1.39H6.274c-.78 0-1.414-.623-1.414-1.39v-3.213h14.141v3.213z" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconLsuSvt 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 SvgIconParcoursCitoyen: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParcoursCitoyen;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParcoursCitoyen = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "M10.681 20.838a6.15 6.15 0 0 1 6.149-6.148q.058 0 .114.007a6.15 6.15 0 0 1 6.035 6.145v.248a2.473 2.473 0 0 1-2.47 2.47H11.68a1 1 0 0 1-1-1zm2 .722h7.827c.258 0 .47-.212.471-.47v-.248a4.15 4.15 0 0 0-4.15-4.148l-.051-.003a4.15 4.15 0 0 0-4.097 4.147zM18.81 9.627a2.124 2.124 0 1 0-4.247-.001 2.124 2.124 0 0 0 4.248 0m2 0a4.123 4.123 0 1 1-8.245 0 4.123 4.123 0 0 1 8.246 0" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "M2.127 21.132a5.276 5.276 0 0 1 7.034-4.975 1 1 0 0 1-.666 1.886 3.276 3.276 0 0 0-4.367 3.089c0 .235.193.428.428.428h7.125a1 1 0 0 1 0 2H4.556a2.43 2.43 0 0 1-2.429-2.428M8.62 11.445a1.408 1.408 0 1 0-2.817.001 1.408 1.408 0 0 0 2.816-.001m2 0a3.409 3.409 0 1 1-6.818-.001 3.409 3.409 0 0 1 6.817 0M12.53 17.006V5.831a1 1 0 1 1 2 0v11.175l-.005.103a1 1 0 0 1-1.99 0z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "M13.533.2a1 1 0 0 1 1 1v4.294a1 1 0 0 1-1 1H7.121a1 1 0 0 1-1-1V3.21C6.121 1.53 7.501.2 9.17.2zM8.121 4.494h4.412V2.2H9.17c-.597 0-1.048.469-1.048 1.01z" })
|
|
11
|
+
] });
|
|
12
|
+
export {
|
|
13
|
+
SvgIconParcoursCitoyen as default
|
|
14
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconParcoursSecours: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconParcoursSecours;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconParcoursSecours = ({
|
|
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 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "M21.132 7.766a.616.616 0 0 0-.616-.616H3.859a.616.616 0 0 0-.616.616v13.237c0 .34.275.617.616.617h16.657c.34 0 .616-.276.616-.617zm2 13.237a2.616 2.616 0 0 1-2.616 2.617H3.859a2.616 2.616 0 0 1-2.616-2.617V7.766A2.616 2.616 0 0 1 3.859 5.15h16.657a2.616 2.616 0 0 1 2.616 2.616z" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "M12.746.548c2.883.047 5.465 1.936 6.39 4.716a1 1 0 0 1-1.897.632c-.659-1.98-2.497-3.314-4.526-3.348h-.197c-2.021.05-3.827 1.387-4.48 3.348a1 1 0 0 1-1.898-.632C7.053 2.514 9.591.62 12.466.549zM11.184 18.026V10.74a1 1 0 1 1 2 0v7.286a1 1 0 1 1-2 0" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "#383838", d: "m15.829 13.381.102.005a1 1 0 0 1 0 1.99l-.102.005H8.542a1 1 0 1 1 0-2z" })
|
|
11
|
+
] });
|
|
12
|
+
export {
|
|
13
|
+
SvgIconParcoursSecours as default
|
|
14
|
+
};
|
|
@@ -17,6 +17,9 @@ export { default as IconArrowUp } from './IconArrowUp';
|
|
|
17
17
|
export { default as IconBlock } from './IconBlock';
|
|
18
18
|
export { default as IconBlur } from './IconBlur';
|
|
19
19
|
export { default as IconBookmark } from './IconBookmark';
|
|
20
|
+
export { default as IconBulleError } from './IconBulleError';
|
|
21
|
+
export { default as IconBulleSuccess } from './IconBulleSuccess';
|
|
22
|
+
export { default as IconBulle } from './IconBulle';
|
|
20
23
|
export { default as IconBulletList } from './IconBulletList';
|
|
21
24
|
export { default as IconBurgerMenu } from './IconBurgerMenu';
|
|
22
25
|
export { default as IconCalendarEdit } from './IconCalendarEdit';
|
|
@@ -80,6 +83,17 @@ export { default as IconLink } from './IconLink';
|
|
|
80
83
|
export { default as IconListOrder } from './IconListOrder';
|
|
81
84
|
export { default as IconLoader } from './IconLoader';
|
|
82
85
|
export { default as IconLock } from './IconLock';
|
|
86
|
+
export { default as IconLsuArt } from './IconLsuArt';
|
|
87
|
+
export { default as IconLsuCompetenceNumerique } from './IconLsuCompetenceNumerique';
|
|
88
|
+
export { default as IconLsuEmc } from './IconLsuEmc';
|
|
89
|
+
export { default as IconLsuFrancais } from './IconLsuFrancais';
|
|
90
|
+
export { default as IconLsuHistoireGeo } from './IconLsuHistoireGeo';
|
|
91
|
+
export { default as IconLsuLangue } from './IconLsuLangue';
|
|
92
|
+
export { default as IconLsuLangue2 } from './IconLsuLangue2';
|
|
93
|
+
export { default as IconLsuMath } from './IconLsuMath';
|
|
94
|
+
export { default as IconLsuParcoursEducatif } from './IconLsuParcoursEducatif';
|
|
95
|
+
export { default as IconLsuSport } from './IconLsuSport';
|
|
96
|
+
export { default as IconLsuSvt } from './IconLsuSvt';
|
|
83
97
|
export { default as IconMailRecall } from './IconMailRecall';
|
|
84
98
|
export { default as IconMail } from './IconMail';
|
|
85
99
|
export { default as IconMegaphone } from './IconMegaphone';
|
|
@@ -95,6 +109,8 @@ export { default as IconNotification } from './IconNotification';
|
|
|
95
109
|
export { default as IconOptions } from './IconOptions';
|
|
96
110
|
export { default as IconOrderedList } from './IconOrderedList';
|
|
97
111
|
export { default as IconPaperclip } from './IconPaperclip';
|
|
112
|
+
export { default as IconParcoursCitoyen } from './IconParcoursCitoyen';
|
|
113
|
+
export { default as IconParcoursSecours } from './IconParcoursSecours';
|
|
98
114
|
export { default as IconPause } from './IconPause';
|
|
99
115
|
export { default as IconPinOff } from './IconPinOff';
|
|
100
116
|
export { default as IconPinOn } from './IconPinOn';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './get-rotate-transition-style';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.16",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"clsx": "^2.1.1",
|
|
124
124
|
"dayjs": "1.11.19",
|
|
125
125
|
"emoji-picker-react": "4.5.2",
|
|
126
|
-
"
|
|
126
|
+
"heic-to": "1.4.2",
|
|
127
127
|
"html-react-parser": "4.2.1",
|
|
128
128
|
"ohash": "1.1.3",
|
|
129
129
|
"pako": "2.1.0",
|
|
@@ -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/
|
|
139
|
-
"@edifice.io/
|
|
140
|
-
"@edifice.io/
|
|
138
|
+
"@edifice.io/bootstrap": "2.5.16",
|
|
139
|
+
"@edifice.io/tiptap-extensions": "2.5.16",
|
|
140
|
+
"@edifice.io/utilities": "2.5.16"
|
|
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.
|
|
172
|
-
"@edifice.io/config": "2.5.
|
|
171
|
+
"@edifice.io/client": "2.5.16",
|
|
172
|
+
"@edifice.io/config": "2.5.16"
|
|
173
173
|
},
|
|
174
174
|
"peerDependencies": {
|
|
175
175
|
"@react-spring/web": "^9.7.5",
|