@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.
- package/dist/shared/arguments/AddClipartElementArgument.d.ts +1 -0
- package/dist/shared/arguments/AddTextElementArgument.d.ts +1 -0
- package/dist/shared/elements/ClipartElement.d.ts +1 -0
- package/dist/shared/elements/TextElement.d.ts +1 -0
- package/dist/themes/styles/StyleEntry.d.ts +3 -1
- package/package.json +5 -5
|
@@ -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
|
|
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.
|
|
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.
|
|
22
|
-
"@typescript-eslint/parser": "^5.
|
|
23
|
-
"eslint": "^8.
|
|
24
|
-
"typescript": "^4.9.
|
|
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
|
}
|