@shotstack/schemas 1.8.7 → 1.9.1
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/README.md +89 -89
- package/dist/api.bundled.json +48 -10
- package/dist/json-schema/asset.json +57 -15
- package/dist/json-schema/clip.json +57 -15
- package/dist/json-schema/edit.json +57 -15
- package/dist/json-schema/rich-caption-active-font.json +18 -1
- package/dist/json-schema/rich-caption-active.json +118 -2
- package/dist/json-schema/rich-caption-asset.json +57 -15
- package/dist/json-schema/rich-caption-word-animation.json +0 -14
- package/dist/json-schema/schemas.json +61 -17
- package/dist/json-schema/timeline.json +57 -15
- package/dist/json-schema/track.json +57 -15
- package/dist/schema.d.ts +18 -8
- package/dist/zod/zod.gen.cjs +1098 -933
- package/dist/zod/zod.gen.d.ts +1436 -515
- package/dist/zod/zod.gen.js +1099 -934
- package/dist/zod/zod.gen.ts +1606 -1667
- package/package.json +95 -79
|
@@ -17,11 +17,34 @@
|
|
|
17
17
|
]
|
|
18
18
|
},
|
|
19
19
|
"stroke": {
|
|
20
|
+
"description": "Stroke properties for the active word. Set to \"none\" to explicitly remove the base stroke on the active word.",
|
|
20
21
|
"anyOf": [
|
|
21
22
|
{
|
|
22
|
-
"description": "Stroke properties for the active word.",
|
|
23
23
|
"$ref": "#/$defs/RichTextStroke"
|
|
24
24
|
},
|
|
25
|
+
{
|
|
26
|
+
"type": "string",
|
|
27
|
+
"enum": [
|
|
28
|
+
"none"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "null"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"shadow": {
|
|
37
|
+
"description": "Shadow properties for the active word. Set to \"none\" to explicitly remove the base shadow on the active word.",
|
|
38
|
+
"anyOf": [
|
|
39
|
+
{
|
|
40
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "string",
|
|
44
|
+
"enum": [
|
|
45
|
+
"none"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
25
48
|
{
|
|
26
49
|
"type": "null"
|
|
27
50
|
}
|
|
@@ -45,6 +68,7 @@
|
|
|
45
68
|
"required": [
|
|
46
69
|
"font",
|
|
47
70
|
"stroke",
|
|
71
|
+
"shadow",
|
|
48
72
|
"scale"
|
|
49
73
|
],
|
|
50
74
|
"$defs": {
|
|
@@ -89,13 +113,30 @@
|
|
|
89
113
|
"type": "null"
|
|
90
114
|
}
|
|
91
115
|
]
|
|
116
|
+
},
|
|
117
|
+
"textDecoration": {
|
|
118
|
+
"anyOf": [
|
|
119
|
+
{
|
|
120
|
+
"type": "string",
|
|
121
|
+
"description": "Text decoration to apply to the active word.",
|
|
122
|
+
"enum": [
|
|
123
|
+
"none",
|
|
124
|
+
"underline",
|
|
125
|
+
"line-through"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "null"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
92
132
|
}
|
|
93
133
|
},
|
|
94
134
|
"additionalProperties": false,
|
|
95
135
|
"required": [
|
|
96
136
|
"color",
|
|
97
137
|
"background",
|
|
98
|
-
"opacity"
|
|
138
|
+
"opacity",
|
|
139
|
+
"textDecoration"
|
|
99
140
|
]
|
|
100
141
|
},
|
|
101
142
|
"RichTextStroke": {
|
|
@@ -148,6 +189,81 @@
|
|
|
148
189
|
"color",
|
|
149
190
|
"opacity"
|
|
150
191
|
]
|
|
192
|
+
},
|
|
193
|
+
"RichTextShadow": {
|
|
194
|
+
"description": "Text shadow properties.",
|
|
195
|
+
"properties": {
|
|
196
|
+
"offsetX": {
|
|
197
|
+
"anyOf": [
|
|
198
|
+
{
|
|
199
|
+
"type": "number",
|
|
200
|
+
"description": "Horizontal offset of the shadow in pixels. Positive values move right, negative left."
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"type": "null"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"offsetY": {
|
|
208
|
+
"anyOf": [
|
|
209
|
+
{
|
|
210
|
+
"type": "number",
|
|
211
|
+
"description": "Vertical offset of the shadow in pixels. Positive values move down, negative up."
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"type": "null"
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
},
|
|
218
|
+
"blur": {
|
|
219
|
+
"anyOf": [
|
|
220
|
+
{
|
|
221
|
+
"type": "number",
|
|
222
|
+
"description": "The blur radius of the shadow in pixels. Must be 0 or greater.",
|
|
223
|
+
"minimum": 0
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"type": "null"
|
|
227
|
+
}
|
|
228
|
+
]
|
|
229
|
+
},
|
|
230
|
+
"color": {
|
|
231
|
+
"anyOf": [
|
|
232
|
+
{
|
|
233
|
+
"type": "string",
|
|
234
|
+
"description": "The shadow color using hexadecimal color notation.",
|
|
235
|
+
"enum": [
|
|
236
|
+
"#000000"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"type": "null"
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
"opacity": {
|
|
245
|
+
"anyOf": [
|
|
246
|
+
{
|
|
247
|
+
"type": "number",
|
|
248
|
+
"description": "The opacity of the shadow where 1 is opaque and 0 is transparent.",
|
|
249
|
+
"minimum": 0,
|
|
250
|
+
"maximum": 1
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"type": "null"
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"additionalProperties": false,
|
|
259
|
+
"type": "object",
|
|
260
|
+
"required": [
|
|
261
|
+
"offsetX",
|
|
262
|
+
"offsetY",
|
|
263
|
+
"blur",
|
|
264
|
+
"color",
|
|
265
|
+
"opacity"
|
|
266
|
+
]
|
|
151
267
|
}
|
|
152
268
|
}
|
|
153
269
|
}
|
|
@@ -87,6 +87,21 @@
|
|
|
87
87
|
"type": "null"
|
|
88
88
|
}
|
|
89
89
|
]
|
|
90
|
+
},
|
|
91
|
+
"textDecoration": {
|
|
92
|
+
"anyOf": [
|
|
93
|
+
{
|
|
94
|
+
"type": "string",
|
|
95
|
+
"enum": [
|
|
96
|
+
"none",
|
|
97
|
+
"underline",
|
|
98
|
+
"line-through"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "null"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
90
105
|
}
|
|
91
106
|
},
|
|
92
107
|
"additionalProperties": false,
|
|
@@ -96,7 +111,8 @@
|
|
|
96
111
|
"weight",
|
|
97
112
|
"color",
|
|
98
113
|
"opacity",
|
|
99
|
-
"background"
|
|
114
|
+
"background",
|
|
115
|
+
"textDecoration"
|
|
100
116
|
]
|
|
101
117
|
},
|
|
102
118
|
{
|
|
@@ -964,6 +980,28 @@
|
|
|
964
980
|
{
|
|
965
981
|
"$ref": "#/$defs/RichTextStroke"
|
|
966
982
|
},
|
|
983
|
+
{
|
|
984
|
+
"type": "string",
|
|
985
|
+
"enum": [
|
|
986
|
+
"none"
|
|
987
|
+
]
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"type": "null"
|
|
991
|
+
}
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
"shadow": {
|
|
995
|
+
"anyOf": [
|
|
996
|
+
{
|
|
997
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"type": "string",
|
|
1001
|
+
"enum": [
|
|
1002
|
+
"none"
|
|
1003
|
+
]
|
|
1004
|
+
},
|
|
967
1005
|
{
|
|
968
1006
|
"type": "null"
|
|
969
1007
|
}
|
|
@@ -986,6 +1024,7 @@
|
|
|
986
1024
|
"required": [
|
|
987
1025
|
"font",
|
|
988
1026
|
"stroke",
|
|
1027
|
+
"shadow",
|
|
989
1028
|
"scale"
|
|
990
1029
|
]
|
|
991
1030
|
},
|
|
@@ -1026,13 +1065,29 @@
|
|
|
1026
1065
|
"type": "null"
|
|
1027
1066
|
}
|
|
1028
1067
|
]
|
|
1068
|
+
},
|
|
1069
|
+
"textDecoration": {
|
|
1070
|
+
"anyOf": [
|
|
1071
|
+
{
|
|
1072
|
+
"type": "string",
|
|
1073
|
+
"enum": [
|
|
1074
|
+
"none",
|
|
1075
|
+
"underline",
|
|
1076
|
+
"line-through"
|
|
1077
|
+
]
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"type": "null"
|
|
1081
|
+
}
|
|
1082
|
+
]
|
|
1029
1083
|
}
|
|
1030
1084
|
},
|
|
1031
1085
|
"additionalProperties": false,
|
|
1032
1086
|
"required": [
|
|
1033
1087
|
"color",
|
|
1034
1088
|
"background",
|
|
1035
|
-
"opacity"
|
|
1089
|
+
"opacity",
|
|
1090
|
+
"textDecoration"
|
|
1036
1091
|
]
|
|
1037
1092
|
},
|
|
1038
1093
|
"RichCaptionWordAnimation": {
|
|
@@ -1051,18 +1106,6 @@
|
|
|
1051
1106
|
"none"
|
|
1052
1107
|
]
|
|
1053
1108
|
},
|
|
1054
|
-
"speed": {
|
|
1055
|
-
"anyOf": [
|
|
1056
|
-
{
|
|
1057
|
-
"type": "number",
|
|
1058
|
-
"minimum": 0.5,
|
|
1059
|
-
"maximum": 2
|
|
1060
|
-
},
|
|
1061
|
-
{
|
|
1062
|
-
"type": "null"
|
|
1063
|
-
}
|
|
1064
|
-
]
|
|
1065
|
-
},
|
|
1066
1109
|
"direction": {
|
|
1067
1110
|
"anyOf": [
|
|
1068
1111
|
{
|
|
@@ -1083,7 +1126,6 @@
|
|
|
1083
1126
|
"additionalProperties": false,
|
|
1084
1127
|
"required": [
|
|
1085
1128
|
"style",
|
|
1086
|
-
"speed",
|
|
1087
1129
|
"direction"
|
|
1088
1130
|
]
|
|
1089
1131
|
}
|
|
@@ -19,19 +19,6 @@
|
|
|
19
19
|
"none"
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
|
-
"speed": {
|
|
23
|
-
"anyOf": [
|
|
24
|
-
{
|
|
25
|
-
"type": "number",
|
|
26
|
-
"description": "Animation speed multiplier. 1.0 is normal speed, 0.5 is half speed, 2.0 is double speed.",
|
|
27
|
-
"minimum": 0.5,
|
|
28
|
-
"maximum": 2
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"type": "null"
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
22
|
"direction": {
|
|
36
23
|
"anyOf": [
|
|
37
24
|
{
|
|
@@ -53,7 +40,6 @@
|
|
|
53
40
|
"additionalProperties": false,
|
|
54
41
|
"required": [
|
|
55
42
|
"style",
|
|
56
|
-
"speed",
|
|
57
43
|
"direction"
|
|
58
44
|
]
|
|
59
45
|
}
|
|
@@ -2108,6 +2108,22 @@
|
|
|
2108
2108
|
"type": "null"
|
|
2109
2109
|
}
|
|
2110
2110
|
]
|
|
2111
|
+
},
|
|
2112
|
+
"textDecoration": {
|
|
2113
|
+
"anyOf": [
|
|
2114
|
+
{
|
|
2115
|
+
"type": "string",
|
|
2116
|
+
"description": "Text decoration to apply to all words.",
|
|
2117
|
+
"enum": [
|
|
2118
|
+
"none",
|
|
2119
|
+
"underline",
|
|
2120
|
+
"line-through"
|
|
2121
|
+
]
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"type": "null"
|
|
2125
|
+
}
|
|
2126
|
+
]
|
|
2111
2127
|
}
|
|
2112
2128
|
},
|
|
2113
2129
|
"additionalProperties": false,
|
|
@@ -2117,7 +2133,8 @@
|
|
|
2117
2133
|
"weight",
|
|
2118
2134
|
"color",
|
|
2119
2135
|
"opacity",
|
|
2120
|
-
"background"
|
|
2136
|
+
"background",
|
|
2137
|
+
"textDecoration"
|
|
2121
2138
|
]
|
|
2122
2139
|
},
|
|
2123
2140
|
{
|
|
@@ -2262,11 +2279,34 @@
|
|
|
2262
2279
|
]
|
|
2263
2280
|
},
|
|
2264
2281
|
"stroke": {
|
|
2282
|
+
"description": "Stroke properties for the active word. Set to \"none\" to explicitly remove the base stroke on the active word.",
|
|
2265
2283
|
"anyOf": [
|
|
2266
2284
|
{
|
|
2267
|
-
"description": "Stroke properties for the active word.",
|
|
2268
2285
|
"$ref": "#/$defs/RichTextStroke"
|
|
2269
2286
|
},
|
|
2287
|
+
{
|
|
2288
|
+
"type": "string",
|
|
2289
|
+
"enum": [
|
|
2290
|
+
"none"
|
|
2291
|
+
]
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"type": "null"
|
|
2295
|
+
}
|
|
2296
|
+
]
|
|
2297
|
+
},
|
|
2298
|
+
"shadow": {
|
|
2299
|
+
"description": "Shadow properties for the active word. Set to \"none\" to explicitly remove the base shadow on the active word.",
|
|
2300
|
+
"anyOf": [
|
|
2301
|
+
{
|
|
2302
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"type": "string",
|
|
2306
|
+
"enum": [
|
|
2307
|
+
"none"
|
|
2308
|
+
]
|
|
2309
|
+
},
|
|
2270
2310
|
{
|
|
2271
2311
|
"type": "null"
|
|
2272
2312
|
}
|
|
@@ -2290,6 +2330,7 @@
|
|
|
2290
2330
|
"required": [
|
|
2291
2331
|
"font",
|
|
2292
2332
|
"stroke",
|
|
2333
|
+
"shadow",
|
|
2293
2334
|
"scale"
|
|
2294
2335
|
]
|
|
2295
2336
|
},
|
|
@@ -2334,13 +2375,30 @@
|
|
|
2334
2375
|
"type": "null"
|
|
2335
2376
|
}
|
|
2336
2377
|
]
|
|
2378
|
+
},
|
|
2379
|
+
"textDecoration": {
|
|
2380
|
+
"anyOf": [
|
|
2381
|
+
{
|
|
2382
|
+
"type": "string",
|
|
2383
|
+
"description": "Text decoration to apply to the active word.",
|
|
2384
|
+
"enum": [
|
|
2385
|
+
"none",
|
|
2386
|
+
"underline",
|
|
2387
|
+
"line-through"
|
|
2388
|
+
]
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"type": "null"
|
|
2392
|
+
}
|
|
2393
|
+
]
|
|
2337
2394
|
}
|
|
2338
2395
|
},
|
|
2339
2396
|
"additionalProperties": false,
|
|
2340
2397
|
"required": [
|
|
2341
2398
|
"color",
|
|
2342
2399
|
"background",
|
|
2343
|
-
"opacity"
|
|
2400
|
+
"opacity",
|
|
2401
|
+
"textDecoration"
|
|
2344
2402
|
]
|
|
2345
2403
|
},
|
|
2346
2404
|
"RichCaptionWordAnimation": {
|
|
@@ -2361,19 +2419,6 @@
|
|
|
2361
2419
|
"none"
|
|
2362
2420
|
]
|
|
2363
2421
|
},
|
|
2364
|
-
"speed": {
|
|
2365
|
-
"anyOf": [
|
|
2366
|
-
{
|
|
2367
|
-
"type": "number",
|
|
2368
|
-
"description": "Animation speed multiplier. 1.0 is normal speed, 0.5 is half speed, 2.0 is double speed.",
|
|
2369
|
-
"minimum": 0.5,
|
|
2370
|
-
"maximum": 2
|
|
2371
|
-
},
|
|
2372
|
-
{
|
|
2373
|
-
"type": "null"
|
|
2374
|
-
}
|
|
2375
|
-
]
|
|
2376
|
-
},
|
|
2377
2422
|
"direction": {
|
|
2378
2423
|
"anyOf": [
|
|
2379
2424
|
{
|
|
@@ -2395,7 +2440,6 @@
|
|
|
2395
2440
|
"additionalProperties": false,
|
|
2396
2441
|
"required": [
|
|
2397
2442
|
"style",
|
|
2398
|
-
"speed",
|
|
2399
2443
|
"direction"
|
|
2400
2444
|
]
|
|
2401
2445
|
},
|
|
@@ -1930,6 +1930,21 @@
|
|
|
1930
1930
|
"type": "null"
|
|
1931
1931
|
}
|
|
1932
1932
|
]
|
|
1933
|
+
},
|
|
1934
|
+
"textDecoration": {
|
|
1935
|
+
"anyOf": [
|
|
1936
|
+
{
|
|
1937
|
+
"type": "string",
|
|
1938
|
+
"enum": [
|
|
1939
|
+
"none",
|
|
1940
|
+
"underline",
|
|
1941
|
+
"line-through"
|
|
1942
|
+
]
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"type": "null"
|
|
1946
|
+
}
|
|
1947
|
+
]
|
|
1933
1948
|
}
|
|
1934
1949
|
},
|
|
1935
1950
|
"additionalProperties": false,
|
|
@@ -1939,7 +1954,8 @@
|
|
|
1939
1954
|
"weight",
|
|
1940
1955
|
"color",
|
|
1941
1956
|
"opacity",
|
|
1942
|
-
"background"
|
|
1957
|
+
"background",
|
|
1958
|
+
"textDecoration"
|
|
1943
1959
|
]
|
|
1944
1960
|
},
|
|
1945
1961
|
{
|
|
@@ -2076,6 +2092,28 @@
|
|
|
2076
2092
|
{
|
|
2077
2093
|
"$ref": "#/$defs/RichTextStroke"
|
|
2078
2094
|
},
|
|
2095
|
+
{
|
|
2096
|
+
"type": "string",
|
|
2097
|
+
"enum": [
|
|
2098
|
+
"none"
|
|
2099
|
+
]
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
"type": "null"
|
|
2103
|
+
}
|
|
2104
|
+
]
|
|
2105
|
+
},
|
|
2106
|
+
"shadow": {
|
|
2107
|
+
"anyOf": [
|
|
2108
|
+
{
|
|
2109
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"type": "string",
|
|
2113
|
+
"enum": [
|
|
2114
|
+
"none"
|
|
2115
|
+
]
|
|
2116
|
+
},
|
|
2079
2117
|
{
|
|
2080
2118
|
"type": "null"
|
|
2081
2119
|
}
|
|
@@ -2098,6 +2136,7 @@
|
|
|
2098
2136
|
"required": [
|
|
2099
2137
|
"font",
|
|
2100
2138
|
"stroke",
|
|
2139
|
+
"shadow",
|
|
2101
2140
|
"scale"
|
|
2102
2141
|
]
|
|
2103
2142
|
},
|
|
@@ -2138,13 +2177,29 @@
|
|
|
2138
2177
|
"type": "null"
|
|
2139
2178
|
}
|
|
2140
2179
|
]
|
|
2180
|
+
},
|
|
2181
|
+
"textDecoration": {
|
|
2182
|
+
"anyOf": [
|
|
2183
|
+
{
|
|
2184
|
+
"type": "string",
|
|
2185
|
+
"enum": [
|
|
2186
|
+
"none",
|
|
2187
|
+
"underline",
|
|
2188
|
+
"line-through"
|
|
2189
|
+
]
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"type": "null"
|
|
2193
|
+
}
|
|
2194
|
+
]
|
|
2141
2195
|
}
|
|
2142
2196
|
},
|
|
2143
2197
|
"additionalProperties": false,
|
|
2144
2198
|
"required": [
|
|
2145
2199
|
"color",
|
|
2146
2200
|
"background",
|
|
2147
|
-
"opacity"
|
|
2201
|
+
"opacity",
|
|
2202
|
+
"textDecoration"
|
|
2148
2203
|
]
|
|
2149
2204
|
},
|
|
2150
2205
|
"RichCaptionWordAnimation": {
|
|
@@ -2163,18 +2218,6 @@
|
|
|
2163
2218
|
"none"
|
|
2164
2219
|
]
|
|
2165
2220
|
},
|
|
2166
|
-
"speed": {
|
|
2167
|
-
"anyOf": [
|
|
2168
|
-
{
|
|
2169
|
-
"type": "number",
|
|
2170
|
-
"minimum": 0.5,
|
|
2171
|
-
"maximum": 2
|
|
2172
|
-
},
|
|
2173
|
-
{
|
|
2174
|
-
"type": "null"
|
|
2175
|
-
}
|
|
2176
|
-
]
|
|
2177
|
-
},
|
|
2178
2221
|
"direction": {
|
|
2179
2222
|
"anyOf": [
|
|
2180
2223
|
{
|
|
@@ -2195,7 +2238,6 @@
|
|
|
2195
2238
|
"additionalProperties": false,
|
|
2196
2239
|
"required": [
|
|
2197
2240
|
"style",
|
|
2198
|
-
"speed",
|
|
2199
2241
|
"direction"
|
|
2200
2242
|
]
|
|
2201
2243
|
},
|
|
@@ -1817,6 +1817,21 @@
|
|
|
1817
1817
|
"type": "null"
|
|
1818
1818
|
}
|
|
1819
1819
|
]
|
|
1820
|
+
},
|
|
1821
|
+
"textDecoration": {
|
|
1822
|
+
"anyOf": [
|
|
1823
|
+
{
|
|
1824
|
+
"type": "string",
|
|
1825
|
+
"enum": [
|
|
1826
|
+
"none",
|
|
1827
|
+
"underline",
|
|
1828
|
+
"line-through"
|
|
1829
|
+
]
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"type": "null"
|
|
1833
|
+
}
|
|
1834
|
+
]
|
|
1820
1835
|
}
|
|
1821
1836
|
},
|
|
1822
1837
|
"additionalProperties": false,
|
|
@@ -1826,7 +1841,8 @@
|
|
|
1826
1841
|
"weight",
|
|
1827
1842
|
"color",
|
|
1828
1843
|
"opacity",
|
|
1829
|
-
"background"
|
|
1844
|
+
"background",
|
|
1845
|
+
"textDecoration"
|
|
1830
1846
|
]
|
|
1831
1847
|
},
|
|
1832
1848
|
{
|
|
@@ -1963,6 +1979,28 @@
|
|
|
1963
1979
|
{
|
|
1964
1980
|
"$ref": "#/$defs/RichTextStroke"
|
|
1965
1981
|
},
|
|
1982
|
+
{
|
|
1983
|
+
"type": "string",
|
|
1984
|
+
"enum": [
|
|
1985
|
+
"none"
|
|
1986
|
+
]
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
"type": "null"
|
|
1990
|
+
}
|
|
1991
|
+
]
|
|
1992
|
+
},
|
|
1993
|
+
"shadow": {
|
|
1994
|
+
"anyOf": [
|
|
1995
|
+
{
|
|
1996
|
+
"$ref": "#/$defs/RichTextShadow"
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"type": "string",
|
|
2000
|
+
"enum": [
|
|
2001
|
+
"none"
|
|
2002
|
+
]
|
|
2003
|
+
},
|
|
1966
2004
|
{
|
|
1967
2005
|
"type": "null"
|
|
1968
2006
|
}
|
|
@@ -1985,6 +2023,7 @@
|
|
|
1985
2023
|
"required": [
|
|
1986
2024
|
"font",
|
|
1987
2025
|
"stroke",
|
|
2026
|
+
"shadow",
|
|
1988
2027
|
"scale"
|
|
1989
2028
|
]
|
|
1990
2029
|
},
|
|
@@ -2025,13 +2064,29 @@
|
|
|
2025
2064
|
"type": "null"
|
|
2026
2065
|
}
|
|
2027
2066
|
]
|
|
2067
|
+
},
|
|
2068
|
+
"textDecoration": {
|
|
2069
|
+
"anyOf": [
|
|
2070
|
+
{
|
|
2071
|
+
"type": "string",
|
|
2072
|
+
"enum": [
|
|
2073
|
+
"none",
|
|
2074
|
+
"underline",
|
|
2075
|
+
"line-through"
|
|
2076
|
+
]
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"type": "null"
|
|
2080
|
+
}
|
|
2081
|
+
]
|
|
2028
2082
|
}
|
|
2029
2083
|
},
|
|
2030
2084
|
"additionalProperties": false,
|
|
2031
2085
|
"required": [
|
|
2032
2086
|
"color",
|
|
2033
2087
|
"background",
|
|
2034
|
-
"opacity"
|
|
2088
|
+
"opacity",
|
|
2089
|
+
"textDecoration"
|
|
2035
2090
|
]
|
|
2036
2091
|
},
|
|
2037
2092
|
"RichCaptionWordAnimation": {
|
|
@@ -2050,18 +2105,6 @@
|
|
|
2050
2105
|
"none"
|
|
2051
2106
|
]
|
|
2052
2107
|
},
|
|
2053
|
-
"speed": {
|
|
2054
|
-
"anyOf": [
|
|
2055
|
-
{
|
|
2056
|
-
"type": "number",
|
|
2057
|
-
"minimum": 0.5,
|
|
2058
|
-
"maximum": 2
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
"type": "null"
|
|
2062
|
-
}
|
|
2063
|
-
]
|
|
2064
|
-
},
|
|
2065
2108
|
"direction": {
|
|
2066
2109
|
"anyOf": [
|
|
2067
2110
|
{
|
|
@@ -2082,7 +2125,6 @@
|
|
|
2082
2125
|
"additionalProperties": false,
|
|
2083
2126
|
"required": [
|
|
2084
2127
|
"style",
|
|
2085
|
-
"speed",
|
|
2086
2128
|
"direction"
|
|
2087
2129
|
]
|
|
2088
2130
|
},
|