@abgov/react-components 4.0.0-alpha.49 → 4.0.0-alpha.50
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,6 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from "react";
|
|
2
2
|
interface WCProps {
|
|
3
|
-
name?: string;
|
|
4
3
|
maxcolumncount?: number;
|
|
5
4
|
}
|
|
6
5
|
declare global {
|
|
@@ -11,9 +10,8 @@ declare global {
|
|
|
11
10
|
}
|
|
12
11
|
}
|
|
13
12
|
interface FooterNavSectionProps {
|
|
14
|
-
name: string;
|
|
15
13
|
maxColumnCount?: number;
|
|
16
14
|
children?: ReactNode;
|
|
17
15
|
}
|
|
18
|
-
export declare function GoAAppFooterNavSection({
|
|
16
|
+
export declare function GoAAppFooterNavSection({ maxColumnCount, children }: FooterNavSectionProps): JSX.Element;
|
|
19
17
|
export default GoAAppFooterNavSection;
|
package/package.json
CHANGED
package/react-components.esm.js
CHANGED
|
@@ -14285,13 +14285,11 @@ function GoAAppFooterMetaSection({
|
|
|
14285
14285
|
}
|
|
14286
14286
|
|
|
14287
14287
|
function GoAAppFooterNavSection({
|
|
14288
|
-
name,
|
|
14289
14288
|
maxColumnCount = 1,
|
|
14290
14289
|
children
|
|
14291
14290
|
}) {
|
|
14292
14291
|
return jsx("goa-app-footer-nav-section", Object.assign({
|
|
14293
14292
|
slot: "nav",
|
|
14294
|
-
name: name,
|
|
14295
14293
|
maxcolumncount: maxColumnCount
|
|
14296
14294
|
}, {
|
|
14297
14295
|
children: children
|
package/react-components.umd.js
CHANGED
|
@@ -14362,13 +14362,11 @@
|
|
|
14362
14362
|
}
|
|
14363
14363
|
|
|
14364
14364
|
function GoAAppFooterNavSection(_a) {
|
|
14365
|
-
var
|
|
14366
|
-
_b = _a.maxColumnCount,
|
|
14365
|
+
var _b = _a.maxColumnCount,
|
|
14367
14366
|
maxColumnCount = _b === void 0 ? 1 : _b,
|
|
14368
14367
|
children = _a.children;
|
|
14369
14368
|
return jsxRuntime.jsx("goa-app-footer-nav-section", __assign({
|
|
14370
14369
|
slot: "nav",
|
|
14371
|
-
name: name,
|
|
14372
14370
|
maxcolumncount: maxColumnCount
|
|
14373
14371
|
}, {
|
|
14374
14372
|
children: children
|