@axa-fr/canopee-react 1.3.1-alpha.19 → 1.3.1-alpha.20

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 (52) hide show
  1. package/dist/client.d.ts +8 -3
  2. package/dist/client.js +5 -1
  3. package/dist/prospect-client/DataAgent/DataAgentApollo.d.ts +1 -0
  4. package/dist/prospect-client/DataAgent/DataAgentLF.d.ts +1 -0
  5. package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxCommon.d.ts +3 -1
  6. package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxCommon.js +2 -2
  7. package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextCommon.d.ts +2 -0
  8. package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextCommon.js +2 -2
  9. package/dist/prospect-client/Form/Dropdown/DropdownCommon.d.ts +2 -0
  10. package/dist/prospect-client/Form/Dropdown/DropdownCommon.js +2 -2
  11. package/dist/prospect-client/Form/FileUpload/InputFile/InputFileCommon.d.ts +2 -0
  12. package/dist/prospect-client/Form/FileUpload/InputFile/InputFileCommon.js +2 -2
  13. package/dist/prospect-client/Form/InputDate/InputDateCommon.d.ts +2 -0
  14. package/dist/prospect-client/Form/InputDate/InputDateCommon.js +2 -2
  15. package/dist/prospect-client/Form/InputPhone/InputPhoneCommon.d.ts +2 -0
  16. package/dist/prospect-client/Form/InputPhone/InputPhoneCommon.js +2 -2
  17. package/dist/prospect-client/Form/InputText/InputTextCommon.d.ts +4 -2
  18. package/dist/prospect-client/Form/InputText/InputTextCommon.js +2 -2
  19. package/dist/prospect-client/Form/Radio/CardRadioGroup/CardRadioGroupCommon.d.ts +3 -1
  20. package/dist/prospect-client/Form/Radio/CardRadioGroup/CardRadioGroupCommon.js +2 -2
  21. package/dist/prospect-client/Form/TextArea/TextAreaCommon.d.ts +2 -0
  22. package/dist/prospect-client/Form/TextArea/TextAreaCommon.js +2 -2
  23. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutApollo.d.ts +21 -0
  24. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutApollo.js +8 -0
  25. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutCommon.d.ts +50 -0
  26. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutCommon.js +37 -0
  27. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutLF.d.ts +21 -0
  28. package/dist/prospect-client/Layout/ExitLayout/ExitLayoutLF.js +8 -0
  29. package/dist/prospect-client/Layout/FormLayout/FormLayout.d.ts +3529 -0
  30. package/dist/prospect-client/Layout/FormLayout/FormLayout.js +79 -0
  31. package/dist/prospect-client/Link/LinkApollo.d.ts +1 -1
  32. package/dist/prospect-client/Link/LinkApollo.js +1 -1
  33. package/dist/prospect-client/Link/LinkCommon.d.ts +1 -2
  34. package/dist/prospect-client/Link/LinkLF.d.ts +1 -1
  35. package/dist/prospect-client/Link/LinkLF.js +1 -1
  36. package/dist/prospect-client/pages/ErrorPage/ErrorPageApollo.d.ts +3 -0
  37. package/dist/prospect-client/pages/ErrorPage/ErrorPageApollo.js +5 -0
  38. package/dist/prospect-client/pages/ErrorPage/ErrorPageCommon.d.ts +12 -0
  39. package/dist/prospect-client/pages/ErrorPage/ErrorPageCommon.js +7 -0
  40. package/dist/prospect-client/pages/ErrorPage/ErrorPageLF.d.ts +3 -0
  41. package/dist/prospect-client/pages/ErrorPage/ErrorPageLF.js +5 -0
  42. package/dist/prospect-client/pages/ValidPage/ValidPageApollo.d.ts +3 -0
  43. package/dist/prospect-client/pages/ValidPage/ValidPageApollo.js +6 -0
  44. package/dist/prospect-client/pages/ValidPage/ValidPageCommon.d.ts +15 -0
  45. package/dist/prospect-client/pages/ValidPage/ValidPageCommon.js +7 -0
  46. package/dist/prospect-client/pages/ValidPage/ValidPageLF.d.ts +3 -0
  47. package/dist/prospect-client/pages/ValidPage/ValidPageLF.js +6 -0
  48. package/dist/prospect-client/utilities/types/GridContainerProps.d.ts +10 -0
  49. package/dist/prospect-client/utilities/types/GridContainerProps.js +1 -0
  50. package/dist/prospect.d.ts +8 -3
  51. package/dist/prospect.js +5 -1
  52. package/package.json +2 -2
