@edifice.io/react 2.2.1 → 2.2.2-develop-b2school.20250404111401
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/Combobox/Combobox.d.ts +54 -4
- package/dist/components/Combobox/Combobox.js +12 -6
- package/dist/components/Combobox/ComboboxTrigger.d.ts +30 -2
- package/dist/components/Combobox/ComboboxTrigger.js +25 -8
- package/dist/components/Dropdown/Dropdown.d.ts +6 -2
- package/dist/components/Dropdown/Dropdown.js +4 -3
- package/dist/components/Dropdown/DropdownItem.d.ts +5 -1
- package/dist/components/Dropdown/DropdownItem.js +4 -1
- package/dist/components/Dropdown/DropdownTrigger.js +5 -1
- 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 +9 -1
- package/dist/components/List/List.js +9 -9
- package/dist/components/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.js +3 -1
- package/dist/editor.js +24 -20
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useCheckable/useCheckable.js +10 -3
- package/dist/hooks/useConversation/useConversation.d.ts +1 -1
- package/dist/hooks/useConversation/useConversation.js +13 -17
- package/dist/hooks/useDropdown/useDropdown.d.ts +1 -1
- package/dist/hooks/useDropdown/useDropdown.js +3 -3
- package/dist/hooks/useWorkspaceFolders/index.d.ts +1 -0
- package/dist/hooks/useWorkspaceFolders/useWorkspaceFolders.d.ts +13 -0
- package/dist/hooks/useWorkspaceFolders/useWorkspaceFolders.js +37 -0
- package/dist/icons-apps.js +102 -100
- package/dist/icons.js +226 -210
- package/dist/index.js +26 -20
- package/dist/modals.js +18 -14
- package/dist/modules/editor/components/Editor/Editor.d.ts +3 -1
- package/dist/modules/editor/components/Editor/Editor.js +3 -2
- package/dist/modules/editor/components/NodeView/ConversationHistoryNodeView.d.ts +2 -0
- package/dist/modules/editor/components/NodeView/ConversationHistoryNodeView.js +10 -0
- package/dist/modules/editor/components/NodeView/index.d.ts +2 -1
- package/dist/modules/editor/components/Renderer/ConversationHistoryRenderer.d.ts +8 -0
- package/dist/modules/editor/components/Renderer/ConversationHistoryRenderer.js +28 -0
- package/dist/modules/editor/components/Renderer/index.d.ts +2 -1
- package/dist/modules/editor/hooks/useTipTapEditor.d.ts +6 -2
- package/dist/modules/editor/hooks/useTipTapEditor.js +2 -2
- package/dist/modules/icons/components/IconFolderAdd.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderAdd.js +13 -0
- package/dist/modules/icons/components/IconFolderDelete.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderDelete.js +12 -0
- package/dist/modules/icons/components/IconGroupAvatar.d.ts +7 -0
- package/dist/modules/icons/components/IconGroupAvatar.js +12 -0
- package/dist/modules/icons/components/IconMailRecall.d.ts +7 -0
- package/dist/modules/icons/components/IconMailRecall.js +13 -0
- package/dist/modules/icons/components/IconQuestionMark.d.ts +7 -0
- package/dist/modules/icons/components/IconQuestionMark.js +13 -0
- package/dist/modules/icons/components/IconReadMail.d.ts +7 -0
- package/dist/modules/icons/components/IconReadMail.js +16 -0
- package/dist/modules/icons/components/IconUndoAll.d.ts +7 -0
- package/dist/modules/icons/components/IconUndoAll.js +14 -0
- package/dist/modules/icons/components/IconUnreadMail.d.ts +7 -0
- package/dist/modules/icons/components/IconUnreadMail.js +16 -0
- 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 +8 -0
- package/dist/modules/modals/AddAttachmentToWorkspaceModal/AddAttachmentToWorkspaceModal.d.ts +20 -0
- package/dist/modules/modals/AddAttachmentToWorkspaceModal/AddAttachmentToWorkspaceModal.js +31 -0
- package/dist/modules/modals/AddAttachmentToWorkspaceModal/components/WorkspaceFoldersTree.d.ts +5 -0
- package/dist/modules/modals/AddAttachmentToWorkspaceModal/components/WorkspaceFoldersTree.js +20 -0
- package/dist/modules/modals/AddAttachmentToWorkspaceModal/index.d.ts +1 -0
- package/dist/modules/modals/ConfirmModal/ConfirmModal.d.ts +42 -0
- package/dist/modules/modals/ConfirmModal/ConfirmModal.js +36 -0
- package/dist/modules/modals/ConfirmModal/index.d.ts +1 -0
- package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +2 -2
- package/dist/modules/modals/index.d.ts +2 -0
- package/package.json +6 -6
|
@@ -28,5 +28,5 @@ export interface UseDropdownProps {
|
|
|
28
28
|
itemProps: Record<string, any>;
|
|
29
29
|
setVisible: Dispatch<SetStateAction<boolean>>;
|
|
30
30
|
}
|
|
31
|
-
declare const useDropdown: (placement: Placement | undefined, extraTriggerKeyDownHandler?: (event: React.KeyboardEvent<HTMLButtonElement>) => void, isTriggerHovered?: boolean) => UseDropdownProps;
|
|
31
|
+
declare const useDropdown: (placement: Placement | undefined, extraTriggerKeyDownHandler?: (event: React.KeyboardEvent<HTMLButtonElement>) => void, isTriggerHovered?: boolean, focusOnVisible?: boolean) => UseDropdownProps;
|
|
32
32
|
export default useDropdown;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useId, useState, useRef, useEffect, useCallback } from "react";
|
|
2
2
|
import { useFloating, offset, size, flip, autoUpdate, useHover, safePolygon } from "@floating-ui/react";
|
|
3
3
|
import { mergeRefs } from "../../utilities/refs/ref.js";
|
|
4
|
-
const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !1) => {
|
|
4
|
+
const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !1, focusOnVisible = !0) => {
|
|
5
5
|
const id = useId(), [visible, setVisible] = useState(!1), [activeIndex, setActiveIndex] = useState(-1), [isFocused, setIsFocused] = useState(null), {
|
|
6
6
|
refs,
|
|
7
7
|
floatingStyles,
|
|
@@ -11,7 +11,7 @@ const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !
|
|
|
11
11
|
open: visible,
|
|
12
12
|
onOpenChange: setVisible,
|
|
13
13
|
whileElementsMounted: autoUpdate,
|
|
14
|
-
middleware: [offset(
|
|
14
|
+
middleware: [offset(0), size({
|
|
15
15
|
apply({
|
|
16
16
|
rects,
|
|
17
17
|
elements
|
|
@@ -32,7 +32,7 @@ const useDropdown = (placement, extraTriggerKeyDownHandler, isTriggerHovered = !
|
|
|
32
32
|
});
|
|
33
33
|
const menuRef = useRef(null), triggerRef = useRef(null), itemRefs = useRef({});
|
|
34
34
|
useEffect(() => {
|
|
35
|
-
visible ? menuRef.current && (menuRef.current.focus(), setActiveIndex(0)) : (setActiveIndex(-1), itemRefs.current = {});
|
|
35
|
+
visible ? menuRef.current && (menuRef.current.focus(), focusOnVisible && setActiveIndex(0)) : (setActiveIndex(-1), itemRefs.current = {});
|
|
36
36
|
}, [visible]), useEffect(() => {
|
|
37
37
|
if (activeIndex !== -1) {
|
|
38
38
|
const currentItem = Object.values(itemRefs.current)[activeIndex];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useWorkspaceFolders } from './useWorkspaceFolders';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface FolderTreeNode {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
children?: FolderTreeNode[];
|
|
5
|
+
}
|
|
6
|
+
declare function useWorkspaceFolders(): {
|
|
7
|
+
folderTree: {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
children: FolderTreeNode[];
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
export default useWorkspaceFolders;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { odeServices } from "@edifice.io/client";
|
|
2
|
+
import { useQuery } from "@tanstack/react-query";
|
|
3
|
+
import { useMemo } from "react";
|
|
4
|
+
import { useTranslation } from "react-i18next";
|
|
5
|
+
function useWorkspaceFolders() {
|
|
6
|
+
const {
|
|
7
|
+
t
|
|
8
|
+
} = useTranslation(), {
|
|
9
|
+
data: folderData
|
|
10
|
+
} = useQuery({
|
|
11
|
+
queryKey: ["workspace-folders"],
|
|
12
|
+
queryFn: () => odeServices.workspace().listFolder("owner", !0)
|
|
13
|
+
});
|
|
14
|
+
return {
|
|
15
|
+
folderTree: useMemo(() => {
|
|
16
|
+
const buildWorkspaceTree = (data) => [{
|
|
17
|
+
id: "my-documents",
|
|
18
|
+
name: t("workspace.myDocuments"),
|
|
19
|
+
children: data
|
|
20
|
+
}];
|
|
21
|
+
if (!folderData) return buildWorkspaceTree([]);
|
|
22
|
+
const nodes = /* @__PURE__ */ new Map(), tree = [];
|
|
23
|
+
return folderData.forEach((item) => {
|
|
24
|
+
nodes.set(item._id, {
|
|
25
|
+
id: item._id,
|
|
26
|
+
name: item.name,
|
|
27
|
+
children: []
|
|
28
|
+
});
|
|
29
|
+
}), folderData.forEach((item) => {
|
|
30
|
+
item.eParent && nodes.has(item.eParent) ? nodes.get(item.eParent).children.push(nodes.get(item._id)) : tree.push(nodes.get(item._id));
|
|
31
|
+
}), buildWorkspaceTree(tree);
|
|
32
|
+
}, [folderData])
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export {
|
|
36
|
+
useWorkspaceFolders as default
|
|
37
|
+
};
|
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
|
};
|