pds-dev-kit-web-test 2.3.4 → 2.3.5
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/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +1 -7
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +709 -1375
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +1124 -2381
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +0 -6
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +64 -77
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +1 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.d.ts +1 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +1 -60
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.js +3 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.js +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +1 -12
- package/dist/src/sub/SandollFontKit/constants.d.ts +9 -0
- package/dist/src/sub/SandollFontKit/constants.js +33 -0
- package/dist/src/sub/SandollFontKit/headless/SandollFontItem.d.ts +13 -0
- package/dist/src/sub/SandollFontKit/headless/SandollFontItem.js +93 -0
- package/dist/src/sub/SandollFontKit/headless/SandollFontsList.d.ts +17 -0
- package/dist/src/sub/SandollFontKit/headless/SandollFontsList.js +145 -0
- package/dist/src/sub/SandollFontKit/index.d.ts +4 -0
- package/dist/src/sub/SandollFontKit/index.js +26 -0
- package/dist/src/sub/SandollFontKit/types.d.ts +22 -0
- package/dist/src/sub/SandollFontKit/types.js +2 -0
- package/dist/src/sub/SandollFontKit/utils/delay.d.ts +1 -0
- package/dist/src/sub/SandollFontKit/utils/delay.js +6 -0
- package/package.json +1 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.d.ts +0 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.js +0 -70
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/customSectionContext.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/customSectionContext.js +0 -21
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.d.ts +0 -11
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.js +0 -87
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.js +0 -15
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.js +0 -74
@@ -21,19 +21,13 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
21
21
|
}
|
22
22
|
return t;
|
23
23
|
};
|
24
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
25
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
26
|
-
};
|
27
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
28
25
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
29
|
-
require("../../../DynamicLayout/sections/CustomSection/NewCustomSection");
|
30
|
-
var TempCustomSection_1 = __importDefault(require("../../../DynamicLayout/sections/TempCustomSection/TempCustomSection"));
|
31
26
|
var sections_1 = require("../../sections");
|
32
27
|
function SectionMatcher(_a) {
|
33
28
|
var props = __rest(_a, []);
|
34
29
|
if (props.type === 'CUSTOM') {
|
35
|
-
|
36
|
-
return (0, jsx_runtime_1.jsx)(TempCustomSection_1.default, { section: props });
|
30
|
+
return (0, jsx_runtime_1.jsx)(sections_1.CustomSection, __assign({}, props));
|
37
31
|
}
|
38
32
|
var schema = props.manifest.schema;
|
39
33
|
switch (schema) {
|