pds-dev-kit-web-test 2.7.339 → 2.7.341
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/SlideBanner/SlideBanner.js +1 -1
- package/package.json +1 -1
|
@@ -115,7 +115,7 @@ function ContentsCarousel(props) {
|
|
|
115
115
|
createNextButton(customNavigationNormalStyle, customNavigationHoverStyle, isHovered),
|
|
116
116
|
{
|
|
117
117
|
type: 'PROGRESSBAR',
|
|
118
|
-
position: 'INSET_PROGRESS',
|
|
118
|
+
position: customProgressbarNormalStyle.type === 'DESIGN4' ? 'INSET_PROGRESS' : 'INSET5',
|
|
119
119
|
designType: customProgressbarNormalStyle.type || 'NONE'
|
|
120
120
|
}
|
|
121
121
|
].filter(function (component) { return component !== undefined; });
|
|
@@ -118,7 +118,7 @@ function SlideBanner(props) {
|
|
|
118
118
|
createPrevButton(customNavigationNormalStyle, customNavigationHoverStyle, isHovered),
|
|
119
119
|
createNextButton(customNavigationNormalStyle, customNavigationHoverStyle, isHovered),
|
|
120
120
|
createPagination(customPaginationNormalStyle, customPaginationHoverStyle, isHovered),
|
|
121
|
-
{ type: 'PROGRESSBAR', position: 'INSET_PROGRESS' }
|
|
121
|
+
{ type: 'PROGRESSBAR', position: customProgressbarNormalStyle.type === 'DESIGN4' ? 'INSET_PROGRESS' : 'INSET5' }
|
|
122
122
|
].filter(function (component) { return component !== undefined; });
|
|
123
123
|
var _l = (0, useFlexGridLayout_1.useFlexGridLayout)({ components: components }), layoutRef = _l.layoutRef, positionRefs = _l.positionRefs, ccbInset = _l.ccbInset, componentGroups = _l.componentGroups, getPositionStyle = _l.getPositionStyle, getComponentGroupLayout = _l.getComponentGroupLayout;
|
|
124
124
|
var renderElements = function (component, positionStyle) {
|