pds-dev-kit-web-test 2.7.495 → 2.7.496
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/sub/DynamicLayout/gleStyles.js +1 -1
- package/dist/src/sub/DynamicLayout/mock_section.json +20390 -1750
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +1 -1
- package/package.json +1 -1
|
@@ -164,7 +164,7 @@ function ContentsCarousel(props) {
|
|
|
164
164
|
var isHidden = style.visibility === 'hidden';
|
|
165
165
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isEditModeAndHidden && (0, jsx_runtime_1.jsx)(S_HiddenCover_1.S_HiddenCover, {}), Object.entries(componentGroups).map(function (_a) {
|
|
166
166
|
var position = _a[0], groupComponents = _a[1];
|
|
167
|
-
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-contentscarousel-button-group ccb-elements ".concat(position), ref: function (el) {
|
|
167
|
+
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-contentscarousel-button-group ccb-elements ".concat(position, " ").concat(isHidden ? ' hidden' : ''), ref: function (el) {
|
|
168
168
|
if (el) {
|
|
169
169
|
positionRefs.current[position] = el;
|
|
170
170
|
}
|
|
@@ -185,7 +185,7 @@ function ContentsList(props) {
|
|
|
185
185
|
var isHidden = style.visibility === 'hidden';
|
|
186
186
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isEditModeAndHidden && (0, jsx_runtime_1.jsx)(S_HiddenCover_1.S_HiddenCover, {}), isEditModeAndHeightFitContent && ((0, jsx_runtime_1.jsx)(S_HeightFitContentCover_1.S_HeightFitContentCover, { className: "height-fit-content-cover", bottomText: t('str_10106') })), Object.entries(componentGroups).map(function (_a) {
|
|
187
187
|
var position = _a[0], groupComponents = _a[1];
|
|
188
|
-
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-contentslist-button-group ccb-elements", ref: function (el) {
|
|
188
|
+
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-contentslist-button-group ccb-elements ".concat(isHidden ? 'hidden' : ''), ref: function (el) {
|
|
189
189
|
if (el) {
|
|
190
190
|
positionRefs.current[position] = el;
|
|
191
191
|
}
|
|
@@ -202,7 +202,7 @@ function ContentsList(props) {
|
|
|
202
202
|
justifyContent: layout.justifyContent
|
|
203
203
|
} }, { children: (0, jsx_runtime_1.jsx)(S_ContentsListWrapper, __assign({ className: "cb-contentslist-wrapper", ccbInset: ccbInset, contentPropCss: contentPropCss, stylePropCss: isHovered ? hoverStylePropCss : stylePropCss,
|
|
204
204
|
// NOTE: 위 CSS 프롭과 정리
|
|
205
|
-
style: { gridTemplateRows: "repeat(".concat(numberOfRows, ",
|
|
205
|
+
style: { gridTemplateRows: "repeat(".concat(numberOfRows, ", min-content)") } }, { children: (0, createCompositions_1.createCompositions)({
|
|
206
206
|
valueType: CB_CONTENT_PROP_CONTENTSLIST_SPEC_VALUETYPE,
|
|
207
207
|
queryPath: CB_CONTENT_PROP_CONTENTSLIST_SPEC_CONNECTDATA,
|
|
208
208
|
limit: displayCounts,
|
|
@@ -35,7 +35,7 @@ function parseStylePropertyStyles(key, value) {
|
|
|
35
35
|
return undefined;
|
|
36
36
|
}
|
|
37
37
|
function getColumnsPropStyleValues(value, rows) {
|
|
38
|
-
return (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: repeat(", ",
|
|
38
|
+
return (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: repeat(", ", min-content);\n "], ["\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: repeat(", ", min-content);\n "])), value, rows);
|
|
39
39
|
}
|
|
40
40
|
function parseContentPropertyStyles(key, value, rows, device) {
|
|
41
41
|
if (device === 'DESKTOP') {
|
|
@@ -158,7 +158,7 @@ function SlideBanner(props) {
|
|
|
158
158
|
var isHidden = style.visibility === 'hidden';
|
|
159
159
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isEditModeAndHidden && (0, jsx_runtime_1.jsx)(S_HiddenCover_1.S_HiddenCover, {}), (0, jsx_runtime_1.jsxs)(S_CB_AnimationObserverBox_1.S_CB_AnimationObserverBox, __assign({ ref: hasEffect ? cbRef : null, effectVisibleStyle: effectVisibleStyle, onMouseEnter: function () { return setIsHovered(true); }, onMouseLeave: function () { return setIsHovered(false); } }, { children: [Object.entries(componentGroups).map(function (_a) {
|
|
160
160
|
var position = _a[0], groupComponents = _a[1];
|
|
161
|
-
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-slidebanner-button-group ccb-elements ".concat(position), ref: function (el) {
|
|
161
|
+
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-slidebanner-button-group ccb-elements ".concat(position, " ").concat(isHidden ? ' hidden' : ''), ref: function (el) {
|
|
162
162
|
if (el) {
|
|
163
163
|
positionRefs.current[position] = el;
|
|
164
164
|
}
|