pds-dev-kit-web-test 2.5.641 → 2.5.644
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");
|
@@ -155,7 +154,7 @@ function ContentsList(props) {
|
|
155
154
|
}
|
156
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"])));
|
157
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"])));
|
158
|
-
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) {
|
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 position: relative;\n right: ", ";\n top: ", ";\n\n ", ";\n ", ";\n"], ["\n bottom: ", ";\n display: grid;\n left: ", ";\n /* position: absolute; */\n position: relative;\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) {
|
@@ -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;
|