@gearbox-protocol/permissionless-ui 1.2.11 → 1.2.13
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.
|
@@ -23,7 +23,6 @@ __export(page_layout_exports, {
|
|
|
23
23
|
module.exports = __toCommonJS(page_layout_exports);
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_back_button = require('../buttons/back-button.js');
|
|
26
|
-
var import_card = require('../card.js');
|
|
27
26
|
function PageLayout({
|
|
28
27
|
children,
|
|
29
28
|
title,
|
|
@@ -51,7 +50,7 @@ function PageLayout({
|
|
|
51
50
|
description
|
|
52
51
|
] })
|
|
53
52
|
] }),
|
|
54
|
-
|
|
53
|
+
children
|
|
55
54
|
] });
|
|
56
55
|
}
|
|
57
56
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { BackButton } from "../buttons/back-button.js";
|
|
3
|
-
import { Card } from "../card.js";
|
|
4
3
|
function PageLayout({
|
|
5
4
|
children,
|
|
6
5
|
title,
|
|
@@ -28,7 +27,7 @@ function PageLayout({
|
|
|
28
27
|
description
|
|
29
28
|
] })
|
|
30
29
|
] }),
|
|
31
|
-
|
|
30
|
+
children
|
|
32
31
|
] });
|
|
33
32
|
}
|
|
34
33
|
export {
|
package/dist/globals.css
CHANGED