@edifice.io/react 2.2.1-develop-b2school.20250326170945 → 2.2.1-develop-integration-nabook.20250327193455
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/Dropdown/DropdownTrigger.js +1 -5
- package/dist/components/Layout/components/Header.js +1 -1
- package/dist/components/Layout/hooks/useHelp.d.ts +1 -1
- package/dist/components/Layout/hooks/useHelp.js +4 -3
- package/dist/components/List/List.d.ts +1 -9
- package/dist/components/List/List.js +9 -9
- package/dist/components/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.js +1 -3
- package/dist/editor.js +20 -24
- package/dist/hooks/useCheckable/useCheckable.js +3 -10
- package/dist/hooks/useConversation/useConversation.d.ts +1 -1
- package/dist/hooks/useConversation/useConversation.js +17 -13
- package/dist/icons-apps.js +102 -100
- package/dist/icons.js +210 -224
- package/dist/index.js +14 -16
- package/dist/modals.js +14 -16
- package/dist/modules/editor/components/Editor/Editor.d.ts +1 -3
- package/dist/modules/editor/components/Editor/Editor.js +2 -3
- package/dist/modules/editor/components/NodeView/index.d.ts +1 -2
- package/dist/modules/editor/components/Renderer/index.d.ts +1 -2
- package/dist/modules/editor/hooks/useTipTapEditor.d.ts +2 -6
- package/dist/modules/editor/hooks/useTipTapEditor.js +2 -2
- package/dist/modules/icons/components/apps/IconNabook.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNabook.js +14 -0
- package/dist/modules/icons/components/apps/index.d.ts +1 -0
- package/dist/modules/icons/components/index.d.ts +0 -7
- package/dist/modules/modals/index.d.ts +0 -1
- package/package.json +6 -6
- package/dist/modules/editor/components/NodeView/ConversationHistoryNodeView.d.ts +0 -2
- package/dist/modules/editor/components/NodeView/ConversationHistoryNodeView.js +0 -10
- package/dist/modules/editor/components/Renderer/ConversationHistoryRenderer.d.ts +0 -8
- package/dist/modules/editor/components/Renderer/ConversationHistoryRenderer.js +0 -28
- package/dist/modules/icons/components/IconFolderAdd.d.ts +0 -7
- package/dist/modules/icons/components/IconFolderAdd.js +0 -13
- package/dist/modules/icons/components/IconFolderDelete.d.ts +0 -7
- package/dist/modules/icons/components/IconFolderDelete.js +0 -12
- package/dist/modules/icons/components/IconGroupAvatar.d.ts +0 -7
- package/dist/modules/icons/components/IconGroupAvatar.js +0 -12
- package/dist/modules/icons/components/IconQuestionMark.d.ts +0 -7
- package/dist/modules/icons/components/IconQuestionMark.js +0 -13
- package/dist/modules/icons/components/IconReadMail.d.ts +0 -7
- package/dist/modules/icons/components/IconReadMail.js +0 -16
- package/dist/modules/icons/components/IconUndoAll.d.ts +0 -7
- package/dist/modules/icons/components/IconUndoAll.js +0 -14
- package/dist/modules/icons/components/IconUnreadMail.d.ts +0 -7
- package/dist/modules/icons/components/IconUnreadMail.js +0 -16
- package/dist/modules/modals/ConfirmModal/ConfirmModal.d.ts +0 -42
- package/dist/modules/modals/ConfirmModal/ConfirmModal.js +0 -36
- package/dist/modules/modals/ConfirmModal/index.d.ts +0 -1
|
@@ -3,7 +3,6 @@ import { forwardRef } from "react";
|
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import SvgIconRafterUp from "../../modules/icons/components/IconRafterUp.js";
|
|
5
5
|
import { useDropdownContext } from "./DropdownContext.js";
|
|
6
|
-
import Badge from "../Badge/Badge.js";
|
|
7
6
|
const DropdownTrigger = /* @__PURE__ */ forwardRef(({
|
|
8
7
|
label,
|
|
9
8
|
icon,
|
|
@@ -27,10 +26,7 @@ const DropdownTrigger = /* @__PURE__ */ forwardRef(({
|
|
|
27
26
|
return /* @__PURE__ */ jsxs("button", { ref: forwardRef2, type: "button", disabled, ...mergedProps, children: [
|
|
28
27
|
icon,
|
|
29
28
|
label,
|
|
30
|
-
badgeContent ? /* @__PURE__ */ jsx(
|
|
31
|
-
level: "info",
|
|
32
|
-
type: "notification"
|
|
33
|
-
}, children: badgeContent }) : !hideCarret && /* @__PURE__ */ jsx(SvgIconRafterUp, { width: 16, height: 16, className: "dropdown-toggle-caret" })
|
|
29
|
+
badgeContent ? /* @__PURE__ */ jsx("span", { className: "badge text-bg-secondary rounded-pill", children: badgeContent }) : !hideCarret && /* @__PURE__ */ jsx(SvgIconRafterUp, { width: 16, height: 16, className: "dropdown-toggle-caret" })
|
|
34
30
|
] });
|
|
35
31
|
});
|
|
36
32
|
export {
|
|
@@ -5,7 +5,7 @@ import SvgIconBurgerMenu from "../../../modules/icons/components/IconBurgerMenu.
|
|
|
5
5
|
import { useEdificeClient } from "../../../providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
6
6
|
import { useEdificeTheme } from "../../../providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
7
7
|
import Button from "../../Button/Button.js";
|
|
8
|
-
function useHelp() {
|
|
8
|
+
function useHelp(hasOldHelpEnableWorkflow) {
|
|
9
9
|
var _a, _b, _c, _d, _e;
|
|
10
10
|
const {
|
|
11
11
|
appCode
|
|
@@ -13,7 +13,7 @@ function useHelp() {
|
|
|
13
13
|
theme
|
|
14
14
|
} = useEdificeTheme(), [html, setHtml] = useState(""), [visibility, setVisibility] = useState(!0), [activeSection, setActiveSection] = useState("présentation"), [isModalOpen, setIsModalOpen] = useState(!1), [error, setError] = useState(!1), helpPath = theme != null && theme.is1d ? "/help-1d" : "/help-2d";
|
|
15
15
|
useEffect(() => {
|
|
16
|
-
(async () => {
|
|
16
|
+
hasOldHelpEnableWorkflow && (async () => {
|
|
17
17
|
let helpURL = "";
|
|
18
18
|
helpURL = helpPath + "/application/" + appCode + "/", !appCode && window.location.pathname !== "/adapter" ? helpURL = helpPath + "/application/portal/" : window.location.pathname === "/adapter" ? helpURL = helpPath + "/application/" + window.location.search.split("eliot=")[1].split("&")[0] + "/" : window.location.pathname.includes("/directory/class-admin") ? helpURL = helpPath + "/application/parametrage-de-la-classe/" : (window.location.pathname.includes("/userbook/mon-compte") || window.location.pathname.includes("/timeline/preferencesView") || window.location.pathname.includes("/timeline/historyView")) && (helpURL = helpPath + "/application/userbook/");
|
|
19
19
|
try {
|
|
@@ -30,7 +30,8 @@ function useHelp() {
|
|
|
30
30
|
}, [appCode, helpPath]);
|
|
31
31
|
const parsedHTML = parse(html, {
|
|
32
32
|
replace: (domNode) => {
|
|
33
|
-
|
|
33
|
+
var _a2;
|
|
34
|
+
const typedDomNode = domNode, isActive = ((_a2 = typedDomNode.attribs) == null ? void 0 : _a2.id) === activeSection;
|
|
34
35
|
if (typedDomNode.attribs && typedDomNode.attribs.id === "TOC")
|
|
35
36
|
return /* @__PURE__ */ jsxs("nav", { id: "TOC", children: [
|
|
36
37
|
/* @__PURE__ */ jsx(Button, { onClick: () => {
|
|
@@ -5,10 +5,6 @@ export type ListProps<T> = {
|
|
|
5
5
|
* Toolbar data items
|
|
6
6
|
*/
|
|
7
7
|
items?: ToolbarItem[];
|
|
8
|
-
/**
|
|
9
|
-
* Checkable list
|
|
10
|
-
*/
|
|
11
|
-
isCheckable?: boolean;
|
|
12
8
|
/**
|
|
13
9
|
* Generic data
|
|
14
10
|
*/
|
|
@@ -21,11 +17,7 @@ export type ListProps<T> = {
|
|
|
21
17
|
* Callback to get selected ids
|
|
22
18
|
*/
|
|
23
19
|
onSelectedItems?: (selectedIds: string[]) => void;
|
|
24
|
-
/**
|
|
25
|
-
* Custom class name
|
|
26
|
-
*/
|
|
27
|
-
className?: string;
|
|
28
20
|
};
|
|
29
21
|
export declare const List: <T extends {
|
|
30
22
|
_id: string;
|
|
31
|
-
}>({ items,
|
|
23
|
+
}>({ items, data, renderNode, onSelectedItems, }: ListProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,11 +7,9 @@ import Checkbox from "../Checkbox/Checkbox.js";
|
|
|
7
7
|
import { Toolbar } from "../Toolbar/Toolbar.js";
|
|
8
8
|
const List = ({
|
|
9
9
|
items,
|
|
10
|
-
isCheckable = !1,
|
|
11
10
|
data,
|
|
12
11
|
renderNode,
|
|
13
|
-
onSelectedItems
|
|
14
|
-
className
|
|
12
|
+
onSelectedItems
|
|
15
13
|
}) => {
|
|
16
14
|
const {
|
|
17
15
|
selectedItems,
|
|
@@ -23,9 +21,11 @@ const List = ({
|
|
|
23
21
|
return useEffect(() => {
|
|
24
22
|
selectedItems && (onSelectedItems == null || onSelectedItems(selectedItems));
|
|
25
23
|
}, [onSelectedItems, selectedItems]), /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
26
|
-
|
|
27
|
-
/* @__PURE__ */ jsx("div", { className: clsx("
|
|
28
|
-
|
|
24
|
+
items && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
25
|
+
/* @__PURE__ */ jsx("div", { className: clsx("d-flex align-items-center gap-8", {
|
|
26
|
+
"px-12": items
|
|
27
|
+
}), children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
28
|
+
/* @__PURE__ */ jsxs("div", { className: "d-flex align-items-center gap-8", children: [
|
|
29
29
|
/* @__PURE__ */ jsx(Checkbox, { checked: allItemsSelected, indeterminate: isIndeterminate, onChange: () => handleOnSelectAllItems(allItemsSelected) }),
|
|
30
30
|
/* @__PURE__ */ jsxs("span", { children: [
|
|
31
31
|
"(",
|
|
@@ -33,15 +33,15 @@ const List = ({
|
|
|
33
33
|
")"
|
|
34
34
|
] })
|
|
35
35
|
] }),
|
|
36
|
-
|
|
36
|
+
/* @__PURE__ */ jsx(Toolbar, { items, isBlock: !0, align: "left", variant: "no-shadow", className: clsx("gap-4 py-4", {
|
|
37
37
|
"px-0 ms-auto": !isDesktopDevice
|
|
38
38
|
}) })
|
|
39
39
|
] }) }),
|
|
40
40
|
/* @__PURE__ */ jsx("div", { className: "border-top" })
|
|
41
41
|
] }),
|
|
42
42
|
/* @__PURE__ */ jsx("div", { className: "mt-8", children: data == null ? void 0 : data.map((node) => {
|
|
43
|
-
const checked = selectedItems.includes(node._id);
|
|
44
|
-
return /* @__PURE__ */ jsx(Fragment$1, { children: renderNode(node,
|
|
43
|
+
const checkbox = /* @__PURE__ */ jsx(Checkbox, { checked: selectedItems.includes(node._id), onChange: () => handleOnSelectItem(node._id) }), checked = selectedItems.includes(node._id);
|
|
44
|
+
return /* @__PURE__ */ jsx(Fragment$1, { children: renderNode(node, checkbox, checked) }, node._id);
|
|
45
45
|
}) })
|
|
46
46
|
] });
|
|
47
47
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeEvent } from 'react';
|
|
2
2
|
import { Size } from '../../types';
|
|
3
|
-
export interface BaseProps
|
|
3
|
+
export interface BaseProps {
|
|
4
4
|
/**
|
|
5
5
|
* String or Template literal with React i18next namespace
|
|
6
6
|
*/
|
|
@@ -24,12 +24,10 @@ const SearchBar = ({
|
|
|
24
24
|
"ps-48": isVariant
|
|
25
25
|
}), handleClick = () => {
|
|
26
26
|
onClick == null || onClick();
|
|
27
|
-
}, handleKeyDown = (e) => {
|
|
28
|
-
e.key === "Enter" && (e.preventDefault(), handleClick());
|
|
29
27
|
};
|
|
30
28
|
return /* @__PURE__ */ jsxs(FormControl, { id: "search-bar", className: searchbar, children: [
|
|
31
29
|
isVariant && /* @__PURE__ */ jsx("div", { className: "position-absolute z-1 top-50 start-0 translate-middle-y border-0 ps-12 bg-transparent", children: /* @__PURE__ */ jsx(SvgIconSearch, {}) }),
|
|
32
|
-
/* @__PURE__ */ jsx(FormControl.Input, { type: "search", placeholder: t(placeholder), size, noValidationIcon: !0, className: input, onChange, disabled,
|
|
30
|
+
/* @__PURE__ */ jsx(FormControl.Input, { type: "search", placeholder: t(placeholder), size, noValidationIcon: !0, className: input, onChange, disabled, ...restProps }),
|
|
33
31
|
!isVariant && /* @__PURE__ */ jsx(SearchButton, { type: "submit", "aria-label": t("search"), icon: /* @__PURE__ */ jsx(SvgIconSearch, {}), className: "border-start-0", onClick: handleClick })
|
|
34
32
|
] });
|
|
35
33
|
};
|
package/dist/editor.js
CHANGED
|
@@ -2,19 +2,17 @@ import { EditorContent, Editor, useEditor } from "@tiptap/react";
|
|
|
2
2
|
import { default as default2 } from "@tiptap/starter-kit";
|
|
3
3
|
import { default as default3 } from "./modules/editor/components/Editor/Editor.js";
|
|
4
4
|
import { default as default4 } from "./modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js";
|
|
5
|
-
import { default as default5 } from "./modules/editor/components/NodeView/
|
|
6
|
-
import { default as default6 } from "./modules/editor/components/NodeView/
|
|
7
|
-
import { default as default7 } from "./modules/editor/components/NodeView/
|
|
8
|
-
import { default as default8 } from "./modules/editor/components/NodeView/
|
|
9
|
-
import { default as default9 } from "./modules/editor/components/NodeView/
|
|
10
|
-
import { default as default10 } from "./modules/editor/components/
|
|
5
|
+
import { default as default5 } from "./modules/editor/components/NodeView/AudioNodeView.js";
|
|
6
|
+
import { default as default6 } from "./modules/editor/components/NodeView/AttachmentNodeView.js";
|
|
7
|
+
import { default as default7 } from "./modules/editor/components/NodeView/ImageNodeView.js";
|
|
8
|
+
import { default as default8 } from "./modules/editor/components/NodeView/LinkerNodeView.js";
|
|
9
|
+
import { default as default9 } from "./modules/editor/components/NodeView/VideoNodeView.js";
|
|
10
|
+
import { default as default10 } from "./modules/editor/components/Renderer/AudioRenderer.js";
|
|
11
11
|
import { default as default11 } from "./modules/editor/components/Renderer/AttachmentRenderer.js";
|
|
12
|
-
import { default as default12 } from "./modules/editor/components/Renderer/
|
|
13
|
-
import { default as default13 } from "./modules/editor/components/Renderer/
|
|
14
|
-
import { default as default14 } from "./modules/editor/components/
|
|
15
|
-
import { default as default15 } from "./modules/editor/components/
|
|
16
|
-
import { default as default16 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
17
|
-
import { default as default17 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
12
|
+
import { default as default12 } from "./modules/editor/components/Renderer/LinkerRenderer.js";
|
|
13
|
+
import { default as default13 } from "./modules/editor/components/Renderer/MediaRenderer.js";
|
|
14
|
+
import { default as default14 } from "./modules/editor/components/Toolbar/TableToolbar.js";
|
|
15
|
+
import { default as default15 } from "./modules/editor/components/Toolbar/LinkToolbar.js";
|
|
18
16
|
import { EditorToolbar } from "./modules/editor/components/EditorToolbar/EditorToolbar.js";
|
|
19
17
|
import { useActionOptions } from "./modules/editor/hooks/useActionOptions.js";
|
|
20
18
|
import { useCommentEditor } from "./modules/editor/hooks/useCommentEditor.js";
|
|
@@ -29,26 +27,24 @@ import { useSpeechRecognition } from "./modules/editor/hooks/useSpeechRecognitio
|
|
|
29
27
|
import { useSpeechSynthetisis } from "./modules/editor/hooks/useSpeechSynthetisis.js";
|
|
30
28
|
import { useTipTapEditor } from "./modules/editor/hooks/useTipTapEditor.js";
|
|
31
29
|
export {
|
|
32
|
-
|
|
30
|
+
default6 as AttachmentNodeView,
|
|
33
31
|
default11 as AttachmentRenderer,
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
default5 as AudioNodeView,
|
|
33
|
+
default10 as AudioRenderer,
|
|
36
34
|
default4 as BubbleMenuEditImage,
|
|
37
|
-
default7 as ConversationHistoryNodeView,
|
|
38
|
-
default13 as ConversationHistoryRenderer,
|
|
39
35
|
default3 as Editor,
|
|
40
36
|
EditorContent,
|
|
41
37
|
EditorContext,
|
|
42
38
|
Editor as EditorInstance,
|
|
43
39
|
EditorToolbar,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
40
|
+
default7 as ImageNodeView,
|
|
41
|
+
default15 as LinkToolbar,
|
|
42
|
+
default8 as LinkerNodeView,
|
|
43
|
+
default12 as LinkerRenderer,
|
|
44
|
+
default13 as MediaRenderer,
|
|
49
45
|
default2 as StarterKit,
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
default14 as TableToolbar,
|
|
47
|
+
default9 as VideoNodeView,
|
|
52
48
|
useActionOptions,
|
|
53
49
|
useCommentEditor,
|
|
54
50
|
useEditor,
|
|
@@ -1,20 +1,13 @@
|
|
|
1
|
-
import { useState
|
|
1
|
+
import { useState } from "react";
|
|
2
2
|
const useCheckable = (data) => {
|
|
3
3
|
const [selectedItems, setSelectedItems] = useState([]), handleOnSelectItem = (itemId) => {
|
|
4
4
|
setSelectedItems((currentSelection) => {
|
|
5
5
|
const newSelection = [...currentSelection];
|
|
6
6
|
return newSelection.includes(itemId) ? newSelection.splice(newSelection.indexOf(itemId), 1) : newSelection.push(itemId), newSelection;
|
|
7
7
|
});
|
|
8
|
-
}
|
|
9
|
-
useEffect(() => {
|
|
10
|
-
if (data) {
|
|
11
|
-
const validSelectedItems = selectedItems.filter((id) => data.some((item) => item._id === id));
|
|
12
|
-
validSelectedItems.length !== selectedItems.length && setSelectedItems(validSelectedItems);
|
|
13
|
-
}
|
|
14
|
-
}, [data]);
|
|
15
|
-
const handleOnSelectAllItems = (deselect) => {
|
|
8
|
+
}, handleOnSelectAllItems = (deselect) => {
|
|
16
9
|
setSelectedItems(() => deselect ? [] : (data == null ? void 0 : data.map((item) => item._id)) ?? []);
|
|
17
|
-
}, allItemsSelected = (selectedItems == null ? void 0 : selectedItems.length) === (data == null ? void 0 : data.length)
|
|
10
|
+
}, allItemsSelected = (selectedItems == null ? void 0 : selectedItems.length) === (data == null ? void 0 : data.length), isIndeterminate = data ? (selectedItems == null ? void 0 : selectedItems.length) > 0 && (selectedItems == null ? void 0 : selectedItems.length) < (data == null ? void 0 : data.length) : !1;
|
|
18
11
|
return {
|
|
19
12
|
selectedItems,
|
|
20
13
|
allItemsSelected,
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
import { useState, useEffect } from "react";
|
|
2
2
|
import { odeServices } from "@edifice.io/client";
|
|
3
|
-
import { useQuery } from "@tanstack/react-query";
|
|
4
3
|
import useHasWorkflow from "../useHasWorkflow/useHasWorkflow.js";
|
|
5
4
|
const useConversation = () => {
|
|
6
|
-
const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), [msgLink, setMsgLink] = useState(""), queryParams = {
|
|
5
|
+
const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), [messages, setMessages] = useState(0), [msgLink, setMsgLink] = useState(""), queryParams = {
|
|
7
6
|
unread: !0,
|
|
8
7
|
_: (/* @__PURE__ */ new Date()).getTime()
|
|
9
|
-
}, {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
}, refreshMails = async () => {
|
|
9
|
+
const url = zimbraWorkflow ? "/zimbra/count/INBOX" : "/conversation/count/INBOX";
|
|
10
|
+
try {
|
|
11
|
+
const {
|
|
12
|
+
count
|
|
13
|
+
} = await odeServices.http().get(url, {
|
|
14
|
+
queryParams
|
|
15
|
+
});
|
|
16
|
+
setMessages(count ?? 0);
|
|
17
|
+
} catch (error) {
|
|
18
|
+
console.error(error), setMessages(0);
|
|
19
|
+
}
|
|
20
|
+
}, goToMessagerie = async () => {
|
|
19
21
|
const defaultLink = "/zimbra/zimbra";
|
|
20
22
|
try {
|
|
21
23
|
const {
|
|
@@ -27,9 +29,11 @@ const useConversation = () => {
|
|
|
27
29
|
}
|
|
28
30
|
};
|
|
29
31
|
return useEffect(() => {
|
|
32
|
+
refreshMails();
|
|
33
|
+
}, []), useEffect(() => {
|
|
30
34
|
goToMessagerie();
|
|
31
35
|
}, []), {
|
|
32
|
-
messages
|
|
36
|
+
messages,
|
|
33
37
|
msgLink,
|
|
34
38
|
zimbraWorkflow
|
|
35
39
|
};
|
package/dist/icons-apps.js
CHANGED
|
@@ -64,56 +64,57 @@ import { default as default64 } from "./modules/icons/components/apps/IconMonsta
|
|
|
64
64
|
import { default as default65 } from "./modules/icons/components/apps/IconMoodle.js";
|
|
65
65
|
import { default as default66 } from "./modules/icons/components/apps/IconMuseefrancaisphoto.js";
|
|
66
66
|
import { default as default67 } from "./modules/icons/components/apps/IconMyNetwork.js";
|
|
67
|
-
import { default as default68 } from "./modules/icons/components/apps/
|
|
68
|
-
import { default as default69 } from "./modules/icons/components/apps/
|
|
69
|
-
import { default as default70 } from "./modules/icons/components/apps/
|
|
70
|
-
import { default as default71 } from "./modules/icons/components/apps/
|
|
71
|
-
import { default as default72 } from "./modules/icons/components/apps/
|
|
72
|
-
import { default as default73 } from "./modules/icons/components/apps/
|
|
73
|
-
import { default as default74 } from "./modules/icons/components/apps/
|
|
74
|
-
import { default as default75 } from "./modules/icons/components/apps/
|
|
75
|
-
import { default as default76 } from "./modules/icons/components/apps/
|
|
76
|
-
import { default as default77 } from "./modules/icons/components/apps/
|
|
77
|
-
import { default as default78 } from "./modules/icons/components/apps/
|
|
78
|
-
import { default as default79 } from "./modules/icons/components/apps/
|
|
79
|
-
import { default as default80 } from "./modules/icons/components/apps/
|
|
80
|
-
import { default as default81 } from "./modules/icons/components/apps/
|
|
81
|
-
import { default as default82 } from "./modules/icons/components/apps/
|
|
82
|
-
import { default as default83 } from "./modules/icons/components/apps/
|
|
83
|
-
import { default as default84 } from "./modules/icons/components/apps/
|
|
84
|
-
import { default as default85 } from "./modules/icons/components/apps/
|
|
85
|
-
import { default as default86 } from "./modules/icons/components/apps/
|
|
86
|
-
import { default as default87 } from "./modules/icons/components/apps/
|
|
87
|
-
import { default as default88 } from "./modules/icons/components/apps/
|
|
88
|
-
import { default as default89 } from "./modules/icons/components/apps/
|
|
89
|
-
import { default as default90 } from "./modules/icons/components/apps/
|
|
90
|
-
import { default as default91 } from "./modules/icons/components/apps/
|
|
91
|
-
import { default as default92 } from "./modules/icons/components/apps/
|
|
92
|
-
import { default as default93 } from "./modules/icons/components/apps/
|
|
93
|
-
import { default as default94 } from "./modules/icons/components/apps/
|
|
94
|
-
import { default as default95 } from "./modules/icons/components/apps/
|
|
95
|
-
import { default as default96 } from "./modules/icons/components/apps/
|
|
96
|
-
import { default as default97 } from "./modules/icons/components/apps/
|
|
97
|
-
import { default as default98 } from "./modules/icons/components/apps/
|
|
98
|
-
import { default as default99 } from "./modules/icons/components/apps/
|
|
99
|
-
import { default as default100 } from "./modules/icons/components/apps/
|
|
100
|
-
import { default as default101 } from "./modules/icons/components/apps/
|
|
101
|
-
import { default as default102 } from "./modules/icons/components/apps/
|
|
102
|
-
import { default as default103 } from "./modules/icons/components/apps/
|
|
103
|
-
import { default as default104 } from "./modules/icons/components/apps/
|
|
104
|
-
import { default as default105 } from "./modules/icons/components/apps/
|
|
105
|
-
import { default as default106 } from "./modules/icons/components/apps/
|
|
106
|
-
import { default as default107 } from "./modules/icons/components/apps/
|
|
107
|
-
import { default as default108 } from "./modules/icons/components/apps/
|
|
108
|
-
import { default as default109 } from "./modules/icons/components/apps/
|
|
109
|
-
import { default as default110 } from "./modules/icons/components/apps/
|
|
110
|
-
import { default as default111 } from "./modules/icons/components/apps/
|
|
111
|
-
import { default as default112 } from "./modules/icons/components/apps/
|
|
112
|
-
import { default as default113 } from "./modules/icons/components/apps/
|
|
113
|
-
import { default as default114 } from "./modules/icons/components/apps/
|
|
114
|
-
import { default as default115 } from "./modules/icons/components/apps/
|
|
115
|
-
import { default as default116 } from "./modules/icons/components/apps/
|
|
116
|
-
import { default as default117 } from "./modules/icons/components/apps/
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/apps/IconNabook.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/apps/IconNetvibes.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/apps/IconNote.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/apps/IconNotebook.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/apps/IconNotes.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/apps/IconOnisep.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/apps/IconOnisep2.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/apps/IconPad.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/apps/IconPages.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/apps/IconParametrage.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/apps/IconParametrages.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/apps/IconParaschool.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/apps/IconParcours.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/apps/IconPearltrees.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/apps/IconPicardieCursus.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/apps/IconPlaceholder.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/apps/IconPoll.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/apps/IconPresences.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/apps/IconProeps.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/apps/IconPronote.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/apps/IconPublic.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/apps/IconQwantJunior.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/apps/IconQwant.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/apps/IconRack.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/apps/IconRbs.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/apps/IconResidenceArtiste.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/apps/IconRessourcesdepartementale91.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/apps/IconSacoche.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/apps/IconSchoolbook.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/apps/IconScolinfo.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/apps/IconScrapbook.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/apps/IconSearchengine.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/apps/IconSettingsClass.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/apps/IconSharebigfiles.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/apps/IconStatistics.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/apps/IconStats.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/apps/IconSuitcase.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/apps/IconSupport.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/apps/IconTimeline.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/apps/IconTimelinegenerator.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/apps/IconTurboself.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/apps/IconUniversalis.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/apps/IconUnstagepourtous.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/apps/IconUserbook.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/apps/IconVideo.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/apps/IconVieScolaire.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/apps/IconVisioconf.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/apps/IconWebclasseur.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/apps/IconWebsite.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/apps/IconWiki.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/apps/IconWorkspace.js";
|
|
117
118
|
export {
|
|
118
119
|
default2 as IconAccount,
|
|
119
120
|
default3 as IconActualites,
|
|
@@ -181,54 +182,55 @@ export {
|
|
|
181
182
|
default65 as IconMoodle,
|
|
182
183
|
default66 as IconMuseefrancaisphoto,
|
|
183
184
|
default67 as IconMyNetwork,
|
|
184
|
-
default68 as
|
|
185
|
-
default69 as
|
|
186
|
-
default70 as
|
|
187
|
-
default71 as
|
|
188
|
-
default72 as
|
|
189
|
-
default73 as
|
|
190
|
-
default74 as
|
|
191
|
-
default75 as
|
|
192
|
-
default76 as
|
|
193
|
-
default77 as
|
|
194
|
-
default78 as
|
|
195
|
-
default79 as
|
|
196
|
-
default80 as
|
|
197
|
-
default81 as
|
|
198
|
-
default82 as
|
|
199
|
-
default83 as
|
|
200
|
-
default84 as
|
|
201
|
-
default85 as
|
|
202
|
-
default86 as
|
|
203
|
-
default87 as
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
default91 as
|
|
208
|
-
default92 as
|
|
209
|
-
default93 as
|
|
210
|
-
default94 as
|
|
211
|
-
default95 as
|
|
212
|
-
default96 as
|
|
213
|
-
default97 as
|
|
214
|
-
default98 as
|
|
215
|
-
default99 as
|
|
216
|
-
default100 as
|
|
217
|
-
default101 as
|
|
218
|
-
default102 as
|
|
219
|
-
default103 as
|
|
220
|
-
default104 as
|
|
221
|
-
default105 as
|
|
222
|
-
default106 as
|
|
223
|
-
default107 as
|
|
224
|
-
default108 as
|
|
225
|
-
default109 as
|
|
226
|
-
default110 as
|
|
227
|
-
default111 as
|
|
228
|
-
default112 as
|
|
229
|
-
default113 as
|
|
230
|
-
default114 as
|
|
231
|
-
default115 as
|
|
232
|
-
default116 as
|
|
233
|
-
default117 as
|
|
185
|
+
default68 as IconNabook,
|
|
186
|
+
default69 as IconNetvibes,
|
|
187
|
+
default70 as IconNote,
|
|
188
|
+
default71 as IconNotebook,
|
|
189
|
+
default72 as IconNotes,
|
|
190
|
+
default73 as IconOnisep,
|
|
191
|
+
default74 as IconOnisep2,
|
|
192
|
+
default75 as IconPad,
|
|
193
|
+
default76 as IconPages,
|
|
194
|
+
default77 as IconParametrage,
|
|
195
|
+
default78 as IconParametrages,
|
|
196
|
+
default79 as IconParaschool,
|
|
197
|
+
default80 as IconParcours,
|
|
198
|
+
default81 as IconPearltrees,
|
|
199
|
+
default82 as IconPicardieCursus,
|
|
200
|
+
default83 as IconPlaceholder,
|
|
201
|
+
default84 as IconPoll,
|
|
202
|
+
default85 as IconPresences,
|
|
203
|
+
default86 as IconProeps,
|
|
204
|
+
default87 as IconPronote,
|
|
205
|
+
default88 as IconPublic,
|
|
206
|
+
default90 as IconQwant,
|
|
207
|
+
default89 as IconQwantJunior,
|
|
208
|
+
default91 as IconRack,
|
|
209
|
+
default92 as IconRbs,
|
|
210
|
+
default93 as IconResidenceArtiste,
|
|
211
|
+
default94 as IconRessourcesdepartementale91,
|
|
212
|
+
default95 as IconSacoche,
|
|
213
|
+
default96 as IconSchoolbook,
|
|
214
|
+
default97 as IconScolinfo,
|
|
215
|
+
default98 as IconScrapbook,
|
|
216
|
+
default99 as IconSearchengine,
|
|
217
|
+
default100 as IconSettingsClass,
|
|
218
|
+
default101 as IconSharebigfiles,
|
|
219
|
+
default102 as IconStatistics,
|
|
220
|
+
default103 as IconStats,
|
|
221
|
+
default104 as IconSuitcase,
|
|
222
|
+
default105 as IconSupport,
|
|
223
|
+
default106 as IconTimeline,
|
|
224
|
+
default107 as IconTimelinegenerator,
|
|
225
|
+
default108 as IconTurboself,
|
|
226
|
+
default109 as IconUniversalis,
|
|
227
|
+
default110 as IconUnstagepourtous,
|
|
228
|
+
default111 as IconUserbook,
|
|
229
|
+
default112 as IconVideo,
|
|
230
|
+
default113 as IconVieScolaire,
|
|
231
|
+
default114 as IconVisioconf,
|
|
232
|
+
default115 as IconWebclasseur,
|
|
233
|
+
default116 as IconWebsite,
|
|
234
|
+
default117 as IconWiki,
|
|
235
|
+
default118 as IconWorkspace
|
|
234
236
|
};
|