@kopexa/page-layout 3.0.8 → 3.0.9
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/{chunk-ZMZKGNM7.mjs → chunk-2BLWNV43.mjs} +1 -1
- package/dist/{chunk-KSN7622N.mjs → chunk-FGP2EWNN.mjs} +3 -2
- package/dist/index.js +3 -2
- package/dist/index.mjs +2 -2
- package/dist/namespace.js +3 -2
- package/dist/namespace.mjs +2 -2
- package/dist/page-layout.js +3 -2
- package/dist/page-layout.mjs +1 -1
- package/package.json +2 -2
|
@@ -25,11 +25,12 @@ var PageLayoutRoot = (props) => {
|
|
|
25
25
|
gap,
|
|
26
26
|
className,
|
|
27
27
|
classNames,
|
|
28
|
+
inModal,
|
|
28
29
|
...rest
|
|
29
30
|
} = props;
|
|
30
31
|
const styles = useMemo(
|
|
31
|
-
() => pageLayout({ width, spacing, paneWidth, gap }),
|
|
32
|
-
[width, spacing, paneWidth, gap]
|
|
32
|
+
() => pageLayout({ width, spacing, paneWidth, gap, inModal }),
|
|
33
|
+
[width, spacing, paneWidth, gap, inModal]
|
|
33
34
|
);
|
|
34
35
|
const header = [];
|
|
35
36
|
const footer = [];
|
package/dist/index.js
CHANGED
|
@@ -53,11 +53,12 @@ var PageLayoutRoot = (props) => {
|
|
|
53
53
|
gap,
|
|
54
54
|
className,
|
|
55
55
|
classNames,
|
|
56
|
+
inModal,
|
|
56
57
|
...rest
|
|
57
58
|
} = props;
|
|
58
59
|
const styles = (0, import_react.useMemo)(
|
|
59
|
-
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap }),
|
|
60
|
-
[width, spacing, paneWidth, gap]
|
|
60
|
+
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap, inModal }),
|
|
61
|
+
[width, spacing, paneWidth, gap, inModal]
|
|
61
62
|
);
|
|
62
63
|
const header = [];
|
|
63
64
|
const footer = [];
|
package/dist/index.mjs
CHANGED
package/dist/namespace.js
CHANGED
|
@@ -47,11 +47,12 @@ var PageLayoutRoot = (props) => {
|
|
|
47
47
|
gap,
|
|
48
48
|
className,
|
|
49
49
|
classNames,
|
|
50
|
+
inModal,
|
|
50
51
|
...rest
|
|
51
52
|
} = props;
|
|
52
53
|
const styles = (0, import_react.useMemo)(
|
|
53
|
-
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap }),
|
|
54
|
-
[width, spacing, paneWidth, gap]
|
|
54
|
+
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap, inModal }),
|
|
55
|
+
[width, spacing, paneWidth, gap, inModal]
|
|
55
56
|
);
|
|
56
57
|
const header = [];
|
|
57
58
|
const footer = [];
|
package/dist/namespace.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-2BLWNV43.mjs";
|
|
3
3
|
import {
|
|
4
4
|
PageLayoutContent,
|
|
5
5
|
PageLayoutFooter,
|
|
6
6
|
PageLayoutHeader,
|
|
7
7
|
PageLayoutPane,
|
|
8
8
|
PageLayoutRoot
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-FGP2EWNN.mjs";
|
|
10
10
|
export {
|
|
11
11
|
PageLayoutContent as Content,
|
|
12
12
|
PageLayoutFooter as Footer,
|
package/dist/page-layout.js
CHANGED
|
@@ -45,11 +45,12 @@ var PageLayoutRoot = (props) => {
|
|
|
45
45
|
gap,
|
|
46
46
|
className,
|
|
47
47
|
classNames,
|
|
48
|
+
inModal,
|
|
48
49
|
...rest
|
|
49
50
|
} = props;
|
|
50
51
|
const styles = (0, import_react.useMemo)(
|
|
51
|
-
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap }),
|
|
52
|
-
[width, spacing, paneWidth, gap]
|
|
52
|
+
() => (0, import_theme.pageLayout)({ width, spacing, paneWidth, gap, inModal }),
|
|
53
|
+
[width, spacing, paneWidth, gap, inModal]
|
|
53
54
|
);
|
|
54
55
|
const header = [];
|
|
55
56
|
const footer = [];
|
package/dist/page-layout.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/page-layout",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"description": "The layout for our pages used within kopexa",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"page-layout"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
30
|
"motion": ">=12.23.6",
|
|
31
|
-
"@kopexa/theme": "1.5.
|
|
31
|
+
"@kopexa/theme": "1.5.7"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@kopexa/shared-utils": "1.1.5",
|