pds-dev-kit-web-test 2.7.342 → 2.7.343
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/ContentsCarousel/components/progressConfigs.js +1 -1
- package/package.json +1 -1
|
@@ -144,7 +144,7 @@ function ContentsCarousel(props) {
|
|
|
144
144
|
var columnGapEnum = device === 'DESKTOP'
|
|
145
145
|
? CB_STYLE_PROP_CONTENTSCAROUSELDESIGN.CB_STYLE_PROP_CONTENTSCAROUSELDESIGN_SPEC_ITEMSPACING
|
|
146
146
|
: (_b = CB_STYLE_PROP_CONTENTSCAROUSELDESIGN['CB_STYLE_PROP_CONTENTSCAROUSEL_SPEC_ITEMSPACING:MOBILE']) !== null && _b !== void 0 ? _b : CB_STYLE_PROP_CONTENTSCAROUSELDESIGN.CB_STYLE_PROP_CONTENTSCAROUSELDESIGN_SPEC_ITEMSPACING;
|
|
147
|
-
var columnGap = columnGapEnum === 'NARROW' ? 8 : columnGapEnum === 'NORMAL' ?
|
|
147
|
+
var columnGap = columnGapEnum === 'NARROW' ? 8 : columnGapEnum === 'NORMAL' ? 16 : 24;
|
|
148
148
|
var pointerEventsObj = mode === 'EDIT' ? { pointerEvents: 'none' } : {};
|
|
149
149
|
var backgroundRef = (0, react_1.useRef)(null);
|
|
150
150
|
var isMobile = device === 'MOBILE';
|
|
@@ -110,7 +110,7 @@ var SIZE_ENUM_TO_NUM_BAR = {
|
|
|
110
110
|
},
|
|
111
111
|
LARGE: { width: 120, height: 8 }
|
|
112
112
|
};
|
|
113
|
-
var S_ProgressDesign1 = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n color: ", ";\n display: flex;\n font-weight: 700;\n height: ", "px;\n justify-content: center;\n position: relative;\n width: ", "px;\n\n svg {\n --progress: 0;\n fill: none;\n height: 100%;\n position: absolute;\n stroke: ", ";\n stroke-dasharray: 125.6;\n stroke-dashoffset: calc(125.6px * (1 - var(--progress)));\n stroke-width: 4px;\n transform: rotate(-90deg);\n width: 100%;\n z-index: 10;\n\n .bg-circle {\n stroke: ", ";\n stroke-dasharray: none;\n stroke-width: 4px;\n }\n }\n\n span {\n font-size: ", "px;\n position: absolute;\n }\n"], ["\n align-items: center;\n color: ", ";\n display: flex;\n font-weight: 700;\n height: ", "px;\n justify-content: center;\n position: relative;\n width: ", "px;\n\n svg {\n --progress: 0;\n fill: none;\n height: 100%;\n position: absolute;\n stroke: ", ";\n stroke-dasharray: 125.6;\n stroke-dashoffset: calc(125.6px * (1 - var(--progress)));\n stroke-width: 4px;\n transform: rotate(-90deg);\n width: 100%;\n z-index: 10;\n\n .bg-circle {\n stroke: ", ";\n stroke-dasharray: none;\n stroke-width: 4px;\n }\n }\n\n span {\n font-size: ", "px;\n position: absolute;\n }\n"])), function (_a) {
|
|
113
|
+
var S_ProgressDesign1 = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n color: ", ";\n display: flex;\n font-weight: 700;\n height: ", "px;\n justify-content: center;\n position: relative;\n width: ", "px;\n\n svg {\n --progress: 0;\n fill: none;\n height: 100%;\n position: absolute;\n stroke: ", ";\n stroke-dasharray: 125.6;\n stroke-dashoffset: calc(125.6px * (1 - var(--progress)));\n stroke-width: 4px;\n transform: rotate(-90deg);\n width: 100%;\n z-index: 10;\n\n .bg-circle {\n stroke: ", ";\n stroke-dasharray: none;\n stroke-width: 4px;\n }\n }\n\n span {\n font-size: ", "px;\n font-weight: 700;\n position: absolute;\n }\n"], ["\n align-items: center;\n color: ", ";\n display: flex;\n font-weight: 700;\n height: ", "px;\n justify-content: center;\n position: relative;\n width: ", "px;\n\n svg {\n --progress: 0;\n fill: none;\n height: 100%;\n position: absolute;\n stroke: ", ";\n stroke-dasharray: 125.6;\n stroke-dashoffset: calc(125.6px * (1 - var(--progress)));\n stroke-width: 4px;\n transform: rotate(-90deg);\n width: 100%;\n z-index: 10;\n\n .bg-circle {\n stroke: ", ";\n stroke-dasharray: none;\n stroke-width: 4px;\n }\n }\n\n span {\n font-size: ", "px;\n font-weight: 700;\n position: absolute;\n }\n"])), function (_a) {
|
|
114
114
|
var barColor = _a.barColor;
|
|
115
115
|
return barColor;
|
|
116
116
|
}, function (props) { return SIZE_ENUM_TO_NUM_CIRCLE[props.size].height; }, function (props) { return SIZE_ENUM_TO_NUM_CIRCLE[props.size].width; }, function (_a) {
|