@cliquify.me/types 4.0.23 → 4.0.25
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/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,8 @@ export interface ICompositionAnimation {
|
|
|
44
44
|
url: string;
|
|
45
45
|
}[];
|
|
46
46
|
};
|
|
47
|
+
text?: string;
|
|
48
|
+
persist?: boolean;
|
|
47
49
|
}
|
|
48
50
|
export interface ITransition {
|
|
49
51
|
id: string;
|
|
@@ -119,6 +121,7 @@ export interface ITrackItemBase {
|
|
|
119
121
|
in: IBasicAnimation;
|
|
120
122
|
out: IBasicAnimation;
|
|
121
123
|
loop: IBasicAnimation;
|
|
124
|
+
timed: IBasicAnimation;
|
|
122
125
|
};
|
|
123
126
|
playbackRate?: number;
|
|
124
127
|
modifier?: IDisplay;
|
|
@@ -178,6 +181,8 @@ export interface ICaptionDetails extends ICommonDetails {
|
|
|
178
181
|
activeColor?: string;
|
|
179
182
|
activeFillColor?: string;
|
|
180
183
|
animation?: string;
|
|
184
|
+
isKeywordColor?: string;
|
|
185
|
+
preservedColorKeyWord?: boolean;
|
|
181
186
|
}
|
|
182
187
|
export interface ITextDetails extends ICommonDetails {
|
|
183
188
|
skewX: number;
|