pds-dev-kit-web-test 2.5.4 → 2.5.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/common/assets/icons/line/index.d.ts +0 -8
- package/dist/src/common/assets/icons/line/index.js +1 -17
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +1 -2
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +1 -2
- package/dist/src/common/styles/colorSet/UIColor.json +1 -2
- package/dist/src/common/styles/colorSet/index.d.ts +0 -3
- package/dist/src/common/styles/colorSet/ui-type.d.ts +0 -1
- package/dist/src/common/styles/ui-colors.js +5 -13
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +1 -2
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +2 -16
- package/dist/src/desktop/components/HorizontalFormGroup/HorizontalFormGroup.d.ts +1 -2
- package/dist/src/desktop/components/HorizontalFormGroup/HorizontalFormGroup.js +4 -8
- package/dist/src/desktop/components/UserDesktopSideTab/UserDesktopSideTab.d.ts +1 -2
- package/dist/src/desktop/components/UserDesktopSideTab/UserDesktopSideTab.js +4 -4
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.d.ts +1 -2
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.js +7 -58
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +1 -14
- package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +5 -1
- package/dist/src/sub/DynamicLayout/components/YouTubeIframe/YouTubeIframe.js +3 -7
- package/dist/src/sub/DynamicLayout/mock_samplePage.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +1 -996
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +65 -76
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridCustomSection.d.ts +13 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridCustomSection.js +249 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.js +72 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +11 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIsMounted.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIsMounted.js +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useResizableObserver.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useResizableObserver.js +74 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +5 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +8 -5
- package/package.json +2 -1
- package/pipeline_output.log +6466 -0
- package/release-note.md +2 -2
- package/dist/src/common/assets/icons/line/SectionBanner32.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionBanner32.js +0 -30
- package/dist/src/common/assets/icons/line/SectionBanner40.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionBanner40.js +0 -30
- package/dist/src/common/assets/icons/line/SectionContentsOperator32.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionContentsOperator32.js +0 -30
- package/dist/src/common/assets/icons/line/SectionContentsOperator40.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionContentsOperator40.js +0 -30
- package/dist/src/common/assets/icons/line/SectionFeed32.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionFeed32.js +0 -30
- package/dist/src/common/assets/icons/line/SectionFeed40.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionFeed40.js +0 -30
- package/dist/src/common/assets/icons/line/SectionHero32.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionHero32.js +0 -30
- package/dist/src/common/assets/icons/line/SectionHero40.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SectionHero40.js +0 -30
@@ -282,13 +282,5 @@ declare const lineIcons: {
|
|
282
282
|
readonly ic_warning: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
283
283
|
readonly ic_weblink: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
284
284
|
readonly ic_xmark: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
285
|
-
readonly ic_section_hero_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
286
|
-
readonly ic_section_hero_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
287
|
-
readonly ic_section_banner_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
288
|
-
readonly ic_section_banner_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
289
|
-
readonly ic_section_feed_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
290
|
-
readonly ic_section_feed_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
291
|
-
readonly ic_section_contents_operator_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
292
|
-
readonly ic_section_contents_operator_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
293
285
|
};
|
294
286
|
export default lineIcons;
|
@@ -180,24 +180,16 @@ var Rocket_1 = __importDefault(require("./Rocket"));
|
|
180
180
|
var Sales_1 = __importDefault(require("./Sales"));
|
181
181
|
var ScrollingText_1 = __importDefault(require("./ScrollingText"));
|
182
182
|
var Search_1 = __importDefault(require("./Search"));
|
183
|
-
var SectionBanner32_1 = __importDefault(require("./SectionBanner32"));
|
184
|
-
var SectionBanner40_1 = __importDefault(require("./SectionBanner40"));
|
185
183
|
var SectionContent32_1 = __importDefault(require("./SectionContent32"));
|
186
184
|
var SectionContent40_1 = __importDefault(require("./SectionContent40"));
|
187
185
|
var SectionContentsCarousel32_1 = __importDefault(require("./SectionContentsCarousel32"));
|
188
186
|
var SectionContentsCarousel40_1 = __importDefault(require("./SectionContentsCarousel40"));
|
189
|
-
var SectionContentsOperator32_1 = __importDefault(require("./SectionContentsOperator32"));
|
190
|
-
var SectionContentsOperator40_1 = __importDefault(require("./SectionContentsOperator40"));
|
191
187
|
var SectionCustom32_1 = __importDefault(require("./SectionCustom32"));
|
192
188
|
var SectionCustom40_1 = __importDefault(require("./SectionCustom40"));
|
193
189
|
var SectionDivider32_1 = __importDefault(require("./SectionDivider32"));
|
194
190
|
var SectionDivider40_1 = __importDefault(require("./SectionDivider40"));
|
195
|
-
var SectionFeed32_1 = __importDefault(require("./SectionFeed32"));
|
196
|
-
var SectionFeed40_1 = __importDefault(require("./SectionFeed40"));
|
197
191
|
var SectionFooter32_1 = __importDefault(require("./SectionFooter32"));
|
198
192
|
var SectionFooter40_1 = __importDefault(require("./SectionFooter40"));
|
199
|
-
var SectionHero32_1 = __importDefault(require("./SectionHero32"));
|
200
|
-
var SectionHero40_1 = __importDefault(require("./SectionHero40"));
|
201
193
|
var SectionIframe32_1 = __importDefault(require("./SectionIframe32"));
|
202
194
|
var SectionIframe40_1 = __importDefault(require("./SectionIframe40"));
|
203
195
|
var SectionInfoBox32_1 = __importDefault(require("./SectionInfoBox32"));
|
@@ -575,14 +567,6 @@ var lineIcons = {
|
|
575
567
|
ic_vod_shorts: VodShorts_1.default,
|
576
568
|
ic_warning: Warning_1.default,
|
577
569
|
ic_weblink: Weblink_1.default,
|
578
|
-
ic_xmark: Xmark_1.default
|
579
|
-
ic_section_hero_32: SectionHero32_1.default,
|
580
|
-
ic_section_hero_40: SectionHero40_1.default,
|
581
|
-
ic_section_banner_32: SectionBanner32_1.default,
|
582
|
-
ic_section_banner_40: SectionBanner40_1.default,
|
583
|
-
ic_section_feed_32: SectionFeed32_1.default,
|
584
|
-
ic_section_feed_40: SectionFeed40_1.default,
|
585
|
-
ic_section_contents_operator_32: SectionContentsOperator32_1.default,
|
586
|
-
ic_section_contents_operator_40: SectionContentsOperator40_1.default
|
570
|
+
ic_xmark: Xmark_1.default
|
587
571
|
};
|
588
572
|
exports.default = lineIcons;
|
@@ -354,6 +354,5 @@
|
|
354
354
|
"sys_cpnt_sheet_base_13": "grey50",
|
355
355
|
"sys_cpnt_sheet_base_14": "grey900",
|
356
356
|
"sys_cpnt_white_opacity60": "white/opacity60",
|
357
|
-
"sys_border_line_17": "darkgrey600"
|
358
|
-
"usr_brand_primary_opacity05": "darkblue500/opacity05"
|
357
|
+
"sys_border_line_17": "darkgrey600"
|
359
358
|
}
|
@@ -354,6 +354,5 @@
|
|
354
354
|
"sys_cpnt_sheet_base_13": "grey50",
|
355
355
|
"sys_cpnt_sheet_base_14": "grey900",
|
356
356
|
"sys_cpnt_white_opacity60": "white/opacity60",
|
357
|
-
"sys_border_line_17": "black/opacity00"
|
358
|
-
"usr_brand_primary_opacity05": "blue500/opacity05"
|
357
|
+
"sys_border_line_17": "black/opacity00"
|
359
358
|
}
|
@@ -858,6 +858,5 @@
|
|
858
858
|
"ui_120": "sys_cpnt_white_opacity60",
|
859
859
|
"ui_121": "sys_component_base_03",
|
860
860
|
"ui_cpnt_tooltip_base_border": "sys_border_line_17",
|
861
|
-
"ui_122": "sys_widget_green_01"
|
862
|
-
"ui_123": "usr_brand_primary_opacity05"
|
861
|
+
"ui_122": "sys_widget_green_01"
|
863
862
|
}
|
@@ -476,7 +476,6 @@ declare const colorSet: {
|
|
476
476
|
sys_cpnt_sheet_base_14: string;
|
477
477
|
sys_cpnt_white_opacity60: string;
|
478
478
|
sys_border_line_17: string;
|
479
|
-
usr_brand_primary_opacity05: string;
|
480
479
|
};
|
481
480
|
readonly PaletteColor_Dark: {
|
482
481
|
sys_container_background_01: string;
|
@@ -835,7 +834,6 @@ declare const colorSet: {
|
|
835
834
|
sys_cpnt_sheet_base_14: string;
|
836
835
|
sys_cpnt_white_opacity60: string;
|
837
836
|
sys_border_line_17: string;
|
838
|
-
usr_brand_primary_opacity05: string;
|
839
837
|
};
|
840
838
|
readonly UIColor: {
|
841
839
|
ui_cpnt_button_fill_base_primary: string;
|
@@ -1698,7 +1696,6 @@ declare const colorSet: {
|
|
1698
1696
|
ui_121: string;
|
1699
1697
|
ui_cpnt_tooltip_base_border: string;
|
1700
1698
|
ui_122: string;
|
1701
|
-
ui_123: string;
|
1702
1699
|
};
|
1703
1700
|
};
|
1704
1701
|
export default colorSet;
|
@@ -9,22 +9,14 @@ function buildCascadedColors(lowLevel, highLevel, override) {
|
|
9
9
|
if (override === void 0) { override = {}; }
|
10
10
|
return Object.keys(highLevel).reduce(function (acc, key) {
|
11
11
|
var keyInLowLevelColors = highLevel[key];
|
12
|
-
var hasOpacity = keyInLowLevelColors.indexOf('/') !== -1;
|
13
12
|
var colorValue;
|
14
|
-
if (
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
colorValue = override.usr_brand_primary
|
19
|
-
? override.usr_brand_primary + lowLevel[opacity]
|
20
|
-
: lowLevel[colorKey] + lowLevel[opacity];
|
21
|
-
}
|
22
|
-
else {
|
23
|
-
colorValue = override[key] || lowLevel[colorKey] + lowLevel[opacity];
|
24
|
-
}
|
13
|
+
if (keyInLowLevelColors.indexOf('/') !== -1) {
|
14
|
+
colorValue = override[key]
|
15
|
+
? override[key]
|
16
|
+
: lowLevel[keyInLowLevelColors.split('/')[0]] + lowLevel[keyInLowLevelColors.split('/')[1]];
|
25
17
|
}
|
26
18
|
else {
|
27
|
-
colorValue = override[key]
|
19
|
+
colorValue = override[key] ? override[key] : lowLevel[keyInLowLevelColors];
|
28
20
|
}
|
29
21
|
acc[key] = colorValue;
|
30
22
|
return acc;
|
@@ -6,7 +6,6 @@ type BasicFormGroupProps = {
|
|
6
6
|
descText?: PDSTextType;
|
7
7
|
captionText?: PDSTextType;
|
8
8
|
inputForm?: JSX.Element;
|
9
|
-
titleRequirementMode?: 'use' | 'none';
|
10
9
|
};
|
11
|
-
declare function BasicFormGroup({ titleStyleTheme, titleText, descText, captionText, inputForm
|
10
|
+
declare function BasicFormGroup({ titleStyleTheme, titleText, descText, captionText, inputForm }: BasicFormGroupProps): JSX.Element;
|
12
11
|
export default BasicFormGroup;
|
@@ -1,8 +1,4 @@
|
|
1
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
2
|
var __assign = (this && this.__assign) || function () {
|
7
3
|
__assign = Object.assign || function(t) {
|
8
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
@@ -14,22 +10,12 @@ var __assign = (this && this.__assign) || function () {
|
|
14
10
|
};
|
15
11
|
return __assign.apply(this, arguments);
|
16
12
|
};
|
17
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
18
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
19
|
-
};
|
20
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
21
14
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
22
|
-
var styled_components_1 = __importDefault(require("styled-components"));
|
23
15
|
var hybrid_1 = require("../../../hybrid");
|
24
16
|
var TextLabel_1 = require("../TextLabel");
|
25
17
|
function BasicFormGroup(_a) {
|
26
|
-
var _b = _a.titleStyleTheme, titleStyleTheme = _b === void 0 ? 'subTitleBold' : _b, titleText = _a.titleText, descText = _a.descText, captionText = _a.captionText, inputForm = _a.inputForm
|
27
|
-
return ((0, jsx_runtime_1.jsxs)("div", __assign({ "x-pds-name": "BasicFormGroup", "x-pds-element-type": "component", "x-pds-device-type": "desktop" }, { children: [titleText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.
|
18
|
+
var _b = _a.titleStyleTheme, titleStyleTheme = _b === void 0 ? 'subTitleBold' : _b, titleText = _a.titleText, descText = _a.descText, captionText = _a.captionText, inputForm = _a.inputForm;
|
19
|
+
return ((0, jsx_runtime_1.jsxs)("div", __assign({ "x-pds-name": "BasicFormGroup", "x-pds-element-type": "component", "x-pds-device-type": "desktop" }, { children: [titleText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: titleText, styleTheme: titleStyleTheme, colorTheme: "sysTextPrimary" }), (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b" })] })), descText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: descText, styleTheme: "caption1Regular", colorTheme: "sysTextSecondary" }), (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_d" })] })), inputForm, captionText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b" }), (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: captionText, styleTheme: "caption1Regular", colorTheme: "sysTextPrimary" })] }))] })));
|
28
20
|
}
|
29
|
-
var S_TitleTextWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n"], ["\n align-items: center;\n display: flex;\n"])));
|
30
|
-
var S_IconWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n height: 100%;\n height: 16px;\n justify-content: center;\n padding: 0 ", ";\n width: 16px;\n"], ["\n align-items: center;\n display: flex;\n height: 100%;\n height: 16px;\n justify-content: center;\n padding: 0 ", ";\n width: 16px;\n"])), function (_a) {
|
31
|
-
var theme = _a.theme;
|
32
|
-
return theme.spacing.spacingA;
|
33
|
-
});
|
34
21
|
exports.default = BasicFormGroup;
|
35
|
-
var templateObject_1, templateObject_2;
|
@@ -6,7 +6,6 @@ type HorizontalFormGroupProps = {
|
|
6
6
|
inputForm: JSX.Element;
|
7
7
|
labelAlignType?: 'top' | 'center';
|
8
8
|
labelTopSpacing?: 'small' | 'medium' | 'large';
|
9
|
-
labelRequirementMode?: 'use' | 'none';
|
10
9
|
};
|
11
|
-
declare function HorizontalFormGroup({ labelText, captionText, inputForm, labelAlignType, labelTopSpacing
|
10
|
+
declare function HorizontalFormGroup({ labelText, captionText, inputForm, labelAlignType, labelTopSpacing }: HorizontalFormGroupProps): JSX.Element;
|
12
11
|
export default HorizontalFormGroup;
|
@@ -43,8 +43,8 @@ var styled_components_1 = __importStar(require("styled-components"));
|
|
43
43
|
var hybrid_1 = require("../../../hybrid");
|
44
44
|
var TextLabel_1 = require("../TextLabel");
|
45
45
|
function HorizontalFormGroup(_a) {
|
46
|
-
var labelText = _a.labelText, captionText = _a.captionText, inputForm = _a.inputForm, _b = _a.labelAlignType, labelAlignType = _b === void 0 ? 'center' : _b, labelTopSpacing = _a.labelTopSpacing
|
47
|
-
return ((0, jsx_runtime_1.jsxs)(S_HorizontalFormGroupBox, __assign({ "x-pds-name": "HorizontalFormGroup", "x-pds-element-type": "component", "x-pds-device-type": "desktop", labelAlignType: labelAlignType }, { children: [(0, jsx_runtime_1.jsx)(S_LabelWrapper, __assign({ labelAlignType: labelAlignType, labelTopSpacing: labelTopSpacing }, { children: labelAlignType === 'center' ? ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text:
|
46
|
+
var labelText = _a.labelText, captionText = _a.captionText, inputForm = _a.inputForm, _b = _a.labelAlignType, labelAlignType = _b === void 0 ? 'center' : _b, labelTopSpacing = _a.labelTopSpacing;
|
47
|
+
return ((0, jsx_runtime_1.jsxs)(S_HorizontalFormGroupBox, __assign({ "x-pds-name": "HorizontalFormGroup", "x-pds-element-type": "component", "x-pds-device-type": "desktop", labelAlignType: labelAlignType }, { children: [(0, jsx_runtime_1.jsx)(S_LabelWrapper, __assign({ labelAlignType: labelAlignType, labelTopSpacing: labelTopSpacing }, { children: labelAlignType === 'center' ? ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: labelText, styleTheme: "body2Bold", ellipsisMode: "use", lineLimit: 2 })) : ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: labelText, styleTheme: "body2Bold" })) })), (0, jsx_runtime_1.jsx)(S_InputFormWrapper, { children: inputForm }), captionText && ((0, jsx_runtime_1.jsxs)(S_CaptionWrapper, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b" }), (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: captionText, styleTheme: "caption1Regular" })] }))] })));
|
48
48
|
}
|
49
49
|
var centerArea = "\n'label inputForm'\n'. caption'";
|
50
50
|
var topArea = "\n'label inputForm'\n'label caption'";
|
@@ -58,7 +58,7 @@ var S_HorizontalFormGroupBox = styled_components_1.default.div(templateObject_4
|
|
58
58
|
var labelAlignType = _a.labelAlignType;
|
59
59
|
return labelAlignType === 'center' ? centerArea : topArea;
|
60
60
|
});
|
61
|
-
var S_LabelWrapper = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n align-
|
61
|
+
var S_LabelWrapper = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n align-self: ", ";\n grid-area: label;\n overflow: hidden;\n\n ", ";\n"], ["\n align-self: ", ";\n grid-area: label;\n overflow: hidden;\n\n ", ";\n"])), function (_a) {
|
62
62
|
var labelAlignType = _a.labelAlignType;
|
63
63
|
return labelAlignType === 'center' && labelAlignType;
|
64
64
|
}, function (_a) {
|
@@ -67,9 +67,5 @@ var S_LabelWrapper = styled_components_1.default.div(templateObject_5 || (templa
|
|
67
67
|
});
|
68
68
|
var S_InputFormWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n grid-area: inputForm;\n"], ["\n grid-area: inputForm;\n"])));
|
69
69
|
var S_CaptionWrapper = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n grid-area: caption;\n"], ["\n grid-area: caption;\n"])));
|
70
|
-
var S_IconWrapper = styled_components_1.default.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n align-items: center;\n display: inline-flex;\n height: 16px;\n height: 100%;\n justify-content: center;\n padding: 0 ", ";\n width: 16px;\n"], ["\n align-items: center;\n display: inline-flex;\n height: 16px;\n height: 100%;\n justify-content: center;\n padding: 0 ", ";\n width: 16px;\n"])), function (_a) {
|
71
|
-
var theme = _a.theme;
|
72
|
-
return theme.spacing.spacingA;
|
73
|
-
});
|
74
70
|
exports.default = HorizontalFormGroup;
|
75
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7
|
71
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
@@ -3,7 +3,6 @@ import type { PDSTabItemOption } from '../../../common/types';
|
|
3
3
|
export type ItemType = PDSTabItemOption;
|
4
4
|
type UserDesktopSideTabProps = {
|
5
5
|
itemArray: ItemType[];
|
6
|
-
spacingMode?: 'use' | 'none';
|
7
6
|
};
|
8
|
-
declare function UserDesktopSideTab({ itemArray
|
7
|
+
declare function UserDesktopSideTab({ itemArray }: UserDesktopSideTabProps): JSX.Element;
|
9
8
|
export default UserDesktopSideTab;
|
@@ -22,22 +22,22 @@ var jsx_runtime_1 = require("react/jsx-runtime");
|
|
22
22
|
var styled_components_1 = __importDefault(require("styled-components"));
|
23
23
|
var TextLabel_1 = require("../TextLabel");
|
24
24
|
function UserDesktopSideTab(_a) {
|
25
|
-
var itemArray = _a.itemArray
|
25
|
+
var itemArray = _a.itemArray;
|
26
26
|
var handleClickTabItem = function (item, e) {
|
27
27
|
if (item.onClick) {
|
28
28
|
item.onClick(e);
|
29
29
|
}
|
30
30
|
};
|
31
31
|
return ((0, jsx_runtime_1.jsx)("div", __assign({ "x-pds-name": "UserDesktopSideTab", "x-pds-element-type": "component", "x-pds-device-type": "desktop" }, { children: itemArray.map(function (item, index) {
|
32
|
-
return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({
|
32
|
+
return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ onClick: function (e) { return handleClickTabItem(item, e); } }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, lineLimit: 1, ellipsisMode: "use", styleTheme: "headingBold", colorTheme: item.isActive ? 'sysTextPrimary' : 'sysTextSecondary', singleLineMode: "use", wordBreak: "break_all" }) }), index));
|
33
33
|
}) })));
|
34
34
|
}
|
35
35
|
var S_TabWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n cursor: pointer;\n display: flex;\n height: 56px;\n padding-left: ", ";\n padding-right: ", ";\n"], ["\n align-items: center;\n background-color: ", ";\n cursor: pointer;\n display: flex;\n height: 56px;\n padding-left: ", ";\n padding-right: ", ";\n"])), function (_a) {
|
36
36
|
var theme = _a.theme;
|
37
37
|
return theme.ui_cpnt_userdesktopsidetab_base_area;
|
38
38
|
}, function (_a) {
|
39
|
-
var theme = _a.theme
|
40
|
-
return
|
39
|
+
var theme = _a.theme;
|
40
|
+
return theme.spacing.spacingE;
|
41
41
|
}, function (_a) {
|
42
42
|
var theme = _a.theme;
|
43
43
|
return theme.spacing.spacingD;
|
@@ -4,10 +4,9 @@ type TextObj = {
|
|
4
4
|
path: string;
|
5
5
|
title: PDSTextType;
|
6
6
|
};
|
7
|
-
type StyleTheme = 'main' | 'content' | 'content2';
|
8
7
|
type UserDesktopTabBarProps = {
|
9
8
|
itemArray?: PDSTabItemOption[];
|
10
|
-
styleTheme?:
|
9
|
+
styleTheme?: 'main';
|
11
10
|
/** @deprecated v1.5 해당 필드 대신 itemArray를 사용하세요. */
|
12
11
|
textArray?: TextObj[];
|
13
12
|
};
|
@@ -52,15 +52,7 @@ function UserDesktopTabBar(_a) {
|
|
52
52
|
item.onClick(e);
|
53
53
|
}
|
54
54
|
};
|
55
|
-
return ((0, jsx_runtime_1.jsx)(S_TabBar, __assign({ "x-pds-name": "UserDesktopTabBar", "x-pds-element-type": "component", "x-pds-device-type": "desktop", styleTheme: styleTheme }, { children:
|
56
|
-
if (styleTheme === 'content') {
|
57
|
-
return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ isActive: item.isActive, styleTheme: "content", text: item.title, onClick: function (e) { return handleClickTabItem_1(item, e); } }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, textAlign: "center", styleTheme: "headingBold", colorTheme: item.isActive ? 'sysTextPrimary' : 'sysTextSecondary', singleLineMode: "use" }) }), index));
|
58
|
-
}
|
59
|
-
if (styleTheme === 'content2') {
|
60
|
-
return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ isActive: item.isActive, styleTheme: "content2", text: item.title, onClick: function (e) { return handleClickTabItem_1(item, e); } }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, textAlign: "center", styleTheme: "leadParaBold", colorTheme: item.isActive ? 'usrTextBrandPrimary' : 'sysTextTertiary', singleLineMode: "use" }) }), index));
|
61
|
-
}
|
62
|
-
return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ isActive: item.isActive, styleTheme: styleTheme, text: item.title, onClick: function (e) { return handleClickTabItem_1(item, e); } }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, textAlign: "center", styleTheme: item.isActive ? 'body2Bold' : 'body2Regular', colorTheme: item.isActive ? 'usrTextBrandPrimary' : 'sysTextSecondary', singleLineMode: "use" }) }), index));
|
63
|
-
}) })));
|
55
|
+
return ((0, jsx_runtime_1.jsx)(S_TabBar, __assign({ "x-pds-name": "UserDesktopTabBar", "x-pds-element-type": "component", "x-pds-device-type": "desktop" }, { children: itemArray.map(function (item, index) { return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ isActive: item.isActive, styleTheme: styleTheme, text: item.title, onClick: function (e) { return handleClickTabItem_1(item, e); } }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, textAlign: "center", styleTheme: item.isActive ? 'body2Bold' : 'body2Regular', colorTheme: item.isActive ? 'usrTextBrandPrimary' : 'sysTextSecondary', singleLineMode: "use" }) }), index)); }) })));
|
64
56
|
}
|
65
57
|
if (textArray) {
|
66
58
|
var handleClick_1 = function (value) {
|
@@ -68,7 +60,7 @@ function UserDesktopTabBar(_a) {
|
|
68
60
|
history.push(value.path);
|
69
61
|
}
|
70
62
|
};
|
71
|
-
return ((0, jsx_runtime_1.jsx)(S_TabBar, __assign({ "x-pds-name": "UserDesktopTabBar", "x-pds-element-type": "component", "x-pds-device-type": "desktop"
|
63
|
+
return ((0, jsx_runtime_1.jsx)(S_TabBar, __assign({ "x-pds-name": "UserDesktopTabBar", "x-pds-element-type": "component", "x-pds-device-type": "desktop" }, { children: textArray.map(function (item) { return ((0, jsx_runtime_1.jsx)(S_TabWrapper, __assign({ styleTheme: styleTheme, isActive: pathname === item.path, onClick: function () {
|
72
64
|
handleClick_1(item);
|
73
65
|
} }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: item.title, styleTheme: pathname === item.path ? 'body2Bold' : 'body2Regular', colorTheme: pathname === item.path ? 'usrTextBrandPrimary' : 'sysTextSecondary', singleLineMode: "use" }) }), item.path)); }) })));
|
74
66
|
}
|
@@ -83,11 +75,7 @@ var S_TabWrapper = styled_components_1.default.div(templateObject_2 || (template
|
|
83
75
|
var styleTheme = _a.styleTheme;
|
84
76
|
switch (styleTheme) {
|
85
77
|
case 'main':
|
86
|
-
return mainStyle;
|
87
|
-
case 'content':
|
88
|
-
return contentStyle;
|
89
|
-
case 'content2':
|
90
|
-
return content2Style;
|
78
|
+
return mainStyle; // TODO : 추후 styleTheme 의 enum 값이 추가되면 수정
|
91
79
|
default:
|
92
80
|
return mainStyle;
|
93
81
|
}
|
@@ -111,51 +99,12 @@ var mainStyle = (0, styled_components_1.css)(templateObject_3 || (templateObject
|
|
111
99
|
var isActive = _a.isActive;
|
112
100
|
return !isActive && "display: none;";
|
113
101
|
});
|
114
|
-
var
|
115
|
-
var isActive = _a.isActive, theme = _a.theme;
|
116
|
-
return isActive && theme.ui_cpnt_tabbar_base_area;
|
117
|
-
}, function (_a) {
|
118
|
-
var theme = _a.theme;
|
119
|
-
return theme.spacing.spacingF;
|
120
|
-
}, function (_a) {
|
121
|
-
var theme = _a.theme;
|
122
|
-
return theme.ui_19;
|
123
|
-
}, function (_a) {
|
124
|
-
var isActive = _a.isActive;
|
125
|
-
return !isActive && "display: none;";
|
126
|
-
});
|
127
|
-
var content2Style = (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n cursor: pointer;\n display: flex;\n height: 48px;\n margin-right: ", ";\n padding: ", ";\n position: relative;\n\n ", "\n\n &:last-child {\n margin-right: 0;\n }\n"], ["\n align-items: center;\n background-color: ", ";\n cursor: pointer;\n display: flex;\n height: 48px;\n margin-right: ", ";\n padding: ", ";\n position: relative;\n\n ", "\n\n &:last-child {\n margin-right: 0;\n }\n"])), function (_a) {
|
128
|
-
var isActive = _a.isActive, theme = _a.theme;
|
129
|
-
return isActive ? theme.ui_123 : theme.ui_cpnt_sheet_base_03;
|
130
|
-
}, function (_a) {
|
131
|
-
var theme = _a.theme;
|
132
|
-
return theme.spacing.spacingC;
|
133
|
-
}, function (_a) {
|
134
|
-
var theme = _a.theme;
|
135
|
-
return "0 ".concat(theme.spacing.spacingD);
|
136
|
-
}, function (_a) {
|
137
|
-
var isActive = _a.isActive;
|
138
|
-
return isActive && "border-radius: 24px;";
|
139
|
-
});
|
140
|
-
var S_TabBar = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n align-items: ", ";\n background-color: ", ";\n border-bottom: ", ";\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n height: ", ";\n justify-content: center;\n"], ["\n align-items: ", ";\n background-color: ", ";\n border-bottom: ", ";\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n height: ", ";\n justify-content: center;\n"])), function (_a) {
|
141
|
-
var styleTheme = _a.styleTheme;
|
142
|
-
return styleTheme === 'content2' && 'center';
|
143
|
-
}, function (_a) {
|
102
|
+
var S_TabBar = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n border-bottom: 1px solid ", ";\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n height: 48px;\n justify-content: center;\n"], ["\n background-color: ", ";\n border-bottom: 1px solid ", ";\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n height: 48px;\n justify-content: center;\n"])), function (_a) {
|
144
103
|
var theme = _a.theme;
|
145
104
|
return theme.ui_cpnt_tabbar_base_area;
|
146
105
|
}, function (_a) {
|
147
|
-
var
|
148
|
-
return
|
149
|
-
}, function (_a) {
|
150
|
-
var styleTheme = _a.styleTheme;
|
151
|
-
switch (styleTheme) {
|
152
|
-
case 'content':
|
153
|
-
return '64px';
|
154
|
-
case 'content2':
|
155
|
-
return '96px';
|
156
|
-
default:
|
157
|
-
return '48px';
|
158
|
-
}
|
106
|
+
var theme = _a.theme;
|
107
|
+
return theme.ui_cpnt_divider;
|
159
108
|
});
|
160
109
|
exports.default = UserDesktopTabBar;
|
161
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4
|
110
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
|
@@ -26,20 +26,7 @@ var SectionMatcher_1 = require("./components/SectionMatcher");
|
|
26
26
|
var dynamicLayoutContext_1 = require("./dynamicLayoutContext");
|
27
27
|
function DynamicLayout(_a) {
|
28
28
|
var device = _a.device, _b = _a.mode, mode = _b === void 0 ? 'NORMAL' : _b, isPreview = _a.isPreview, sections = _a.sections, scrollDownTargetSectionId = _a.scrollDownTargetSectionId, editingSectionId = _a.editingSectionId, navigationHandler = _a.navigationHandler, sectionActionHandler = _a.sectionActionHandler, onClickEditSection = _a.onClickEditSection, programmedSectionComponents = _a.programmedSectionComponents, shortcutKeyMode = _a.shortcutKeyMode, dynamicLayoutRef = _a.dynamicLayoutRef;
|
29
|
-
var filteredSortedSection = __spreadArray([], sections, true).filter(function (section) {
|
30
|
-
var _a;
|
31
|
-
if (!section.display) {
|
32
|
-
return false;
|
33
|
-
}
|
34
|
-
if (section.type === 'CUSTOM' && mode !== 'EDIT') {
|
35
|
-
var deviceKey = device === 'DESKTOP'
|
36
|
-
? 'CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP'
|
37
|
-
: 'CB_CONTENT_PROP_VISIBILITY_SPEC_MOBILEWEB';
|
38
|
-
var isVisible = (_a = section.jsonProperties) === null || _a === void 0 ? void 0 : _a.data.CB_CONTENT_PROP_VISIBILITY[deviceKey];
|
39
|
-
return isVisible;
|
40
|
-
}
|
41
|
-
return true;
|
42
|
-
})
|
29
|
+
var filteredSortedSection = __spreadArray([], sections, true).filter(function (section) { return section.display; })
|
43
30
|
.sort(function (a, b) { return a.order - b.order; });
|
44
31
|
var iframeSection = filteredSortedSection.find(function (section) { return section.manifest.schema === 'EXP_IFRAME' && section.display; });
|
45
32
|
return ((0, jsx_runtime_1.jsxs)(dynamicLayoutContext_1.dynamicLayoutContext.Provider, __assign({ value: {
|
@@ -21,13 +21,17 @@ 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
|
+
};
|
24
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
25
28
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
29
|
+
var FlexGridCustomSection_1 = __importDefault(require("../../../DynamicLayout/sections/CustomSection/FlexGridCustomSection"));
|
26
30
|
var sections_1 = require("../../sections");
|
27
31
|
function SectionMatcher(_a) {
|
28
32
|
var props = __rest(_a, []);
|
29
33
|
if (props.type === 'CUSTOM') {
|
30
|
-
return (0, jsx_runtime_1.jsx)(
|
34
|
+
return (0, jsx_runtime_1.jsx)(FlexGridCustomSection_1.default, __assign({}, props));
|
31
35
|
}
|
32
36
|
var schema = props.manifest.schema;
|
33
37
|
switch (schema) {
|
@@ -54,9 +54,8 @@ function YouTubeIframe(_a) {
|
|
54
54
|
var CUED = 5;
|
55
55
|
var stateCode = event.data;
|
56
56
|
switch (stateCode) {
|
57
|
-
case BUFFERING:
|
58
|
-
break;
|
59
57
|
case UNSTARTED:
|
58
|
+
case BUFFERING:
|
60
59
|
case CUED:
|
61
60
|
setIsYoutubeLoading(true);
|
62
61
|
break;
|
@@ -75,11 +74,8 @@ function YouTubeIframe(_a) {
|
|
75
74
|
var restartVideoSection = function () {
|
76
75
|
event.target.seekTo(section.start);
|
77
76
|
};
|
78
|
-
var
|
79
|
-
|
80
|
-
var id_1 = setTimeout(restartVideoSection, duration * 1000 - 1000);
|
81
|
-
setTimeoutId(id_1);
|
82
|
-
}
|
77
|
+
var id_1 = setTimeout(restartVideoSection, duration * 1000);
|
78
|
+
setTimeoutId(id_1);
|
83
79
|
}
|
84
80
|
break;
|
85
81
|
}
|