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

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.
@@ -6,4 +6,5 @@ export interface AddClipartElementArgument extends AddVisualElementArgumentBase
6
6
  colorizeSpotColor?: string;
7
7
  printFinishing?: string;
8
8
  effect?: ElementGradientEffect;
9
+ behavior?: string;
9
10
  }
@@ -26,4 +26,5 @@ export interface AddTextElementArgument extends AddVisualElementArgumentBase {
26
26
  border?: ElementStraightBorder | ElementFrameBorder;
27
27
  effect?: TextStrokeEffect | TextEmbossingEffect | TextGradientEffect;
28
28
  singleLine?: boolean;
29
+ placeholder?: string;
29
30
  }
@@ -8,6 +8,7 @@ export interface ClipartElement extends VisualElement {
8
8
  colorize?: string;
9
9
  colorizeSpotColor?: string;
10
10
  printFinishing?: string;
11
+ behavior?: string;
11
12
  setEffect(value: ElementEffect): void;
12
13
  }
13
14
  export {};
@@ -34,6 +34,7 @@ export interface TextElement extends VisualElement {
34
34
  printFinishing?: string;
35
35
  singleLine: boolean;
36
36
  formatter?: string;
37
+ placeholder?: string;
37
38
  readonly fields?: TextFormatterField[];
38
39
  readonly vdpFormatterMap?: VdpFormatterMap[];
39
40
  readonly border?: TextBorder;
@@ -42,13 +42,15 @@ interface TextStyleArgument {
42
42
  computeTextHeight?: boolean;
43
43
  behavior?: string;
44
44
  singleLine?: boolean;
45
+ placeholder?: string;
45
46
  }
46
47
  interface ClipartStyleArgument {
47
- tag?: string;
48
+ tag: string;
48
49
  id: string;
49
50
  colorize?: string;
50
51
  colorizeSpotColor?: string;
51
52
  effect?: ElementGradientEffect;
53
+ behavior?: string;
52
54
  }
53
55
  interface PhotoStyleArgument {
54
56
  tag?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediaclip/library",
3
- "version": "13.0.0-cd.18706",
3
+ "version": "13.0.0-cd.19599",
4
4
  "description": "",
5
5
  "types": "dist/index.d.ts",
6
6
  "keywords": [],
@@ -18,9 +18,9 @@
18
18
  "prepublish": "tsc"
19
19
  },
20
20
  "devDependencies": {
21
- "@typescript-eslint/eslint-plugin": "^5.48.2",
22
- "@typescript-eslint/parser": "^5.48.2",
23
- "eslint": "^8.32.0",
24
- "typescript": "^4.9.4"
21
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
22
+ "@typescript-eslint/parser": "^5.62.0",
23
+ "eslint": "^8.57.0",
24
+ "typescript": "^4.9.5"
25
25
  }
26
26
  }