pds-dev-kit-web-test 2.5.365 → 2.5.366
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/CompositionRenderer/createCompositions.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +1 -1
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +1 -2
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +1046 -275
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +2 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +4 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +5 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +4 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +8 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +4 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +5 -5
- package/package.json +1 -1
@@ -1,8 +1,8 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
import type {
|
2
|
+
import type { CB_VALUE_TYPE, CCB_VALUE_TYPE } from '../sections/CustomSection/util/types';
|
3
3
|
import type { IComposition, QueryData } from '../../DynamicLayout/types';
|
4
4
|
export declare function createCompositions({ valueType, queryPath, queryData, compositions }: {
|
5
|
-
valueType:
|
5
|
+
valueType: CCB_VALUE_TYPE | CB_VALUE_TYPE;
|
6
6
|
queryPath: string;
|
7
7
|
queryData: QueryData | undefined;
|
8
8
|
compositions: IComposition[];
|
@@ -21,7 +21,7 @@ var compositionQueryContext_1 = require("../compositionQueryContext");
|
|
21
21
|
var Composition_1 = __importDefault(require("./Composition"));
|
22
22
|
function createCompositions(_a) {
|
23
23
|
var valueType = _a.valueType, queryPath = _a.queryPath, queryData = _a.queryData, compositions = _a.compositions;
|
24
|
-
var isQueryDataConnected = valueType === 'DATA';
|
24
|
+
var isQueryDataConnected = valueType === 'DATA' || valueType === 'DELEGATEDDATA';
|
25
25
|
// 직접 입력 유형인 경우
|
26
26
|
if (!isQueryDataConnected) {
|
27
27
|
return compositions
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare const SAMPLE_CONTENTSCAROUSEL_CB: CB_CONTENTSCAROUSEL;
|
1
|
+
export declare const SAMPLE_CONTENTSCAROUSEL_CB: any;
|