pb-sxp-ui 1.20.27 → 1.20.28
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.cjs +174 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +174 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +6 -6
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +6 -6
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +174 -1
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +6 -6
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/index.d.ts +6 -0
- package/es/core/index.js +10 -0
- package/lib/core/index.d.ts +6 -0
- package/lib/core/index.js +10 -5
- package/package.json +1 -1
package/es/core/index.d.ts
CHANGED
|
@@ -3,3 +3,9 @@ export type { IEditorCoreRef } from './context/EditorContext';
|
|
|
3
3
|
export type { MaterialComponet } from './create';
|
|
4
4
|
export { default as StructurePage } from './components/StructurePage';
|
|
5
5
|
export type { IStructurePageProps, IPostData, IProductData, IMultiCtaData, IApiResponse } from './components/StructurePage';
|
|
6
|
+
export * as hooks from './hooks';
|
|
7
|
+
export * from './create';
|
|
8
|
+
export { Pagebuilder } from './Pagebuilder';
|
|
9
|
+
export * as localStore from './utils/localStore';
|
|
10
|
+
export * as sessionStore from './utils/sessionStore';
|
|
11
|
+
export * as tool from './utils/tool';
|
package/es/core/index.js
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
1
|
export { EditorCore } from './context/EditorContext';
|
|
2
2
|
export { default as StructurePage } from './components/StructurePage';
|
|
3
|
+
import * as hooks_1 from './hooks';
|
|
4
|
+
export { hooks_1 as hooks };
|
|
5
|
+
export * from './create';
|
|
6
|
+
export { Pagebuilder } from './Pagebuilder';
|
|
7
|
+
import * as localStore_1 from './utils/localStore';
|
|
8
|
+
export { localStore_1 as localStore };
|
|
9
|
+
import * as sessionStore_1 from './utils/sessionStore';
|
|
10
|
+
export { sessionStore_1 as sessionStore };
|
|
11
|
+
import * as tool_1 from './utils/tool';
|
|
12
|
+
export { tool_1 as tool };
|
package/lib/core/index.d.ts
CHANGED
|
@@ -3,3 +3,9 @@ export type { IEditorCoreRef } from './context/EditorContext';
|
|
|
3
3
|
export type { MaterialComponet } from './create';
|
|
4
4
|
export { default as StructurePage } from './components/StructurePage';
|
|
5
5
|
export type { IStructurePageProps, IPostData, IProductData, IMultiCtaData, IApiResponse } from './components/StructurePage';
|
|
6
|
+
export * as hooks from './hooks';
|
|
7
|
+
export * from './create';
|
|
8
|
+
export { Pagebuilder } from './Pagebuilder';
|
|
9
|
+
export * as localStore from './utils/localStore';
|
|
10
|
+
export * as sessionStore from './utils/sessionStore';
|
|
11
|
+
export * as tool from './utils/tool';
|
package/lib/core/index.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.StructurePage = exports.EditorCore = void 0;
|
|
3
|
+
exports.tool = exports.sessionStore = exports.localStore = exports.Pagebuilder = exports.hooks = exports.StructurePage = exports.EditorCore = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
7
5
|
var EditorContext_1 = require("./context/EditorContext");
|
|
8
6
|
Object.defineProperty(exports, "EditorCore", { enumerable: true, get: function () { return EditorContext_1.EditorCore; } });
|
|
9
7
|
var StructurePage_1 = require("./components/StructurePage");
|
|
10
|
-
Object.defineProperty(exports, "StructurePage", { enumerable: true, get: function () { return __importDefault(StructurePage_1).default; } });
|
|
8
|
+
Object.defineProperty(exports, "StructurePage", { enumerable: true, get: function () { return tslib_1.__importDefault(StructurePage_1).default; } });
|
|
9
|
+
exports.hooks = tslib_1.__importStar(require("./hooks"));
|
|
10
|
+
tslib_1.__exportStar(require("./create"), exports);
|
|
11
|
+
var Pagebuilder_1 = require("./Pagebuilder");
|
|
12
|
+
Object.defineProperty(exports, "Pagebuilder", { enumerable: true, get: function () { return Pagebuilder_1.Pagebuilder; } });
|
|
13
|
+
exports.localStore = tslib_1.__importStar(require("./utils/localStore"));
|
|
14
|
+
exports.sessionStore = tslib_1.__importStar(require("./utils/sessionStore"));
|
|
15
|
+
exports.tool = tslib_1.__importStar(require("./utils/tool"));
|