pds-dev-kit-web-test 0.0.14 → 0.0.15
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/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/MenuItemNav.js +2 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/components/PageMenuItemNav.d.ts +12 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/components/PageMenuItemNav.js +51 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/types.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/desktop/components/Section/Section.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/desktop/components/Section/Section.js +6 -3
- package/dist/src/sub/DynamicLayout/desktop/components/common/Carousel.js +36 -5
- package/dist/src/sub/DynamicLayout/desktop/components/common/swiper.style.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/desktop/components/common/swiper.style.js +10 -0
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsCarouselSection/templates/TemplateA/TemplateA.js +4 -6
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsCarouselSection/templates/TemplateB/TemplateB.js +5 -7
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateA/TemplateA.js +8 -5
- package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateB/TemplateB.js +7 -4
- package/dist/src/sub/DynamicLayout/desktop/sections/FooterSection/templates/TemplateA/TemplateA.js +1 -4
- package/dist/src/sub/DynamicLayout/desktop/sections/FooterSection/templates/TemplateB/TemplateB.js +1 -4
- package/dist/src/sub/DynamicLayout/desktop/sections/InfoBoxSection/templates/TemplateA/TemplateA.js +1 -1
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateA/TemplateA.js +2 -2
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateB/TemplateB.js +2 -2
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateC/TemplateC.js +1 -1
- package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateD/TemplateD.js +1 -1
- package/dist/src/sub/DynamicLayout/mobile/components/Section/Section.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/mobile/components/Section/Section.js +6 -3
- package/dist/src/sub/DynamicLayout/mobile/components/common/Carousel.js +2 -2
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsCarouselSection/templates/TemplateA/TemplateA.js +6 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsCarouselSection/templates/TemplateB/TemplateB.js +6 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateA/TemplateA.js +15 -13
- package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateB/TemplateB.js +7 -10
- package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateA/TemplateA.js +3 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateB/TemplateB.js +3 -6
- package/dist/src/sub/DynamicLayout/mobile/sections/InfoBoxSection/templates/TemplateA/TemplateA.js +5 -8
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateA/TemplateA.js +14 -3
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateB/TemplateB.js +14 -3
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateC/TemplateC.js +1 -1
- package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateD/TemplateD.js +1 -1
- package/dist/src/sub/DynamicLayout/types.js +5 -5
- package/package.json +1 -1
- package/release-note.md +17 -7
package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/MenuItemNav.js
CHANGED
|
@@ -43,6 +43,7 @@ var hybrid_1 = require("../../../../../hybrid");
|
|
|
43
43
|
var ContextMenuNavs_1 = require("../ContextMenuNavs");
|
|
44
44
|
var DisplayOnlyMenuItemNav_1 = __importDefault(require("./components/DisplayOnlyMenuItemNav"));
|
|
45
45
|
var InternalLinkMenuItemNav_1 = __importDefault(require("./components/InternalLinkMenuItemNav"));
|
|
46
|
+
var PageMenuItemNav_1 = __importDefault(require("./components/PageMenuItemNav"));
|
|
46
47
|
var PAppMenuItemNav_1 = __importDefault(require("./components/PAppMenuItemNav"));
|
|
47
48
|
var WebMenuItemNav_1 = __importDefault(require("./components/WebMenuItemNav"));
|
|
48
49
|
// NOTE: 서버에서 itemType으로 enum값이 잘 오면 아래 불필요한 케이스/default 간소화
|
|
@@ -61,6 +62,7 @@ function MenuItemNav(_a) {
|
|
|
61
62
|
menu.menuItemType === 'NAV_P_APP' && menu.pAppCode && (react_1.default.createElement(PAppMenuItemNav_1.default, { menu: __assign(__assign({}, menu), { pAppCode: menu.pAppCode }), showMenuAsIcon: showMenuAsIcon })),
|
|
62
63
|
menu.menuItemType === 'WEB_LINK' && menu.conversionLinkSrc && (react_1.default.createElement(WebMenuItemNav_1.default, { openNewTab: true, menu: __assign(__assign({}, menu), { conversionLinkSrc: menu.conversionLinkSrc }), showMenuAsIcon: showMenuAsIcon })),
|
|
63
64
|
menu.menuItemType === 'INTERNAL_LINK' && menu.conversionLinkSrc && (react_1.default.createElement(InternalLinkMenuItemNav_1.default, { menu: __assign(__assign({}, menu), { conversionLinkSrc: menu.conversionLinkSrc }), showMenuAsIcon: showMenuAsIcon })),
|
|
65
|
+
menu.menuItemType === 'NAV_PAGE' && menu.slug && (react_1.default.createElement(PageMenuItemNav_1.default, { menu: __assign(__assign({}, menu), { slug: menu.slug }), showMenuAsIcon: showMenuAsIcon })),
|
|
64
66
|
menu.menuItemType === 'DISPLAY_ONLY' && (react_1.default.createElement(DisplayOnlyMenuItemNav_1.default, { menu: __assign(__assign({}, menu), { conversionLinkSrc: '' }), showMenuAsIcon: showMenuAsIcon })),
|
|
65
67
|
isContextOpen && menu.parsedNodes.length > 0 && (react_1.default.createElement(ContextMenuNavs_1.ContextMenuNavs, { parentRef: ref }, menu.parsedNodes.map(function (nav, index) { return (react_1.default.createElement(ContextMenuNavs_1.ContextMenuItemNav, { key: index, menu: nav })); })))),
|
|
66
68
|
showMenuAsIcon ? (react_1.default.createElement(hybrid_1.Spacing, { spacingType: "width", size: "spacing_b" })) : (react_1.default.createElement(hybrid_1.Spacing, { spacingType: "width", size: "spacing_f" }))));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ParsedNode } from '../../../types';
|
|
3
|
+
declare type WithRequired<T, K extends keyof T> = T & {
|
|
4
|
+
[P in K]-?: T[P];
|
|
5
|
+
};
|
|
6
|
+
declare type Props = {
|
|
7
|
+
menu: WithRequired<ParsedNode, 'slug'>;
|
|
8
|
+
showMenuAsIcon?: boolean;
|
|
9
|
+
isContextMenu?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare function PageMenuItemNav({ menu, showMenuAsIcon, isContextMenu }: Props): JSX.Element;
|
|
12
|
+
export default PageMenuItemNav;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var react_1 = __importStar(require("react"));
|
|
26
|
+
var react_router_dom_1 = require("react-router-dom");
|
|
27
|
+
var Navigations_1 = require("../../../../../../common/components/Navigations");
|
|
28
|
+
var DynamicDesktopNavBar_1 = require("../../../DynamicDesktopNavBar");
|
|
29
|
+
var IconNav_1 = __importDefault(require("../../IconNav"));
|
|
30
|
+
var ImageIconNav_1 = __importDefault(require("../../ImageIconNav"));
|
|
31
|
+
function PageMenuItemNav(_a) {
|
|
32
|
+
var menu = _a.menu, showMenuAsIcon = _a.showMenuAsIcon, _b = _a.isContextMenu, isContextMenu = _b === void 0 ? false : _b;
|
|
33
|
+
var _c = (0, react_1.useContext)(DynamicDesktopNavBar_1.BasePathContext), basePath = _c.basePath, activeMode = _c.activeMode;
|
|
34
|
+
var activeMatch = (0, react_router_dom_1.useRouteMatch)(basePath + "/pages/:activeKey");
|
|
35
|
+
var isActive = (0, react_1.useMemo)(function () {
|
|
36
|
+
if (activeMode === 'BY_CLICK') {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
return (activeMatch === null || activeMatch === void 0 ? void 0 : activeMatch.params.activeKey) === menu.slug;
|
|
40
|
+
}, [activeMode, menu, activeMatch]);
|
|
41
|
+
if (showMenuAsIcon) {
|
|
42
|
+
if (menu.iconSrc) {
|
|
43
|
+
return (react_1.default.createElement(ImageIconNav_1.default, { to: basePath + "/pages/" + menu.slug, iconSrc: menu.iconSrc, openNewTab: false }));
|
|
44
|
+
}
|
|
45
|
+
if (menu.iconName) {
|
|
46
|
+
return (react_1.default.createElement(IconNav_1.default, { to: basePath + "/pages/" + menu.slug, iconName: menu.iconName, openNewTab: false }));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return isContextMenu ? (react_1.default.createElement(Navigations_1.ContextTextLabelNav, { isActive: isActive, preventLineChange: true, openNewTab: false, to: basePath + "/pages/" + menu.slug, text: menu.name })) : (react_1.default.createElement(Navigations_1.TextLabelNav, { isActive: isActive, preventLineChange: true, openNewTab: false, to: basePath + "/pages/" + menu.slug, text: menu.name }));
|
|
50
|
+
}
|
|
51
|
+
exports.default = PageMenuItemNav;
|
|
@@ -8,7 +8,8 @@ export declare type ParsedNode = {
|
|
|
8
8
|
iconName?: PDSIconType;
|
|
9
9
|
visibilityLevel: string;
|
|
10
10
|
pAppCode?: string;
|
|
11
|
+
slug?: string;
|
|
11
12
|
conversionLinkSrc?: string;
|
|
12
13
|
parsedNodes: Array<ParsedNode>;
|
|
13
14
|
};
|
|
14
|
-
export declare type menuItemTypes = 'NAV_P_APP' | 'WEB_LINK' | 'INTERNAL_LINK' | 'DISPLAY_ONLY';
|
|
15
|
+
export declare type menuItemTypes = 'NAV_P_APP' | 'WEB_LINK' | 'INTERNAL_LINK' | 'DISPLAY_ONLY' | 'NAV_PAGE';
|
|
@@ -6,7 +6,9 @@ declare function Section({ children, ...props }: ISection & {
|
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
}): JSX.Element;
|
|
8
8
|
declare namespace Section {
|
|
9
|
-
var Title: ({ text, color, ...textLabelProps }: ISectionTitle & TextLabelProps
|
|
9
|
+
var Title: ({ text, color, lineHeight, ...textLabelProps }: ISectionTitle & TextLabelProps & {
|
|
10
|
+
lineHeight?: number | undefined;
|
|
11
|
+
}) => JSX.Element;
|
|
10
12
|
var Description: ({ text, color, ...textLabelProps }: ISectionDescription & TextLabelProps) => JSX.Element;
|
|
11
13
|
var Image: ({ ...imageViewProps }: ImageViewProps) => JSX.Element;
|
|
12
14
|
var Button: ({ buttonType, backgroundColor, textColor, text, linkType, src, state, borderColor }: ISectionButton) => JSX.Element;
|
|
@@ -144,13 +144,16 @@ var S_YoutubeContainer = styled_components_1.default.div(templateObject_5 || (te
|
|
|
144
144
|
});
|
|
145
145
|
// TITLE
|
|
146
146
|
function Title(_a) {
|
|
147
|
-
var text = _a.text, color = _a.color, textLabelProps = __rest(_a, ["text", "color"]);
|
|
148
|
-
return (react_1.default.createElement(S_TitleStyleWrapper, { color: color },
|
|
147
|
+
var text = _a.text, color = _a.color, _b = _a.lineHeight, lineHeight = _b === void 0 ? 1.3 : _b, textLabelProps = __rest(_a, ["text", "color", "lineHeight"]);
|
|
148
|
+
return (react_1.default.createElement(S_TitleStyleWrapper, { color: color, lineHeight: lineHeight },
|
|
149
149
|
react_1.default.createElement(desktop_1.D_TextLabel, __assign({ text: text, colorTheme: "sysTextPrimary" }, textLabelProps))));
|
|
150
150
|
}
|
|
151
|
-
var S_TitleStyleWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n & > div {\n color: ", ";\n }\n"], ["\n & > div {\n color: ", ";\n }\n"])), function (_a) {
|
|
151
|
+
var S_TitleStyleWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n & > div {\n color: ", ";\n line-height: ", ";\n }\n"], ["\n & > div {\n color: ", ";\n line-height: ", ";\n }\n"])), function (_a) {
|
|
152
152
|
var color = _a.color;
|
|
153
153
|
return color;
|
|
154
|
+
}, function (_a) {
|
|
155
|
+
var lineHeight = _a.lineHeight;
|
|
156
|
+
return lineHeight;
|
|
154
157
|
});
|
|
155
158
|
// DESCRIPTION
|
|
156
159
|
function Description(_a) {
|
|
@@ -31,15 +31,32 @@ var styled_components_1 = __importDefault(require("styled-components"));
|
|
|
31
31
|
var swiper_1 = require("swiper");
|
|
32
32
|
var react_2 = require("swiper/react");
|
|
33
33
|
var desktop_1 = require("../../../../../desktop");
|
|
34
|
+
var swiper_style_1 = __importDefault(require("./swiper.style"));
|
|
34
35
|
function Carousel(_a) {
|
|
35
|
-
var children = _a.children, spaceBetween = _a.spaceBetween, slidesPerView = _a.slidesPerView, slidesPerGroup = _a.slidesPerGroup, breakpoints = _a.breakpoints, _b = _a.mode, mode = _b === void 0 ? 'normal' : _b, _c = _a.autoplayDelay, autoplayDelay = _c === void 0 ?
|
|
36
|
+
var children = _a.children, spaceBetween = _a.spaceBetween, slidesPerView = _a.slidesPerView, slidesPerGroup = _a.slidesPerGroup, breakpoints = _a.breakpoints, _b = _a.mode, mode = _b === void 0 ? 'normal' : _b, _c = _a.autoplayDelay, autoplayDelay = _c === void 0 ? 3 : _c, buttonSpacing = _a.buttonSpacing;
|
|
36
37
|
var swiperRef = (0, react_1.useRef)(null);
|
|
37
38
|
var _d = (0, react_1.useState)(true), isBeginning = _d[0], setIsBeginning = _d[1];
|
|
38
39
|
var _e = (0, react_1.useState)(true), isEnd = _e[0], setIsEnd = _e[1];
|
|
39
40
|
var _f = (0, react_1.useState)(true), isLocked = _f[0], setIsLocked = _f[1];
|
|
41
|
+
var _g = (0, react_1.useState)(mode), targetMode = _g[0], setTargetMode = _g[1];
|
|
42
|
+
/**
|
|
43
|
+
* @when : 캐러셀이 처음 화면에 렌더링될 때
|
|
44
|
+
* @expected
|
|
45
|
+
* 캐러셀의 아이템 수가 slidesPerView보다 적다면,
|
|
46
|
+
* prev / next 버튼을 숨기고 mode를 normal로 강제합니다.
|
|
47
|
+
* 그렇지 않다면, 사용자가 설정한 mode를 사용합니다.
|
|
48
|
+
* @clear : -
|
|
49
|
+
*/
|
|
50
|
+
(0, react_1.useEffect)(function () {
|
|
51
|
+
if (react_1.default.Children.count(children) <= slidesPerView) {
|
|
52
|
+
setTargetMode('normal');
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
setTargetMode(mode);
|
|
56
|
+
}, [slidesPerView, mode]);
|
|
40
57
|
return (react_1.default.createElement(S_Carousel, null,
|
|
41
58
|
react_1.default.createElement(S_SwiperStyleWrapper, null,
|
|
42
|
-
react_1.default.createElement(react_2.Swiper, { modules: [swiper_1.Navigation, swiper_1.Autoplay], centerInsufficientSlides: true, spaceBetween: spaceBetween, slidesPerView: slidesPerView, slidesPerGroup: slidesPerGroup, breakpoints: breakpoints, loop:
|
|
59
|
+
react_1.default.createElement(react_2.Swiper, { modules: [swiper_1.Navigation, swiper_1.Autoplay], centerInsufficientSlides: true, spaceBetween: spaceBetween, slidesPerView: slidesPerView, slidesPerGroup: slidesPerGroup, breakpoints: breakpoints, loop: targetMode === 'loop' || targetMode === 'autoplay', autoplay: targetMode === 'autoplay'
|
|
43
60
|
? { delay: autoplayDelay * 1000, disableOnInteraction: false }
|
|
44
61
|
: undefined, onSwiper: function (swiper) {
|
|
45
62
|
swiperRef.current = swiper;
|
|
@@ -68,8 +85,22 @@ function Carousel(_a) {
|
|
|
68
85
|
}, onUnlock: function () {
|
|
69
86
|
setIsLocked(false);
|
|
70
87
|
}, onResize: function (swiper) {
|
|
71
|
-
|
|
72
|
-
|
|
88
|
+
if (swiper.params.loop) {
|
|
89
|
+
setIsBeginning(false);
|
|
90
|
+
setIsEnd(false);
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
setIsBeginning(swiper.isBeginning);
|
|
94
|
+
setIsEnd(swiper.isEnd);
|
|
95
|
+
}
|
|
96
|
+
}, onBreakpoint: function (swiper) {
|
|
97
|
+
if (typeof swiper.params.slidesPerView === 'number') {
|
|
98
|
+
if (react_1.default.Children.count(children) <= swiper.params.slidesPerView) {
|
|
99
|
+
setTargetMode('normal');
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
setTargetMode(mode);
|
|
103
|
+
}
|
|
73
104
|
} }, react_1.default.Children.map(children, function (child) {
|
|
74
105
|
return react_1.default.createElement(react_2.SwiperSlide, null, child);
|
|
75
106
|
}))),
|
|
@@ -105,6 +136,6 @@ var S_ButtonWrapper = styled_components_1.default.div(templateObject_2 || (templ
|
|
|
105
136
|
var right = _a.right;
|
|
106
137
|
return right && "right : " + right + "; transform : translateX(100%);";
|
|
107
138
|
});
|
|
108
|
-
var S_SwiperStyleWrapper = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /** NOTE: Swiper\uAC00 \uC81C\uACF5\uD558\uB294 css \uD30C\uC77C\uC744 webpack \uC774\uC288\uB85C import\uD558\uC9C0 \uBABB\uD574\uC11C \uC784\uC2DC\uB85C \uB9CC\uB4E0 css wrapper\uC785\uB2C8\uB2E4.\n * \uCC28\uD6C4 Webpack 5\uB85C \uB9C8\uC774\uADF8\uB808\uC774\uC158 \uB418\uB294 \uACBD\uC6B0 swiper \uD648\uD398\uC774\uC9C0\uC5D0\uC11C \uCD94\uCC9C\uD558\uB294 \uC0AC\uC6A9\uBC95\uC73C\uB85C \uC218\uC815\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.\n */\n\n @font-face {\n font-family: swiper-icons;\n src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');\n font-weight: 400;\n font-style: normal;\n }\n\n :root {\n --swiper-theme-color: #007aff;\n }\n\n .swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n z-index: 1;\n }\n\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n\n .swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n box-sizing: content-box;\n }\n\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n\n .swiper-pointer-events {\n touch-action: pan-y;\n }\n\n .swiper-pointer-events.swiper-vertical {\n touch-action: pan-x;\n }\n\n .swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n }\n\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n\n .swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-3d,\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n\n .swiper-3d .swiper-cube-shadow,\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-css-mode > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none;\n -ms-overflow-style: none;\n }\n\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n }\n\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n }\n\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n width: 1px;\n height: var(--swiper-virtual-size);\n }\n\n :root {\n --swiper-navigation-size: 44px;\n }\n\n .swiper-button-next,\n .swiper-button-prev {\n position: absolute;\n top: 50%;\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n height: var(--swiper-navigation-size);\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n z-index: 10;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n }\n\n .swiper-button-next.swiper-button-disabled,\n .swiper-button-prev.swiper-button-disabled {\n opacity: 0.35;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-button-next.swiper-button-hidden,\n .swiper-button-prev.swiper-button-hidden {\n opacity: 0;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-navigation-disabled .swiper-button-next,\n .swiper-navigation-disabled .swiper-button-prev {\n display: none !important;\n }\n\n .swiper-button-next:after,\n .swiper-button-prev:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n text-transform: none !important;\n letter-spacing: 0;\n font-variant: initial;\n line-height: 1;\n }\n\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: 10px;\n right: auto;\n }\n\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n right: 10px;\n left: auto;\n }\n\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n\n .swiper-button-lock {\n display: none;\n }\n\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 0.3s opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n }\n\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal,\n .swiper-pagination-custom,\n .swiper-pagination-fraction {\n bottom: 10px;\n left: 0;\n width: 100%;\n }\n\n .swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: 50%;\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n }\n\n button.swiper-pagination-bullet {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n -webkit-appearance: none;\n appearance: none;\n }\n\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n\n .swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets,\n .swiper-vertical > .swiper-pagination-bullets {\n right: 10px;\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 0.2s transform, 0.2s top;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s left;\n }\n\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s right;\n }\n\n .swiper-pagination-progressbar {\n background: rgba(0, 0, 0, 0.25);\n position: absolute;\n }\n\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: 4px;\n left: 0;\n top: 0;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-vertical > .swiper-pagination-progressbar {\n width: 4px;\n height: 100%;\n left: 0;\n top: 0;\n }\n\n .swiper-pagination-lock {\n display: none;\n }\n\n .swiper-scrollbar {\n border-radius: 10px;\n position: relative;\n -ms-touch-action: none;\n background: rgba(0, 0, 0, 0.1);\n }\n\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n position: absolute;\n left: 1%;\n bottom: 3px;\n z-index: 50;\n height: 5px;\n width: 98%;\n }\n\n .swiper-scrollbar.swiper-scrollbar-vertical,\n .swiper-vertical > .swiper-scrollbar {\n position: absolute;\n right: 3px;\n top: 1%;\n z-index: 50;\n width: 5px;\n height: 98%;\n }\n\n .swiper-scrollbar-drag {\n height: 100%;\n width: 100%;\n position: relative;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n left: 0;\n top: 0;\n }\n\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n\n .swiper-scrollbar-lock {\n display: none;\n }\n\n .swiper-zoom-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n }\n\n .swiper-zoom-container > canvas,\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n }\n\n .swiper-slide-zoomed {\n cursor: move;\n }\n\n .swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n }\n\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n .swiper .swiper-notification {\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n opacity: 0;\n z-index: -1000;\n }\n\n .swiper-free-mode > .swiper-wrapper {\n transition-timing-function: ease-out;\n margin: 0 auto;\n }\n\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n\n .swiper-grid-column > .swiper-wrapper {\n flex-wrap: wrap;\n flex-direction: column;\n }\n\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube {\n overflow: visible;\n }\n\n .swiper-cube .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n visibility: hidden;\n transform-origin: 0 0;\n width: 100%;\n height: 100%;\n }\n\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-next + .swiper-slide,\n .swiper-cube .swiper-slide-prev {\n pointer-events: auto;\n visibility: visible;\n }\n\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right,\n .swiper-cube .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-cube .swiper-cube-shadow {\n position: absolute;\n left: 0;\n bottom: 0px;\n width: 100%;\n height: 100%;\n opacity: 0.6;\n z-index: 0;\n }\n\n .swiper-cube .swiper-cube-shadow:before {\n content: '';\n background: #000;\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n filter: blur(50px);\n }\n\n .swiper-flip {\n overflow: visible;\n }\n\n .swiper-flip .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n }\n\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right,\n .swiper-flip .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n\n .swiper-cards {\n overflow: visible;\n }\n\n .swiper-cards .swiper-slide {\n transform-origin: center bottom;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n }\n"], ["\n /** NOTE: Swiper\uAC00 \uC81C\uACF5\uD558\uB294 css \uD30C\uC77C\uC744 webpack \uC774\uC288\uB85C import\uD558\uC9C0 \uBABB\uD574\uC11C \uC784\uC2DC\uB85C \uB9CC\uB4E0 css wrapper\uC785\uB2C8\uB2E4.\n * \uCC28\uD6C4 Webpack 5\uB85C \uB9C8\uC774\uADF8\uB808\uC774\uC158 \uB418\uB294 \uACBD\uC6B0 swiper \uD648\uD398\uC774\uC9C0\uC5D0\uC11C \uCD94\uCC9C\uD558\uB294 \uC0AC\uC6A9\uBC95\uC73C\uB85C \uC218\uC815\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.\n */\n\n @font-face {\n font-family: swiper-icons;\n src: url('data:application/font-woff;charset=utf-8;base64, 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');\n font-weight: 400;\n font-style: normal;\n }\n\n :root {\n --swiper-theme-color: #007aff;\n }\n\n .swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n z-index: 1;\n }\n\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n\n .swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n box-sizing: content-box;\n }\n\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n\n .swiper-pointer-events {\n touch-action: pan-y;\n }\n\n .swiper-pointer-events.swiper-vertical {\n touch-action: pan-x;\n }\n\n .swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n }\n\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n\n .swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-3d,\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n\n .swiper-3d .swiper-cube-shadow,\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-css-mode > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none;\n -ms-overflow-style: none;\n }\n\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n }\n\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n }\n\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n width: 1px;\n height: var(--swiper-virtual-size);\n }\n\n :root {\n --swiper-navigation-size: 44px;\n }\n\n .swiper-button-next,\n .swiper-button-prev {\n position: absolute;\n top: 50%;\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n height: var(--swiper-navigation-size);\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n z-index: 10;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n }\n\n .swiper-button-next.swiper-button-disabled,\n .swiper-button-prev.swiper-button-disabled {\n opacity: 0.35;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-button-next.swiper-button-hidden,\n .swiper-button-prev.swiper-button-hidden {\n opacity: 0;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-navigation-disabled .swiper-button-next,\n .swiper-navigation-disabled .swiper-button-prev {\n display: none !important;\n }\n\n .swiper-button-next:after,\n .swiper-button-prev:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n text-transform: none !important;\n letter-spacing: 0;\n font-variant: initial;\n line-height: 1;\n }\n\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: 10px;\n right: auto;\n }\n\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n right: 10px;\n left: auto;\n }\n\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n\n .swiper-button-lock {\n display: none;\n }\n\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 0.3s opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n }\n\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal,\n .swiper-pagination-custom,\n .swiper-pagination-fraction {\n bottom: 10px;\n left: 0;\n width: 100%;\n }\n\n .swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: 50%;\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n }\n\n button.swiper-pagination-bullet {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n -webkit-appearance: none;\n appearance: none;\n }\n\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n\n .swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets,\n .swiper-vertical > .swiper-pagination-bullets {\n right: 10px;\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 0.2s transform, 0.2s top;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s left;\n }\n\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s right;\n }\n\n .swiper-pagination-progressbar {\n background: rgba(0, 0, 0, 0.25);\n position: absolute;\n }\n\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: 4px;\n left: 0;\n top: 0;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-vertical > .swiper-pagination-progressbar {\n width: 4px;\n height: 100%;\n left: 0;\n top: 0;\n }\n\n .swiper-pagination-lock {\n display: none;\n }\n\n .swiper-scrollbar {\n border-radius: 10px;\n position: relative;\n -ms-touch-action: none;\n background: rgba(0, 0, 0, 0.1);\n }\n\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n position: absolute;\n left: 1%;\n bottom: 3px;\n z-index: 50;\n height: 5px;\n width: 98%;\n }\n\n .swiper-scrollbar.swiper-scrollbar-vertical,\n .swiper-vertical > .swiper-scrollbar {\n position: absolute;\n right: 3px;\n top: 1%;\n z-index: 50;\n width: 5px;\n height: 98%;\n }\n\n .swiper-scrollbar-drag {\n height: 100%;\n width: 100%;\n position: relative;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n left: 0;\n top: 0;\n }\n\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n\n .swiper-scrollbar-lock {\n display: none;\n }\n\n .swiper-zoom-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n }\n\n .swiper-zoom-container > canvas,\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n }\n\n .swiper-slide-zoomed {\n cursor: move;\n }\n\n .swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n }\n\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n .swiper .swiper-notification {\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n opacity: 0;\n z-index: -1000;\n }\n\n .swiper-free-mode > .swiper-wrapper {\n transition-timing-function: ease-out;\n margin: 0 auto;\n }\n\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n\n .swiper-grid-column > .swiper-wrapper {\n flex-wrap: wrap;\n flex-direction: column;\n }\n\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube {\n overflow: visible;\n }\n\n .swiper-cube .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n visibility: hidden;\n transform-origin: 0 0;\n width: 100%;\n height: 100%;\n }\n\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-next + .swiper-slide,\n .swiper-cube .swiper-slide-prev {\n pointer-events: auto;\n visibility: visible;\n }\n\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right,\n .swiper-cube .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-cube .swiper-cube-shadow {\n position: absolute;\n left: 0;\n bottom: 0px;\n width: 100%;\n height: 100%;\n opacity: 0.6;\n z-index: 0;\n }\n\n .swiper-cube .swiper-cube-shadow:before {\n content: '';\n background: #000;\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n filter: blur(50px);\n }\n\n .swiper-flip {\n overflow: visible;\n }\n\n .swiper-flip .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n }\n\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right,\n .swiper-flip .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n\n .swiper-cards {\n overflow: visible;\n }\n\n .swiper-cards .swiper-slide {\n transform-origin: center bottom;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n }\n"])));
|
|
139
|
+
var S_SwiperStyleWrapper = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /** NOTE: Swiper\uAC00 \uC81C\uACF5\uD558\uB294 css \uD30C\uC77C\uC744 webpack \uC774\uC288\uB85C import\uD558\uC9C0 \uBABB\uD574\uC11C \uC784\uC2DC\uB85C \uB9CC\uB4E0 css wrapper\uC785\uB2C8\uB2E4.\n * \uCC28\uD6C4 Webpack 5\uB85C \uB9C8\uC774\uADF8\uB808\uC774\uC158 \uB418\uB294 \uACBD\uC6B0 swiper \uD648\uD398\uC774\uC9C0\uC5D0\uC11C \uCD94\uCC9C\uD558\uB294 \uC0AC\uC6A9\uBC95\uC73C\uB85C \uC218\uC815\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.\n */\n\n ", "\n"], ["\n /** NOTE: Swiper\uAC00 \uC81C\uACF5\uD558\uB294 css \uD30C\uC77C\uC744 webpack \uC774\uC288\uB85C import\uD558\uC9C0 \uBABB\uD574\uC11C \uC784\uC2DC\uB85C \uB9CC\uB4E0 css wrapper\uC785\uB2C8\uB2E4.\n * \uCC28\uD6C4 Webpack 5\uB85C \uB9C8\uC774\uADF8\uB808\uC774\uC158 \uB418\uB294 \uACBD\uC6B0 swiper \uD648\uD398\uC774\uC9C0\uC5D0\uC11C \uCD94\uCC9C\uD558\uB294 \uC0AC\uC6A9\uBC95\uC73C\uB85C \uC218\uC815\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.\n */\n\n ", "\n"])), swiper_style_1.default);
|
|
109
140
|
exports.default = Carousel;
|
|
110
141
|
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
var styled_components_1 = require("styled-components");
|
|
8
|
+
var SwiperCss = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n @font-face {\n font-family: swiper-icons;\n src: url('data:application/font-woff;charset=utf-8;base64, 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');\n font-weight: 400;\n font-style: normal;\n }\n\n :root {\n --swiper-theme-color: #007aff;\n }\n\n .swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n z-index: 1;\n }\n\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n\n .swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n box-sizing: content-box;\n }\n\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n\n .swiper-pointer-events {\n touch-action: pan-y;\n }\n\n .swiper-pointer-events.swiper-vertical {\n touch-action: pan-x;\n }\n\n .swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n }\n\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n\n .swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-3d,\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n\n .swiper-3d .swiper-cube-shadow,\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-css-mode > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none;\n -ms-overflow-style: none;\n }\n\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n }\n\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n }\n\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n width: 1px;\n height: var(--swiper-virtual-size);\n }\n\n :root {\n --swiper-navigation-size: 44px;\n }\n\n .swiper-button-next,\n .swiper-button-prev {\n position: absolute;\n top: 50%;\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n height: var(--swiper-navigation-size);\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n z-index: 10;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n }\n\n .swiper-button-next.swiper-button-disabled,\n .swiper-button-prev.swiper-button-disabled {\n opacity: 0.35;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-button-next.swiper-button-hidden,\n .swiper-button-prev.swiper-button-hidden {\n opacity: 0;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-navigation-disabled .swiper-button-next,\n .swiper-navigation-disabled .swiper-button-prev {\n display: none !important;\n }\n\n .swiper-button-next:after,\n .swiper-button-prev:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n text-transform: none !important;\n letter-spacing: 0;\n font-variant: initial;\n line-height: 1;\n }\n\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: 10px;\n right: auto;\n }\n\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n right: 10px;\n left: auto;\n }\n\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n\n .swiper-button-lock {\n display: none;\n }\n\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 0.3s opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n }\n\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal,\n .swiper-pagination-custom,\n .swiper-pagination-fraction {\n bottom: 10px;\n left: 0;\n width: 100%;\n }\n\n .swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: 50%;\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n }\n\n button.swiper-pagination-bullet {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n -webkit-appearance: none;\n appearance: none;\n }\n\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n\n .swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets,\n .swiper-vertical > .swiper-pagination-bullets {\n right: 10px;\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 0.2s transform, 0.2s top;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s left;\n }\n\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s right;\n }\n\n .swiper-pagination-progressbar {\n background: rgba(0, 0, 0, 0.25);\n position: absolute;\n }\n\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: 4px;\n left: 0;\n top: 0;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-vertical > .swiper-pagination-progressbar {\n width: 4px;\n height: 100%;\n left: 0;\n top: 0;\n }\n\n .swiper-pagination-lock {\n display: none;\n }\n\n .swiper-scrollbar {\n border-radius: 10px;\n position: relative;\n -ms-touch-action: none;\n background: rgba(0, 0, 0, 0.1);\n }\n\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n position: absolute;\n left: 1%;\n bottom: 3px;\n z-index: 50;\n height: 5px;\n width: 98%;\n }\n\n .swiper-scrollbar.swiper-scrollbar-vertical,\n .swiper-vertical > .swiper-scrollbar {\n position: absolute;\n right: 3px;\n top: 1%;\n z-index: 50;\n width: 5px;\n height: 98%;\n }\n\n .swiper-scrollbar-drag {\n height: 100%;\n width: 100%;\n position: relative;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n left: 0;\n top: 0;\n }\n\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n\n .swiper-scrollbar-lock {\n display: none;\n }\n\n .swiper-zoom-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n }\n\n .swiper-zoom-container > canvas,\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n }\n\n .swiper-slide-zoomed {\n cursor: move;\n }\n\n .swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n }\n\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n .swiper .swiper-notification {\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n opacity: 0;\n z-index: -1000;\n }\n\n .swiper-free-mode > .swiper-wrapper {\n transition-timing-function: ease-out;\n margin: 0 auto;\n }\n\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n\n .swiper-grid-column > .swiper-wrapper {\n flex-wrap: wrap;\n flex-direction: column;\n }\n\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube {\n overflow: visible;\n }\n\n .swiper-cube .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n visibility: hidden;\n transform-origin: 0 0;\n width: 100%;\n height: 100%;\n }\n\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-next + .swiper-slide,\n .swiper-cube .swiper-slide-prev {\n pointer-events: auto;\n visibility: visible;\n }\n\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right,\n .swiper-cube .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-cube .swiper-cube-shadow {\n position: absolute;\n left: 0;\n bottom: 0px;\n width: 100%;\n height: 100%;\n opacity: 0.6;\n z-index: 0;\n }\n\n .swiper-cube .swiper-cube-shadow:before {\n content: '';\n background: #000;\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n filter: blur(50px);\n }\n\n .swiper-flip {\n overflow: visible;\n }\n\n .swiper-flip .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n }\n\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right,\n .swiper-flip .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n\n .swiper-cards {\n overflow: visible;\n }\n\n .swiper-cards .swiper-slide {\n transform-origin: center bottom;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n }\n"], ["\n @font-face {\n font-family: swiper-icons;\n src: url('data:application/font-woff;charset=utf-8;base64, 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');\n font-weight: 400;\n font-style: normal;\n }\n\n :root {\n --swiper-theme-color: #007aff;\n }\n\n .swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n z-index: 1;\n }\n\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n\n .swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n box-sizing: content-box;\n }\n\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n\n .swiper-pointer-events {\n touch-action: pan-y;\n }\n\n .swiper-pointer-events.swiper-vertical {\n touch-action: pan-x;\n }\n\n .swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n }\n\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n\n .swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-3d,\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n\n .swiper-3d .swiper-cube-shadow,\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n\n .swiper-css-mode > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none;\n -ms-overflow-style: none;\n }\n\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n }\n\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n }\n\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n width: 1px;\n height: var(--swiper-virtual-size);\n }\n\n :root {\n --swiper-navigation-size: 44px;\n }\n\n .swiper-button-next,\n .swiper-button-prev {\n position: absolute;\n top: 50%;\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n height: var(--swiper-navigation-size);\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n z-index: 10;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n }\n\n .swiper-button-next.swiper-button-disabled,\n .swiper-button-prev.swiper-button-disabled {\n opacity: 0.35;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-button-next.swiper-button-hidden,\n .swiper-button-prev.swiper-button-hidden {\n opacity: 0;\n cursor: auto;\n pointer-events: none;\n }\n\n .swiper-navigation-disabled .swiper-button-next,\n .swiper-navigation-disabled .swiper-button-prev {\n display: none !important;\n }\n\n .swiper-button-next:after,\n .swiper-button-prev:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n text-transform: none !important;\n letter-spacing: 0;\n font-variant: initial;\n line-height: 1;\n }\n\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: 10px;\n right: auto;\n }\n\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n right: 10px;\n left: auto;\n }\n\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n\n .swiper-button-lock {\n display: none;\n }\n\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 0.3s opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n }\n\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal,\n .swiper-pagination-custom,\n .swiper-pagination-fraction {\n bottom: 10px;\n left: 0;\n width: 100%;\n }\n\n .swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n\n .swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: 50%;\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n }\n\n button.swiper-pagination-bullet {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n -webkit-appearance: none;\n appearance: none;\n }\n\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n\n .swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets,\n .swiper-vertical > .swiper-pagination-bullets {\n right: 10px;\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 0.2s transform, 0.2s top;\n }\n\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s left;\n }\n\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 0.2s transform, 0.2s right;\n }\n\n .swiper-pagination-progressbar {\n background: rgba(0, 0, 0, 0.25);\n position: absolute;\n }\n\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: 4px;\n left: 0;\n top: 0;\n }\n\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-vertical > .swiper-pagination-progressbar {\n width: 4px;\n height: 100%;\n left: 0;\n top: 0;\n }\n\n .swiper-pagination-lock {\n display: none;\n }\n\n .swiper-scrollbar {\n border-radius: 10px;\n position: relative;\n -ms-touch-action: none;\n background: rgba(0, 0, 0, 0.1);\n }\n\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n position: absolute;\n left: 1%;\n bottom: 3px;\n z-index: 50;\n height: 5px;\n width: 98%;\n }\n\n .swiper-scrollbar.swiper-scrollbar-vertical,\n .swiper-vertical > .swiper-scrollbar {\n position: absolute;\n right: 3px;\n top: 1%;\n z-index: 50;\n width: 5px;\n height: 98%;\n }\n\n .swiper-scrollbar-drag {\n height: 100%;\n width: 100%;\n position: relative;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n left: 0;\n top: 0;\n }\n\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n\n .swiper-scrollbar-lock {\n display: none;\n }\n\n .swiper-zoom-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n }\n\n .swiper-zoom-container > canvas,\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n }\n\n .swiper-slide-zoomed {\n cursor: move;\n }\n\n .swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n }\n\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n .swiper .swiper-notification {\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n opacity: 0;\n z-index: -1000;\n }\n\n .swiper-free-mode > .swiper-wrapper {\n transition-timing-function: ease-out;\n margin: 0 auto;\n }\n\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n\n .swiper-grid-column > .swiper-wrapper {\n flex-wrap: wrap;\n flex-direction: column;\n }\n\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube {\n overflow: visible;\n }\n\n .swiper-cube .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n visibility: hidden;\n transform-origin: 0 0;\n width: 100%;\n height: 100%;\n }\n\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-next + .swiper-slide,\n .swiper-cube .swiper-slide-prev {\n pointer-events: auto;\n visibility: visible;\n }\n\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right,\n .swiper-cube .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-cube .swiper-cube-shadow {\n position: absolute;\n left: 0;\n bottom: 0px;\n width: 100%;\n height: 100%;\n opacity: 0.6;\n z-index: 0;\n }\n\n .swiper-cube .swiper-cube-shadow:before {\n content: '';\n background: #000;\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n filter: blur(50px);\n }\n\n .swiper-flip {\n overflow: visible;\n }\n\n .swiper-flip .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n }\n\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right,\n .swiper-flip .swiper-slide-shadow-top {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n }\n\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n\n .swiper-cards {\n overflow: visible;\n }\n\n .swiper-cards .swiper-slide {\n transform-origin: center bottom;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n }\n"])));
|
|
9
|
+
exports.default = SwiperCss;
|
|
10
|
+
var templateObject_1;
|
|
@@ -66,14 +66,12 @@ function TemplateA() {
|
|
|
66
66
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_SectionButtonBox, null,
|
|
67
67
|
react_1.default.createElement(components_1.Section.Button, { text: buttonAlphaLabel, src: buttonAlphaLinkSrc, linkType: buttonAlphaLinkType, buttonType: buttonAlphaDesignType, backgroundColor: buttonAlphaBackgroundColorInHex, textColor: buttonAlphaLabelColorInHex, borderColor: buttonAlphaLabelColorInHex }))),
|
|
68
68
|
filteredItems.length > 0 && (react_1.default.createElement(S_CarouselBox, null,
|
|
69
|
-
react_1.default.createElement(components_1.Carousel, { spaceBetween: 24, slidesPerView: 3, slidesPerGroup:
|
|
69
|
+
react_1.default.createElement(components_1.Carousel, { spaceBetween: 24, slidesPerView: 3, slidesPerGroup: 1, breakpoints: {
|
|
70
70
|
1301: {
|
|
71
|
-
slidesPerView: 4
|
|
72
|
-
slidesPerGroup: 4
|
|
71
|
+
slidesPerView: 4
|
|
73
72
|
},
|
|
74
73
|
1601: {
|
|
75
|
-
slidesPerView: 5
|
|
76
|
-
slidesPerGroup: 5
|
|
74
|
+
slidesPerView: 5
|
|
77
75
|
}
|
|
78
76
|
}, mode: carouselAutoplayMode === 'AUTO'
|
|
79
77
|
? 'autoplay'
|
|
@@ -94,7 +92,7 @@ function TemplateA() {
|
|
|
94
92
|
}
|
|
95
93
|
var S_Wrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n margin: ", " 0;\n"], ["\n width: 100%;\n margin: ", " 0;\n"])), function (_a) {
|
|
96
94
|
var hasNothing = _a.hasNothing;
|
|
97
|
-
return (hasNothing ? 0 : '
|
|
95
|
+
return (hasNothing ? 0 : '160px');
|
|
98
96
|
});
|
|
99
97
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"])));
|
|
100
98
|
var S_SectionTitleBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
@@ -61,20 +61,18 @@ function TemplateB() {
|
|
|
61
61
|
return (react_1.default.createElement(S_Wrapper, { hasNothing: !title && !description && !buttonAlphaLinkSrc && filteredItems.length === 0 },
|
|
62
62
|
react_1.default.createElement(S_ContentsArea, null,
|
|
63
63
|
title && (react_1.default.createElement(S_SectionTitleBox, null,
|
|
64
|
-
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "
|
|
64
|
+
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "48px", customFontWeight: "bold" }))),
|
|
65
65
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
66
66
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", styleTheme: "body1Regular" }))),
|
|
67
67
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_SectionButtonBox, null,
|
|
68
68
|
react_1.default.createElement(components_1.Section.Button, { text: buttonAlphaLabel, src: buttonAlphaLinkSrc, linkType: buttonAlphaLinkType, buttonType: buttonAlphaDesignType, backgroundColor: buttonAlphaBackgroundColorInHex, textColor: buttonAlphaLabelColorInHex, borderColor: buttonAlphaLabelColorInHex }))),
|
|
69
69
|
filteredItems.length > 0 && (react_1.default.createElement(S_CarouselBox, null,
|
|
70
|
-
react_1.default.createElement(components_1.Carousel, { spaceBetween: 42, slidesPerView: 3, slidesPerGroup:
|
|
70
|
+
react_1.default.createElement(components_1.Carousel, { spaceBetween: 42, slidesPerView: 3, slidesPerGroup: 1, breakpoints: {
|
|
71
71
|
1301: {
|
|
72
|
-
slidesPerView: 4
|
|
73
|
-
slidesPerGroup: 4
|
|
72
|
+
slidesPerView: 4
|
|
74
73
|
},
|
|
75
74
|
1601: {
|
|
76
|
-
slidesPerView: 5
|
|
77
|
-
slidesPerGroup: 5
|
|
75
|
+
slidesPerView: 5
|
|
78
76
|
}
|
|
79
77
|
}, mode: carouselAutoplayMode === 'AUTO'
|
|
80
78
|
? 'autoplay'
|
|
@@ -96,7 +94,7 @@ function TemplateB() {
|
|
|
96
94
|
}
|
|
97
95
|
var S_Wrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n margin: ", " 0;\n"], ["\n width: 100%;\n margin: ", " 0;\n"])), function (_a) {
|
|
98
96
|
var hasNothing = _a.hasNothing;
|
|
99
|
-
return (hasNothing ? 0 : '
|
|
97
|
+
return (hasNothing ? 0 : '160px');
|
|
100
98
|
});
|
|
101
99
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"])));
|
|
102
100
|
var S_SectionTitleBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -37,24 +37,27 @@ function TemplateA() {
|
|
|
37
37
|
return (react_1.default.createElement(S_ContentsAreaBox, { hasNothing: hasNothing },
|
|
38
38
|
react_1.default.createElement(S_ContentsArea, null,
|
|
39
39
|
sectionContentMediaSrc && (react_1.default.createElement(react_1.default.Fragment, null, sectionContentMediaType === 'IMAGE' && (react_1.default.createElement(S_ImageBox, null,
|
|
40
|
-
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", height: "responsive",
|
|
40
|
+
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", height: "responsive", scaleType: "cover", shapeType: "rectangle" }))))),
|
|
41
41
|
react_1.default.createElement(S_ContentsBodyWrapper, null,
|
|
42
|
-
title && (react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "
|
|
42
|
+
title && (react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "48px", customFontWeight: "bold" })),
|
|
43
43
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
44
44
|
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex, styleTheme: "headingBold" }))),
|
|
45
45
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
46
46
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))))));
|
|
47
47
|
}
|
|
48
|
-
var S_ContentsAreaBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n display: flex;\n justify-content: center;\n margin:
|
|
48
|
+
var S_ContentsAreaBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"], ["\n width: 100%;\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"])), function (_a) {
|
|
49
49
|
var hasNothing = _a.hasNothing;
|
|
50
|
-
return hasNothing
|
|
50
|
+
return (hasNothing ? 0 : '160px');
|
|
51
51
|
});
|
|
52
52
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n display: flex;\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n display: flex;\n"])));
|
|
53
53
|
var S_ImageBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: 30%;\n min-width: 30%;\n height: 100%;\n min-height: 360px;\n margin-right: ", ";\n"], ["\n width: 30%;\n min-width: 30%;\n height: 100%;\n min-height: 360px;\n margin-right: ", ";\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.spacing.spacingI;
|
|
56
56
|
});
|
|
57
|
-
var S_ContentsBodyWrapper = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n
|
|
57
|
+
var S_ContentsBodyWrapper = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n width: calc(70% - ", ");\n"], ["\n width: calc(70% - ", ");\n"])), function (_a) {
|
|
58
|
+
var theme = _a.theme;
|
|
59
|
+
return theme.spacing.spacingI;
|
|
60
|
+
});
|
|
58
61
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin-top: ", ";\n"], ["\n margin-top: ", ";\n"])), function (_a) {
|
|
59
62
|
var theme = _a.theme, hasTitle = _a.hasTitle;
|
|
60
63
|
return hasTitle && theme.spacing.spacingF;
|
package/dist/src/sub/DynamicLayout/desktop/sections/ContentsSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -43,18 +43,21 @@ function TemplateB() {
|
|
|
43
43
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
44
44
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))),
|
|
45
45
|
sectionContentMediaSrc && (react_1.default.createElement(react_1.default.Fragment, null, sectionContentMediaType === 'IMAGE' && (react_1.default.createElement(S_ImageBox, null,
|
|
46
|
-
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", height: "responsive", scaleType: "cover" }))))))));
|
|
46
|
+
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", height: "responsive", scaleType: "cover", shapeType: "rectangle" }))))))));
|
|
47
47
|
}
|
|
48
|
-
var S_ContentsAreaBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n display: flex;\n justify-content: center;\n margin:
|
|
48
|
+
var S_ContentsAreaBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"], ["\n width: 100%;\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"])), function (_a) {
|
|
49
49
|
var hasNothing = _a.hasNothing;
|
|
50
|
-
return hasNothing
|
|
50
|
+
return (hasNothing ? 0 : '160px');
|
|
51
51
|
});
|
|
52
52
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n display: flex;\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n display: flex;\n"])));
|
|
53
53
|
var S_ImageBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: 30%;\n min-width: 30%;\n height: 100%;\n min-height: 360px;\n margin-left: ", ";\n"], ["\n width: 30%;\n min-width: 30%;\n height: 100%;\n min-height: 360px;\n margin-left: ", ";\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.spacing.spacingI;
|
|
56
56
|
});
|
|
57
|
-
var S_ContentsBodyWrapper = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n
|
|
57
|
+
var S_ContentsBodyWrapper = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n width: calc(70% - ", ");\n"], ["\n width: calc(70% - ", ");\n"])), function (_a) {
|
|
58
|
+
var theme = _a.theme;
|
|
59
|
+
return theme.spacing.spacingI;
|
|
60
|
+
});
|
|
58
61
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin-top: ", ";\n"], ["\n margin-top: ", ";\n"])), function (_a) {
|
|
59
62
|
var theme = _a.theme, hasTitle = _a.hasTitle;
|
|
60
63
|
return hasTitle && theme.spacing.spacingF;
|
package/dist/src/sub/DynamicLayout/desktop/sections/FooterSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -57,10 +57,7 @@ function TemplateA() {
|
|
|
57
57
|
react_1.default.createElement(Item_1.Item.Image, { ratio: "auto", height: 48, scaleType: "fill", src: filteredItems[0].properties.logoImageSrc }))),
|
|
58
58
|
filteredItems[0].properties.body && (react_1.default.createElement(Item_1.Item.HTMLReader, { data: filteredItems[0].properties.body, styleTheme: "caption1Regular", color: itemDescriptionColorInHex }))))));
|
|
59
59
|
}
|
|
60
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin:
|
|
61
|
-
var theme = _a.theme;
|
|
62
|
-
return theme.spacing.spacingH;
|
|
63
|
-
}, function (_a) {
|
|
60
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 160px auto;\n ", "\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 160px auto;\n ", "\n"])), function (_a) {
|
|
64
61
|
var hasNothing = _a.hasNothing;
|
|
65
62
|
return hasNothing && 'margin: 0';
|
|
66
63
|
});
|
package/dist/src/sub/DynamicLayout/desktop/sections/FooterSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -57,10 +57,7 @@ function TemplateB() {
|
|
|
57
57
|
react_1.default.createElement(Item_1.Item.Image, { ratio: "auto", height: 48, scaleType: "fill", src: filteredItems[0].properties.logoImageSrc }))),
|
|
58
58
|
filteredItems[0].properties.body && (react_1.default.createElement(Item_1.Item.HTMLReader, { data: filteredItems[0].properties.body, styleTheme: "caption1Regular", color: itemDescriptionColorInHex, textAlign: "center" }))))));
|
|
59
59
|
}
|
|
60
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin:
|
|
61
|
-
var theme = _a.theme;
|
|
62
|
-
return theme.spacing.spacingH;
|
|
63
|
-
}, function (_a) {
|
|
60
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 160px auto;\n ", "\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 160px auto;\n ", "\n"])), function (_a) {
|
|
64
61
|
var hasNothing = _a.hasNothing;
|
|
65
62
|
return hasNothing && 'margin: 0';
|
|
66
63
|
});
|
package/dist/src/sub/DynamicLayout/desktop/sections/InfoBoxSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -74,7 +74,7 @@ function TemplateA() {
|
|
|
74
74
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, null,
|
|
75
75
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))));
|
|
76
76
|
}
|
|
77
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n margin:
|
|
77
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n margin: 160px auto;\n ", "\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n\n margin: 160px auto;\n ", "\n"])), function (_a) {
|
|
78
78
|
var hasNothing = _a.hasNothing;
|
|
79
79
|
return hasNothing && "margin: 0";
|
|
80
80
|
});
|
package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -38,7 +38,7 @@ function TemplateA() {
|
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
40
|
react_1.default.createElement("div", null,
|
|
41
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "60px", customFontWeight: "bold" })),
|
|
41
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "60px", customFontWeight: "bold", lineHeight: 1.2 })),
|
|
42
42
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
43
43
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", styleTheme: "headingBold" }))),
|
|
44
44
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -46,7 +46,7 @@ function TemplateA() {
|
|
|
46
46
|
buttonBravoLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonBravoLabel, src: buttonBravoLinkSrc, linkType: buttonBravoLinkType, buttonType: buttonBravoDesignType, backgroundColor: buttonBravoBackgroundColorInHex, textColor: buttonBravoLabelColorInHex, borderColor: buttonBravoLabelColorInHex })),
|
|
47
47
|
buttonCharlieLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonCharlieLabel, src: buttonCharlieLinkSrc, linkType: buttonCharlieLinkType, buttonType: buttonCharlieDesignType, backgroundColor: buttonCharlieBackgroundColorInHex, textColor: buttonCharlieLabelColorInHex, borderColor: buttonCharlieLabelColorInHex }))))))));
|
|
48
48
|
}
|
|
49
|
-
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n height: 100vh;\n display: flex;\n align-items: center;\n justify-content: center;\n"], ["\n width: 100%;\n height: 100vh;\n display: flex;\n align-items: center;\n justify-content: center;\n"])));
|
|
49
|
+
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n height: calc(100vh - 64px);\n display: flex;\n align-items: center;\n justify-content: center;\n"], ["\n width: 100%;\n height: calc(100vh - 64px);\n display: flex;\n align-items: center;\n justify-content: center;\n"])));
|
|
50
50
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n margin: 0 auto;\n"])));
|
|
51
51
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n margin-top: ", ";\n"], ["\n margin-top: ", ";\n"])), function (_a) {
|
|
52
52
|
var theme = _a.theme, hasTitle = _a.hasTitle;
|
package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -38,7 +38,7 @@ function TemplateB() {
|
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
40
|
react_1.default.createElement(S_ContentsBox, null,
|
|
41
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "60px", customFontWeight: "bold" })),
|
|
41
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "60px", customFontWeight: "bold", lineHeight: 1.2 })),
|
|
42
42
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
43
43
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, styleTheme: "headingBold" }))),
|
|
44
44
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -46,7 +46,7 @@ function TemplateB() {
|
|
|
46
46
|
buttonBravoLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonBravoLabel, src: buttonBravoLinkSrc, linkType: buttonBravoLinkType, buttonType: buttonBravoDesignType, backgroundColor: buttonBravoBackgroundColorInHex, textColor: buttonBravoLabelColorInHex, borderColor: buttonBravoLabelColorInHex })),
|
|
47
47
|
buttonCharlieLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonCharlieLabel, src: buttonCharlieLinkSrc, linkType: buttonCharlieLinkType, buttonType: buttonCharlieDesignType, backgroundColor: buttonCharlieBackgroundColorInHex, textColor: buttonCharlieLabelColorInHex, borderColor: buttonCharlieLabelColorInHex }))))))));
|
|
48
48
|
}
|
|
49
|
-
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n height: 100vh;\n display: flex;\n justify-content: center;\n"], ["\n width: 100%;\n height: 100vh;\n display: flex;\n justify-content: center;\n"])));
|
|
49
|
+
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n height: calc(100vh - 64px);\n display: flex;\n justify-content: center;\n"], ["\n width: 100%;\n height: calc(100vh - 64px);\n display: flex;\n justify-content: center;\n"])));
|
|
50
50
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n"], ["\n --min-width: 1000;\n --min-width-px: 1000px;\n --max-width: 1500;\n --max-width-px: 1500px;\n --min-viewport-width: 1200;\n --min-viewport-width-px: 1200px;\n --max-viewport-width: 1920;\n --max-viewport-width-px: 1920px;\n width: calc(\n (100vw - var(--min-viewport-width-px)) * (var(--max-width) - var(--min-width)) /\n (var(--max-viewport-width) - var(--min-viewport-width)) + var(--min-width-px)\n );\n min-width: var(--min-width-px);\n max-width: var(--max-width-px);\n"])));
|
|
51
51
|
var S_ContentsBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n max-width: 800px;\n position: absolute;\n bottom: 13vh;\n"], ["\n max-width: 800px;\n position: absolute;\n bottom: 13vh;\n"])));
|
|
52
52
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n margin-top: ", ";\n"], ["\n margin-top: ", ";\n"])), function (_a) {
|
package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateC/TemplateC.js
CHANGED
|
@@ -38,7 +38,7 @@ function TemplateC() {
|
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
40
|
react_1.default.createElement(S_ContentsBox, null,
|
|
41
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "60px", customFontWeight: "bold" })),
|
|
41
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "60px", customFontWeight: "bold", lineHeight: 1.2 })),
|
|
42
42
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
43
43
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, styleTheme: "headingBold" }))),
|
|
44
44
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
package/dist/src/sub/DynamicLayout/desktop/sections/IntroSection/templates/TemplateD/TemplateD.js
CHANGED
|
@@ -38,7 +38,7 @@ function TemplateD() {
|
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
40
|
react_1.default.createElement("div", null,
|
|
41
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "60px", customFontWeight: "bold" })),
|
|
41
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "60px", customFontWeight: "bold", lineHeight: 1.2 })),
|
|
42
42
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
43
43
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", styleTheme: "headingBold" }))),
|
|
44
44
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -6,7 +6,9 @@ declare function Section({ children, ...props }: ISection & {
|
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
}): JSX.Element;
|
|
8
8
|
declare namespace Section {
|
|
9
|
-
var Title: ({ text, color, ...textLabelProps }: ISectionTitle & TextLabelProps
|
|
9
|
+
var Title: ({ text, color, lineHeight, ...textLabelProps }: ISectionTitle & TextLabelProps & {
|
|
10
|
+
lineHeight?: number | undefined;
|
|
11
|
+
}) => JSX.Element;
|
|
10
12
|
var Description: ({ text, color, ...textLabelProps }: ISectionDescription & TextLabelProps) => JSX.Element;
|
|
11
13
|
var Image: ({ ...imageViewProps }: ImageViewProps) => JSX.Element;
|
|
12
14
|
var Button: ({ buttonType, backgroundColor, textColor, text, linkType, src, state, borderColor }: ISectionButton) => JSX.Element;
|
|
@@ -153,13 +153,16 @@ var S_YoutubeContainer = styled_components_1.default.div(templateObject_5 || (te
|
|
|
153
153
|
});
|
|
154
154
|
// TITLE
|
|
155
155
|
function Title(_a) {
|
|
156
|
-
var text = _a.text, color = _a.color, textLabelProps = __rest(_a, ["text", "color"]);
|
|
157
|
-
return (react_1.default.createElement(S_TitleStyleWrapper, { color: color },
|
|
156
|
+
var text = _a.text, color = _a.color, _b = _a.lineHeight, lineHeight = _b === void 0 ? 1.4 : _b, textLabelProps = __rest(_a, ["text", "color", "lineHeight"]);
|
|
157
|
+
return (react_1.default.createElement(S_TitleStyleWrapper, { color: color, lineHeight: lineHeight },
|
|
158
158
|
react_1.default.createElement(mobile_1.M_TextLabel, __assign({ text: text, colorTheme: "sysTextPrimary" }, textLabelProps))));
|
|
159
159
|
}
|
|
160
|
-
var S_TitleStyleWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n & > div {\n color: ", ";\n }\n"], ["\n & > div {\n color: ", ";\n }\n"])), function (_a) {
|
|
160
|
+
var S_TitleStyleWrapper = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n & > div {\n color: ", ";\n line-height: ", ";\n }\n"], ["\n & > div {\n color: ", ";\n line-height: ", ";\n }\n"])), function (_a) {
|
|
161
161
|
var color = _a.color;
|
|
162
162
|
return color;
|
|
163
|
+
}, function (_a) {
|
|
164
|
+
var lineHeight = _a.lineHeight;
|
|
165
|
+
return lineHeight;
|
|
163
166
|
});
|
|
164
167
|
// DESCRIPTION
|
|
165
168
|
function Description(_a) {
|
|
@@ -61,13 +61,13 @@ var S_SwiperStyleWrapper = styled_components_1.default.div(templateObject_2 || (
|
|
|
61
61
|
return paginationSpacing[1];
|
|
62
62
|
}, function (_a) {
|
|
63
63
|
var theme = _a.theme;
|
|
64
|
-
return theme.
|
|
64
|
+
return theme.ui_cpnt_pagination_dot_02;
|
|
65
65
|
}, function (_a) {
|
|
66
66
|
var theme = _a.theme;
|
|
67
67
|
return theme.ui_cpnt_pagination_dot_border;
|
|
68
68
|
}, function (_a) {
|
|
69
69
|
var theme = _a.theme;
|
|
70
|
-
return theme.
|
|
70
|
+
return theme.ui_cpnt_pagination_dot_01;
|
|
71
71
|
});
|
|
72
72
|
exports.default = Carousel;
|
|
73
73
|
var templateObject_1, templateObject_2;
|
|
@@ -59,9 +59,9 @@ function TemplateA() {
|
|
|
59
59
|
: [];
|
|
60
60
|
return (react_1.default.createElement(S_ContentsArea, { hasNothing: !title && !description && !buttonAlphaLinkSrc && filteredItems.length === 0 },
|
|
61
61
|
title && (react_1.default.createElement(S_SectionTitleBox, null,
|
|
62
|
-
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center",
|
|
62
|
+
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "32px", customFontWeight: "bold" }))),
|
|
63
63
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
64
|
-
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center",
|
|
64
|
+
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", customFontSize: "20px", customFontWeight: "bold" }))),
|
|
65
65
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_SectionButtonBox, null,
|
|
66
66
|
react_1.default.createElement(components_1.Section.Button, { text: buttonAlphaLabel, src: buttonAlphaLinkSrc, linkType: buttonAlphaLinkType, buttonType: buttonAlphaDesignType, backgroundColor: buttonAlphaBackgroundColorInHex, textColor: buttonAlphaLabelColorInHex, borderColor: buttonAlphaLabelColorInHex }))),
|
|
67
67
|
filteredItems.length > 0 && (react_1.default.createElement(S_CarouselBox, null,
|
|
@@ -83,11 +83,11 @@ function TemplateA() {
|
|
|
83
83
|
}))))));
|
|
84
84
|
}
|
|
85
85
|
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin-top: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n"], ["\n margin-top: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n"])), function (_a) {
|
|
86
|
-
var
|
|
87
|
-
return (hasNothing ? 0 :
|
|
86
|
+
var hasNothing = _a.hasNothing;
|
|
87
|
+
return (hasNothing ? 0 : '80px');
|
|
88
88
|
}, function (_a) {
|
|
89
|
-
var
|
|
90
|
-
return (hasNothing ? 0 :
|
|
89
|
+
var hasNothing = _a.hasNothing;
|
|
90
|
+
return (hasNothing ? 0 : '80px');
|
|
91
91
|
}, function (_a) {
|
|
92
92
|
var theme = _a.theme;
|
|
93
93
|
return theme.spacing.spacingE;
|
|
@@ -59,9 +59,9 @@ function TemplateB() {
|
|
|
59
59
|
: [];
|
|
60
60
|
return (react_1.default.createElement(S_ContentsArea, { hasNothing: !title && !description && !buttonAlphaLinkSrc && filteredItems.length === 0 },
|
|
61
61
|
title && (react_1.default.createElement(S_SectionTitleBox, null,
|
|
62
|
-
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center",
|
|
62
|
+
react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "32px", customFontWeight: "bold" }))),
|
|
63
63
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
64
|
-
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center",
|
|
64
|
+
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", customFontSize: "20px", customFontWeight: "bold" }))),
|
|
65
65
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_SectionButtonBox, null,
|
|
66
66
|
react_1.default.createElement(components_1.Section.Button, { text: buttonAlphaLabel, src: buttonAlphaLinkSrc, linkType: buttonAlphaLinkType, buttonType: buttonAlphaDesignType, backgroundColor: buttonAlphaBackgroundColorInHex, textColor: buttonAlphaLabelColorInHex, borderColor: buttonAlphaLabelColorInHex }))),
|
|
67
67
|
filteredItems && (react_1.default.createElement(S_CarouselBox, null,
|
|
@@ -83,11 +83,11 @@ function TemplateB() {
|
|
|
83
83
|
}))))));
|
|
84
84
|
}
|
|
85
85
|
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin-top: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n"], ["\n margin-top: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n"])), function (_a) {
|
|
86
|
-
var
|
|
87
|
-
return (hasNothing ? 0 :
|
|
86
|
+
var hasNothing = _a.hasNothing;
|
|
87
|
+
return (hasNothing ? 0 : '80px');
|
|
88
88
|
}, function (_a) {
|
|
89
|
-
var
|
|
90
|
-
return (hasNothing ? 0 :
|
|
89
|
+
var hasNothing = _a.hasNothing;
|
|
90
|
+
return (hasNothing ? 0 : '80px');
|
|
91
91
|
}, function (_a) {
|
|
92
92
|
var theme = _a.theme;
|
|
93
93
|
return theme.spacing.spacingE;
|
package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -36,34 +36,36 @@ function TemplateA() {
|
|
|
36
36
|
var hasNothing = !sectionContentMediaSrc && !title && !description && !buttonAlphaLinkSrc;
|
|
37
37
|
return (react_1.default.createElement(S_ContentsArea, { hasNothing: hasNothing },
|
|
38
38
|
sectionContentMediaSrc && (react_1.default.createElement(react_1.default.Fragment, null, sectionContentMediaType === 'IMAGE' && (react_1.default.createElement(S_ImageBox, null,
|
|
39
|
-
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", ratio: "1_1", scaleType: "cover" }))))),
|
|
40
|
-
title && react_1.default.createElement(
|
|
39
|
+
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", ratio: "1_1", scaleType: "cover", shapeType: "rectangle" }))))),
|
|
40
|
+
title && (react_1.default.createElement(S_SectionTitleBox, null,
|
|
41
|
+
react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "32px", customFontWeight: "bold" }))),
|
|
41
42
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
42
|
-
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex,
|
|
43
|
+
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex, customFontSize: "20px", customFontWeight: "bold" }))),
|
|
43
44
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, null,
|
|
44
45
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))));
|
|
45
46
|
}
|
|
46
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", "
|
|
47
|
-
var
|
|
48
|
-
return
|
|
47
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", " 0;\n padding: 0 ", ";\n"], ["\n margin: ", " 0;\n padding: 0 ", ";\n"])), function (_a) {
|
|
48
|
+
var hasNothing = _a.hasNothing;
|
|
49
|
+
return (hasNothing ? 0 : '80px');
|
|
49
50
|
}, function (_a) {
|
|
50
51
|
var theme = _a.theme;
|
|
51
52
|
return theme.spacing.spacingE;
|
|
52
|
-
}, function (_a) {
|
|
53
|
-
var hasNothing = _a.hasNothing;
|
|
54
|
-
return hasNothing && "margin: 0";
|
|
55
53
|
});
|
|
56
54
|
var S_ImageBox = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
57
55
|
var theme = _a.theme;
|
|
58
|
-
return theme.spacing.
|
|
56
|
+
return theme.spacing.spacingG;
|
|
57
|
+
});
|
|
58
|
+
var S_SectionTitleBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
59
|
+
var theme = _a.theme;
|
|
60
|
+
return theme.spacing.spacingD;
|
|
59
61
|
});
|
|
60
|
-
var S_SectionDescriptionBox = styled_components_1.default.div(
|
|
62
|
+
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
61
63
|
var theme = _a.theme;
|
|
62
64
|
return theme.spacing.spacingD;
|
|
63
65
|
});
|
|
64
|
-
var S_ButtonBox = styled_components_1.default.div(
|
|
66
|
+
var S_ButtonBox = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
65
67
|
var theme = _a.theme;
|
|
66
68
|
return theme.spacing.spacingF;
|
|
67
69
|
});
|
|
68
70
|
exports.default = TemplateA;
|
|
69
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
|
|
71
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
|
package/dist/src/sub/DynamicLayout/mobile/sections/ContentsSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -35,27 +35,24 @@ function TemplateB() {
|
|
|
35
35
|
var _b = sectionContext.styles, titleColorInHex = _b.titleColorInHex, descriptionColorInHex = _b.descriptionColorInHex, buttonAlphaDesignType = _b.buttonAlphaDesignType, buttonAlphaLabelColorInHex = _b.buttonAlphaLabelColorInHex, buttonAlphaBackgroundColorInHex = _b.buttonAlphaBackgroundColorInHex;
|
|
36
36
|
var hasNothing = !sectionContentMediaSrc && !title && !description && !buttonAlphaLinkSrc;
|
|
37
37
|
return (react_1.default.createElement(S_ContentsArea, { hasNothing: hasNothing },
|
|
38
|
-
title && react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex,
|
|
38
|
+
title && (react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, customFontSize: "32px", customFontWeight: "bold" })),
|
|
39
39
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
40
|
-
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex,
|
|
40
|
+
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex, customFontSize: "20px", customFontWeight: "bold" }))),
|
|
41
41
|
sectionContentMediaSrc && (react_1.default.createElement(react_1.default.Fragment, null, sectionContentMediaType === 'IMAGE' && (react_1.default.createElement(S_ImageBox, null,
|
|
42
|
-
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", ratio: "1_1", scaleType: "cover" }))))),
|
|
42
|
+
react_1.default.createElement(Section_1.Section.Image, { src: sectionContentMediaSrc, width: "responsive", ratio: "1_1", scaleType: "cover", shapeType: "rectangle" }))))),
|
|
43
43
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, null,
|
|
44
44
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))));
|
|
45
45
|
}
|
|
46
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", "
|
|
47
|
-
var
|
|
48
|
-
return
|
|
46
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", " 0;\n padding: 0 ", ";\n"], ["\n margin: ", " 0;\n padding: 0 ", ";\n"])), function (_a) {
|
|
47
|
+
var hasNothing = _a.hasNothing;
|
|
48
|
+
return (hasNothing ? 0 : '80px');
|
|
49
49
|
}, function (_a) {
|
|
50
50
|
var theme = _a.theme;
|
|
51
51
|
return theme.spacing.spacingE;
|
|
52
|
-
}, function (_a) {
|
|
53
|
-
var hasNothing = _a.hasNothing;
|
|
54
|
-
return hasNothing && "margin: 0";
|
|
55
52
|
});
|
|
56
53
|
var S_ImageBox = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
57
54
|
var theme = _a.theme;
|
|
58
|
-
return theme.spacing.
|
|
55
|
+
return theme.spacing.spacingG;
|
|
59
56
|
});
|
|
60
57
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
61
58
|
var theme = _a.theme;
|
package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -57,15 +57,12 @@ function TemplateA() {
|
|
|
57
57
|
react_1.default.createElement(Item_1.Item.Image, { ratio: "auto", height: 48, scaleType: "fill", src: filteredItems[0].properties.logoImageSrc }))),
|
|
58
58
|
filteredItems[0].properties.body && (react_1.default.createElement(Item_1.Item.HTMLReader, { data: filteredItems[0].properties.body, styleTheme: "caption1Regular", color: itemDescriptionColorInHex }))))));
|
|
59
59
|
}
|
|
60
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", "
|
|
61
|
-
var
|
|
62
|
-
return
|
|
60
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", " 0;\n padding: 0 ", ";\n"], ["\n margin: ", " 0;\n padding: 0 ", ";\n"])), function (_a) {
|
|
61
|
+
var hasNothing = _a.hasNothing;
|
|
62
|
+
return (hasNothing ? 0 : '80px');
|
|
63
63
|
}, function (_a) {
|
|
64
64
|
var theme = _a.theme;
|
|
65
65
|
return theme.spacing.spacingE;
|
|
66
|
-
}, function (_a) {
|
|
67
|
-
var hasNothing = _a.hasNothing;
|
|
68
|
-
return hasNothing && "margin: 0";
|
|
69
66
|
});
|
|
70
67
|
var S_ImageBox = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
71
68
|
var theme = _a.theme;
|
package/dist/src/sub/DynamicLayout/mobile/sections/FooterSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -57,15 +57,12 @@ function TemplateB() {
|
|
|
57
57
|
react_1.default.createElement(Item_1.Item.Image, { ratio: "auto", height: 48, scaleType: "fill", src: filteredItems[0].properties.logoImageSrc }))),
|
|
58
58
|
filteredItems[0].properties.body && (react_1.default.createElement(Item_1.Item.HTMLReader, { data: filteredItems[0].properties.body, styleTheme: "caption1Regular", color: itemDescriptionColorInHex, textAlign: "center" }))))));
|
|
59
59
|
}
|
|
60
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", "
|
|
61
|
-
var
|
|
62
|
-
return
|
|
60
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", " 0;\n padding: 0 ", ";\n"], ["\n margin: ", " 0;\n padding: 0 ", ";\n"])), function (_a) {
|
|
61
|
+
var hasNothing = _a.hasNothing;
|
|
62
|
+
return (hasNothing ? 0 : '80px');
|
|
63
63
|
}, function (_a) {
|
|
64
64
|
var theme = _a.theme;
|
|
65
65
|
return theme.spacing.spacingE;
|
|
66
|
-
}, function (_a) {
|
|
67
|
-
var hasNothing = _a.hasNothing;
|
|
68
|
-
return hasNothing && "margin: 0";
|
|
69
66
|
});
|
|
70
67
|
var S_ImageBox = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"], ["\n display: flex;\n justify-content: center;\n margin: ", " 0;\n"])), function (_a) {
|
|
71
68
|
var theme = _a.theme;
|
package/dist/src/sub/DynamicLayout/mobile/sections/InfoBoxSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -54,9 +54,9 @@ function TemplateA() {
|
|
|
54
54
|
: [];
|
|
55
55
|
var hasNothing = !title && !description && !buttonAlphaLinkSrc && filteredItems.length <= 0;
|
|
56
56
|
return (react_1.default.createElement(S_ContentsArea, { hasNothing: hasNothing },
|
|
57
|
-
title && (react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center",
|
|
57
|
+
title && (react_1.default.createElement(Section_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "32px", customFontWeight: "bold" })),
|
|
58
58
|
description && (react_1.default.createElement(S_SectionDescriptionBox, null,
|
|
59
|
-
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center",
|
|
59
|
+
react_1.default.createElement(Section_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", customFontSize: "20px", customFontWeight: "bold" }))),
|
|
60
60
|
filteredItems.length > 0 && (react_1.default.createElement(S_ItemsWrapper, null, filteredItems.map(function (item, index) {
|
|
61
61
|
var id = item.id;
|
|
62
62
|
var _a = item.properties, itemTitle = _a.title, itemDescription = _a.description, itemImageSrc = _a.imageSrc;
|
|
@@ -71,15 +71,12 @@ function TemplateA() {
|
|
|
71
71
|
buttonAlphaLinkSrc && (react_1.default.createElement(S_ButtonBox, null,
|
|
72
72
|
react_1.default.createElement(Section_1.Section.Button, { buttonType: buttonAlphaDesignType, text: buttonAlphaLabel, linkType: buttonAlphaLinkType, src: buttonAlphaLinkSrc, textColor: buttonAlphaLabelColorInHex, backgroundColor: buttonAlphaBackgroundColorInHex, borderColor: buttonAlphaLabelColorInHex })))));
|
|
73
73
|
}
|
|
74
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", "
|
|
75
|
-
var
|
|
76
|
-
return
|
|
74
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", " 0;\n padding: 0 ", ";\n"], ["\n margin: ", " 0;\n padding: 0 ", ";\n"])), function (_a) {
|
|
75
|
+
var hasNothing = _a.hasNothing;
|
|
76
|
+
return (hasNothing ? 0 : '80px');
|
|
77
77
|
}, function (_a) {
|
|
78
78
|
var theme = _a.theme;
|
|
79
79
|
return theme.spacing.spacingE;
|
|
80
|
-
}, function (_a) {
|
|
81
|
-
var hasNothing = _a.hasNothing;
|
|
82
|
-
return hasNothing && 'margin: 0';
|
|
83
80
|
});
|
|
84
81
|
var S_SectionDescriptionBox = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n margin: ", " 0;\n"], ["\n margin: ", " 0;\n"])), function (_a) {
|
|
85
82
|
var theme = _a.theme;
|
package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateA/TemplateA.js
CHANGED
|
@@ -35,9 +35,17 @@ function TemplateA() {
|
|
|
35
35
|
var _b = context.styles, titleColorInHex = _b.titleColorInHex, descriptionColorInHex = _b.descriptionColorInHex;
|
|
36
36
|
var _c = context.properties, buttonAlphaLabel = _c.buttonAlphaLabel, buttonAlphaLinkSrc = _c.buttonAlphaLinkSrc, buttonAlphaLinkType = _c.buttonAlphaLinkType, buttonBravoLabel = _c.buttonBravoLabel, buttonBravoLinkSrc = _c.buttonBravoLinkSrc, buttonBravoLinkType = _c.buttonBravoLinkType, buttonCharlieLabel = _c.buttonCharlieLabel, buttonCharlieLinkSrc = _c.buttonCharlieLinkSrc, buttonCharlieLinkType = _c.buttonCharlieLinkType;
|
|
37
37
|
var _d = context.styles, buttonAlphaDesignType = _d.buttonAlphaDesignType, buttonAlphaBackgroundColorInHex = _d.buttonAlphaBackgroundColorInHex, buttonAlphaLabelColorInHex = _d.buttonAlphaLabelColorInHex, buttonBravoDesignType = _d.buttonBravoDesignType, buttonBravoBackgroundColorInHex = _d.buttonBravoBackgroundColorInHex, buttonBravoLabelColorInHex = _d.buttonBravoLabelColorInHex, buttonCharlieDesignType = _d.buttonCharlieDesignType, buttonCharlieBackgroundColorInHex = _d.buttonCharlieBackgroundColorInHex, buttonCharlieLabelColorInHex = _d.buttonCharlieLabelColorInHex;
|
|
38
|
-
|
|
38
|
+
var _e = (0, react_1.useState)(window.innerHeight * 0.01), vh = _e[0], setVH = _e[1];
|
|
39
|
+
var handleResize = function () {
|
|
40
|
+
setVH(window.innerHeight * 0.01);
|
|
41
|
+
};
|
|
42
|
+
(0, react_1.useEffect)(function () {
|
|
43
|
+
window.addEventListener('resize', handleResize);
|
|
44
|
+
return function () { return window.removeEventListener('resize', handleResize); };
|
|
45
|
+
}, []);
|
|
46
|
+
return (react_1.default.createElement(S_FullScreenWrapper, { vh: vh },
|
|
39
47
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "40px", customFontWeight: "bold" })),
|
|
48
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", customFontSize: "40px", customFontWeight: "bold", lineHeight: 1.2 })),
|
|
41
49
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
42
50
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", styleTheme: "body1Bold" }))),
|
|
43
51
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -45,7 +53,10 @@ function TemplateA() {
|
|
|
45
53
|
buttonBravoLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonBravoLabel, src: buttonBravoLinkSrc, linkType: buttonBravoLinkType, buttonType: buttonBravoDesignType, backgroundColor: buttonBravoBackgroundColorInHex, textColor: buttonBravoLabelColorInHex, borderColor: buttonBravoLabelColorInHex })),
|
|
46
54
|
buttonCharlieLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonCharlieLabel, src: buttonCharlieLinkSrc, linkType: buttonCharlieLinkType, buttonType: buttonCharlieDesignType, backgroundColor: buttonCharlieBackgroundColorInHex, textColor: buttonCharlieLabelColorInHex, borderColor: buttonCharlieLabelColorInHex })))))));
|
|
47
55
|
}
|
|
48
|
-
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n min-height: 100vh;\n display: flex;\n align-items: center;\n"], ["\n width: 100%;\n min-height: 100vh;\n display: flex;\n align-items: center;\n"])))
|
|
56
|
+
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n min-height: calc(100vh - 56px); // fallback\n min-height: calc(", "px - 56px);\n display: flex;\n align-items: center;\n"], ["\n width: 100%;\n min-height: calc(100vh - 56px); // fallback\n min-height: calc(", "px - 56px);\n display: flex;\n align-items: center;\n"])), function (_a) {
|
|
57
|
+
var vh = _a.vh;
|
|
58
|
+
return vh * 100;
|
|
59
|
+
});
|
|
49
60
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n width: 100%;\n margin: ", " ", ";\n"], ["\n width: 100%;\n margin: ", " ", ";\n"])), function (_a) {
|
|
50
61
|
var theme = _a.theme;
|
|
51
62
|
return theme.spacing.spacingG;
|
package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateB/TemplateB.js
CHANGED
|
@@ -35,9 +35,17 @@ function TemplateB() {
|
|
|
35
35
|
var _b = context.styles, titleColorInHex = _b.titleColorInHex, descriptionColorInHex = _b.descriptionColorInHex;
|
|
36
36
|
var _c = context.properties, buttonAlphaLabel = _c.buttonAlphaLabel, buttonAlphaLinkSrc = _c.buttonAlphaLinkSrc, buttonAlphaLinkType = _c.buttonAlphaLinkType, buttonBravoLabel = _c.buttonBravoLabel, buttonBravoLinkSrc = _c.buttonBravoLinkSrc, buttonBravoLinkType = _c.buttonBravoLinkType, buttonCharlieLabel = _c.buttonCharlieLabel, buttonCharlieLinkSrc = _c.buttonCharlieLinkSrc, buttonCharlieLinkType = _c.buttonCharlieLinkType;
|
|
37
37
|
var _d = context.styles, buttonAlphaDesignType = _d.buttonAlphaDesignType, buttonAlphaBackgroundColorInHex = _d.buttonAlphaBackgroundColorInHex, buttonAlphaLabelColorInHex = _d.buttonAlphaLabelColorInHex, buttonBravoDesignType = _d.buttonBravoDesignType, buttonBravoBackgroundColorInHex = _d.buttonBravoBackgroundColorInHex, buttonBravoLabelColorInHex = _d.buttonBravoLabelColorInHex, buttonCharlieDesignType = _d.buttonCharlieDesignType, buttonCharlieBackgroundColorInHex = _d.buttonCharlieBackgroundColorInHex, buttonCharlieLabelColorInHex = _d.buttonCharlieLabelColorInHex;
|
|
38
|
-
|
|
38
|
+
var _e = (0, react_1.useState)(window.innerHeight * 0.01), vh = _e[0], setVH = _e[1];
|
|
39
|
+
var handleResize = function () {
|
|
40
|
+
setVH(window.innerHeight * 0.01);
|
|
41
|
+
};
|
|
42
|
+
(0, react_1.useEffect)(function () {
|
|
43
|
+
window.addEventListener('resize', handleResize);
|
|
44
|
+
return function () { return window.removeEventListener('resize', handleResize); };
|
|
45
|
+
}, []);
|
|
46
|
+
return (react_1.default.createElement(S_FullScreenWrapper, { vh: vh },
|
|
39
47
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
|
-
title && react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, styleTheme: "headingBold" }),
|
|
48
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, styleTheme: "headingBold", lineHeight: 1.2 })),
|
|
41
49
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
42
50
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, styleTheme: "body2Bold" }))),
|
|
43
51
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -45,7 +53,10 @@ function TemplateB() {
|
|
|
45
53
|
buttonBravoLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonBravoLabel, src: buttonBravoLinkSrc, linkType: buttonBravoLinkType, buttonType: buttonBravoDesignType, backgroundColor: buttonBravoBackgroundColorInHex, textColor: buttonBravoLabelColorInHex, borderColor: buttonBravoLabelColorInHex })),
|
|
46
54
|
buttonCharlieLinkSrc && (react_1.default.createElement(components_1.Section.Button, { text: buttonCharlieLabel, src: buttonCharlieLinkSrc, linkType: buttonCharlieLinkType, buttonType: buttonCharlieDesignType, backgroundColor: buttonCharlieBackgroundColorInHex, textColor: buttonCharlieLabelColorInHex, borderColor: buttonCharlieLabelColorInHex })))))));
|
|
47
55
|
}
|
|
48
|
-
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n min-height: 100vh;\n display: flex;\n align-items: flex-end;\n"], ["\n width: 100%;\n min-height: 100vh;\n display: flex;\n align-items: flex-end;\n"])))
|
|
56
|
+
var S_FullScreenWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n min-height: calc(100vh - 56px); // fallback\n min-height: calc(", "px - 56px);\n display: flex;\n align-items: flex-end;\n"], ["\n width: 100%;\n min-height: calc(100vh - 56px); // fallback\n min-height: calc(", "px - 56px);\n display: flex;\n align-items: flex-end;\n"])), function (_a) {
|
|
57
|
+
var vh = _a.vh;
|
|
58
|
+
return vh * 100;
|
|
59
|
+
});
|
|
49
60
|
var S_ContentsArea = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n width: 100%;\n margin: ", " ", ";\n"], ["\n width: 100%;\n margin: ", " ", ";\n"])), function (_a) {
|
|
50
61
|
var theme = _a.theme;
|
|
51
62
|
return theme.spacing.spacingG;
|
package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateC/TemplateC.js
CHANGED
|
@@ -37,7 +37,7 @@ function TemplateC() {
|
|
|
37
37
|
var _d = context.styles, buttonAlphaDesignType = _d.buttonAlphaDesignType, buttonAlphaBackgroundColorInHex = _d.buttonAlphaBackgroundColorInHex, buttonAlphaLabelColorInHex = _d.buttonAlphaLabelColorInHex, buttonBravoDesignType = _d.buttonBravoDesignType, buttonBravoBackgroundColorInHex = _d.buttonBravoBackgroundColorInHex, buttonBravoLabelColorInHex = _d.buttonBravoLabelColorInHex, buttonCharlieDesignType = _d.buttonCharlieDesignType, buttonCharlieBackgroundColorInHex = _d.buttonCharlieBackgroundColorInHex, buttonCharlieLabelColorInHex = _d.buttonCharlieLabelColorInHex;
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
|
-
title && react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, styleTheme: "displayBold" }),
|
|
40
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, styleTheme: "displayBold", lineHeight: 1.2 })),
|
|
41
41
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
42
42
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, styleTheme: "body1Bold" }))),
|
|
43
43
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
package/dist/src/sub/DynamicLayout/mobile/sections/IntroSection/templates/TemplateD/TemplateD.js
CHANGED
|
@@ -37,7 +37,7 @@ function TemplateD() {
|
|
|
37
37
|
var _d = context.styles, buttonAlphaDesignType = _d.buttonAlphaDesignType, buttonAlphaBackgroundColorInHex = _d.buttonAlphaBackgroundColorInHex, buttonAlphaLabelColorInHex = _d.buttonAlphaLabelColorInHex, buttonBravoDesignType = _d.buttonBravoDesignType, buttonBravoBackgroundColorInHex = _d.buttonBravoBackgroundColorInHex, buttonBravoLabelColorInHex = _d.buttonBravoLabelColorInHex, buttonCharlieDesignType = _d.buttonCharlieDesignType, buttonCharlieBackgroundColorInHex = _d.buttonCharlieBackgroundColorInHex, buttonCharlieLabelColorInHex = _d.buttonCharlieLabelColorInHex;
|
|
38
38
|
return (react_1.default.createElement(S_FullScreenWrapper, null,
|
|
39
39
|
react_1.default.createElement(S_ContentsArea, null,
|
|
40
|
-
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", styleTheme: "displayBold" })),
|
|
40
|
+
title && (react_1.default.createElement(components_1.Section.Title, { text: title, color: titleColorInHex, textAlign: "center", styleTheme: "displayBold", lineHeight: 1.2 })),
|
|
41
41
|
description && (react_1.default.createElement(S_SectionDescriptionBox, { hasTitle: !!title },
|
|
42
42
|
react_1.default.createElement(components_1.Section.Description, { text: description, color: descriptionColorInHex, textAlign: "center", styleTheme: "body1Bold" }))),
|
|
43
43
|
(buttonAlphaLinkSrc || buttonBravoLinkSrc || buttonCharlieLinkSrc) && (react_1.default.createElement(S_SectionButtonBox, { hasTitle: !!title, hasDescription: !!description },
|
|
@@ -29,7 +29,7 @@ exports.MOCK_DATA = [
|
|
|
29
29
|
buttonEchoLinkType: 'NONE',
|
|
30
30
|
buttonEchoLinkSrc: '',
|
|
31
31
|
carouselAutoplayMode: 'AUTO',
|
|
32
|
-
carouselAutoplayTime:
|
|
32
|
+
carouselAutoplayTime: 1,
|
|
33
33
|
carouselInfiniteLoopMode: 'USE'
|
|
34
34
|
},
|
|
35
35
|
styles: {
|
|
@@ -89,7 +89,7 @@ exports.MOCK_DATA = [
|
|
|
89
89
|
buttonEchoLinkType: 'INTERNAL_LINK',
|
|
90
90
|
buttonEchoLinkSrc: '',
|
|
91
91
|
carouselAutoplayMode: 'AUTO',
|
|
92
|
-
carouselAutoplayTime:
|
|
92
|
+
carouselAutoplayTime: 1,
|
|
93
93
|
carouselInfiniteLoopMode: 'USE'
|
|
94
94
|
},
|
|
95
95
|
styles: {
|
|
@@ -153,7 +153,7 @@ exports.MOCK_DATA = [
|
|
|
153
153
|
buttonEchoLinkType: 'NONE',
|
|
154
154
|
buttonEchoLinkSrc: '',
|
|
155
155
|
carouselAutoplayMode: 'AUTO',
|
|
156
|
-
carouselAutoplayTime:
|
|
156
|
+
carouselAutoplayTime: 1,
|
|
157
157
|
carouselInfiniteLoopMode: 'USE'
|
|
158
158
|
},
|
|
159
159
|
styles: {
|
|
@@ -394,7 +394,7 @@ exports.MOCK_DATA = [
|
|
|
394
394
|
buttonEchoLinkType: 'INTERNAL_LINK',
|
|
395
395
|
buttonEchoLinkSrc: '',
|
|
396
396
|
carouselAutoplayMode: 'AUTO',
|
|
397
|
-
carouselAutoplayTime:
|
|
397
|
+
carouselAutoplayTime: 1,
|
|
398
398
|
carouselInfiniteLoopMode: 'USE'
|
|
399
399
|
},
|
|
400
400
|
styles: {
|
|
@@ -495,7 +495,7 @@ exports.MOCK_DATA = [
|
|
|
495
495
|
buttonEchoLinkType: 'INTERNAL_LINK',
|
|
496
496
|
buttonEchoLinkSrc: '',
|
|
497
497
|
carouselAutoplayMode: 'AUTO',
|
|
498
|
-
carouselAutoplayTime:
|
|
498
|
+
carouselAutoplayTime: 1,
|
|
499
499
|
carouselInfiniteLoopMode: 'USE'
|
|
500
500
|
},
|
|
501
501
|
styles: {
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB-TEST Release Notes
|
|
2
|
-
## [v0.0.
|
|
2
|
+
## [v0.0.15]
|
|
3
3
|
|
|
4
4
|
* sub
|
|
5
|
-
* DynamicLayout 수정
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
* DynamicLayout 디자인 디테일 수정
|
|
6
|
+
* desktop
|
|
7
|
+
* Intro 섹션 타이틀 line-height 1.2
|
|
8
|
+
* Intro 제외 섹션 타이틀 line-height 1.3
|
|
9
|
+
* Intro 제외 섹션 타이틀 사이즈 48px로 일괄 적용
|
|
10
|
+
* Intro 제외 섹션과 콘텐츠 영역 상하단 margin 80px -> 160px으로 수정
|
|
11
|
+
* mobile
|
|
12
|
+
* Intro 섹션 타이틀 line-height 1.2
|
|
13
|
+
* Intro 제외 섹션 타이틀 line-height 1.4
|
|
14
|
+
* Intro 제외 섹션 타이틀 사이즈 32px로 일괄 적용
|
|
15
|
+
* Intro 제외 섹션 본문 bold 일괄 적용
|
|
16
|
+
* Intro 제외 섹션 본문 customFontSize : 20px
|
|
17
|
+
* Intro 제외 섹션과 콘텐츠 영역 상하단 margin 48px -> 80px으로 수정
|
|
18
|
+
* Content Section
|
|
19
|
+
* 이미지와 텍스트 사이 24px -> 48px
|
|
20
|
+
* 콘텐츠와 인디케이터 사이 간격 확인 / 인티케이터 하단 마진 조정 필요
|