@cntrl-site/sdk 1.23.1-alpha.0 → 1.23.2-0
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/Components/ControlSlider/ControlSlider.d.ts +1 -0
- package/dist/Components/ControlSlider/ControlSliderComponent.d.ts +21 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +257 -274
- package/dist/index.mjs +257 -274
- package/dist/schemas/article/Article.schema.d.ts +4 -4
- package/dist/schemas/article/Item.schema.d.ts +6 -6
- package/dist/schemas/article/Item.schema.js +4 -5
- package/dist/schemas/article/ItemArea.schema.d.ts +2 -2
- package/dist/schemas/article/ItemBase.schema.d.ts +4 -4
- package/dist/schemas/article/ItemState.schema.d.ts +231 -2433
- package/dist/schemas/article/ItemState.schema.js +3 -4
- package/dist/schemas/article/RichTextItem.schema.d.ts +16 -16
- package/dist/schemas/article/Section.schema.d.ts +2 -2
- package/dist/schemas/keyframe/Keyframes.schema.d.ts +186 -1222
- package/dist/schemas/keyframe/Keyframes.schema.js +14 -11
- package/dist/types/article/Item.d.ts +3 -51
- package/dist/types/article/ItemState.d.ts +3 -4
- package/dist/types/keyframe/Keyframe.d.ts +11 -8
- package/dist/types/keyframe/Keyframe.js +2 -2
- package/package.json +1 -1
- package/dist/schemas/article/FillLayer.schema.d.ts +0 -186
- package/dist/schemas/article/FillLayer.schema.js +0 -53
- package/dist/schemas/shared/FillLayer.schema.d.ts +0 -186
|
@@ -79,6 +79,15 @@ export declare const ControlSliderComponent: {
|
|
|
79
79
|
};
|
|
80
80
|
enum: string[];
|
|
81
81
|
};
|
|
82
|
+
backgroundColor: {
|
|
83
|
+
type: string;
|
|
84
|
+
name: string;
|
|
85
|
+
display: {
|
|
86
|
+
visible: boolean;
|
|
87
|
+
type: string;
|
|
88
|
+
format: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
82
91
|
};
|
|
83
92
|
};
|
|
84
93
|
controls: {
|
|
@@ -272,6 +281,7 @@ export declare const ControlSliderComponent: {
|
|
|
272
281
|
transition: {
|
|
273
282
|
type: string;
|
|
274
283
|
duration: string;
|
|
284
|
+
backgroundColor: null;
|
|
275
285
|
};
|
|
276
286
|
pagination: {
|
|
277
287
|
isActive: boolean;
|
|
@@ -295,7 +305,7 @@ export declare const ControlSliderComponent: {
|
|
|
295
305
|
hover: string;
|
|
296
306
|
};
|
|
297
307
|
};
|
|
298
|
-
displayRules: {
|
|
308
|
+
displayRules: ({
|
|
299
309
|
if: {
|
|
300
310
|
name: string;
|
|
301
311
|
value: string;
|
|
@@ -304,7 +314,16 @@ export declare const ControlSliderComponent: {
|
|
|
304
314
|
name: string;
|
|
305
315
|
value: string;
|
|
306
316
|
};
|
|
307
|
-
}
|
|
317
|
+
} | {
|
|
318
|
+
if: {
|
|
319
|
+
name: string;
|
|
320
|
+
value: string;
|
|
321
|
+
};
|
|
322
|
+
then: {
|
|
323
|
+
name: string;
|
|
324
|
+
value: boolean;
|
|
325
|
+
};
|
|
326
|
+
})[];
|
|
308
327
|
};
|
|
309
328
|
content: {
|
|
310
329
|
layoutBased: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export { AreaAnchor, AnchorSide, DimensionMode, PositionType } from './types/art
|
|
|
9
9
|
export { KeyframeType } from './types/keyframe/Keyframe';
|
|
10
10
|
export type { Article } from './types/article/Article';
|
|
11
11
|
export type { Section, SectionHeight } from './types/article/Section';
|
|
12
|
-
export type { Item, ImageItem, ItemAny, CustomItem, ItemCommonParamsMap, ItemLayoutParamsMap, RectangleItem, StickyParams, VideoItem, RichTextItem, Link, VimeoEmbedItem, YoutubeEmbedItem, GroupItem, CodeEmbedItem, CompoundItem, ComponentItem
|
|
12
|
+
export type { Item, ImageItem, ItemAny, CustomItem, ItemCommonParamsMap, ItemLayoutParamsMap, RectangleItem, StickyParams, VideoItem, RichTextItem, Link, VimeoEmbedItem, YoutubeEmbedItem, GroupItem, CodeEmbedItem, CompoundItem, ComponentItem } from './types/article/Item';
|
|
13
13
|
export type { RichTextBlock, RichTextEntity, RichTextStyle } from './types/article/RichText';
|
|
14
14
|
export type { ItemArea } from './types/article/ItemArea';
|
|
15
15
|
export type { ItemState, ItemStateParams, StateParams, ItemStatesMap } from './types/article/ItemState';
|