pds-dev-kit-web-test 2.7.562 → 2.7.563
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/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +1 -1
- package/package.json +1 -1
|
@@ -204,7 +204,7 @@ function ContentsCarousel(props) {
|
|
|
204
204
|
return renderSwiper(compositions);
|
|
205
205
|
}
|
|
206
206
|
// 데이터 연결
|
|
207
|
-
if (
|
|
207
|
+
if (CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_CONNECTDATA === 'NONE' || !queryPath || !queryData) {
|
|
208
208
|
return (0, jsx_runtime_1.jsx)(EmptyString, { stringKey: "str_10477" }, "no-query");
|
|
209
209
|
}
|
|
210
210
|
var queryDataValue = queryData[queryPath];
|
|
@@ -204,7 +204,7 @@ function ContentsList(props) {
|
|
|
204
204
|
return renderList(compositions);
|
|
205
205
|
}
|
|
206
206
|
// 데이터 연결
|
|
207
|
-
if (
|
|
207
|
+
if (CB_CONTENT_PROP_CONTENTSLIST_SPEC_CONNECTDATA === 'NONE' || !queryPath || !queryData) {
|
|
208
208
|
return (0, jsx_runtime_1.jsx)(EmptyString, { stringKey: "str_10477" }, "no-query");
|
|
209
209
|
}
|
|
210
210
|
var queryDataValue = queryData[queryPath];
|
|
@@ -184,7 +184,7 @@ function SlideBanner(props) {
|
|
|
184
184
|
return renderSwiper(compositions);
|
|
185
185
|
}
|
|
186
186
|
// 데이터 연결
|
|
187
|
-
if (
|
|
187
|
+
if (CB_CONTENT_PROP_SLIDEBANNER_SPEC_CONNECTDATA === 'NONE' || !queryPath || !queryData) {
|
|
188
188
|
return (0, jsx_runtime_1.jsx)(EmptyString, { stringKey: "str_10477" }, "no-query");
|
|
189
189
|
}
|
|
190
190
|
var queryDataValue = queryData[queryPath];
|