@edifice.io/react 2.6.2 → 2.6.3-develop-enabling.20260825190837
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/Alert/Alert.js +1 -1
- package/dist/components/DatePicker/DatePicker.d.ts +5 -0
- package/dist/components/DatePicker/DatePicker.js +2 -0
- package/dist/components/Layout/Layout.js +5 -3
- package/dist/components/Layout/components/NavLink.d.ts +1 -1
- package/dist/components/Layout/components/NavLink.js +2 -0
- package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -1
- package/dist/hooks/useClickOutside/useClickOutside.js +1 -1
- package/dist/icons-apps.js +112 -100
- package/dist/icons.js +340 -338
- package/dist/modules/editor/test-utils/createTestEditor.d.ts +10 -0
- package/dist/modules/homepage/components/Communities/Communities.d.ts +10 -0
- package/dist/modules/homepage/components/Communities/CommunitiesContainer.d.ts +9 -0
- package/dist/modules/homepage/components/Communities/CommunitiesSkeleton.d.ts +5 -0
- package/dist/modules/homepage/components/Communities/CommunityItem.d.ts +11 -0
- package/dist/modules/homepage/components/Communities/index.d.ts +8 -0
- package/dist/modules/homepage/components/Communities/useCommunities.d.ts +13 -0
- package/dist/modules/homepage/components/Favorites/Favorites.js +7 -4
- package/dist/modules/homepage/components/Header/Header.js +20 -2
- package/dist/modules/homepage/components/HomeCard/HomeCard.d.ts +5 -1
- package/dist/modules/homepage/components/HomeCard/HomeCard.js +10 -2
- package/dist/modules/homepage/components/LastInfos/LastInfosList.js +2 -2
- package/dist/modules/homepage/components/Notifications/NotificationItem.js +5 -4
- package/dist/modules/homepage/components/Notifications/NotificationList.d.ts +7 -1
- package/dist/modules/homepage/components/Notifications/NotificationList.js +10 -3
- package/dist/modules/homepage/components/Notifications/NotificationListContainer.js +4 -1
- package/dist/modules/homepage/components/Notifications/components/CommonNotificationItem.d.ts +2 -1
- package/dist/modules/homepage/components/Notifications/components/CommonNotificationItem.js +14 -10
- package/dist/modules/homepage/components/Notifications/components/NotificationFilterMenu.d.ts +16 -0
- package/dist/modules/homepage/components/Notifications/components/NotificationFilterMenu.js +29 -0
- package/dist/modules/homepage/components/Notifications/components/NotificationFilterModal.d.ts +18 -0
- package/dist/modules/homepage/components/Notifications/components/NotificationFilterModal.js +67 -0
- package/dist/modules/homepage/components/Notifications/components/NotificationItemResource.d.ts +2 -1
- package/dist/modules/homepage/components/Notifications/components/NotificationItemResource.js +3 -2
- package/dist/modules/homepage/components/Notifications/components/NotificationOptionsMenu.d.ts +12 -0
- package/dist/modules/homepage/components/Notifications/components/NotificationOptionsMenu.js +42 -0
- package/dist/modules/homepage/components/Notifications/components/ReportNotificationModal.d.ts +13 -0
- package/dist/modules/homepage/components/Notifications/components/ReportNotificationModal.js +31 -0
- package/dist/modules/homepage/components/Notifications/components/SystemNotificationItem.d.ts +3 -1
- package/dist/modules/homepage/components/Notifications/components/SystemNotificationItem.js +3 -2
- package/dist/modules/homepage/components/Notifications/components/UserNotificationItem.d.ts +3 -1
- package/dist/modules/homepage/components/Notifications/components/UserNotificationItem.js +3 -2
- package/dist/modules/homepage/components/Notifications/components/notificationAdapter.d.ts +22 -7
- package/dist/modules/homepage/components/Notifications/components/notificationAdapter.js +31 -13
- package/dist/modules/homepage/components/Notifications/hooks/useNotificationList.d.ts +11 -1
- package/dist/modules/homepage/components/Notifications/hooks/useNotificationList.js +34 -2
- package/dist/modules/homepage/components/Notifications/services/api/index.d.ts +2 -0
- package/dist/modules/homepage/components/Notifications/services/api/notificationService.d.ts +8 -0
- package/dist/modules/homepage/components/Notifications/services/api/notificationService.js +12 -0
- package/dist/modules/homepage/components/Notifications/services/queries/notification.d.ts +13 -1
- package/dist/modules/homepage/components/Notifications/services/queries/notification.js +41 -4
- package/dist/modules/homepage/components/SchoolSpace/SchoolSpace.js +20 -11
- package/dist/modules/homepage/components/UserSpace/UserSpace.js +5 -2
- package/dist/modules/homepage/components/UserSpace/hooks/useChildren.d.ts +14 -0
- package/dist/modules/homepage/components/UserSpace/hooks/useChildren.js +23 -0
- package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.d.ts +8 -0
- package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.js +65 -0
- package/dist/modules/icons/components/IconClass.d.ts +7 -0
- package/dist/modules/icons/components/IconClass.js +13 -0
- package/dist/modules/icons/components/apps/IconNextcloudDeck.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNextcloudDeck.js +12 -0
- package/dist/modules/icons/components/apps/IconNextcloudFiles.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNextcloudFiles.js +12 -0
- package/dist/modules/icons/components/apps/IconNextcloudForms.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNextcloudForms.js +12 -0
- package/dist/modules/icons/components/apps/IconNextcloudNotes.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNextcloudNotes.js +12 -0
- package/dist/modules/icons/components/apps/IconNextcloudTalk.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconNextcloudTalk.js +12 -0
- package/dist/modules/icons/components/apps/IconPeertube.d.ts +7 -0
- package/dist/modules/icons/components/apps/IconPeertube.js +21 -0
- package/dist/modules/icons/components/apps/index.d.ts +6 -0
- package/dist/modules/icons/components/index.d.ts +1 -0
- package/dist/modules/multimedia/testing/mediaHarness.d.ts +154 -0
- package/package.json +6 -6
- package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +0 -8
- package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +0 -9
|
@@ -64,7 +64,7 @@ const Alert = /* @__PURE__ */ forwardRef(({
|
|
|
64
64
|
}, divContainerClasses = clsx("alert gap-12", mapping[type].classModifier, toastClasses, confirmClasses, position, className);
|
|
65
65
|
return /* @__PURE__ */ jsx(Fragment, { children: isVisible ? /* @__PURE__ */ jsxs("div", { ref: refAlert, className: divContainerClasses, role: "alert", children: [
|
|
66
66
|
!isConfirm && mapping[type].icon,
|
|
67
|
-
/* @__PURE__ */ jsx("div", { className: "alert-content small", children }),
|
|
67
|
+
/* @__PURE__ */ jsx("div", { className: "alert-content small flex-grow-1", children }),
|
|
68
68
|
button && /* @__PURE__ */ jsxs("div", { className: "ms-12", children: [
|
|
69
69
|
button,
|
|
70
70
|
" ",
|
|
@@ -28,6 +28,11 @@ export interface DatePickerProps extends Omit<React.HTMLAttributes<HTMLElement>,
|
|
|
28
28
|
* Maximum selectable date
|
|
29
29
|
*/
|
|
30
30
|
maxDate?: Date;
|
|
31
|
+
/**
|
|
32
|
+
* Disables the input and prevents the calendar popup from opening.
|
|
33
|
+
* @default false
|
|
34
|
+
*/
|
|
35
|
+
disabled?: boolean;
|
|
31
36
|
}
|
|
32
37
|
/**
|
|
33
38
|
* Type for DatePicker ref
|
|
@@ -17,6 +17,7 @@ const DatePicker = /* @__PURE__ */ forwardRef(({
|
|
|
17
17
|
dateFormat = "DD / MM / YYYY",
|
|
18
18
|
minDate,
|
|
19
19
|
maxDate,
|
|
20
|
+
disabled,
|
|
20
21
|
...htmlProps
|
|
21
22
|
}, ref) => {
|
|
22
23
|
const handleChange = (date) => {
|
|
@@ -27,6 +28,7 @@ const DatePicker = /* @__PURE__ */ forwardRef(({
|
|
|
27
28
|
format: dateFormat,
|
|
28
29
|
minDate: minDate ? dayjs(minDate) : void 0,
|
|
29
30
|
maxDate: maxDate ? dayjs(maxDate) : void 0,
|
|
31
|
+
disabled,
|
|
30
32
|
ref,
|
|
31
33
|
// Cast necessary because AntDatePicker expects a specific type, but our API exposes only HTMLElement to avoid dependency on Ant Design-specific features.
|
|
32
34
|
...htmlProps
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx, jsxs
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Suspense, lazy } from "react";
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import { Toaster } from "react-hot-toast";
|
|
@@ -22,7 +22,7 @@ const HeaderV2 = /* @__PURE__ */ lazy(() => import("../../modules/homepage/compo
|
|
|
22
22
|
}) => {
|
|
23
23
|
const {
|
|
24
24
|
theme
|
|
25
|
-
} = useEdificeTheme(), override = useUiOverride("layout.header"), isHeaderV2 = (override == null ? void 0 : override.variant) === "v2", {
|
|
25
|
+
} = useEdificeTheme(), override = useUiOverride("layout.header"), isHeaderV2 = (override == null ? void 0 : override.variant) === "v2", backgroundOverride = useUiOverride("layout.background"), hasBackgroundImage = (backgroundOverride == null ? void 0 : backgroundOverride.variant) === "image", {
|
|
26
26
|
toggleOverlay
|
|
27
27
|
} = useOverlay(), {
|
|
28
28
|
t
|
|
@@ -40,7 +40,9 @@ const HeaderV2 = /* @__PURE__ */ lazy(() => import("../../modules/homepage/compo
|
|
|
40
40
|
}, className), renderHeader = headless ? null : isHeaderV2 ? /* @__PURE__ */ jsx(Suspense, { fallback: null, children: /* @__PURE__ */ jsx(HeaderV2, { src: theme == null ? void 0 : theme.basePath, dataProduct: override == null ? void 0 : override.theme, onNotificationsClick: toggleOverlay }) }) : /* @__PURE__ */ jsx(Header, { is1d: theme == null ? void 0 : theme.is1d, src: theme == null ? void 0 : theme.basePath }), renderNotificationsOverlay = !headless && isHeaderV2 && /* @__PURE__ */ jsx(HeaderNotificationsOverlay, {}), renderCookies = showCookiesConsent && /* @__PURE__ */ jsx(Alert, { type: "info", className: "m-12 rgpd", isConfirm: !0, position: "bottom-right", button: /* @__PURE__ */ jsx(Button, { color: "tertiary", variant: "ghost", onClick: handleConsultCookies, children: t("rgpd.cookies.banner.button.consult") }), onClose: handleCloseCookiesConsent, children: t("rgpd.cookies.banner.text1") }), renderToaster = /* @__PURE__ */ jsx(Toaster, { containerClassName: "toaster-container", toastOptions: {
|
|
41
41
|
position: "top-right"
|
|
42
42
|
} });
|
|
43
|
-
return /* @__PURE__ */ jsxs(
|
|
43
|
+
return /* @__PURE__ */ jsxs("div", { className: clsx("layout", {
|
|
44
|
+
"layout-has-background-image": hasBackgroundImage
|
|
45
|
+
}), "data-product": hasBackgroundImage ? backgroundOverride == null ? void 0 : backgroundOverride.theme : void 0, children: [
|
|
44
46
|
renderHeader,
|
|
45
47
|
renderNotificationsOverlay,
|
|
46
48
|
/* @__PURE__ */ jsx("main", { className: classes, ...restProps, children }),
|
|
@@ -21,4 +21,4 @@ export interface NavLinkProps<T> {
|
|
|
21
21
|
*/
|
|
22
22
|
button?: boolean;
|
|
23
23
|
}
|
|
24
|
-
export declare function NavLink({ link, className, children, translate, ...restProps }: NavLinkProps<string>): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export declare function NavLink({ link, className, children, translate, button, ...restProps }: NavLinkProps<string>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function useClickOutside<T extends HTMLElement = any>(handler: () => void, events?: string[] | null, nodes?: Array<HTMLElement | null>): import('react').MutableRefObject<T |
|
|
1
|
+
export default function useClickOutside<T extends HTMLElement = any>(handler: () => void, events?: string[] | null, nodes?: Array<HTMLElement | null>): import('react').MutableRefObject<T | null>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useRef, useEffect } from "react";
|
|
2
2
|
const DEFAULT_EVENTS = ["mousedown", "touchstart"];
|
|
3
3
|
function useClickOutside(handler, events, nodes) {
|
|
4
|
-
const ref = useRef();
|
|
4
|
+
const ref = useRef(null);
|
|
5
5
|
return useEffect(() => {
|
|
6
6
|
const listener = (event) => {
|
|
7
7
|
const {
|
package/dist/icons-apps.js
CHANGED
|
@@ -75,56 +75,62 @@ import { default as default75 } from "./modules/icons/components/apps/IconMuseef
|
|
|
75
75
|
import { default as default76 } from "./modules/icons/components/apps/IconMyNetwork.js";
|
|
76
76
|
import { default as default77 } from "./modules/icons/components/apps/IconNabook.js";
|
|
77
77
|
import { default as default78 } from "./modules/icons/components/apps/IconNetvibes.js";
|
|
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/
|
|
117
|
-
import { default as default118 } from "./modules/icons/components/apps/
|
|
118
|
-
import { default as default119 } from "./modules/icons/components/apps/
|
|
119
|
-
import { default as default120 } from "./modules/icons/components/apps/
|
|
120
|
-
import { default as default121 } from "./modules/icons/components/apps/
|
|
121
|
-
import { default as default122 } from "./modules/icons/components/apps/
|
|
122
|
-
import { default as default123 } from "./modules/icons/components/apps/
|
|
123
|
-
import { default as default124 } from "./modules/icons/components/apps/
|
|
124
|
-
import { default as default125 } from "./modules/icons/components/apps/
|
|
125
|
-
import { default as default126 } from "./modules/icons/components/apps/
|
|
126
|
-
import { default as default127 } from "./modules/icons/components/apps/
|
|
127
|
-
import { default as default128 } from "./modules/icons/components/apps/
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/apps/IconNextcloudDeck.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/apps/IconNextcloudFiles.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/apps/IconNextcloudForms.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/apps/IconNextcloudNotes.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/apps/IconNextcloudTalk.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/apps/IconNote.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/apps/IconNotebook.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/apps/IconNotes.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/apps/IconOnisep.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/apps/IconOnisep2.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/apps/IconPad.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/apps/IconPages.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/apps/IconParametrage.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/apps/IconParametrages.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/apps/IconParaschool.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/apps/IconParcours.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/apps/IconPearltrees.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/apps/IconPeertube.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/apps/IconPicardieCursus.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/apps/IconPlaceholder.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/apps/IconPoll.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/apps/IconPresences.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/apps/IconProeps.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/apps/IconPronote.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/apps/IconPublic.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/apps/IconQwantJunior.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/apps/IconQwant.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/apps/IconRack.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/apps/IconRbs.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/apps/IconResidenceArtiste.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/apps/IconRessourcesdepartementale91.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/apps/IconSacoche.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/apps/IconSchoolbook.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/apps/IconScolinfo.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/apps/IconScrapbook.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/apps/IconSearchengine.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/apps/IconSettingsClass.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/apps/IconSharebigfiles.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/apps/IconStatistics.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/apps/IconStats.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/apps/IconSuitcase.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/apps/IconSupport.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/apps/IconTimeline.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/apps/IconTimelinegenerator.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/apps/IconTurboself.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/apps/IconUniversalis.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/apps/IconUnstagepourtous.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/apps/IconUserbook.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/apps/IconVideo.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/apps/IconVieScolaire.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/apps/IconVisioconf.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/apps/IconVotil.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/apps/IconWebclasseur.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/apps/IconWebsite.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/apps/IconWiki.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/apps/IconWorkspace.js";
|
|
128
134
|
export {
|
|
129
135
|
default2 as IconAccount,
|
|
130
136
|
default3 as IconActualites,
|
|
@@ -203,54 +209,60 @@ export {
|
|
|
203
209
|
default76 as IconMyNetwork,
|
|
204
210
|
default77 as IconNabook,
|
|
205
211
|
default78 as IconNetvibes,
|
|
206
|
-
default79 as
|
|
207
|
-
default80 as
|
|
208
|
-
default81 as
|
|
209
|
-
default82 as
|
|
210
|
-
default83 as
|
|
211
|
-
default84 as
|
|
212
|
-
default85 as
|
|
213
|
-
default86 as
|
|
214
|
-
default87 as
|
|
215
|
-
default88 as
|
|
216
|
-
default89 as
|
|
217
|
-
default90 as
|
|
218
|
-
default91 as
|
|
219
|
-
default92 as
|
|
220
|
-
default93 as
|
|
221
|
-
default94 as
|
|
222
|
-
default95 as
|
|
223
|
-
default96 as
|
|
224
|
-
default97 as
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
default100 as
|
|
228
|
-
default101 as
|
|
229
|
-
default102 as
|
|
230
|
-
default103 as
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
default106 as
|
|
234
|
-
default107 as
|
|
235
|
-
default108 as
|
|
236
|
-
default109 as
|
|
237
|
-
default110 as
|
|
238
|
-
default111 as
|
|
239
|
-
default112 as
|
|
240
|
-
default113 as
|
|
241
|
-
default114 as
|
|
242
|
-
default115 as
|
|
243
|
-
default116 as
|
|
244
|
-
default117 as
|
|
245
|
-
default118 as
|
|
246
|
-
default119 as
|
|
247
|
-
default120 as
|
|
248
|
-
default121 as
|
|
249
|
-
default122 as
|
|
250
|
-
default123 as
|
|
251
|
-
default124 as
|
|
252
|
-
default125 as
|
|
253
|
-
default126 as
|
|
254
|
-
default127 as
|
|
255
|
-
default128 as
|
|
212
|
+
default79 as IconNextcloudDeck,
|
|
213
|
+
default80 as IconNextcloudFiles,
|
|
214
|
+
default81 as IconNextcloudForms,
|
|
215
|
+
default82 as IconNextcloudNotes,
|
|
216
|
+
default83 as IconNextcloudTalk,
|
|
217
|
+
default84 as IconNote,
|
|
218
|
+
default85 as IconNotebook,
|
|
219
|
+
default86 as IconNotes,
|
|
220
|
+
default87 as IconOnisep,
|
|
221
|
+
default88 as IconOnisep2,
|
|
222
|
+
default89 as IconPad,
|
|
223
|
+
default90 as IconPages,
|
|
224
|
+
default91 as IconParametrage,
|
|
225
|
+
default92 as IconParametrages,
|
|
226
|
+
default93 as IconParaschool,
|
|
227
|
+
default94 as IconParcours,
|
|
228
|
+
default95 as IconPearltrees,
|
|
229
|
+
default96 as IconPeertube,
|
|
230
|
+
default97 as IconPicardieCursus,
|
|
231
|
+
default98 as IconPlaceholder,
|
|
232
|
+
default99 as IconPoll,
|
|
233
|
+
default100 as IconPresences,
|
|
234
|
+
default101 as IconProeps,
|
|
235
|
+
default102 as IconPronote,
|
|
236
|
+
default103 as IconPublic,
|
|
237
|
+
default105 as IconQwant,
|
|
238
|
+
default104 as IconQwantJunior,
|
|
239
|
+
default106 as IconRack,
|
|
240
|
+
default107 as IconRbs,
|
|
241
|
+
default108 as IconResidenceArtiste,
|
|
242
|
+
default109 as IconRessourcesdepartementale91,
|
|
243
|
+
default110 as IconSacoche,
|
|
244
|
+
default111 as IconSchoolbook,
|
|
245
|
+
default112 as IconScolinfo,
|
|
246
|
+
default113 as IconScrapbook,
|
|
247
|
+
default114 as IconSearchengine,
|
|
248
|
+
default115 as IconSettingsClass,
|
|
249
|
+
default116 as IconSharebigfiles,
|
|
250
|
+
default117 as IconStatistics,
|
|
251
|
+
default118 as IconStats,
|
|
252
|
+
default119 as IconSuitcase,
|
|
253
|
+
default120 as IconSupport,
|
|
254
|
+
default121 as IconTimeline,
|
|
255
|
+
default122 as IconTimelinegenerator,
|
|
256
|
+
default123 as IconTurboself,
|
|
257
|
+
default124 as IconUniversalis,
|
|
258
|
+
default125 as IconUnstagepourtous,
|
|
259
|
+
default126 as IconUserbook,
|
|
260
|
+
default127 as IconVideo,
|
|
261
|
+
default128 as IconVieScolaire,
|
|
262
|
+
default129 as IconVisioconf,
|
|
263
|
+
default130 as IconVotil,
|
|
264
|
+
default131 as IconWebclasseur,
|
|
265
|
+
default132 as IconWebsite,
|
|
266
|
+
default133 as IconWiki,
|
|
267
|
+
default134 as IconWorkspace
|
|
256
268
|
};
|