pds-dev-kit-web-test 2.5.345 → 2.5.346
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.
@@ -102,7 +102,7 @@ exports.SAMPLE_CONTENTSCAROUSEL_CB = {
|
|
102
102
|
},
|
103
103
|
CB_CONTENT_PROP_CONTENTSCAROUSEL: {
|
104
104
|
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_VALUE_TYPE: 'QUERYDATA',
|
105
|
-
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_CONNECT_DATA: 'PAPPQUERY
|
105
|
+
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_CONNECT_DATA: 'PAPPQUERY/C00007/VOD/CLASS/TOTAL',
|
106
106
|
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_DATASORTING: '최신순',
|
107
107
|
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_OFFSET: '1',
|
108
108
|
CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_MENUALITEM: [],
|
@@ -133,7 +133,7 @@ function ContentsCarousel(props) {
|
|
133
133
|
var filteredQueryData = isQueryDataConnected && queryData ? queryData[queryPath] : [];
|
134
134
|
// NOTE: 이 방식이 맞으면 util로 빼서 모든 CCB들에 적용하기 쉽게 만들기.
|
135
135
|
function convertColonsToUnderscores(input) {
|
136
|
-
return input.replace(
|
136
|
+
return input.replace(/\//g, '_');
|
137
137
|
}
|
138
138
|
var queryComposition = compositions.find(function (composition) { return composition.isDefault; });
|
139
139
|
return ((0, jsx_runtime_1.jsx)(S_CB_AnimationObserverBox_1.S_CB_AnimationObserverBox, __assign({ ref: hasEffect ? cbRef : null, effectVisibleStyle: effectVisibleStyle }, { children: (0, jsx_runtime_1.jsx)(S_CB_BoxWithShadow_1.S_CB_BoxWithShadow, __assign({ className: "cb-layout-box", normalStyle: __assign(__assign(__assign(__assign(__assign({}, style), layout), effectCssProperties), editModeStyle), { position: 'relative', overflow: 'hidden' }), hoverStyle: __assign(__assign({}, hoverStyle), { position: 'relative', overflow: 'hidden' }), cbStylePropsShadowSpecs: CB_STYLE_PROP_SHADOW, device: device, onMouseEnter: function () { return setIsHovered(true); }, onMouseLeave: function () { return setIsHovered(false); } }, { children: (0, jsx_runtime_1.jsxs)(S_SwiperWrapper, __assign({ customStyle: isHovered
|