@@ -0,0 +1,79 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { Children, isValidElement, } from "react";
3
+ import "@axa-fr/canopee-css/prospect/Layout/FormLayout/FormLayoutAll.css";
4
+ import { getClassName } from "../../utilities/getClassName";
5
+ const Header = ({ children }) => children;
6
+ const Footer = ({ children }) => children;
7
+ const Faq = ({ children }) => children;
8
+ const setDataCols = ({ dataColsMobile, dataColsTablet, dataColsDesktopSmall, dataColsDesktopMedium, dataColsDesktopLarge, }) => {
9
+ return {
10
+ "--cols-mobile": dataColsMobile || undefined,
11
+ "--cols-tablet": dataColsTablet || undefined,
12
+ "--cols-desktop-small": dataColsDesktopSmall || undefined,
13
+ "--cols-desktop-medium": dataColsDesktopMedium || undefined,
14
+ "--cols-desktop-large": dataColsDesktopLarge || undefined,
15
+ };
16
+ };
17
+ const setResponsiveStyle = (childProps) => {
18
+ const { "data-cols-mobile": dataColsMobile, "data-cols-tablet": dataColsTablet, "data-cols-desktop-small": dataColsDesktopSmall, "data-cols-desktop-medium": dataColsDesktopMedium, "data-cols-desktop-large": dataColsDesktopLarge, ...rest } = childProps?.containerProps || childProps;
19
+ if (childProps?.containerProps) {
20
+ return {
21
+ ...childProps,
22
+ ...rest,
23
+ containerProps: {
24
+ style: {
25
+ ...(childProps.containerProps?.style ||
26
+ {}),
27
+ ...setDataCols({
28
+ dataColsMobile,
29
+ dataColsTablet,
30
+ dataColsDesktopSmall,
31
+ dataColsDesktopMedium,
32
+ dataColsDesktopLarge,
33
+ }),
34
+ },
35
+ },
36
+ };
37
+ }
38
+ return {
39
+ ...rest,
40
+ style: {
41
+ ...(rest.style || {}),
42
+ ...setDataCols({
43
+ dataColsMobile,
44
+ dataColsTablet,
45
+ dataColsDesktopSmall,
46
+ dataColsDesktopMedium,
47
+ dataColsDesktopLarge,
48
+ }),
49
+ },
50
+ };
51
+ };
52
+ export const Body = ({ children }) => Children.map(children, function (child) {
53
+ if (isValidElement(child)) {
54
+ const childProps = typeof child.props === "object" && child.props !== null
55
+ ? child.props
56
+ : {};
57
+ const responsiveStyle = setResponsiveStyle(childProps);
58
+ return {
59
+ ...child,
60
+ props: responsiveStyle,
61
+ };
62
+ }
63
+ return child;
64
+ });
65
+ export const FormLayout = ({ children, className, "aria-label": ariaLabel = "Formulaire", ...formProps }) => {
66
+ const childrenArray = Children.toArray(children);
67
+ const header = childrenArray.find((child) => isValidElement(child) && child.type === Header);
68
+ const body = childrenArray.find((child) => isValidElement(child) && child.type === Body);
69
+ const footer = childrenArray.find((child) => isValidElement(child) && child.type === Footer);
70
+ const faq = childrenArray.find((child) => isValidElement(child) && child.type === Faq);
71
+ return (_jsxs(_Fragment, { children: [_jsxs("form", { className: getClassName({
72
+ baseClassName: "af-form-layout",
73
+ className,
74
+ }), "aria-label": ariaLabel, ...formProps, children: [header ? (_jsx("div", { className: "af-form-layout__header subgrid", children: header })) : null, body ? (_jsx("div", { className: "af-form-layout__fields subgrid", children: body })) : null, footer ? (_jsx("div", { className: "af-form-layout__actions subgrid", children: footer })) : null] }), faq ? _jsx("div", { className: "af-form-layout__faq subgrid", children: faq }) : null] }));
75
+ };
76
+ FormLayout.Header = Header;
77
+ FormLayout.Body = Body;
78
+ FormLayout.Footer = Footer;
79
+ FormLayout.Faq = Faq;
@@ -1,2 +1,2 @@
1
1
  import "@axa-fr/canopee-css/prospect/Link/LinkApollo.css";
