@edifice.io/react 2.6.2-develop-enabling.20260807165400 → 2.6.2-develop-b2school.20260807165427

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/components/Alert/Alert.js +1 -1
  2. package/dist/components/DatePicker/DatePicker.d.ts +5 -0
  3. package/dist/components/DatePicker/DatePicker.js +2 -0
  4. package/dist/components/Layout/components/NavLink.d.ts +1 -1
  5. package/dist/components/Layout/components/NavLink.js +0 -2
  6. package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -1
  7. package/dist/hooks/useClickOutside/useClickOutside.js +1 -1
  8. package/dist/icons.js +340 -338
  9. package/dist/modules/homepage/components/Communities/Communities.d.ts +10 -0
  10. package/dist/modules/homepage/components/Communities/CommunitiesContainer.d.ts +9 -0
  11. package/dist/modules/homepage/components/Communities/CommunitiesSkeleton.d.ts +5 -0
  12. package/dist/modules/homepage/components/Communities/CommunityItem.d.ts +11 -0
  13. package/dist/modules/homepage/components/Communities/index.d.ts +8 -0
  14. package/dist/modules/homepage/components/Communities/useCommunities.d.ts +13 -0
  15. package/dist/modules/homepage/components/HomeCard/HomeCard.d.ts +5 -1
  16. package/dist/modules/homepage/components/HomeCard/HomeCard.js +10 -2
  17. package/dist/modules/homepage/components/LastInfos/LastInfosList.js +2 -2
  18. package/dist/modules/homepage/components/Notifications/NotificationList.js +1 -1
  19. package/dist/modules/homepage/components/SchoolSpace/SchoolSpace.js +20 -11
  20. package/dist/modules/homepage/components/UserSpace/UserSpace.js +5 -2
  21. package/dist/modules/homepage/components/UserSpace/hooks/useChildren.d.ts +14 -0
  22. package/dist/modules/homepage/components/UserSpace/hooks/useChildren.js +23 -0
  23. package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.d.ts +8 -0
  24. package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.js +65 -0
  25. package/dist/modules/icons/components/IconClass.d.ts +7 -0
  26. package/dist/modules/icons/components/IconClass.js +13 -0
  27. package/dist/modules/icons/components/index.d.ts +1 -0
  28. package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
  29. package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
  30. package/package.json +6 -6
  31. package/dist/modules/editor/test-utils/createTestEditor.d.ts +0 -10
  32. package/dist/modules/multimedia/testing/mediaHarness.d.ts +0 -154
@@ -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
@@ -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, button, ...restProps }: NavLinkProps<string>): import("react/jsx-runtime").JSX.Element;
24
+ export declare function NavLink({ link, className, children, translate, ...restProps }: NavLinkProps<string>): import("react/jsx-runtime").JSX.Element;
@@ -6,8 +6,6 @@ function NavLink({
6
6
  className,
7
7
  children,
8
8
  translate,
9
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
10
- button,
11
9
  ...restProps
12
10
  }) {
13
11
  const classes = clsx("nav-link", className);
@@ -1 +1 @@
1
- export default function useClickOutside<T extends HTMLElement = any>(handler: () => void, events?: string[] | null, nodes?: Array<HTMLElement | null>): import('react').MutableRefObject<T | null>;
1
+ export default function useClickOutside<T extends HTMLElement = any>(handler: () => void, events?: string[] | null, nodes?: Array<HTMLElement | null>): import('react').MutableRefObject<T | undefined>;
@@ -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(null);
4
+ const ref = useRef();
5
5
  return useEffect(() => {
6
6
  const listener = (event) => {
7
7
  const {