@mediaclip/library 13.0.0-cd.19599 → 13.0.0-cd.20700

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.
@@ -17,4 +17,5 @@ export interface AddStaticTextElementArgument extends AddVisualElementArgumentBa
17
17
  maxFontSize?: number;
18
18
  border?: ElementStraightBorder | ElementFrameBorder;
19
19
  singleLine?: boolean;
20
+ syncTextByTag?: boolean;
20
21
  }
@@ -27,4 +27,5 @@ export interface AddTextElementArgument extends AddVisualElementArgumentBase {
27
27
  effect?: TextStrokeEffect | TextEmbossingEffect | TextGradientEffect;
28
28
  singleLine?: boolean;
29
29
  placeholder?: string;
30
+ syncTextByTag?: boolean;
30
31
  }
@@ -19,6 +19,7 @@ export interface StaticTextElement extends VisualElement {
19
19
  background?: ElementBackground;
20
20
  maxFontSize: number;
21
21
  singleLine: boolean;
22
+ syncTextByTag?: boolean;
22
23
  readonly border?: ElementFrameBorder | ElementStraightBorder;
23
24
  setBorder(value: ElementStraightBorder | ElementFrameBorder): void;
24
25
  }
@@ -35,6 +35,7 @@ export interface TextElement extends VisualElement {
35
35
  singleLine: boolean;
36
36
  formatter?: string;
37
37
  placeholder?: string;
38
+ syncTextByTag?: boolean;
38
39
  readonly fields?: TextFormatterField[];
39
40
  readonly vdpFormatterMap?: VdpFormatterMap[];
40
41
  readonly border?: TextBorder;
@@ -43,6 +43,7 @@ interface TextStyleArgument {
43
43
  behavior?: string;
44
44
  singleLine?: boolean;
45
45
  placeholder?: string;
46
+ syncTextByTag?: boolean;
46
47
  }
47
48
  interface ClipartStyleArgument {
48
49
  tag: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediaclip/library",
3
- "version": "13.0.0-cd.19599",
3
+ "version": "13.0.0-cd.20700",
4
4
  "description": "",
5
5
  "types": "dist/index.d.ts",
6
6
  "keywords": [],