pds-dev-kit-web-test 2.5.640 → 2.5.642
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.
@@ -26,7 +26,6 @@ var hooks_1 = require("../../../../../../../DynamicLayout/sections/CustomSection
|
|
26
26
|
var util_1 = require("../../../../../../../DynamicLayout/sections/CustomSection/util");
|
27
27
|
var styled_components_1 = __importDefault(require("styled-components"));
|
28
28
|
var CBBackgroundMedia_1 = __importDefault(require("../../propComponent/CBBackgroundMedia"));
|
29
|
-
require("../../propComponent/CBBackgroundOverlay");
|
30
29
|
var S_CB_AnimationObserverBox_1 = require("../components/S_CB_AnimationObserverBox");
|
31
30
|
var S_CB_BoxWithShadow_1 = require("../components/S_CB_BoxWithShadow");
|
32
31
|
var CustomPagination_1 = require("./components/CustomPagination");
|
@@ -128,7 +127,6 @@ function ContentsList(props) {
|
|
128
127
|
return null;
|
129
128
|
}
|
130
129
|
};
|
131
|
-
console.log('overlayStyle', overlayStyle);
|
132
130
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [Object.entries(componentGroups).map(function (_a) {
|
133
131
|
var position = _a[0], groupComponents = _a[1];
|
134
132
|
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-contentslist-button-group", ref: function (el) {
|
@@ -152,10 +150,11 @@ function ContentsList(props) {
|
|
152
150
|
limit: CB_CONTENT_PROP_CONTENTSLIST_SPEC_ITEMCOUNTS,
|
153
151
|
queryData: queryData,
|
154
152
|
compositions: compositions
|
155
|
-
}).slice(startIndex, endIndex), (0, jsx_runtime_1.jsx)(
|
153
|
+
}).slice(startIndex, endIndex), (0, jsx_runtime_1.jsx)(S_Overlay, { style: overlayStyle })] })) })) })) }))] }));
|
156
154
|
}
|
157
|
-
var
|
158
|
-
var
|
155
|
+
var S_Overlay = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"], ["\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n"])));
|
156
|
+
var S_ContentsListLayout = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n height: 100%;\n margin: 0 auto;\n position: relative;\n width: 100%;\n"], ["\n height: 100%;\n margin: 0 auto;\n position: relative;\n width: 100%;\n"])));
|
157
|
+
var S_ContentsListWrapper = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n bottom: ", ";\n display: grid;\n left: ", ";\n position: absolute;\n right: ", ";\n top: ", ";\n\n ", ";\n ", ";\n"], ["\n bottom: ", ";\n display: grid;\n left: ", ";\n position: absolute;\n right: ", ";\n top: ", ";\n\n ", ";\n ", ";\n"])), function (_a) {
|
159
158
|
var ccbInset = _a.ccbInset;
|
160
159
|
return ccbInset.bottom;
|
161
160
|
}, function (_a) {
|
@@ -221,4 +220,4 @@ function getCompositionMinValue(composition, device) {
|
|
221
220
|
}
|
222
221
|
}
|
223
222
|
exports.default = ContentsList;
|
224
|
-
var templateObject_1, templateObject_2;
|
223
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
@@ -1,7 +1,17 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
4
|
+
return cooked;
|
5
|
+
};
|
6
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
7
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
8
|
+
};
|
2
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
10
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
11
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
4
12
|
function CBBackgroundMedia() {
|
5
|
-
return (0, jsx_runtime_1.jsx)(
|
13
|
+
return (0, jsx_runtime_1.jsx)(S_BGMedia, { children: "CB- background-media" });
|
6
14
|
}
|
7
15
|
exports.default = CBBackgroundMedia;
|
16
|
+
var S_BGMedia = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n z-index: -1;\n"], ["\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n z-index: -1;\n"])));
|
17
|
+
var templateObject_1;
|