pds-dev-kit-web-test 2.7.568 → 2.7.571
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/CompositionRenderer/createCompositions.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +5 -4
- package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +13 -0
- package/dist/src/sub/DynamicLayout/mock_queryData.js +119 -0
- package/dist/src/sub/DynamicLayout/mock_section.json +8910 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +2 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +2 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +2 -1
- package/package.json +1 -1
|
@@ -190,7 +190,8 @@ function ContentsCarousel(props) {
|
|
|
190
190
|
compositions: compositions,
|
|
191
191
|
componentBlockCode: types_1.CB_ALL_CODES.CB_CONTENTSCAROUSEL,
|
|
192
192
|
device: device,
|
|
193
|
-
navigationHandler: navigationHandler
|
|
193
|
+
navigationHandler: navigationHandler,
|
|
194
|
+
mode: mode
|
|
194
195
|
}) }), CB_CONTENT_PROP_CONTENTSCAROUSEL_SPEC_VALUETYPE +
|
|
195
196
|
CB_EFFECT_PROP_CONTENTSCAROUSEL_SPEC_TRANSITIONTYPE +
|
|
196
197
|
autoPlayEnabled +
|
|
@@ -194,7 +194,8 @@ function ContentsList(props) {
|
|
|
194
194
|
compositions: compositions,
|
|
195
195
|
componentBlockCode: types_1.CB_ALL_CODES.CB_LIST,
|
|
196
196
|
device: device,
|
|
197
|
-
navigationHandler: navigationHandler
|
|
197
|
+
navigationHandler: navigationHandler,
|
|
198
|
+
mode: mode
|
|
198
199
|
}).slice(startIndex, endIndex + 1) })) })));
|
|
199
200
|
};
|
|
200
201
|
var renderCompositions = function (compositions) {
|
|
@@ -170,7 +170,8 @@ function SlideBanner(props) {
|
|
|
170
170
|
compositions: compositions,
|
|
171
171
|
componentBlockCode: types_1.CB_ALL_CODES.CB_SLIDEBANNER,
|
|
172
172
|
navigationHandler: navigationHandler,
|
|
173
|
-
device: device
|
|
173
|
+
device: device,
|
|
174
|
+
mode: mode
|
|
174
175
|
}) }), CB_CONTENT_PROP_SLIDEBANNER_SPEC_VALUETYPE +
|
|
175
176
|
CB_EFFECT_PROP_SLIDEBANNER_SPEC_TRANSITIONTYPE +
|
|
176
177
|
autoPlayEnabled +
|