@momo-webplatform/mobase 0.2.15 → 0.2.17

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.
@@ -463,23 +463,28 @@ declare const HeaderNavigation: {
463
463
  interface FooterItem {
464
464
  title: string;
465
465
  url: string;
466
+ icon?: string;
466
467
  newTab: boolean;
467
468
  }
468
469
  interface FooterData {
469
470
  heading: string;
470
471
  lists: FooterItem[];
471
472
  }
472
- interface footerProps {
473
+ interface FooterProps {
473
474
  /**
474
475
  * CSS class to be appended to the root element.
475
476
  */
476
477
  className?: string;
477
478
  /**
478
- * Data menu
479
+ * Data menu column 1
479
480
  */
480
- dataMenu?: FooterData;
481
+ primaryMenu?: FooterData;
482
+ /**
483
+ * Data menu column 2
484
+ */
485
+ secondaryMenu?: FooterData;
481
486
  }
482
- declare const Footer: React$1.MemoExoticComponent<({ className, dataMenu }: footerProps) => react_jsx_runtime.JSX.Element>;
487
+ declare const Footer: ({ className, primaryMenu, secondaryMenu }: FooterProps) => react_jsx_runtime.JSX.Element;
483
488
 
484
489
  declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
485
490
  declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
@@ -463,23 +463,28 @@ declare const HeaderNavigation: {
463
463
  interface FooterItem {
464
464
  title: string;
465
465
  url: string;
466
+ icon?: string;
466
467
  newTab: boolean;
467
468
  }
468
469
  interface FooterData {
469
470
  heading: string;
470
471
  lists: FooterItem[];
471
472
  }
472
- interface footerProps {
473
+ interface FooterProps {
473
474
  /**
474
475
  * CSS class to be appended to the root element.
475
476
  */
476
477
  className?: string;
477
478
  /**
478
- * Data menu
479
+ * Data menu column 1
479
480
  */
480
- dataMenu?: FooterData;
481
+ primaryMenu?: FooterData;
482
+ /**
483
+ * Data menu column 2
484
+ */
485
+ secondaryMenu?: FooterData;
481
486
  }
482
- declare const Footer: React$1.MemoExoticComponent<({ className, dataMenu }: footerProps) => react_jsx_runtime.JSX.Element>;
487
+ declare const Footer: ({ className, primaryMenu, secondaryMenu }: FooterProps) => react_jsx_runtime.JSX.Element;
483
488
 
484
489
  declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
485
490
  declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;