react-layout-sdk 1.1.19 → 1.1.20
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/Page.tsx +1 -1
- package/src/index.ts +2 -2
- package/tsconfig.json +1 -1
- /package/src/{Layout.tsx → layout.tsx} +0 -0
package/dist/index.js
CHANGED
|
@@ -89,7 +89,7 @@ var Placeholder = ({ name, rendering, customProps, componentMap }) => {
|
|
|
89
89
|
)));
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
// src/
|
|
92
|
+
// src/layout.tsx
|
|
93
93
|
var import_react2 = __toESM(require("react"));
|
|
94
94
|
var JDLayout = ({ layoutData, placeholderComponent: Placeholder2 }) => {
|
|
95
95
|
const { route } = layoutData.strapi;
|
package/dist/index.mjs
CHANGED
|
@@ -48,7 +48,7 @@ var Placeholder = ({ name, rendering, customProps, componentMap }) => {
|
|
|
48
48
|
)));
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// src/
|
|
51
|
+
// src/layout.tsx
|
|
52
52
|
import React2 from "react";
|
|
53
53
|
var JDLayout = ({ layoutData, placeholderComponent: Placeholder2 }) => {
|
|
54
54
|
const { route } = layoutData.strapi;
|
package/package.json
CHANGED
package/src/Page.tsx
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { Placeholder, ComponentFactory } from './Placeholder';
|
|
2
2
|
export type { PlaceholderProps, ComponentFactoryProps } from './Placeholder';
|
|
3
|
-
export { JDLayout } from './
|
|
4
|
-
export type { JDLayoutProps } from './
|
|
3
|
+
export { JDLayout } from './layout';
|
|
4
|
+
export type { JDLayoutProps } from './layout';
|
|
5
5
|
export { JDPage, generateJDMetadata } from './Page';
|
|
6
6
|
export type { JDPageProps } from './Page';
|
|
7
7
|
|
package/tsconfig.json
CHANGED
|
File without changes
|