@axa-fr/design-system-look-and-feel-react 0.3.0-ci.292 → 0.3.0-ci.293
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/List/ClickList/ClickItem/ClickItem.d.ts +2 -14
- package/dist/List/ClickList/ClickItem/ClickItem.helpers.d.ts +3 -0
- package/dist/List/ClickList/ClickItem/ClickItem.helpers.js +5 -0
- package/dist/List/ClickList/ClickItem/ClickItem.js +2 -2
- package/dist/List/ClickList/ClickItem/index.d.ts +1 -0
- package/dist/List/ClickList/ClickItem/index.js +1 -0
- package/dist/List/ClickList/index.d.ts +1 -1
- package/dist/List/ClickList/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
@@ -1,14 +1,2 @@
|
|
1
|
-
import
|
2
|
-
|
3
|
-
classModifier?: string;
|
4
|
-
isDisabled?: boolean;
|
5
|
-
} & Omit<ComponentProps<"button">, "disabled"> & ComponentProps<"a"> & {
|
6
|
-
label?: ReactNode;
|
7
|
-
parentClickComponent?: ({ children, }: {
|
8
|
-
children: ReactNode;
|
9
|
-
} & Record<string, unknown>) => ReactNode;
|
10
|
-
children?: ReactNode;
|
11
|
-
icon?: ReactNode;
|
12
|
-
} & Record<string, unknown>;
|
13
|
-
export declare const ClickItem: ({ label, children, icon, parentClickComponent: ClickComponent, isDisabled, className, classModifier, ...otherProps }: TClickItem) => import("react/jsx-runtime").JSX.Element;
|
14
|
-
export {};
|
1
|
+
import type { TClickItem } from "./types";
|
2
|
+
export declare const ClickItem: ({ children, icon, parentClickComponent: ClickComponent, isDisabled, className, classModifier, ...otherProps }: TClickItem) => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import type { ComponentProps, ComponentType, ElementType } from "react";
|
2
|
+
import type { TParentClickComponentProps } from "./types";
|
3
|
+
export declare const createClickItemParent: <TComponent extends ElementType>(Wrapper: ComponentType<TComponent> | TComponent, wrapperProps: ComponentProps<TComponent>) => ({ children, ...clickItemProps }: TParentClickComponentProps) => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
2
|
+
export const createClickItemParent = (Wrapper, wrapperProps) => {
|
3
|
+
const ClickItemWrapper = ({ children, ...clickItemProps }) => (_jsx(Wrapper, { ...wrapperProps, ...clickItemProps, children: children }));
|
4
|
+
return ClickItemWrapper;
|
5
|
+
};
|
@@ -3,7 +3,7 @@ import chevron from "@material-symbols/svg-400/outlined/chevron_right.svg";
|
|
3
3
|
import { useMemo } from "react";
|
4
4
|
import { Svg } from "../../../Svg";
|
5
5
|
import { getComponentClassName } from "../../../utilities";
|
6
|
-
export const ClickItem = ({
|
6
|
+
export const ClickItem = ({ children, icon, parentClickComponent: ClickComponent = ({ children: parentClickComponentChildren, ...parentClickComponentProps }) => (_jsx("button", { type: "button", ...parentClickComponentProps, children: parentClickComponentChildren })), isDisabled = false, className, classModifier = "", ...otherProps }) => {
|
7
7
|
const componentClassName = useMemo(() => getComponentClassName(className, `${classModifier}${isDisabled ? " disabled" : ""}`, "af-click-item"), [className, classModifier, isDisabled]);
|
8
|
-
return (_jsxs(ClickComponent, { className: componentClassName, disabled: isDisabled, "aria-disabled": isDisabled, ...otherProps, children: [_jsxs("div", { className: "af-click-item__content", children: [icon && _jsx("div", { className: "af-click-item__icon", children: icon }), _jsx("div", { className: "af-click-item__label", children: children
|
8
|
+
return (_jsxs(ClickComponent, { className: componentClassName, disabled: isDisabled, "aria-disabled": isDisabled, ...otherProps, children: [_jsxs("div", { className: "af-click-item__content", children: [icon && _jsx("div", { className: "af-click-item__icon", children: icon }), _jsx("div", { className: "af-click-item__label", children: children })] }), _jsx("div", { className: "af-click-item__action", children: _jsx(Svg, { src: chevron, "aria-hidden": true }) })] }));
|
9
9
|
};
|
package/dist/index.d.ts
CHANGED
@@ -16,7 +16,7 @@ export { Footer } from "./Layout/Footer/Footer";
|
|
16
16
|
export { Header } from "./Layout/Header";
|
17
17
|
export { Link } from "./Link";
|
18
18
|
export { List } from "./List";
|
19
|
-
export { ClickItem, ClickList } from "./List/ClickList";
|
19
|
+
export { ClickItem, ClickList, createClickItemParent } from "./List/ClickList";
|
20
20
|
export { ContentItemDuo } from "./List/ContentItemDuo";
|
21
21
|
export { ContentItemMono, ContentItemMonoSize } from "./List/ContentItemMono";
|
22
22
|
export { ContentTabList } from "./List/ContentTabList";
|
package/dist/index.js
CHANGED
@@ -15,7 +15,7 @@ export { Footer } from "./Layout/Footer/Footer";
|
|
15
15
|
export { Header } from "./Layout/Header";
|
16
16
|
export { Link } from "./Link";
|
17
17
|
export { List } from "./List";
|
18
|
-
export { ClickItem, ClickList } from "./List/ClickList";
|
18
|
+
export { ClickItem, ClickList, createClickItemParent } from "./List/ClickList";
|
19
19
|
export { ContentItemDuo } from "./List/ContentItemDuo";
|
20
20
|
export { ContentItemMono, ContentItemMonoSize } from "./List/ContentItemMono";
|
21
21
|
export { ContentTabList } from "./List/ContentTabList";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@axa-fr/design-system-look-and-feel-react",
|
3
|
-
"version": "0.3.0-ci.
|
3
|
+
"version": "0.3.0-ci.293",
|
4
4
|
"description": "",
|
5
5
|
"exports": {
|
6
6
|
".": {
|
@@ -45,7 +45,7 @@
|
|
45
45
|
},
|
46
46
|
"homepage": "https://github.com/AxaFrance/design-system#readme",
|
47
47
|
"peerDependencies": {
|
48
|
-
"@axa-fr/design-system-look-and-feel-css": "0.3.0-ci.
|
48
|
+
"@axa-fr/design-system-look-and-feel-css": "0.3.0-ci.293",
|
49
49
|
"@material-symbols/svg-400": ">= 0.19.0",
|
50
50
|
"react": ">= 18"
|
51
51
|
},
|