pds-dev-kit-web-test 2.7.484 → 2.7.485
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.
|
@@ -27,6 +27,7 @@ var compositionQueryContext_1 = require("../compositionQueryContext");
|
|
|
27
27
|
var Composition_1 = __importDefault(require("./Composition"));
|
|
28
28
|
function createCompositions(_a) {
|
|
29
29
|
var valueType = _a.valueType, queryPath = _a.queryPath, queryData = _a.queryData, compositions = _a.compositions, limit = _a.limit, componentBlockCode = _a.componentBlockCode;
|
|
30
|
+
console.log('slidebanner createCompositions', queryPath, queryData, compositions);
|
|
30
31
|
var isQueryDataConnected = valueType === 'DATA' || valueType === 'DELEGATEDDATA';
|
|
31
32
|
// 직접 입력 유형인 경우
|
|
32
33
|
if (!isQueryDataConnected) {
|
|
@@ -46,6 +47,7 @@ function createCompositions(_a) {
|
|
|
46
47
|
}
|
|
47
48
|
// const parsedQueryPath = removeFirstSegment(queryPath);
|
|
48
49
|
var queryDataValue = queryData[queryPath];
|
|
50
|
+
console.log('queryDataValue createCOmposition', queryDataValue);
|
|
49
51
|
var queryComposition = compositions.find(function (composition) { return composition.isDefault; });
|
|
50
52
|
// 쿼리 데이터와 키가 있으나, 쿼리 데이터에 해당 키가 없는 경우
|
|
51
53
|
if (!queryDataValue) {
|
|
@@ -155,6 +155,7 @@ function SlideBanner(props) {
|
|
|
155
155
|
if (mode === 'EDIT') {
|
|
156
156
|
style.visibility = 'visible';
|
|
157
157
|
}
|
|
158
|
+
console.log('slidebanner comonentGroup', componentGroups);
|
|
158
159
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isEditModeAndHidden && (0, jsx_runtime_1.jsx)(S_HiddenCover_1.S_HiddenCover, {}), (0, jsx_runtime_1.jsxs)(S_CB_AnimationObserverBox_1.S_CB_AnimationObserverBox, __assign({ ref: hasEffect ? cbRef : null, effectVisibleStyle: effectVisibleStyle, onMouseEnter: function () { return setIsHovered(true); }, onMouseLeave: function () { return setIsHovered(false); } }, { children: [Object.entries(componentGroups).map(function (_a) {
|
|
159
160
|
var position = _a[0], groupComponents = _a[1];
|
|
160
161
|
return ((0, jsx_runtime_1.jsx)("div", __assign({ className: "cb-slidebanner-button-group ccb-elements ".concat(position), ref: function (el) {
|