@axa-fr/design-system-slash-react 1.2.1-alpha.104 → 1.2.1-alpha.106

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.
@@ -1,4 +1,5 @@
1
- import "@axa-fr/design-system-slash-css/dist/Layout/Footer/Footer.scss";
1
+ import "@axa-fr/design-system-slash-css/dist/Layout/Footer/Footer.css";
2
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
2
3
  type FooterProps = {
3
4
  href?: string;
4
5
  title?: string;
@@ -1,6 +1,8 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import logo from "@axa-fr/design-system-slash-css/logo-axa.svg";
3
- import "@axa-fr/design-system-slash-css/dist/Layout/Footer/Footer.scss";
3
+ import "@axa-fr/design-system-slash-css/dist/Layout/Footer/Footer.css";
4
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
4
5
  import { forwardRef } from "react";
5
- export const Footer = forwardRef(({ className = "af-footer", href = "https://www.axa.fr/", title = "Site Axa", icon = logo, alt = "Logo Axa", version, children = `© ${new Date().getFullYear()} AXA Tous droits réservés`, ...props }, ref) => (_jsx("footer", { ref: ref, className: className, ...props, children: _jsxs("div", { className: "container-fluid container", children: [Boolean(icon) && (_jsx("a", { className: "af-logo", href: href, title: title, target: "blank", rel: "noopener noreferrer", children: _jsx("img", { className: "af-logo__brand", src: icon, alt: alt }) })), _jsx("div", { className: "af-footer-content", children: children }), version ? (_jsxs("span", { className: "af-footer-version", children: ["Version ", version] })) : null] }) })));
6
+ import classNames from "classnames";
7
+ export const Footer = forwardRef(({ className = "af-footer", href = "https://www.axa.fr/", title = "Site Axa", icon = logo, alt = "Logo Axa", version, children = `© ${new Date().getFullYear()} AXA Tous droits réservés`, ...props }, ref) => (_jsxs("footer", { ref: ref, className: classNames("af-container", className), ...props, children: [Boolean(icon) && (_jsx("a", { className: "af-logo", href: href, title: title, target: "_blank", rel: "noopener noreferrer", children: _jsx("img", { className: "af-logo__brand", src: icon, alt: alt }) })), _jsx("div", { className: "af-footer-content", children: children }), version ? (_jsxs("span", { className: "af-footer-version", children: ["Version ", version] })) : null] })));
6
8
  Footer.displayName = "Footer";
@@ -1,15 +1,38 @@
1
1
  import { ReactNode } from "react";
2
2
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/AnchorNavBar/AnchorNavBar.css";
3
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
3
4
  export type AnchorNavBarItem = {
5
+ /**
6
+ * name - The display name of the navigation item.
7
+ */
4
8
  name: string;
9
+ /**
10
+ * isActive - If true, the item is highlighted as active.
11
+ */
5
12
  isActive?: boolean;
13
+ /**
14
+ * onClick - Optional click handler for the navigation item.
15
+ */
6
16
  onClick?: () => void;
17
+ /**
18
+ * link - The URL or anchor to navigate to when the item is clicked.
19
+ */
7
20
  link?: string;
21
+ /**
22
+ * externalLink - If true, the link will open in a new tab and show an external link icon.
23
+ */
8
24
  externalLink?: boolean;
25
+ /**
26
+ * render - Optional custom render function for the navigation item. If provided, it overrides the default rendering.
27
+ */
9
28
  render?: (props: {
10
29
  className: string;
11
30
  }) => ReactNode;
12
31
  };
32
+ /**
33
+ * Props for the AnchorNavBar component.
34
+ * items - An array of navigation items to display in the navigation bar.
35
+ */
13
36
  export type AnchorNavBarProps = {
14
37
  items: AnchorNavBarItem[];
15
38
  };
@@ -5,9 +5,10 @@ import { Svg } from "../../../Svg";
5
5
  import { Link } from "../../../Link/Link";
6
6
  import { linkClassName } from "../../../Link/linkClassName";
7
7
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/AnchorNavBar/AnchorNavBar.css";
8
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
8
9
  const defaultClassName = "af-anchor-navbar";
9
10
  export const AnchorNavBar = ({ items }) => {
10
- return (_jsx("nav", { className: defaultClassName, children: _jsx("ul", { children: items.map((item) => {
11
+ return (_jsx("nav", { className: classNames("af-container", defaultClassName), children: _jsx("ul", { children: items.map((item) => {
11
12
  if (item.render) {
12
13
  return (_jsx("li", { children: _jsx(Link, { render: item.render, className: classNames(`${linkClassName} ${defaultClassName}-link`, {
13
14
  [`${defaultClassName}-link--active`]: item.isActive,
@@ -15,6 +16,6 @@ export const AnchorNavBar = ({ items }) => {
15
16
  }
16
17
  return (_jsx("li", { children: _jsxs(Link, { href: item.link, "aria-current": item.isActive ? "page" : undefined, onClick: item.onClick, className: classNames(`${defaultClassName}-link`, {
17
18
  [`${defaultClassName}-link--active`]: item.isActive,
18
- }), children: [item.name, item.externalLink ? (_jsx(Svg, { role: "presentation", src: externalLinkIcon, className: `${defaultClassName}-external-link-svg` })) : null] }) }, `nav-item-${item.name}`));
19
+ }), target: item.externalLink ? "_blank" : undefined, children: [item.name, item.externalLink ? (_jsx(Svg, { role: "presentation", src: externalLinkIcon, className: `${defaultClassName}-external-link-svg` })) : null] }) }, `nav-item-${item.name}`));
19
20
  }) }) }));
20
21
  };
@@ -1,9 +1,10 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/Header.scss";
3
+ import classNames from "classnames";
3
4
  import { getComponentClassName } from "../../utilities";
4
5
  const defaultClassName = "af-header";
5
6
  const Header = ({ classModifier, className, children }) => {
6
7
  const componentClassName = getComponentClassName(className, classModifier, defaultClassName);
7
- return (_jsx("div", { className: componentClassName, children: _jsx("div", { className: `container ${defaultClassName}__wrapper`, children: _jsx("header", { className: `${defaultClassName}__content`, role: "banner", children: children }) }) }));
8
+ return (_jsx("div", { className: classNames("af-container", componentClassName), children: _jsx("header", { className: `${defaultClassName}__content`, role: "banner", children: children }) }));
8
9
  };
9
10
  export { Header };
@@ -1,4 +1,4 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/HeaderTitle/HeaderTitle.scss";
3
3
  import classNames from "classnames";
4
4
  import { getComponentClassName } from "../../../utilities";
@@ -10,8 +10,8 @@ const defaultClassName = "af-title-bar";
10
10
  const HeaderTitle = ({ children, classModifier, className, isSticky = true, contentLeft, contentRight, subtitle, title, toggleMenu, anchorNavBarItems, }) => {
11
11
  const componentClassName = getComponentClassName(className, getClassModifier(classModifier, isSticky), defaultClassName);
12
12
  const isAnchorNavBarPresent = anchorNavBarItems && anchorNavBarItems.length > 0;
13
- return (_jsxs("div", { className: classNames(componentClassName, {
14
- [`${defaultClassName}__shadow`]: isAnchorNavBarPresent,
15
- }), children: [_jsxs("div", { className: `container ${defaultClassName}__wrapper`, children: [Boolean(toggleMenu) && (_jsx("div", { className: "burger-container", children: _jsx(ToggleButton, { idControl: "mainmenu", children: _jsx(Action, { className: "btn af-title-bar__mobile-menu af-btn--circle", id: "togglemenu", icon: "menu-hamburger", title: "Toggle menu", onClick: toggleMenu }) }) })), _jsxs("div", { className: `${defaultClassName}__leftSection`, children: [contentLeft, _jsxs("h1", { className: `${defaultClassName}__title`, children: [title, subtitle ? (_jsx("span", { className: `${defaultClassName}__subtitle`, children: subtitle })) : null] }), children] }), contentRight ? (_jsx("div", { className: `${defaultClassName}__rightSection`, children: contentRight })) : null] }), isAnchorNavBarPresent ? (_jsx(AnchorNavBar, { items: anchorNavBarItems })) : null] }));
13
+ return (_jsxs(_Fragment, { children: [_jsxs("div", { className: classNames("af-container", componentClassName, {
14
+ [`${defaultClassName}__shadow`]: isAnchorNavBarPresent,
15
+ }), children: [Boolean(toggleMenu) && (_jsx("div", { className: "burger-container", children: _jsx(ToggleButton, { idControl: "mainmenu", children: _jsx(Action, { className: "btn af-title-bar__mobile-menu af-btn--circle", id: "togglemenu", icon: "menu-hamburger", title: "Toggle menu", onClick: toggleMenu }) }) })), _jsxs("div", { className: `${defaultClassName}__leftSection`, children: [contentLeft, _jsxs("h1", { className: `${defaultClassName}__title`, children: [title, subtitle ? (_jsx("span", { className: `${defaultClassName}__subtitle`, children: subtitle })) : null] }), children] }), contentRight ? (_jsx("div", { className: `${defaultClassName}__rightSection`, children: contentRight })) : null] }), isAnchorNavBarPresent ? (_jsx(AnchorNavBar, { items: anchorNavBarItems })) : null] }));
16
16
  };
17
17
  export { HeaderTitle };
@@ -1,15 +1,16 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import classNames from "classnames";
2
3
  import { getComponentClassName } from "../../../utilities";
3
4
  const defaultClassName = "af-nav-container";
4
5
  const NavBarBase = ({ isVisible = true, onClick, id = "mainmenu", toggleMenuId = "togglemenu", isMenuFocused, className, classModifier, handleKeys, onFocus, onBlur, children, }) => {
5
6
  const componentClassName = getComponentClassName(className, classModifier, defaultClassName);
6
- return (_jsxs("div", { className: componentClassName, children: [_jsx("button", { "aria-controls": id, "aria-haspopup": "true", type: "button", onClick: onClick, className: `mask fade ${isVisible ? "show" : ""}`, id: `open-${toggleMenuId}`, "aria-label": "Open Menu" }), _jsx("nav", { className: `af-nav af-drawer left ${isVisible ? "show" : ""}`, role: "navigation", "aria-label": "Menu principal", children: _jsxs("div", { className: "container af-nav__wrapper", children: [_jsxs("div", { className: "af-nav__aside-header", children: [_jsx("h4", { className: "af-nav__aside-title", children: "Menu" }), _jsx("button", { "aria-controls": id, "aria-haspopup": "true", onClick: onClick, type: "button", className: "af-nav__aside-close", id: `close-${toggleMenuId}`, "aria-label": "Close Menu", children: "\u00D7" })] }), _jsx("ul", { onKeyDown: (e) => {
7
- e.preventDefault();
8
- handleKeys(e.key);
9
- }, onFocus: (e) => {
10
- onFocus({ e });
11
- }, onBlur: (e) => {
12
- onBlur({ e });
13
- }, className: `af-nav__list ${isMenuFocused ? "af-nav__list--focused" : ""}`, role: "menubar", id: id, children: children })] }) })] }));
7
+ return (_jsxs("div", { className: classNames("af-container", componentClassName), children: [_jsx("button", { "aria-controls": id, "aria-haspopup": "true", type: "button", onClick: onClick, className: `mask fade ${isVisible ? "show" : ""}`, id: `open-${toggleMenuId}`, "aria-label": "Open Menu" }), _jsxs("nav", { className: `af-nav af-drawer left ${isVisible ? "show" : ""}`, role: "navigation", "aria-label": "Menu principal", children: [_jsxs("div", { className: "af-nav__aside-header", children: [_jsx("h4", { className: "af-nav__aside-title", children: "Menu" }), _jsx("button", { "aria-controls": id, "aria-haspopup": "true", onClick: onClick, type: "button", className: "af-nav__aside-close", id: `close-${toggleMenuId}`, "aria-label": "Close Menu", children: "\u00D7" })] }), _jsx("ul", { onKeyDown: (e) => {
8
+ e.preventDefault();
9
+ handleKeys(e.key);
10
+ }, onFocus: (e) => {
11
+ onFocus({ e });
12
+ }, onBlur: (e) => {
13
+ onBlur({ e });
14
+ }, className: `af-nav__list ${isMenuFocused ? "af-nav__list--focused" : ""}`, role: "menubar", id: id, children: children })] })] }));
14
15
  };
15
16
  export { NavBarBase };
@@ -1,4 +1,5 @@
1
1
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/NavBar/NavBar.scss";
2
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
2
3
  export { NavBar } from "./NavBar";
3
4
  export { NavBarBase } from "./NavBarBase";
4
5
  export { NavBarItem, NavBarItemBase, NavBarItemLink } from "./NavBarItem";
@@ -1,4 +1,5 @@
1
1
  import "@axa-fr/design-system-slash-css/dist/Layout/Header/NavBar/NavBar.scss";
2
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
2
3
  export { NavBar } from "./NavBar";
3
4
  export { NavBarBase } from "./NavBarBase";
4
5
  export { NavBarItem, NavBarItemBase, NavBarItemLink } from "./NavBarItem";
@@ -0,0 +1,6 @@
1
+ import { ComponentPropsWithoutRef, PropsWithChildren } from "react";
2
+ import "@axa-fr/design-system-slash-css/dist/Layout/MainContainer/MainContainer.css";
3
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
4
+ type MainContainerProps = ComponentPropsWithoutRef<"main"> & PropsWithChildren;
5
+ export declare const MainContainer: ({ children, ...othersProps }: MainContainerProps) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,4 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import "@axa-fr/design-system-slash-css/dist/Layout/MainContainer/MainContainer.css";
3
+ import "@axa-fr/design-system-slash-css/dist/common/breakpoints.css";
4
+ export const MainContainer = ({ children, ...othersProps }) => (_jsx("main", { className: "af-container", ...othersProps, children: children }));
@@ -4,7 +4,7 @@ import { forwardRef } from "react";
4
4
  import { linkClassName } from "./linkClassName";
5
5
  const LinkAnchor = forwardRef(({ className, target, rel, leftIcon, children, rightIcon, disabled, ...restProps }, ref) => {
6
6
  const finalClassName = classnames(linkClassName, className);
7
- return (_jsxs("a", { className: finalClassName, rel: target === "_blank" ? "noopener noreferrer" : rel, "aria-disabled": disabled ?? restProps["aria-disabled"], ref: ref, ...restProps, children: [leftIcon, children, rightIcon] }));
7
+ return (_jsxs("a", { className: finalClassName, rel: target === "_blank" ? "noopener noreferrer" : rel, "aria-disabled": disabled ?? restProps["aria-disabled"], ref: ref, target: target, ...restProps, children: [leftIcon, children, rightIcon] }));
8
8
  });
9
9
  LinkAnchor.displayName = "LinkAnchor";
10
10
  export { LinkAnchor };
package/dist/index.d.ts CHANGED
@@ -24,6 +24,7 @@ export { Text, TextInput } from "./Form/Text";
24
24
  export { Textarea, TextareaInput } from "./Form/Textarea";
25
25
  export { Footer } from "./Layout/Footer";
26
26
  export { Header, HeaderTitle, Infos, MenuTitleWrapper, Name, NavBar, NavBarBase, NavBarItem, NavBarItemBase, NavBarItemLink, ToggleButton, User, } from "./Layout/Header";
27
+ export { MainContainer } from "./Layout/MainContainer/MainContainer";
27
28
  export { Link, type LinkProps } from "./Link/Link";
28
29
  export { BooleanModal, Modal, ModalBody, ModalFooter, ModalHeader, ModalHeaderBase, } from "./ModalAgent";
29
30
  export { ArticleRestitution, HeaderRestitution, Restitution, RestitutionList, SectionRestitution, SectionRestitutionColumn, SectionRestitutionRow, SectionRestitutionTitle, } from "./Restitution";
package/dist/index.js CHANGED
@@ -24,6 +24,7 @@ export { Text, TextInput } from "./Form/Text";
24
24
  export { Textarea, TextareaInput } from "./Form/Textarea";
25
25
  export { Footer } from "./Layout/Footer";
26
26
  export { Header, HeaderTitle, Infos, MenuTitleWrapper, Name, NavBar, NavBarBase, NavBarItem, NavBarItemBase, NavBarItemLink, ToggleButton, User, } from "./Layout/Header";
27
+ export { MainContainer } from "./Layout/MainContainer/MainContainer";
27
28
  export { Link } from "./Link/Link";
28
29
  export { BooleanModal, Modal, ModalBody, ModalFooter, ModalHeader, ModalHeaderBase, } from "./ModalAgent";
29
30
  export { ArticleRestitution, HeaderRestitution, Restitution, RestitutionList, SectionRestitution, SectionRestitutionColumn, SectionRestitutionRow, SectionRestitutionTitle, } from "./Restitution";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axa-fr/design-system-slash-react",
3
- "version": "1.2.1-alpha.104",
3
+ "version": "1.2.1-alpha.106",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "homepage": "https://github.com/AxaFrance/design-system#readme",
49
49
  "peerDependencies": {
50
- "@axa-fr/design-system-slash-css": "1.2.1-alpha.104",
50
+ "@axa-fr/design-system-slash-css": "1.2.1-alpha.106",
51
51
  "@material-symbols/svg-400": ">= 0.19.0",
52
52
  "react": ">= 18"
53
53
  },