pds-dev-kit-web-test 2.3.9 → 2.3.11
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 +3 -0
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +1112 -446
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +2071 -814
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +79 -64
- package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.js +70 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +2 -1
- 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 +3 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +57 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.js +8 -0
- 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/customSectionContext.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/customSectionContext.js +21 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +12 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +7 -4
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.js +87 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.js +15 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.js +74 -0
- package/package.json +5 -2
- package/dist/src/sub/SandollFontKit/api/getSandollFonts.d.ts +0 -14
- package/dist/src/sub/SandollFontKit/api/getSandollFonts.js +0 -247
- package/dist/src/sub/SandollFontKit/api/types.d.ts +0 -50
- package/dist/src/sub/SandollFontKit/api/types.js +0 -2
- package/dist/src/sub/SandollFontKit/constants.d.ts +0 -9
- package/dist/src/sub/SandollFontKit/constants.js +0 -33
- package/dist/src/sub/SandollFontKit/headless/SandollFontItem.d.ts +0 -13
- package/dist/src/sub/SandollFontKit/headless/SandollFontItem.js +0 -64
- package/dist/src/sub/SandollFontKit/headless/SandollFontsList.d.ts +0 -18
- package/dist/src/sub/SandollFontKit/headless/SandollFontsList.js +0 -74
- package/dist/src/sub/SandollFontKit/hooks/useQueryParamsReducer.d.ts +0 -30
- package/dist/src/sub/SandollFontKit/hooks/useQueryParamsReducer.js +0 -69
- package/dist/src/sub/SandollFontKit/index.d.ts +0 -5
- package/dist/src/sub/SandollFontKit/index.js +0 -28
- package/dist/src/sub/SandollFontKit/types.d.ts +0 -14
- package/dist/src/sub/SandollFontKit/types.js +0 -2
- package/dist/src/sub/SandollFontKit/utils/createSandollFontLink.d.ts +0 -2
- package/dist/src/sub/SandollFontKit/utils/createSandollFontLink.js +0 -24
@@ -23,11 +23,14 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
23
23
|
};
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
25
25
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
+
require("../../../DynamicLayout/sections/CustomSection/NewCustomSection");
|
27
|
+
require("../../../DynamicLayout/sections/TempCustomSection/TempCustomSection");
|
26
28
|
var sections_1 = require("../../sections");
|
27
29
|
function SectionMatcher(_a) {
|
28
30
|
var props = __rest(_a, []);
|
29
31
|
if (props.type === 'CUSTOM') {
|
30
32
|
return (0, jsx_runtime_1.jsx)(sections_1.CustomSection, __assign({}, props));
|
33
|
+
// return <TempCustomSection section={props} />;
|
31
34
|
}
|
32
35
|
var schema = props.manifest.schema;
|
33
36
|
switch (schema) {
|