pds-dev-kit-web-test 0.2.2 → 0.2.3
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/README.md +12 -1
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/Image.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/Image.js +46 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/index.js +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.d.ts +2 -3
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.js +3 -3
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/index.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/Text.d.ts +13 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/Text.js +63 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/index.js +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.d.ts +3 -11
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.js +18 -18
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimelineRerender.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimelineRerender.js +41 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/Wrapper.d.ts +35 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/Wrapper.js +141 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/constants.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/constants.js +33 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/index.js +8 -0
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.d.ts +3 -2
- package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.js +3 -1
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +3 -3
- package/dist/src/sub/DynamicLayout/components/Section/Section.d.ts +6 -3
- package/dist/src/sub/DynamicLayout/components/Section/Section.js +40 -8
- package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +68 -0
- package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +4 -4
- package/dist/src/sub/DynamicLayout/components/desktop/common/Carousel.d.ts +1 -2
- package/dist/src/sub/DynamicLayout/components/desktop/common/Carousel.js +6 -6
- package/dist/src/sub/DynamicLayout/components/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/components/index.js +1 -6
- package/dist/src/sub/DynamicLayout/mock_customSection.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/mock_customSection.js +838 -0
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +5 -210
- package/dist/src/sub/DynamicLayout/nakedMocks.json +783 -0
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +17 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +2 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +85 -51
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlock.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlock.js +55 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +70 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +73 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.d.ts +68 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Divider.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Divider.js +66 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image.d.ts +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image.js +102 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/RichText.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/RichText.js +62 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/types.d.ts +44 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text.d.ts +32 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text.js +58 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Twitter.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Twitter.js +41 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/Youtube.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/Youtube.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/parseYoutubeContentProp.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/parseYoutubeContentProp.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/types.d.ts +48 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/{BlockMatcher/blocks/Button.js → components/ComponentBlock/componentBlocks/components/S_CB_Box.js} +6 -11
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_HiddenCover.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_HiddenCover.js +13 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/hooks/useCLINK.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/hooks/useCLINK.js +24 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +20 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/utils/CLINKhandler.d.ts +0 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/utils/CLINKhandler.js +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.js +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/index.js +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIntersectionObserver.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIntersectionObserver.js +26 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/colorUtil.d.ts +31 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/colorUtil.js +66 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/index.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/index.js +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.d.ts +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +79 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +50 -99
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +11 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/index.js +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/parseContentVisibility.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/parseContentVisibility.js +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/types.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/types.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/constants.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/constants.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/index.js +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +19 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.js +51 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/types.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/types.js +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/index.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/index.js +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/index.js +19 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropArrange.d.ts +24 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropArrange.js +80 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +21 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.js +32 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/types.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/types.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.js +61 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +20 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.js +54 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/index.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/index.js +41 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgColor.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgColor.js +58 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgImage.d.ts +19 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgImage.js +118 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay.js +64 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.d.ts +38 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.js +73 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropDivider.d.ts +26 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropDivider.js +65 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropImage.d.ts +19 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropImage.js +118 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropOpacity.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropOpacity.js +41 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropShadow.d.ts +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropShadow.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.d.ts +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +80 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.d.ts +22 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.js +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +134 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/index.js +3 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +70 -4
- package/package.json +2 -4
- package/release-note.md +2 -3
- package/dist/src/sub/DynamicLayout/components/Box.d.ts +0 -13
- package/dist/src/sub/DynamicLayout/components/Box.js +0 -73
- package/dist/src/sub/DynamicLayout/custonSectionSampleData.d.ts +0 -334
- package/dist/src/sub/DynamicLayout/custonSectionSampleData.js +0 -328
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.d.ts +0 -11
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.js +0 -86
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Accordion.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Accordion.js +0 -46
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionBody.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionBody.js +0 -74
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionCore.d.ts +0 -13
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionCore.js +0 -25
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionHeader.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionHeader.js +0 -49
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionItem.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionItem.js +0 -19
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/index.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/index.js +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Button.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/CardItem.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/CardItem.js +0 -34
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/ContentsCarousel.d.ts +0 -28
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/ContentsCarousel.js +0 -53
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.js +0 -29
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.js +0 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ImageCarousel/ImageCarousel.d.ts +0 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ImageCarousel/ImageCarousel.js +0 -41
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.js +0 -19
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.js +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.js +0 -29
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.js +0 -30
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.js +0 -38
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.js +0 -24
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.js +0 -8
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
-
return cooked;
|
|
5
|
-
};
|
|
6
|
-
var __assign = (this && this.__assign) || function () {
|
|
7
|
-
__assign = Object.assign || function(t) {
|
|
8
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
9
|
-
s = arguments[i];
|
|
10
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
11
|
-
t[p] = s[p];
|
|
12
|
-
}
|
|
13
|
-
return t;
|
|
14
|
-
};
|
|
15
|
-
return __assign.apply(this, arguments);
|
|
16
|
-
};
|
|
17
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
-
if (k2 === undefined) k2 = k;
|
|
19
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
20
|
-
}) : (function(o, m, k, k2) {
|
|
21
|
-
if (k2 === undefined) k2 = k;
|
|
22
|
-
o[k2] = m[k];
|
|
23
|
-
}));
|
|
24
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
-
}) : function(o, v) {
|
|
27
|
-
o["default"] = v;
|
|
28
|
-
});
|
|
29
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
-
if (mod && mod.__esModule) return mod;
|
|
31
|
-
var result = {};
|
|
32
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
-
__setModuleDefault(result, mod);
|
|
34
|
-
return result;
|
|
35
|
-
};
|
|
36
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
38
|
-
var styled_components_1 = __importStar(require("styled-components"));
|
|
39
|
-
function Box(_a) {
|
|
40
|
-
var _b = _a.direction, direction = _b === void 0 ? 'horizontal' : _b, children = _a.children, relative = _a.relative, justifyContent = _a.justifyContent, alignItems = _a.alignItems, flex = _a.flex, style = _a.style, className = _a.className;
|
|
41
|
-
if (direction === 'horizontal') {
|
|
42
|
-
return ((0, jsx_runtime_1.jsx)(Row, __assign({ style: style, relative: relative, justifyContent: justifyContent, alignItems: alignItems, flex: flex, className: className }, { children: children }), void 0));
|
|
43
|
-
}
|
|
44
|
-
return ((0, jsx_runtime_1.jsx)(Col, __assign({ style: style, relative: relative, justifyContent: justifyContent, alignItems: alignItems, flex: flex, className: className }, { children: children }), void 0));
|
|
45
|
-
}
|
|
46
|
-
exports.default = Box;
|
|
47
|
-
var Col = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n display: flex;\n flex-direction: column;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
48
|
-
var relative = _a.relative;
|
|
49
|
-
return relative && (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n "], ["\n position: relative;\n "])));
|
|
50
|
-
}, function (_a) {
|
|
51
|
-
var justifyContent = _a.justifyContent;
|
|
52
|
-
return justifyContent && (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n justify-content: center;\n "], ["\n justify-content: center;\n "])));
|
|
53
|
-
}, function (_a) {
|
|
54
|
-
var alignItems = _a.alignItems;
|
|
55
|
-
return alignItems && (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n align-items: center;\n "], ["\n align-items: center;\n "])));
|
|
56
|
-
}, function (_a) {
|
|
57
|
-
var flex = _a.flex;
|
|
58
|
-
return flex && (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n flex: 1;\n "], ["\n flex: 1;\n "])));
|
|
59
|
-
});
|
|
60
|
-
var Row = styled_components_1.default.div(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n display: flex;\n flex-direction: row;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n display: flex;\n flex-direction: row;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
61
|
-
var relative = _a.relative;
|
|
62
|
-
return relative && (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n position: relative;\n "], ["\n position: relative;\n "])));
|
|
63
|
-
}, function (_a) {
|
|
64
|
-
var justifyContent = _a.justifyContent;
|
|
65
|
-
return justifyContent && (0, styled_components_1.css)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n justify-content: center;\n "], ["\n justify-content: center;\n "])));
|
|
66
|
-
}, function (_a) {
|
|
67
|
-
var alignItems = _a.alignItems;
|
|
68
|
-
return alignItems && (0, styled_components_1.css)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n align-items: center;\n "], ["\n align-items: center;\n "])));
|
|
69
|
-
}, function (_a) {
|
|
70
|
-
var flex = _a.flex;
|
|
71
|
-
return flex && (0, styled_components_1.css)(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n flex: 1;\n "], ["\n flex: 1;\n "])));
|
|
72
|
-
});
|
|
73
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10;
|
|
@@ -1,334 +0,0 @@
|
|
|
1
|
-
export declare const customsectionMock: ({
|
|
2
|
-
type: string;
|
|
3
|
-
gridItemData: {
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
w: number;
|
|
7
|
-
h: number;
|
|
8
|
-
i: string;
|
|
9
|
-
};
|
|
10
|
-
content: {
|
|
11
|
-
data: {
|
|
12
|
-
type: string;
|
|
13
|
-
value: {
|
|
14
|
-
text: string;
|
|
15
|
-
size?: undefined;
|
|
16
|
-
src?: undefined;
|
|
17
|
-
alt?: undefined;
|
|
18
|
-
accountId?: undefined;
|
|
19
|
-
startAt?: undefined;
|
|
20
|
-
endAt?: undefined;
|
|
21
|
-
accordionItems?: undefined;
|
|
22
|
-
openedItemId?: undefined;
|
|
23
|
-
carouselSettings?: undefined;
|
|
24
|
-
contentsCarouselItems?: undefined;
|
|
25
|
-
imgCarouselItems?: undefined;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
style: {
|
|
30
|
-
backgroundColor: string;
|
|
31
|
-
};
|
|
32
|
-
hoverStyle: {
|
|
33
|
-
backgroundColor: string;
|
|
34
|
-
color: string;
|
|
35
|
-
opacity: number;
|
|
36
|
-
};
|
|
37
|
-
layout: {};
|
|
38
|
-
} | {
|
|
39
|
-
type: string;
|
|
40
|
-
gridItemData: {
|
|
41
|
-
x: number;
|
|
42
|
-
y: number;
|
|
43
|
-
w: number;
|
|
44
|
-
h: number;
|
|
45
|
-
i: string;
|
|
46
|
-
};
|
|
47
|
-
content: {
|
|
48
|
-
data: {
|
|
49
|
-
type: string;
|
|
50
|
-
value: {
|
|
51
|
-
text: string;
|
|
52
|
-
size?: undefined;
|
|
53
|
-
src?: undefined;
|
|
54
|
-
alt?: undefined;
|
|
55
|
-
accountId?: undefined;
|
|
56
|
-
startAt?: undefined;
|
|
57
|
-
endAt?: undefined;
|
|
58
|
-
accordionItems?: undefined;
|
|
59
|
-
openedItemId?: undefined;
|
|
60
|
-
carouselSettings?: undefined;
|
|
61
|
-
contentsCarouselItems?: undefined;
|
|
62
|
-
imgCarouselItems?: undefined;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
style: {
|
|
67
|
-
backgroundColor: string;
|
|
68
|
-
};
|
|
69
|
-
layout: {};
|
|
70
|
-
hoverStyle?: undefined;
|
|
71
|
-
} | {
|
|
72
|
-
type: string;
|
|
73
|
-
gridItemData: {
|
|
74
|
-
x: number;
|
|
75
|
-
y: number;
|
|
76
|
-
w: number;
|
|
77
|
-
h: number;
|
|
78
|
-
i: string;
|
|
79
|
-
};
|
|
80
|
-
content: {
|
|
81
|
-
data: {
|
|
82
|
-
type: string;
|
|
83
|
-
value: {
|
|
84
|
-
size: number;
|
|
85
|
-
text?: undefined;
|
|
86
|
-
src?: undefined;
|
|
87
|
-
alt?: undefined;
|
|
88
|
-
accountId?: undefined;
|
|
89
|
-
startAt?: undefined;
|
|
90
|
-
endAt?: undefined;
|
|
91
|
-
accordionItems?: undefined;
|
|
92
|
-
openedItemId?: undefined;
|
|
93
|
-
carouselSettings?: undefined;
|
|
94
|
-
contentsCarouselItems?: undefined;
|
|
95
|
-
imgCarouselItems?: undefined;
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
style: {
|
|
100
|
-
backgroundColor: string;
|
|
101
|
-
};
|
|
102
|
-
layout: {};
|
|
103
|
-
hoverStyle?: undefined;
|
|
104
|
-
} | {
|
|
105
|
-
type: string;
|
|
106
|
-
gridItemData: {
|
|
107
|
-
x: number;
|
|
108
|
-
y: number;
|
|
109
|
-
w: number;
|
|
110
|
-
h: number;
|
|
111
|
-
i: string;
|
|
112
|
-
};
|
|
113
|
-
content: {
|
|
114
|
-
data: {
|
|
115
|
-
type: string;
|
|
116
|
-
value: {
|
|
117
|
-
src: string;
|
|
118
|
-
alt: string;
|
|
119
|
-
text?: undefined;
|
|
120
|
-
size?: undefined;
|
|
121
|
-
accountId?: undefined;
|
|
122
|
-
startAt?: undefined;
|
|
123
|
-
endAt?: undefined;
|
|
124
|
-
accordionItems?: undefined;
|
|
125
|
-
openedItemId?: undefined;
|
|
126
|
-
carouselSettings?: undefined;
|
|
127
|
-
contentsCarouselItems?: undefined;
|
|
128
|
-
imgCarouselItems?: undefined;
|
|
129
|
-
};
|
|
130
|
-
};
|
|
131
|
-
};
|
|
132
|
-
style: {
|
|
133
|
-
backgroundColor: string;
|
|
134
|
-
};
|
|
135
|
-
layout: {};
|
|
136
|
-
hoverStyle?: undefined;
|
|
137
|
-
} | {
|
|
138
|
-
type: string;
|
|
139
|
-
gridItemData: {
|
|
140
|
-
x: number;
|
|
141
|
-
y: number;
|
|
142
|
-
w: number;
|
|
143
|
-
h: number;
|
|
144
|
-
i: string;
|
|
145
|
-
};
|
|
146
|
-
content: {
|
|
147
|
-
data: {
|
|
148
|
-
type: string;
|
|
149
|
-
value: {
|
|
150
|
-
accountId: string;
|
|
151
|
-
text?: undefined;
|
|
152
|
-
size?: undefined;
|
|
153
|
-
src?: undefined;
|
|
154
|
-
alt?: undefined;
|
|
155
|
-
startAt?: undefined;
|
|
156
|
-
endAt?: undefined;
|
|
157
|
-
accordionItems?: undefined;
|
|
158
|
-
openedItemId?: undefined;
|
|
159
|
-
carouselSettings?: undefined;
|
|
160
|
-
contentsCarouselItems?: undefined;
|
|
161
|
-
imgCarouselItems?: undefined;
|
|
162
|
-
};
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
style: {
|
|
166
|
-
backgroundColor: string;
|
|
167
|
-
};
|
|
168
|
-
layout: {};
|
|
169
|
-
hoverStyle?: undefined;
|
|
170
|
-
} | {
|
|
171
|
-
type: string;
|
|
172
|
-
gridItemData: {
|
|
173
|
-
x: number;
|
|
174
|
-
y: number;
|
|
175
|
-
w: number;
|
|
176
|
-
h: number;
|
|
177
|
-
i: string;
|
|
178
|
-
};
|
|
179
|
-
content: {
|
|
180
|
-
data: {
|
|
181
|
-
type: string;
|
|
182
|
-
value: {
|
|
183
|
-
src: string;
|
|
184
|
-
startAt: number;
|
|
185
|
-
endAt: number;
|
|
186
|
-
text?: undefined;
|
|
187
|
-
size?: undefined;
|
|
188
|
-
alt?: undefined;
|
|
189
|
-
accountId?: undefined;
|
|
190
|
-
accordionItems?: undefined;
|
|
191
|
-
openedItemId?: undefined;
|
|
192
|
-
carouselSettings?: undefined;
|
|
193
|
-
contentsCarouselItems?: undefined;
|
|
194
|
-
imgCarouselItems?: undefined;
|
|
195
|
-
};
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
style: {
|
|
199
|
-
backgroundColor: string;
|
|
200
|
-
};
|
|
201
|
-
layout: {};
|
|
202
|
-
hoverStyle?: undefined;
|
|
203
|
-
} | {
|
|
204
|
-
type: string;
|
|
205
|
-
gridItemData: {
|
|
206
|
-
x: number;
|
|
207
|
-
y: number;
|
|
208
|
-
w: number;
|
|
209
|
-
h: number;
|
|
210
|
-
i: string;
|
|
211
|
-
};
|
|
212
|
-
content: {
|
|
213
|
-
data: {
|
|
214
|
-
type: string;
|
|
215
|
-
value: {
|
|
216
|
-
accordionItems: {
|
|
217
|
-
title: string;
|
|
218
|
-
description: string;
|
|
219
|
-
}[];
|
|
220
|
-
openedItemId: string;
|
|
221
|
-
text?: undefined;
|
|
222
|
-
size?: undefined;
|
|
223
|
-
src?: undefined;
|
|
224
|
-
alt?: undefined;
|
|
225
|
-
accountId?: undefined;
|
|
226
|
-
startAt?: undefined;
|
|
227
|
-
endAt?: undefined;
|
|
228
|
-
carouselSettings?: undefined;
|
|
229
|
-
contentsCarouselItems?: undefined;
|
|
230
|
-
imgCarouselItems?: undefined;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
style: {
|
|
235
|
-
backgroundColor: string;
|
|
236
|
-
};
|
|
237
|
-
layout: {};
|
|
238
|
-
hoverStyle?: undefined;
|
|
239
|
-
} | {
|
|
240
|
-
type: string;
|
|
241
|
-
gridItemData: {
|
|
242
|
-
x: number;
|
|
243
|
-
y: number;
|
|
244
|
-
w: number;
|
|
245
|
-
h: number;
|
|
246
|
-
i: string;
|
|
247
|
-
};
|
|
248
|
-
content: {
|
|
249
|
-
data: {
|
|
250
|
-
type: string;
|
|
251
|
-
value: {
|
|
252
|
-
carouselSettings: {
|
|
253
|
-
mode: string;
|
|
254
|
-
carouselAutoplayTime: number;
|
|
255
|
-
spaceBetween: number;
|
|
256
|
-
slidesPerView: number;
|
|
257
|
-
sliderPerGroup: number;
|
|
258
|
-
buttonSpacing: string;
|
|
259
|
-
effect?: undefined;
|
|
260
|
-
};
|
|
261
|
-
contentsCarouselItems: {
|
|
262
|
-
title: string;
|
|
263
|
-
description: string;
|
|
264
|
-
imageSrc: string;
|
|
265
|
-
linkSrc: string;
|
|
266
|
-
linkType: string;
|
|
267
|
-
buttonLabel: string;
|
|
268
|
-
id: string;
|
|
269
|
-
}[];
|
|
270
|
-
text?: undefined;
|
|
271
|
-
size?: undefined;
|
|
272
|
-
src?: undefined;
|
|
273
|
-
alt?: undefined;
|
|
274
|
-
accountId?: undefined;
|
|
275
|
-
startAt?: undefined;
|
|
276
|
-
endAt?: undefined;
|
|
277
|
-
accordionItems?: undefined;
|
|
278
|
-
openedItemId?: undefined;
|
|
279
|
-
imgCarouselItems?: undefined;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
};
|
|
283
|
-
style: {
|
|
284
|
-
backgroundColor: string;
|
|
285
|
-
};
|
|
286
|
-
layout: {};
|
|
287
|
-
hoverStyle?: undefined;
|
|
288
|
-
} | {
|
|
289
|
-
type: string;
|
|
290
|
-
gridItemData: {
|
|
291
|
-
x: number;
|
|
292
|
-
y: number;
|
|
293
|
-
w: number;
|
|
294
|
-
h: number;
|
|
295
|
-
i: string;
|
|
296
|
-
};
|
|
297
|
-
content: {
|
|
298
|
-
data: {
|
|
299
|
-
type: string;
|
|
300
|
-
value: {
|
|
301
|
-
carouselSettings: {
|
|
302
|
-
mode: string;
|
|
303
|
-
carouselAutoplayTime: number;
|
|
304
|
-
spaceBetween: number;
|
|
305
|
-
slidesPerView: number;
|
|
306
|
-
sliderPerGroup: number;
|
|
307
|
-
effect: string;
|
|
308
|
-
buttonSpacing?: undefined;
|
|
309
|
-
};
|
|
310
|
-
imgCarouselItems: {
|
|
311
|
-
title: string;
|
|
312
|
-
description: string;
|
|
313
|
-
imageSrc: string;
|
|
314
|
-
id: string;
|
|
315
|
-
}[];
|
|
316
|
-
text?: undefined;
|
|
317
|
-
size?: undefined;
|
|
318
|
-
src?: undefined;
|
|
319
|
-
alt?: undefined;
|
|
320
|
-
accountId?: undefined;
|
|
321
|
-
startAt?: undefined;
|
|
322
|
-
endAt?: undefined;
|
|
323
|
-
accordionItems?: undefined;
|
|
324
|
-
openedItemId?: undefined;
|
|
325
|
-
contentsCarouselItems?: undefined;
|
|
326
|
-
};
|
|
327
|
-
};
|
|
328
|
-
};
|
|
329
|
-
style: {
|
|
330
|
-
backgroundColor: string;
|
|
331
|
-
};
|
|
332
|
-
layout: {};
|
|
333
|
-
hoverStyle?: undefined;
|
|
334
|
-
})[];
|