@axa-fr/design-system-apollo-react 1.0.5-alpha.264 → 1.0.5-alpha.265
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/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardApollo.js +2 -2
- package/dist/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardCommon.d.ts +1 -1
- package/dist/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardCommon.js +2 -2
- package/dist/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardLF.js +2 -2
- package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextApollo.js +2 -2
- package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextCommon.d.ts +2 -2
- package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextLF.js +2 -2
- package/dist/Form/DateInput/DateInputApollo.d.ts +1 -1
- package/dist/Form/DateInput/DateInputLF.d.ts +1 -1
- package/dist/Form/Select/SelectApollo.d.ts +1 -1
- package/dist/Form/Select/SelectLF.d.ts +1 -1
- package/dist/Form/TextArea/TextAreaApollo.d.ts +1 -1
- package/dist/Form/TextArea/TextAreaLF.d.ts +1 -1
- package/dist/Form/TextInput/TextInputApollo.d.ts +1 -1
- package/dist/Form/TextInput/TextInputLF.d.ts +1 -1
- package/dist/Grid/DebugGridApollo.js +1 -1
- package/dist/Grid/DebugGridLF.js +1 -1
- package/dist/index.d.ts +22 -22
- package/dist/index.js +22 -22
- package/dist/indexLF.d.ts +21 -21
- package/dist/indexLF.js +21 -21
- package/package.json +3 -3
- /package/dist/Form/{checkbox/checkbox → Checkbox/Checkbox}/CheckboxApollo.d.ts +0 -0
- /package/dist/Form/{checkbox/checkbox → Checkbox/Checkbox}/CheckboxApollo.js +0 -0
- /package/dist/Form/{checkbox/checkbox → Checkbox/Checkbox}/CheckboxCommon.d.ts +0 -0
- /package/dist/Form/{checkbox/checkbox → Checkbox/Checkbox}/CheckboxCommon.js +0 -0
- /package/dist/Form/{checkbox/checkbox/CheckboxLf.d.ts → Checkbox/Checkbox/CheckboxLF.d.ts} +0 -0
- /package/dist/Form/{checkbox/checkbox/CheckboxLf.js → Checkbox/Checkbox/CheckboxLF.js} +0 -0
- /package/dist/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardApollo.d.ts +0 -0
- /package/dist/Form/{checkbox/checkboxCard → Checkbox/CheckboxCard}/CheckboxCardLF.d.ts +0 -0
- /package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextApollo.d.ts +0 -0
- /package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextCommon.js +0 -0
- /package/dist/Form/{checkbox/checkboxText → Checkbox/CheckboxText}/CheckboxTextLF.d.ts +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Form/Checkbox/CheckboxCard/CheckboxCardApollo.scss";
|
|
3
|
-
import { CheckboxCardCommon } from "./CheckboxCardCommon";
|
|
4
|
-
import { Checkbox } from "../checkbox/CheckboxApollo";
|
|
5
3
|
import { Icon } from "../../../Icon/IconApollo";
|
|
4
|
+
import { Checkbox } from "../Checkbox/CheckboxApollo";
|
|
5
|
+
import { CheckboxCardCommon } from "./CheckboxCardCommon";
|
|
6
6
|
export const CheckboxCard = (props) => (_jsx(CheckboxCardCommon, { ...props, IconComponent: Icon, CheckboxComponent: Checkbox }));
|
|
7
7
|
CheckboxCard.displayName = "CheckboxCard";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { type ComponentProps, ComponentPropsWithRef, type ComponentType, type ReactNode } from "react";
|
|
2
|
-
import { CheckboxProps } from "../checkbox/CheckboxCommon";
|
|
3
2
|
import { Icon } from "../../../Icon/IconCommon";
|
|
3
|
+
import { CheckboxProps } from "../Checkbox/CheckboxCommon";
|
|
4
4
|
type CheckboxComponent = {
|
|
5
5
|
CheckboxComponent: ComponentType<CheckboxProps>;
|
|
6
6
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useId, } from "react";
|
|
3
|
+
import { BREAKPOINT } from "../../../utilities/constants";
|
|
3
4
|
import { getComponentClassName } from "../../../utilities/getComponentClassName";
|
|
4
5
|
import { useIsSmallScreen } from "../../../utilities/hook/useIsSmallScreen";
|
|
5
|
-
import { BREAKPOINT } from "../../../utilities/constants";
|
|
6
6
|
const CheckboxCardCommon = ({ className, labelGroup, descriptionGroup, CheckboxComponent, IconComponent, isRequired, options, onChange, type = "vertical", }) => {
|
|
7
7
|
const componentClassName = getComponentClassName("af-checkbox-card__container", className);
|
|
8
|
-
const checkboxGroupClassName = getComponentClassName(
|
|
8
|
+
const checkboxGroupClassName = getComponentClassName("af-checkbox-card-group", className, type);
|
|
9
9
|
const optionId = useId();
|
|
10
10
|
const errorId = useId();
|
|
11
11
|
const isMobile = useIsSmallScreen(BREAKPOINT.SM);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Form/Checkbox/CheckboxCard/CheckboxCardLF.scss";
|
|
3
|
-
import { CheckboxCardCommon } from "./CheckboxCardCommon";
|
|
4
|
-
import { Checkbox } from "../checkbox/CheckboxLf";
|
|
5
3
|
import { Icon } from "../../../Icon/IconLF";
|
|
4
|
+
import { Checkbox } from "../Checkbox/CheckboxLF";
|
|
5
|
+
import { CheckboxCardCommon } from "./CheckboxCardCommon";
|
|
6
6
|
export const CheckboxCard = (props) => (_jsx(CheckboxCardCommon, { ...props, IconComponent: Icon, CheckboxComponent: Checkbox }));
|
|
7
7
|
CheckboxCard.displayName = "CheckboxCard";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Form/Checkbox/CheckboxText/CheckboxTextApollo.scss";
|
|
3
|
-
import { CheckboxTextCommon } from "./CheckboxTextCommon";
|
|
4
|
-
import { Checkbox } from "../checkbox/CheckboxApollo";
|
|
5
3
|
import { ItemMessage } from "../../ItemMessage/ItemMessageApollo";
|
|
4
|
+
import { Checkbox } from "../Checkbox/CheckboxApollo";
|
|
5
|
+
import { CheckboxTextCommon } from "./CheckboxTextCommon";
|
|
6
6
|
export const CheckboxText = (props) => (_jsx(CheckboxTextCommon, { ...props, CheckboxComponent: Checkbox, ItemMessageComponent: ItemMessage }));
|
|
7
7
|
CheckboxText.displayName = "CheckboxText";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React, { ReactNode, type
|
|
2
|
-
import { CheckboxProps } from "../checkbox/CheckboxCommon";
|
|
1
|
+
import React, { ReactNode, type ComponentProps, type ComponentType } from "react";
|
|
3
2
|
import { ItemMessage } from "../../ItemMessage/ItemMessageCommon";
|
|
3
|
+
import { CheckboxProps } from "../Checkbox/CheckboxCommon";
|
|
4
4
|
type CheckboxComponent = {
|
|
5
5
|
CheckboxComponent: ComponentType<CheckboxProps>;
|
|
6
6
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Form/Checkbox/CheckboxText/CheckboxTextLF.scss";
|
|
3
|
-
import { CheckboxTextCommon } from "./CheckboxTextCommon";
|
|
4
|
-
import { Checkbox } from "../checkbox/CheckboxLf";
|
|
5
3
|
import { ItemMessage } from "../../ItemMessage/ItemMessageLF";
|
|
4
|
+
import { Checkbox } from "../Checkbox/CheckboxLF";
|
|
5
|
+
import { CheckboxTextCommon } from "./CheckboxTextCommon";
|
|
6
6
|
export const CheckboxText = (props) => (_jsx(CheckboxTextCommon, { ...props, CheckboxComponent: Checkbox, ItemMessageComponent: ItemMessage }));
|
|
7
7
|
CheckboxText.displayName = "CheckboxText";
|
|
@@ -23,4 +23,4 @@ export declare const DateInput: import("react").ForwardRefExoticComponent<Omit<O
|
|
|
23
23
|
buttonLabel?: string;
|
|
24
24
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
25
25
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
26
|
-
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "
|
|
26
|
+
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -23,4 +23,4 @@ export declare const DateInput: import("react").ForwardRefExoticComponent<Omit<O
|
|
|
23
23
|
buttonLabel?: string;
|
|
24
24
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
25
25
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
26
|
-
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "
|
|
26
|
+
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -24,4 +24,4 @@ export declare const Select: import("react").ForwardRefExoticComponent<Omit<Omit
|
|
|
24
24
|
buttonLabel?: string;
|
|
25
25
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
26
26
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
27
|
-
}>, "ref"> & import("react").RefAttributes<HTMLSelectElement>, "
|
|
27
|
+
}>, "ref"> & import("react").RefAttributes<HTMLSelectElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
|
|
@@ -24,4 +24,4 @@ export declare const Select: import("react").ForwardRefExoticComponent<Omit<Omit
|
|
|
24
24
|
buttonLabel?: string;
|
|
25
25
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
26
26
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
27
|
-
}>, "ref"> & import("react").RefAttributes<HTMLSelectElement>, "
|
|
27
|
+
}>, "ref"> & import("react").RefAttributes<HTMLSelectElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
|
|
@@ -23,4 +23,4 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<Om
|
|
|
23
23
|
message?: string;
|
|
24
24
|
id?: string;
|
|
25
25
|
messageType?: "error" | "success";
|
|
26
|
-
}>, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>, "
|
|
26
|
+
}>, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -23,4 +23,4 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<Om
|
|
|
23
23
|
message?: string;
|
|
24
24
|
id?: string;
|
|
25
25
|
messageType?: "error" | "success";
|
|
26
|
-
}>, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>, "
|
|
26
|
+
}>, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -21,4 +21,4 @@ export declare const TextInput: import("react").ForwardRefExoticComponent<Omit<O
|
|
|
21
21
|
buttonLabel?: string;
|
|
22
22
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
23
23
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
24
|
-
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "
|
|
24
|
+
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -21,4 +21,4 @@ export declare const TextInput: import("react").ForwardRefExoticComponent<Omit<O
|
|
|
21
21
|
buttonLabel?: string;
|
|
22
22
|
onButtonClick?: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
23
23
|
ButtonComponent: import("react").ComponentType<ComponentProps<typeof import("../..").Button>>;
|
|
24
|
-
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "
|
|
24
|
+
}>, "ref"> & import("react").RefAttributes<HTMLInputElement>, "ItemMessageComponent" | "ItemLabelComponent">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Grid/DebugGrid.scss";
|
|
3
3
|
import { useState } from "react";
|
|
4
|
-
import { CheckboxCard } from "../Form/
|
|
4
|
+
import { CheckboxCard } from "../Form/Checkbox/CheckboxCard/CheckboxCardApollo";
|
|
5
5
|
import { DebugGridCommon } from "./DebugGridCommon";
|
|
6
6
|
export const DebugGrid = ({ cols = 12, isCheckedByDefault = false, }) => {
|
|
7
7
|
const [checked, setChecked] = useState(isCheckedByDefault);
|
package/dist/Grid/DebugGridLF.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import "@axa-fr/design-system-apollo-css/dist/Grid/DebugGrid.scss";
|
|
3
3
|
import { useState } from "react";
|
|
4
|
-
import { CheckboxCard } from "../Form/
|
|
4
|
+
import { CheckboxCard } from "../Form/Checkbox/CheckboxCard/CheckboxCardLF";
|
|
5
5
|
import { DebugGridCommon } from "./DebugGridCommon";
|
|
6
6
|
export const DebugGrid = ({ cols = 12, isCheckedByDefault = false, }) => {
|
|
7
7
|
const [checked, setChecked] = useState(isCheckedByDefault);
|
package/dist/index.d.ts
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import "@axa-fr/design-system-apollo-css/dist/common/tokens.scss";
|
|
2
1
|
import "@axa-fr/design-system-apollo-css/dist/common/reboot.scss";
|
|
2
|
+
import "@axa-fr/design-system-apollo-css/dist/common/tokens.scss";
|
|
3
3
|
import "@axa-fr/design-system-apollo-css/dist/Grid/Grid.scss";
|
|
4
4
|
import "@fontsource/source-sans-pro";
|
|
5
|
+
export { BasePicture } from "./BasePicture/BasePictureApollo";
|
|
5
6
|
export { Button, buttonVariants, type ButtonVariants, } from "./Button/ButtonApollo";
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
7
|
+
export { CardMessage, cardMessageVariants, type CardMessageVariants, } from "./CardMessage/CardMessageApollo";
|
|
8
|
+
export { ClickIcon } from "./ClickIcon/ClickIconApollo";
|
|
9
|
+
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoApollo";
|
|
10
|
+
export { Divider } from "./Divider/DividerApollo";
|
|
11
|
+
export { Checkbox } from "./Form/Checkbox/Checkbox/CheckboxApollo";
|
|
12
|
+
export { CheckboxCard } from "./Form/Checkbox/CheckboxCard/CheckboxCardApollo";
|
|
13
|
+
export { CheckboxText } from "./Form/Checkbox/CheckboxText/CheckboxTextApollo";
|
|
14
|
+
export { DateInput } from "./Form/DateInput/DateInputApollo";
|
|
12
15
|
export { ItemLabel } from "./Form/ItemLabel/ItemLabelApollo";
|
|
13
|
-
export {
|
|
16
|
+
export { ItemMessage } from "./Form/ItemMessage/ItemMessageApollo";
|
|
14
17
|
export { Select } from "./Form/Select/SelectApollo";
|
|
18
|
+
export { TextArea } from "./Form/TextArea/TextAreaApollo";
|
|
15
19
|
export { TextInput } from "./Form/TextInput/TextInputApollo";
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export { Message, messageVariants, type MessageVariants, } from "./Message/MessageApollo";
|
|
22
|
-
export { CardMessage, cardMessageVariants, type CardMessageVariants, } from "./CardMessage/CardMessageApollo";
|
|
20
|
+
export { DebugGrid } from "./Grid/DebugGridApollo";
|
|
21
|
+
export { Heading, type HeadingLevel } from "./Heading/HeadingApollo";
|
|
22
|
+
export { Icon, iconSizeVariants, iconVariants, type IconSizeVariants, type IconVariants, } from "./Icon/IconApollo";
|
|
23
|
+
export { ItemTabBar, itemTabBarVariants, type ItemTabBarVariants, } from "./ItemTabBar/ItemTabBarApollo";
|
|
24
|
+
export { Link, linkVariants, type LinkVariants } from "./Link/LinkApollo";
|
|
23
25
|
export { ContentItemDuo } from "./List/ContentItemDuo/ContentItemDuoApollo";
|
|
26
|
+
export { Message, messageVariants, type MessageVariants, } from "./Message/MessageApollo";
|
|
24
27
|
export { ProgressBar } from "./ProgressBar/ProgressBarApollo";
|
|
25
28
|
export { ProgressBarGroup } from "./ProgressBarGroup/ProgressBarGroupApollo";
|
|
29
|
+
export { Spinner, spinnerVariants, type SpinnerVariants, } from "./Spinner/SpinnerApollo";
|
|
26
30
|
export { Stepper } from "./Stepper/StepperApollo";
|
|
27
|
-
export {
|
|
31
|
+
export { Svg } from "./Svg/Svg";
|
|
32
|
+
export { Tag, tagVariants, type TagVariants } from "./Tag/TagApollo";
|
|
28
33
|
export { TimelineVertical } from "./TimelineVertical/TimelineVerticalApollo";
|
|
29
|
-
export {
|
|
30
|
-
export { Heading, type HeadingLevel } from "./Heading/HeadingApollo";
|
|
31
|
-
export { Checkbox } from "./Form/checkbox/checkbox/CheckboxApollo";
|
|
32
|
-
export { CheckboxText } from "./Form/checkbox/checkboxText/CheckboxTextApollo";
|
|
33
|
-
export { CheckboxCard } from "./Form/checkbox/checkboxCard/CheckboxCardApollo";
|
|
34
|
-
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoApollo";
|
|
34
|
+
export { Toggle } from "./Toggle/ToggleApollo";
|
package/dist/index.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import "@axa-fr/design-system-apollo-css/dist/common/tokens.scss";
|
|
2
1
|
import "@axa-fr/design-system-apollo-css/dist/common/reboot.scss";
|
|
2
|
+
import "@axa-fr/design-system-apollo-css/dist/common/tokens.scss";
|
|
3
3
|
import "@axa-fr/design-system-apollo-css/dist/Grid/Grid.scss";
|
|
4
4
|
import "@fontsource/source-sans-pro";
|
|
5
|
+
export { BasePicture } from "./BasePicture/BasePictureApollo";
|
|
5
6
|
export { Button, buttonVariants, } from "./Button/ButtonApollo";
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
7
|
+
export { CardMessage, cardMessageVariants, } from "./CardMessage/CardMessageApollo";
|
|
8
|
+
export { ClickIcon } from "./ClickIcon/ClickIconApollo";
|
|
9
|
+
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoApollo";
|
|
10
|
+
export { Divider } from "./Divider/DividerApollo";
|
|
11
|
+
export { Checkbox } from "./Form/Checkbox/Checkbox/CheckboxApollo";
|
|
12
|
+
export { CheckboxCard } from "./Form/Checkbox/CheckboxCard/CheckboxCardApollo";
|
|
13
|
+
export { CheckboxText } from "./Form/Checkbox/CheckboxText/CheckboxTextApollo";
|
|
14
|
+
export { DateInput } from "./Form/DateInput/DateInputApollo";
|
|
12
15
|
export { ItemLabel } from "./Form/ItemLabel/ItemLabelApollo";
|
|
13
|
-
export {
|
|
16
|
+
export { ItemMessage } from "./Form/ItemMessage/ItemMessageApollo";
|
|
14
17
|
export { Select } from "./Form/Select/SelectApollo";
|
|
18
|
+
export { TextArea } from "./Form/TextArea/TextAreaApollo";
|
|
15
19
|
export { TextInput } from "./Form/TextInput/TextInputApollo";
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export { Message, messageVariants, } from "./Message/MessageApollo";
|
|
22
|
-
export { CardMessage, cardMessageVariants, } from "./CardMessage/CardMessageApollo";
|
|
20
|
+
export { DebugGrid } from "./Grid/DebugGridApollo";
|
|
21
|
+
export { Heading } from "./Heading/HeadingApollo";
|
|
22
|
+
export { Icon, iconSizeVariants, iconVariants, } from "./Icon/IconApollo";
|
|
23
|
+
export { ItemTabBar, itemTabBarVariants, } from "./ItemTabBar/ItemTabBarApollo";
|
|
24
|
+
export { Link, linkVariants } from "./Link/LinkApollo";
|
|
23
25
|
export { ContentItemDuo } from "./List/ContentItemDuo/ContentItemDuoApollo";
|
|
26
|
+
export { Message, messageVariants, } from "./Message/MessageApollo";
|
|
24
27
|
export { ProgressBar } from "./ProgressBar/ProgressBarApollo";
|
|
25
28
|
export { ProgressBarGroup } from "./ProgressBarGroup/ProgressBarGroupApollo";
|
|
29
|
+
export { Spinner, spinnerVariants, } from "./Spinner/SpinnerApollo";
|
|
26
30
|
export { Stepper } from "./Stepper/StepperApollo";
|
|
27
|
-
export {
|
|
31
|
+
export { Svg } from "./Svg/Svg";
|
|
32
|
+
export { Tag, tagVariants } from "./Tag/TagApollo";
|
|
28
33
|
export { TimelineVertical } from "./TimelineVertical/TimelineVerticalApollo";
|
|
29
|
-
export {
|
|
30
|
-
export { Heading } from "./Heading/HeadingApollo";
|
|
31
|
-
export { Checkbox } from "./Form/checkbox/checkbox/CheckboxApollo";
|
|
32
|
-
export { CheckboxText } from "./Form/checkbox/checkboxText/CheckboxTextApollo";
|
|
33
|
-
export { CheckboxCard } from "./Form/checkbox/checkboxCard/CheckboxCardApollo";
|
|
34
|
-
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoApollo";
|
|
34
|
+
export { Toggle } from "./Toggle/ToggleApollo";
|
package/dist/indexLF.d.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import "@axa-fr/design-system-look-and-feel-css/dist/common/tokens.scss";
|
|
2
1
|
import "@axa-fr/design-system-apollo-css/dist/Grid/Grid.scss";
|
|
2
|
+
import "@axa-fr/design-system-look-and-feel-css/dist/common/tokens.scss";
|
|
3
3
|
import "@fontsource/source-sans-pro";
|
|
4
|
+
export { BasePicture } from "./BasePicture/BasePictureLF";
|
|
4
5
|
export { Button, buttonVariants, type ButtonVariants } from "./Button/ButtonLF";
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
6
|
+
export { CardMessage, cardMessageVariants, type CardMessageVariants, } from "./CardMessage/CardMessageLF";
|
|
7
|
+
export { ClickIcon } from "./ClickIcon/ClickIconLF";
|
|
8
|
+
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoLF";
|
|
9
|
+
export { Divider } from "./Divider/DividerLF";
|
|
10
|
+
export { Checkbox } from "./Form/Checkbox/Checkbox/CheckboxLF";
|
|
11
|
+
export { CheckboxCard } from "./Form/Checkbox/CheckboxCard/CheckboxCardLF";
|
|
12
|
+
export { CheckboxText } from "./Form/Checkbox/CheckboxText/CheckboxTextLF";
|
|
13
|
+
export { DateInput } from "./Form/DateInput/DateInputLF";
|
|
11
14
|
export { ItemLabel } from "./Form/ItemLabel/ItemLabelLF";
|
|
15
|
+
export { ItemMessage } from "./Form/ItemMessage/ItemMessageLF";
|
|
12
16
|
export { Select } from "./Form/Select/SelectLF";
|
|
13
17
|
export { TextArea } from "./Form/TextArea/TextAreaLF";
|
|
14
18
|
export { TextInput } from "./Form/TextInput/TextInputLF";
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export { Message, messageVariants, type MessageVariants, } from "./Message/MessageLF";
|
|
21
|
-
export { CardMessage, cardMessageVariants, type CardMessageVariants, } from "./CardMessage/CardMessageLF";
|
|
19
|
+
export { DebugGrid } from "./Grid/DebugGridLF";
|
|
20
|
+
export { Heading, type HeadingLevel } from "./Heading/HeadingLF";
|
|
21
|
+
export { Icon, iconSizeVariants, iconVariants, type IconSizeVariants, type IconVariants, } from "./Icon/IconLF";
|
|
22
|
+
export { ItemTabBar, itemTabBarVariants, type ItemTabBarVariants, } from "./ItemTabBar/ItemTabBarLF";
|
|
23
|
+
export { Link, linkVariants, type LinkVariants } from "./Link/LinkLF";
|
|
22
24
|
export { ContentItemDuo } from "./List/ContentItemDuo/ContentItemDuoLF";
|
|
25
|
+
export { Message, messageVariants, type MessageVariants, } from "./Message/MessageLF";
|
|
23
26
|
export { ProgressBar } from "./ProgressBar/ProgressBarLF";
|
|
24
27
|
export { ProgressBarGroup } from "./ProgressBarGroup/ProgressBarGroupLF";
|
|
28
|
+
export { Spinner, spinnerVariants, type SpinnerVariants, } from "./Spinner/SpinnerLF";
|
|
25
29
|
export { Stepper } from "./Stepper/StepperLF";
|
|
26
|
-
export {
|
|
30
|
+
export { Svg } from "./Svg/Svg";
|
|
31
|
+
export { Tag, tagVariants, type TagVariants } from "./Tag/TagLF";
|
|
27
32
|
export { TimelineVertical } from "./TimelineVertical/TimelineVerticalLF";
|
|
28
|
-
export {
|
|
29
|
-
export { Heading, type HeadingLevel } from "./Heading/HeadingLF";
|
|
30
|
-
export { Checkbox } from "./Form/checkbox/checkbox/CheckboxLf";
|
|
31
|
-
export { CheckboxText } from "./Form/checkbox/checkboxText/CheckboxTextLF";
|
|
32
|
-
export { CheckboxCard } from "./Form/checkbox/checkboxCard/CheckboxCardLF";
|
|
33
|
-
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoLF";
|
|
33
|
+
export { Toggle } from "./Toggle/ToggleLF";
|
package/dist/indexLF.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import "@axa-fr/design-system-look-and-feel-css/dist/common/tokens.scss";
|
|
2
1
|
import "@axa-fr/design-system-apollo-css/dist/Grid/Grid.scss";
|
|
2
|
+
import "@axa-fr/design-system-look-and-feel-css/dist/common/tokens.scss";
|
|
3
3
|
import "@fontsource/source-sans-pro";
|
|
4
|
+
export { BasePicture } from "./BasePicture/BasePictureLF";
|
|
4
5
|
export { Button, buttonVariants } from "./Button/ButtonLF";
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
6
|
+
export { CardMessage, cardMessageVariants, } from "./CardMessage/CardMessageLF";
|
|
7
|
+
export { ClickIcon } from "./ClickIcon/ClickIconLF";
|
|
8
|
+
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoLF";
|
|
9
|
+
export { Divider } from "./Divider/DividerLF";
|
|
10
|
+
export { Checkbox } from "./Form/Checkbox/Checkbox/CheckboxLF";
|
|
11
|
+
export { CheckboxCard } from "./Form/Checkbox/CheckboxCard/CheckboxCardLF";
|
|
12
|
+
export { CheckboxText } from "./Form/Checkbox/CheckboxText/CheckboxTextLF";
|
|
13
|
+
export { DateInput } from "./Form/DateInput/DateInputLF";
|
|
11
14
|
export { ItemLabel } from "./Form/ItemLabel/ItemLabelLF";
|
|
15
|
+
export { ItemMessage } from "./Form/ItemMessage/ItemMessageLF";
|
|
12
16
|
export { Select } from "./Form/Select/SelectLF";
|
|
13
17
|
export { TextArea } from "./Form/TextArea/TextAreaLF";
|
|
14
18
|
export { TextInput } from "./Form/TextInput/TextInputLF";
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export { Message, messageVariants, } from "./Message/MessageLF";
|
|
21
|
-
export { CardMessage, cardMessageVariants, } from "./CardMessage/CardMessageLF";
|
|
19
|
+
export { DebugGrid } from "./Grid/DebugGridLF";
|
|
20
|
+
export { Heading } from "./Heading/HeadingLF";
|
|
21
|
+
export { Icon, iconSizeVariants, iconVariants, } from "./Icon/IconLF";
|
|
22
|
+
export { ItemTabBar, itemTabBarVariants, } from "./ItemTabBar/ItemTabBarLF";
|
|
23
|
+
export { Link, linkVariants } from "./Link/LinkLF";
|
|
22
24
|
export { ContentItemDuo } from "./List/ContentItemDuo/ContentItemDuoLF";
|
|
25
|
+
export { Message, messageVariants, } from "./Message/MessageLF";
|
|
23
26
|
export { ProgressBar } from "./ProgressBar/ProgressBarLF";
|
|
24
27
|
export { ProgressBarGroup } from "./ProgressBarGroup/ProgressBarGroupLF";
|
|
28
|
+
export { Spinner, spinnerVariants, } from "./Spinner/SpinnerLF";
|
|
25
29
|
export { Stepper } from "./Stepper/StepperLF";
|
|
26
|
-
export {
|
|
30
|
+
export { Svg } from "./Svg/Svg";
|
|
31
|
+
export { Tag, tagVariants } from "./Tag/TagLF";
|
|
27
32
|
export { TimelineVertical } from "./TimelineVertical/TimelineVerticalLF";
|
|
28
|
-
export {
|
|
29
|
-
export { Heading } from "./Heading/HeadingLF";
|
|
30
|
-
export { Checkbox } from "./Form/checkbox/checkbox/CheckboxLf";
|
|
31
|
-
export { CheckboxText } from "./Form/checkbox/checkboxText/CheckboxTextLF";
|
|
32
|
-
export { CheckboxCard } from "./Form/checkbox/checkboxCard/CheckboxCardLF";
|
|
33
|
-
export { ContentItemMono } from "./ContentItemMono/ContentItemMonoLF";
|
|
33
|
+
export { Toggle } from "./Toggle/ToggleLF";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axa-fr/design-system-apollo-react",
|
|
3
|
-
"version": "1.0.5-alpha.
|
|
3
|
+
"version": "1.0.5-alpha.265",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/AxaFrance/design-system#readme",
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@axa-fr/design-system-apollo-css": "1.0.5-alpha.
|
|
50
|
-
"@axa-fr/design-system-look-and-feel-css": "1.0.5-alpha.
|
|
49
|
+
"@axa-fr/design-system-apollo-css": "1.0.5-alpha.265",
|
|
50
|
+
"@axa-fr/design-system-look-and-feel-css": "1.0.5-alpha.265",
|
|
51
51
|
"@material-symbols/svg-400": ">= 0.19.0",
|
|
52
52
|
"react": ">= 18"
|
|
53
53
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|