@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.
- package/dist/cjs/index.cjs +14 -18
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +9 -4
- package/dist/esm/index.d.ts +9 -4
- package/dist/esm/index.js +16 -20
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -2
package/dist/cjs/index.d.cts
CHANGED
|
@@ -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
|
|
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
|
-
|
|
481
|
+
primaryMenu?: FooterData;
|
|
482
|
+
/**
|
|
483
|
+
* Data menu column 2
|
|
484
|
+
*/
|
|
485
|
+
secondaryMenu?: FooterData;
|
|
481
486
|
}
|
|
482
|
-
declare const Footer:
|
|
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>>;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -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
|
|
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
|
-
|
|
481
|
+
primaryMenu?: FooterData;
|
|
482
|
+
/**
|
|
483
|
+
* Data menu column 2
|
|
484
|
+
*/
|
|
485
|
+
secondaryMenu?: FooterData;
|
|
481
486
|
}
|
|
482
|
-
declare const Footer:
|
|
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>>;
|