2
- export { Link, type LinkVariants, linkVariants } from "./LinkCommon";
2
+ export { Link, type LinkVariants, linkVariants, type LinkProps, } from "./LinkCommon";
@@ -1,2 +1,2 @@
1
1
  import "@axa-fr/canopee-css/prospect/Link/LinkApollo.css";
2
- export { Link, linkVariants } from "./LinkCommon";
2
+ export { Link, linkVariants, } from "./LinkCommon";
@@ -3,7 +3,7 @@ export declare const linkVariants: {
3
3
  readonly inverse: "inverse";
4
4
  };
5
5
  export type LinkVariants = keyof typeof linkVariants;
6
- type LinkProps = {
6
+ export type LinkProps = {
7
7
  variant?: LinkVariants;
8
8
  openInNewTab?: boolean;
9
9
  leftIcon?: ReactNode;
@@ -15,4 +15,3 @@ type LinkProps = {
15
15
  classModifier?: string;
16
16
  } & ComponentPropsWithoutRef<"a">;
17
17
  export declare const Link: ({ href, variant, openInNewTab, leftIcon, rightIcon, children, className, classModifier, ...props }: PropsWithChildren<LinkProps>) => import("react/jsx-runtime").JSX.Element;
18
- export {};
@@ -1,2 +1,2 @@
1
1
  import "@axa-fr/canopee-css/client/Link/LinkLF.css";
2
- export { Link, type LinkVariants, linkVariants } from "./LinkCommon";
2
+ export { Link, type LinkVariants, linkVariants, type LinkProps, } from "./LinkCommon";
@@ -1,2 +1,2 @@
1
1
  import "@axa-fr/canopee-css/client/Link/LinkLF.css";
2
- export { Link, linkVariants } from "./LinkCommon";
2
+ export { Link, linkVariants, } from "./LinkCommon";
@@ -0,0 +1,3 @@
1
+ import { type ErrorPageProps } from "./ErrorPageCommon";
2
+ export { type ErrorPageProps } from "./ErrorPageCommon";
3
+ export declare const ErrorPage: (props: ErrorPageProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Link } from "../../Link/LinkApollo";
3
+ import { ExitLayout } from "../../Layout/ExitLayout/ExitLayoutApollo";
4
+ import { ErrorPageCommon } from "./ErrorPageCommon";
5
+ export const ErrorPage = (props) => (_jsx(ErrorPageCommon, { ...props, LinkComponent: Link, ExitLayoutComponent: ExitLayout }));
@@ -0,0 +1,12 @@
1
+ import type { ComponentType, PropsWithChildren } from "react";
2
+ import { type ExitLayoutWithSubComponents, type ExitLayoutProps } from "../../Layout/ExitLayout/ExitLayoutCommon";
3
+ import { type LinkProps } from "../../Link/LinkCommon";
4
+ export type ErrorPageProps = PropsWithChildren & Pick<ExitLayoutProps, "headingProps"> & {
5
+ linkProps?: LinkProps;
6
+ };
7
+ type ErrorPageCommonProps = ErrorPageProps & {
8
+ LinkComponent: ComponentType<LinkProps>;
9
+ ExitLayoutComponent: ExitLayoutWithSubComponents;
10
+ };
11
+ export declare const ErrorPageCommon: ({ headingProps, children, linkProps, LinkComponent, ExitLayoutComponent, }: ErrorPageCommonProps) => import("react/jsx-runtime").JSX.Element;
12
+ export {};
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import close from "@material-symbols/svg-400/rounded/close.svg";
3
+ export const ErrorPageCommon = ({ headingProps, children, linkProps, LinkComponent, ExitLayoutComponent, }) => (_jsxs(ExitLayoutComponent, { headingProps: headingProps, iconProps: {
4
+ src: close,
5
+ hasBackground: true,
6
+ variant: "error",
7
+ }, children: [_jsx(ExitLayoutComponent.Content, { children: children }), linkProps ? (_jsx(ExitLayoutComponent.Action, { children: _jsx(LinkComponent, { className: "af-btn-client", ...linkProps }) })) : null] }));
@@ -0,0 +1,3 @@
1
+ import { type ErrorPageProps } from "./ErrorPageCommon";
2
+ export { type ErrorPageProps } from "./ErrorPageCommon";
3
+ export declare const ErrorPage: (props: ErrorPageProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Link } from "../../Link/LinkLF";
3
+ import { ExitLayout } from "../../Layout/ExitLayout/ExitLayoutLF";
4
+ import { ErrorPageCommon } from "./ErrorPageCommon";
5
+ export const ErrorPage = (props) => (_jsx(ErrorPageCommon, { ...props, LinkComponent: Link, ExitLayoutComponent: ExitLayout }));
@@ -0,0 +1,3 @@
1
+ import { type ValidPageProps } from "./ValidPageCommon";
2
+ export { type ValidPageProps } from "./ValidPageCommon";
3
+ export declare const ValidPage: (props: ValidPageProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { DataAgent } from "../../DataAgent/DataAgentApollo";
3
+ import { Link } from "../../Link/LinkApollo";
4
+ import { ExitLayout } from "../../Layout/ExitLayout/ExitLayoutApollo";
5
+ import { ValidPageCommon } from "./ValidPageCommon";
6
+ export const ValidPage = (props) => (_jsx(ValidPageCommon, { ...props, DataAgentComponent: DataAgent, LinkComponent: Link, ExitLayoutComponent: ExitLayout }));
@@ -0,0 +1,15 @@
1
+ import type { ComponentType, PropsWithChildren } from "react";
2
+ import { type ExitLayoutWithSubComponents, type ExitLayoutProps } from "../../Layout/ExitLayout/ExitLayoutCommon";
3
+ import { type DataAgentProps } from "../../DataAgent/DataAgentCommon";
4
+ import { type LinkProps } from "../../Link/LinkCommon";
5
+ export type ValidPageProps = PropsWithChildren & Pick<ExitLayoutProps, "headingProps"> & {
6
+ dataAgentProps?: DataAgentProps;
7
+ linkProps?: LinkProps;
8
+ };
9
+ type ValidPageCommonProps = ValidPageProps & {
10
+ DataAgentComponent: ComponentType<DataAgentProps>;
11
+ LinkComponent: ComponentType<LinkProps>;
12
+ ExitLayoutComponent: ExitLayoutWithSubComponents;
13
+ };
14
+ export declare const ValidPageCommon: ({ headingProps, children, dataAgentProps, linkProps, DataAgentComponent, LinkComponent, ExitLayoutComponent, }: ValidPageCommonProps) => import("react/jsx-runtime").JSX.Element;
15
+ export {};
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import check from "@material-symbols/svg-400/rounded/check.svg";
3
+ export const ValidPageCommon = ({ headingProps, children, dataAgentProps, linkProps, DataAgentComponent, LinkComponent, ExitLayoutComponent, }) => (_jsxs(ExitLayoutComponent, { headingProps: headingProps, iconProps: {
4
+ src: check,
5
+ hasBackground: true,
6
+ variant: "success",
7
+ }, children: [_jsx(ExitLayoutComponent.Content, { children: children }), dataAgentProps ? (_jsx(ExitLayoutComponent.Agent, { children: _jsx(DataAgentComponent, { ...dataAgentProps }) })) : null, linkProps ? (_jsx(ExitLayoutComponent.Action, { children: _jsx(LinkComponent, { className: "af-btn-client", ...linkProps }) })) : null] }));
@@ -0,0 +1,3 @@
1
+ import { type ValidPageProps } from "./ValidPageCommon";
2
+ export { type ValidPageProps } from "./ValidPageCommon";
3
+ export declare const ValidPage: (props: ValidPageProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { DataAgent } from "../../DataAgent/DataAgentLF";
3
+ import { Link } from "../../Link/LinkLF";
4
+ import { ExitLayout } from "../../Layout/ExitLayout/ExitLayoutLF";
5
+ import { ValidPageCommon } from "./ValidPageCommon";
6
+ export const ValidPage = (props) => (_jsx(ValidPageCommon, { ...props, DataAgentComponent: DataAgent, LinkComponent: Link, ExitLayoutComponent: ExitLayout }));
@@ -0,0 +1,10 @@
1
+ import { ComponentProps, ElementType } from "react";
2
+ type Cols = `${1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12}`;
3
+ export type GridContainerProps<T extends ElementType = "div"> = ComponentProps<T> & {
4
+ "data-cols-mobile"?: Cols;
5
+ "data-cols-tablet"?: Cols;
6
+ "data-cols-desktop-small"?: Cols;
7
+ "data-cols-desktop-medium"?: Cols;
8
+ "data-cols-desktop-large"?: Cols;
9
+ };
10
+ export {};
@@ -12,7 +12,7 @@ export { CardMessage, cardMessageVariants, type CardMessageVariants, } from "./p
12
12
  export { ClickIcon } from "./prospect-client/ClickIcon/ClickIconApollo";
13
13
  export { ContentItemDuoAction, type ContentItemDuoActionState, } from "./prospect-client/ContentItemDuoAction/ContentItemDuoActionApollo";
14
14
  export { ContentItemMono } from "./prospect-client/ContentItemMono/ContentItemMonoApollo";
15
- export { DataAgent } from "./prospect-client/DataAgent/DataAgentApollo";
15
+ export { DataAgent, type DataAgentProps, } from "./prospect-client/DataAgent/DataAgentApollo";
16
16
  export { Divider } from "./prospect-client/Divider/DividerApollo";
17
17
  export { Fieldset, type FieldsetProps, } from "./prospect-client/Fieldset/FieldsetApollo";
18
18
  export { CardCheckbox,
@@ -39,12 +39,12 @@ export { CardRadioOption } from "./prospect-client/Form/Radio/CardRadioOption/Ca
39
39
  export { Radio } from "./prospect-client/Form/Radio/Radio/RadioApollo";
40
40
  export { TextArea } from "./prospect-client/Form/TextArea/TextAreaApollo";
41
41
  export { DebugGrid } from "./prospect-client/Grid/DebugGridApollo";
42
- export { Heading, type HeadingLevel, } from "./prospect-client/Heading/HeadingApollo";
42
+ export { Heading, type HeadingLevel, type HeadingProps, } from "./prospect-client/Heading/HeadingApollo";
43
43
  export { Icon, iconSizeVariants, iconVariants, type IconSizeVariants, type IconVariants, } from "./prospect-client/Icon/IconApollo";
44
44
  export { ItemTabBar, type ItemTabBarProps, } from "./prospect-client/ItemTabBar/ItemTabBarApollo";
45
45
  export { Footer, type FooterProps, } from "./prospect-client/Layout/Footer/FooterApollo";
46
46
  export { LevelSelector, type LevelSelectorProps, } from "./prospect-client/LevelSelector/LevelSelectorApollo";
47
- export { Link, linkVariants, type LinkVariants, } from "./prospect-client/Link/LinkApollo";
47
+ export { Link, linkVariants, type LinkVariants, type LinkProps, } from "./prospect-client/Link/LinkApollo";
48
48
  export { ClickItem, clickItemStates, clickItemVariants, type ClickItemStates, type ClickItemVariants, } from "./prospect-client/List/ClickItem/ClickItemApollo";
49
49
  export { ContentItemDuo } from "./prospect-client/List/ContentItemDuo/ContentItemDuoApollo";
50
50
  export { List, type ListProps } from "./prospect-client/List/List/ListApollo";
@@ -65,3 +65,8 @@ export { TimelineVertical } from "./prospect-client/TimelineVertical/TimelineVer
65
65
  export { Toggle } from "./prospect-client/Toggle/ToggleApollo";
66
66
  export { Table, type TableProps, type HeadColorVariants, type BodyColorVariants, type RowSizeVariants, } from "./prospect-client/Table/TableApollo";
67
67
  export { TableMobileCard } from "./prospect-client/TableMobileCard/TableMobileCard";
68
+ export { ExitLayout, type ExitLayoutWithSubComponents, type ExitLayoutProps, } from "./prospect-client/Layout/ExitLayout/ExitLayoutApollo";
69
+ export { FormLayout, type FormLayoutProps, } from "./prospect-client/Layout/FormLayout/FormLayout";
70
+ export { ValidPage, type ValidPageProps, } from "./prospect-client/pages/ValidPage/ValidPageApollo";
71
+ export { ErrorPage, type ErrorPageProps, } from "./prospect-client/pages/ErrorPage/ErrorPageApollo";
72
+ export type { GridContainerProps } from "./prospect-client/utilities/types/GridContainerProps";
package/dist/prospect.js CHANGED
@@ -12,7 +12,7 @@ export { CardMessage, cardMessageVariants, } from "./prospect-client/CardMessage
12
12
  export { ClickIcon } from "./prospect-client/ClickIcon/ClickIconApollo";
13
13
  export { ContentItemDuoAction, } from "./prospect-client/ContentItemDuoAction/ContentItemDuoActionApollo";
14
14
  export { ContentItemMono } from "./prospect-client/ContentItemMono/ContentItemMonoApollo";
15
- export { DataAgent } from "./prospect-client/DataAgent/DataAgentApollo";
15
+ export { DataAgent, } from "./prospect-client/DataAgent/DataAgentApollo";
16
16
  export { Divider } from "./prospect-client/Divider/DividerApollo";
17
17
  export { Fieldset, } from "./prospect-client/Fieldset/FieldsetApollo";
18
18
  export { CardCheckbox,
@@ -64,3 +64,7 @@ export { TimelineVertical } from "./prospect-client/TimelineVertical/TimelineVer
64
64
  export { Toggle } from "./prospect-client/Toggle/ToggleApollo";
65
65
  export { Table, } from "./prospect-client/Table/TableApollo";
66
66
  export { TableMobileCard } from "./prospect-client/TableMobileCard/TableMobileCard";
67
+ export { ExitLayout, } from "./prospect-client/Layout/ExitLayout/ExitLayoutApollo";
68
+ export { FormLayout, } from "./prospect-client/Layout/FormLayout/FormLayout";
69
+ export { ValidPage, } from "./prospect-client/pages/ValidPage/ValidPageApollo";
70
+ export { ErrorPage, } from "./prospect-client/pages/ErrorPage/ErrorPageApollo";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axa-fr/canopee-react",
3
- "version": "1.3.1-alpha.19",
3
+ "version": "1.3.1-alpha.20",
4
4
  "description": "Package React - Design System Canopée",
5
5
  "exports": {
6
6
  "./distributeur": {
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "homepage": "https://github.com/AxaFrance/design-system#readme",
47
47
  "peerDependencies": {
48
- "@axa-fr/canopee-css": "1.3.1-alpha.19",
48
+ "@axa-fr/canopee-css": "1.3.1-alpha.20",
49
49
  "@material-symbols/svg-400": ">= 0.19.0",
50
50
  "@material-symbols/svg-700": ">= 0.19.0",
51
51
  "react": ">= 18"