@shotstack/schemas 1.9.3 → 1.9.5
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/api.bundled.json +17 -3
- package/dist/json-schema/asset.json +30 -4
- package/dist/json-schema/clip.json +30 -4
- package/dist/json-schema/edit.json +30 -4
- package/dist/json-schema/rich-caption-active-font.json +14 -0
- package/dist/json-schema/rich-caption-active.json +14 -0
- package/dist/json-schema/{rich-caption-word-animation.json → rich-caption-animation.json} +1 -1
- package/dist/json-schema/rich-caption-asset.json +30 -4
- package/dist/json-schema/schemas.json +32 -4
- package/dist/json-schema/timeline.json +30 -4
- package/dist/json-schema/track.json +30 -4
- package/dist/schema.d.ts +12 -2
- package/dist/zod/zod.gen.cjs +38 -24
- package/dist/zod/zod.gen.d.ts +225 -82
- package/dist/zod/zod.gen.js +37 -23
- package/dist/zod/zod.gen.ts +17 -15
- package/package.json +1 -1
package/dist/api.bundled.json
CHANGED
|
@@ -1999,6 +1999,13 @@
|
|
|
1999
1999
|
"default": "none",
|
|
2000
2000
|
"example": "uppercase"
|
|
2001
2001
|
},
|
|
2002
|
+
"size": {
|
|
2003
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
2004
|
+
"type": "number",
|
|
2005
|
+
"minimum": 1,
|
|
2006
|
+
"maximum": 500,
|
|
2007
|
+
"example": 120
|
|
2008
|
+
},
|
|
2002
2009
|
"textDecoration": {
|
|
2003
2010
|
"description": "Text decoration to apply.",
|
|
2004
2011
|
"type": "string",
|
|
@@ -2056,9 +2063,9 @@
|
|
|
2056
2063
|
"description": "Styling properties for the active/highlighted word. These override the base styling when a word is being spoken.",
|
|
2057
2064
|
"$ref": "#/components/schemas/RichCaptionActive"
|
|
2058
2065
|
},
|
|
2059
|
-
"
|
|
2066
|
+
"animation": {
|
|
2060
2067
|
"description": "Word-level animation properties controlling how words are highlighted or revealed.",
|
|
2061
|
-
"$ref": "#/components/schemas/
|
|
2068
|
+
"$ref": "#/components/schemas/RichCaptionAnimation"
|
|
2062
2069
|
}
|
|
2063
2070
|
},
|
|
2064
2071
|
"additionalProperties": false,
|
|
@@ -2092,6 +2099,13 @@
|
|
|
2092
2099
|
"default": 1,
|
|
2093
2100
|
"example": 1
|
|
2094
2101
|
},
|
|
2102
|
+
"size": {
|
|
2103
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
2104
|
+
"type": "number",
|
|
2105
|
+
"minimum": 1,
|
|
2106
|
+
"maximum": 500,
|
|
2107
|
+
"example": 120
|
|
2108
|
+
},
|
|
2095
2109
|
"textDecoration": {
|
|
2096
2110
|
"description": "Text decoration to apply to the active word.",
|
|
2097
2111
|
"type": "string",
|
|
@@ -2153,7 +2167,7 @@
|
|
|
2153
2167
|
},
|
|
2154
2168
|
"additionalProperties": false
|
|
2155
2169
|
},
|
|
2156
|
-
"
|
|
2170
|
+
"RichCaptionAnimation": {
|
|
2157
2171
|
"description": "Word-level animation properties for caption effects.",
|
|
2158
2172
|
"type": "object",
|
|
2159
2173
|
"properties": {
|
|
@@ -1630,6 +1630,18 @@
|
|
|
1630
1630
|
}
|
|
1631
1631
|
]
|
|
1632
1632
|
},
|
|
1633
|
+
"size": {
|
|
1634
|
+
"anyOf": [
|
|
1635
|
+
{
|
|
1636
|
+
"type": "number",
|
|
1637
|
+
"minimum": 1,
|
|
1638
|
+
"maximum": 500
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"type": "null"
|
|
1642
|
+
}
|
|
1643
|
+
]
|
|
1644
|
+
},
|
|
1633
1645
|
"textDecoration": {
|
|
1634
1646
|
"anyOf": [
|
|
1635
1647
|
{
|
|
@@ -1661,6 +1673,7 @@
|
|
|
1661
1673
|
"letterSpacing",
|
|
1662
1674
|
"lineHeight",
|
|
1663
1675
|
"textTransform",
|
|
1676
|
+
"size",
|
|
1664
1677
|
"textDecoration",
|
|
1665
1678
|
"gradient"
|
|
1666
1679
|
]
|
|
@@ -1744,10 +1757,10 @@
|
|
|
1744
1757
|
}
|
|
1745
1758
|
]
|
|
1746
1759
|
},
|
|
1747
|
-
"
|
|
1760
|
+
"animation": {
|
|
1748
1761
|
"anyOf": [
|
|
1749
1762
|
{
|
|
1750
|
-
"$ref": "#/$defs/
|
|
1763
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
1751
1764
|
},
|
|
1752
1765
|
{
|
|
1753
1766
|
"type": "null"
|
|
@@ -1768,7 +1781,7 @@
|
|
|
1768
1781
|
"padding",
|
|
1769
1782
|
"align",
|
|
1770
1783
|
"active",
|
|
1771
|
-
"
|
|
1784
|
+
"animation"
|
|
1772
1785
|
]
|
|
1773
1786
|
},
|
|
1774
1787
|
"RichCaptionActive": {
|
|
@@ -1875,6 +1888,18 @@
|
|
|
1875
1888
|
}
|
|
1876
1889
|
]
|
|
1877
1890
|
},
|
|
1891
|
+
"size": {
|
|
1892
|
+
"anyOf": [
|
|
1893
|
+
{
|
|
1894
|
+
"type": "number",
|
|
1895
|
+
"minimum": 1,
|
|
1896
|
+
"maximum": 500
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
"type": "null"
|
|
1900
|
+
}
|
|
1901
|
+
]
|
|
1902
|
+
},
|
|
1878
1903
|
"textDecoration": {
|
|
1879
1904
|
"anyOf": [
|
|
1880
1905
|
{
|
|
@@ -1896,10 +1921,11 @@
|
|
|
1896
1921
|
"color",
|
|
1897
1922
|
"background",
|
|
1898
1923
|
"opacity",
|
|
1924
|
+
"size",
|
|
1899
1925
|
"textDecoration"
|
|
1900
1926
|
]
|
|
1901
1927
|
},
|
|
1902
|
-
"
|
|
1928
|
+
"RichCaptionAnimation": {
|
|
1903
1929
|
"type": "object",
|
|
1904
1930
|
"properties": {
|
|
1905
1931
|
"style": {
|
|
@@ -1862,6 +1862,18 @@
|
|
|
1862
1862
|
}
|
|
1863
1863
|
]
|
|
1864
1864
|
},
|
|
1865
|
+
"size": {
|
|
1866
|
+
"anyOf": [
|
|
1867
|
+
{
|
|
1868
|
+
"type": "number",
|
|
1869
|
+
"minimum": 1,
|
|
1870
|
+
"maximum": 500
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"type": "null"
|
|
1874
|
+
}
|
|
1875
|
+
]
|
|
1876
|
+
},
|
|
1865
1877
|
"textDecoration": {
|
|
1866
1878
|
"anyOf": [
|
|
1867
1879
|
{
|
|
@@ -1893,6 +1905,7 @@
|
|
|
1893
1905
|
"letterSpacing",
|
|
1894
1906
|
"lineHeight",
|
|
1895
1907
|
"textTransform",
|
|
1908
|
+
"size",
|
|
1896
1909
|
"textDecoration",
|
|
1897
1910
|
"gradient"
|
|
1898
1911
|
]
|
|
@@ -1976,10 +1989,10 @@
|
|
|
1976
1989
|
}
|
|
1977
1990
|
]
|
|
1978
1991
|
},
|
|
1979
|
-
"
|
|
1992
|
+
"animation": {
|
|
1980
1993
|
"anyOf": [
|
|
1981
1994
|
{
|
|
1982
|
-
"$ref": "#/$defs/
|
|
1995
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
1983
1996
|
},
|
|
1984
1997
|
{
|
|
1985
1998
|
"type": "null"
|
|
@@ -2000,7 +2013,7 @@
|
|
|
2000
2013
|
"padding",
|
|
2001
2014
|
"align",
|
|
2002
2015
|
"active",
|
|
2003
|
-
"
|
|
2016
|
+
"animation"
|
|
2004
2017
|
]
|
|
2005
2018
|
},
|
|
2006
2019
|
"RichCaptionActive": {
|
|
@@ -2107,6 +2120,18 @@
|
|
|
2107
2120
|
}
|
|
2108
2121
|
]
|
|
2109
2122
|
},
|
|
2123
|
+
"size": {
|
|
2124
|
+
"anyOf": [
|
|
2125
|
+
{
|
|
2126
|
+
"type": "number",
|
|
2127
|
+
"minimum": 1,
|
|
2128
|
+
"maximum": 500
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"type": "null"
|
|
2132
|
+
}
|
|
2133
|
+
]
|
|
2134
|
+
},
|
|
2110
2135
|
"textDecoration": {
|
|
2111
2136
|
"anyOf": [
|
|
2112
2137
|
{
|
|
@@ -2128,10 +2153,11 @@
|
|
|
2128
2153
|
"color",
|
|
2129
2154
|
"background",
|
|
2130
2155
|
"opacity",
|
|
2156
|
+
"size",
|
|
2131
2157
|
"textDecoration"
|
|
2132
2158
|
]
|
|
2133
2159
|
},
|
|
2134
|
-
"
|
|
2160
|
+
"RichCaptionAnimation": {
|
|
2135
2161
|
"type": "object",
|
|
2136
2162
|
"properties": {
|
|
2137
2163
|
"style": {
|
|
@@ -2046,6 +2046,18 @@
|
|
|
2046
2046
|
}
|
|
2047
2047
|
]
|
|
2048
2048
|
},
|
|
2049
|
+
"size": {
|
|
2050
|
+
"anyOf": [
|
|
2051
|
+
{
|
|
2052
|
+
"type": "number",
|
|
2053
|
+
"minimum": 1,
|
|
2054
|
+
"maximum": 500
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
"type": "null"
|
|
2058
|
+
}
|
|
2059
|
+
]
|
|
2060
|
+
},
|
|
2049
2061
|
"textDecoration": {
|
|
2050
2062
|
"anyOf": [
|
|
2051
2063
|
{
|
|
@@ -2077,6 +2089,7 @@
|
|
|
2077
2089
|
"letterSpacing",
|
|
2078
2090
|
"lineHeight",
|
|
2079
2091
|
"textTransform",
|
|
2092
|
+
"size",
|
|
2080
2093
|
"textDecoration",
|
|
2081
2094
|
"gradient"
|
|
2082
2095
|
]
|
|
@@ -2160,10 +2173,10 @@
|
|
|
2160
2173
|
}
|
|
2161
2174
|
]
|
|
2162
2175
|
},
|
|
2163
|
-
"
|
|
2176
|
+
"animation": {
|
|
2164
2177
|
"anyOf": [
|
|
2165
2178
|
{
|
|
2166
|
-
"$ref": "#/$defs/
|
|
2179
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
2167
2180
|
},
|
|
2168
2181
|
{
|
|
2169
2182
|
"type": "null"
|
|
@@ -2184,7 +2197,7 @@
|
|
|
2184
2197
|
"padding",
|
|
2185
2198
|
"align",
|
|
2186
2199
|
"active",
|
|
2187
|
-
"
|
|
2200
|
+
"animation"
|
|
2188
2201
|
]
|
|
2189
2202
|
},
|
|
2190
2203
|
"RichCaptionActive": {
|
|
@@ -2291,6 +2304,18 @@
|
|
|
2291
2304
|
}
|
|
2292
2305
|
]
|
|
2293
2306
|
},
|
|
2307
|
+
"size": {
|
|
2308
|
+
"anyOf": [
|
|
2309
|
+
{
|
|
2310
|
+
"type": "number",
|
|
2311
|
+
"minimum": 1,
|
|
2312
|
+
"maximum": 500
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"type": "null"
|
|
2316
|
+
}
|
|
2317
|
+
]
|
|
2318
|
+
},
|
|
2294
2319
|
"textDecoration": {
|
|
2295
2320
|
"anyOf": [
|
|
2296
2321
|
{
|
|
@@ -2312,10 +2337,11 @@
|
|
|
2312
2337
|
"color",
|
|
2313
2338
|
"background",
|
|
2314
2339
|
"opacity",
|
|
2340
|
+
"size",
|
|
2315
2341
|
"textDecoration"
|
|
2316
2342
|
]
|
|
2317
2343
|
},
|
|
2318
|
-
"
|
|
2344
|
+
"RichCaptionAnimation": {
|
|
2319
2345
|
"type": "object",
|
|
2320
2346
|
"properties": {
|
|
2321
2347
|
"style": {
|
|
@@ -43,6 +43,19 @@
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
},
|
|
46
|
+
"size": {
|
|
47
|
+
"anyOf": [
|
|
48
|
+
{
|
|
49
|
+
"type": "number",
|
|
50
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
51
|
+
"minimum": 1,
|
|
52
|
+
"maximum": 500
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "null"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
46
59
|
"textDecoration": {
|
|
47
60
|
"anyOf": [
|
|
48
61
|
{
|
|
@@ -65,6 +78,7 @@
|
|
|
65
78
|
"color",
|
|
66
79
|
"background",
|
|
67
80
|
"opacity",
|
|
81
|
+
"size",
|
|
68
82
|
"textDecoration"
|
|
69
83
|
]
|
|
70
84
|
}
|
|
@@ -114,6 +114,19 @@
|
|
|
114
114
|
}
|
|
115
115
|
]
|
|
116
116
|
},
|
|
117
|
+
"size": {
|
|
118
|
+
"anyOf": [
|
|
119
|
+
{
|
|
120
|
+
"type": "number",
|
|
121
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
122
|
+
"minimum": 1,
|
|
123
|
+
"maximum": 500
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "null"
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
117
130
|
"textDecoration": {
|
|
118
131
|
"anyOf": [
|
|
119
132
|
{
|
|
@@ -136,6 +149,7 @@
|
|
|
136
149
|
"color",
|
|
137
150
|
"background",
|
|
138
151
|
"opacity",
|
|
152
|
+
"size",
|
|
139
153
|
"textDecoration"
|
|
140
154
|
]
|
|
141
155
|
},
|
|
@@ -147,6 +147,18 @@
|
|
|
147
147
|
}
|
|
148
148
|
]
|
|
149
149
|
},
|
|
150
|
+
"size": {
|
|
151
|
+
"anyOf": [
|
|
152
|
+
{
|
|
153
|
+
"type": "number",
|
|
154
|
+
"minimum": 1,
|
|
155
|
+
"maximum": 500
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": "null"
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
},
|
|
150
162
|
"textDecoration": {
|
|
151
163
|
"anyOf": [
|
|
152
164
|
{
|
|
@@ -178,6 +190,7 @@
|
|
|
178
190
|
"letterSpacing",
|
|
179
191
|
"lineHeight",
|
|
180
192
|
"textTransform",
|
|
193
|
+
"size",
|
|
181
194
|
"textDecoration",
|
|
182
195
|
"gradient"
|
|
183
196
|
]
|
|
@@ -261,10 +274,10 @@
|
|
|
261
274
|
}
|
|
262
275
|
]
|
|
263
276
|
},
|
|
264
|
-
"
|
|
277
|
+
"animation": {
|
|
265
278
|
"anyOf": [
|
|
266
279
|
{
|
|
267
|
-
"$ref": "#/$defs/
|
|
280
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
268
281
|
},
|
|
269
282
|
{
|
|
270
283
|
"type": "null"
|
|
@@ -285,7 +298,7 @@
|
|
|
285
298
|
"padding",
|
|
286
299
|
"align",
|
|
287
300
|
"active",
|
|
288
|
-
"
|
|
301
|
+
"animation"
|
|
289
302
|
],
|
|
290
303
|
"$defs": {
|
|
291
304
|
"RichTextGradient": {
|
|
@@ -1123,6 +1136,18 @@
|
|
|
1123
1136
|
}
|
|
1124
1137
|
]
|
|
1125
1138
|
},
|
|
1139
|
+
"size": {
|
|
1140
|
+
"anyOf": [
|
|
1141
|
+
{
|
|
1142
|
+
"type": "number",
|
|
1143
|
+
"minimum": 1,
|
|
1144
|
+
"maximum": 500
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"type": "null"
|
|
1148
|
+
}
|
|
1149
|
+
]
|
|
1150
|
+
},
|
|
1126
1151
|
"textDecoration": {
|
|
1127
1152
|
"anyOf": [
|
|
1128
1153
|
{
|
|
@@ -1144,10 +1169,11 @@
|
|
|
1144
1169
|
"color",
|
|
1145
1170
|
"background",
|
|
1146
1171
|
"opacity",
|
|
1172
|
+
"size",
|
|
1147
1173
|
"textDecoration"
|
|
1148
1174
|
]
|
|
1149
1175
|
},
|
|
1150
|
-
"
|
|
1176
|
+
"RichCaptionAnimation": {
|
|
1151
1177
|
"type": "object",
|
|
1152
1178
|
"properties": {
|
|
1153
1179
|
"style": {
|
|
@@ -2172,6 +2172,19 @@
|
|
|
2172
2172
|
}
|
|
2173
2173
|
]
|
|
2174
2174
|
},
|
|
2175
|
+
"size": {
|
|
2176
|
+
"anyOf": [
|
|
2177
|
+
{
|
|
2178
|
+
"type": "number",
|
|
2179
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
2180
|
+
"minimum": 1,
|
|
2181
|
+
"maximum": 500
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"type": "null"
|
|
2185
|
+
}
|
|
2186
|
+
]
|
|
2187
|
+
},
|
|
2175
2188
|
"textDecoration": {
|
|
2176
2189
|
"anyOf": [
|
|
2177
2190
|
{
|
|
@@ -2205,6 +2218,7 @@
|
|
|
2205
2218
|
"letterSpacing",
|
|
2206
2219
|
"lineHeight",
|
|
2207
2220
|
"textTransform",
|
|
2221
|
+
"size",
|
|
2208
2222
|
"textDecoration",
|
|
2209
2223
|
"gradient"
|
|
2210
2224
|
]
|
|
@@ -2296,11 +2310,11 @@
|
|
|
2296
2310
|
}
|
|
2297
2311
|
]
|
|
2298
2312
|
},
|
|
2299
|
-
"
|
|
2313
|
+
"animation": {
|
|
2300
2314
|
"anyOf": [
|
|
2301
2315
|
{
|
|
2302
2316
|
"description": "Word-level animation properties controlling how words are highlighted or revealed.",
|
|
2303
|
-
"$ref": "#/$defs/
|
|
2317
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
2304
2318
|
},
|
|
2305
2319
|
{
|
|
2306
2320
|
"type": "null"
|
|
@@ -2321,7 +2335,7 @@
|
|
|
2321
2335
|
"padding",
|
|
2322
2336
|
"align",
|
|
2323
2337
|
"active",
|
|
2324
|
-
"
|
|
2338
|
+
"animation"
|
|
2325
2339
|
]
|
|
2326
2340
|
},
|
|
2327
2341
|
"RichCaptionActive": {
|
|
@@ -2437,6 +2451,19 @@
|
|
|
2437
2451
|
}
|
|
2438
2452
|
]
|
|
2439
2453
|
},
|
|
2454
|
+
"size": {
|
|
2455
|
+
"anyOf": [
|
|
2456
|
+
{
|
|
2457
|
+
"type": "number",
|
|
2458
|
+
"description": "The font size of the active word in pixels. Overrides the scale property when set.",
|
|
2459
|
+
"minimum": 1,
|
|
2460
|
+
"maximum": 500
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
"type": "null"
|
|
2464
|
+
}
|
|
2465
|
+
]
|
|
2466
|
+
},
|
|
2440
2467
|
"textDecoration": {
|
|
2441
2468
|
"anyOf": [
|
|
2442
2469
|
{
|
|
@@ -2459,10 +2486,11 @@
|
|
|
2459
2486
|
"color",
|
|
2460
2487
|
"background",
|
|
2461
2488
|
"opacity",
|
|
2489
|
+
"size",
|
|
2462
2490
|
"textDecoration"
|
|
2463
2491
|
]
|
|
2464
2492
|
},
|
|
2465
|
-
"
|
|
2493
|
+
"RichCaptionAnimation": {
|
|
2466
2494
|
"description": "Word-level animation properties for caption effects.",
|
|
2467
2495
|
"type": "object",
|
|
2468
2496
|
"properties": {
|
|
@@ -1990,6 +1990,18 @@
|
|
|
1990
1990
|
}
|
|
1991
1991
|
]
|
|
1992
1992
|
},
|
|
1993
|
+
"size": {
|
|
1994
|
+
"anyOf": [
|
|
1995
|
+
{
|
|
1996
|
+
"type": "number",
|
|
1997
|
+
"minimum": 1,
|
|
1998
|
+
"maximum": 500
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"type": "null"
|
|
2002
|
+
}
|
|
2003
|
+
]
|
|
2004
|
+
},
|
|
1993
2005
|
"textDecoration": {
|
|
1994
2006
|
"anyOf": [
|
|
1995
2007
|
{
|
|
@@ -2021,6 +2033,7 @@
|
|
|
2021
2033
|
"letterSpacing",
|
|
2022
2034
|
"lineHeight",
|
|
2023
2035
|
"textTransform",
|
|
2036
|
+
"size",
|
|
2024
2037
|
"textDecoration",
|
|
2025
2038
|
"gradient"
|
|
2026
2039
|
]
|
|
@@ -2104,10 +2117,10 @@
|
|
|
2104
2117
|
}
|
|
2105
2118
|
]
|
|
2106
2119
|
},
|
|
2107
|
-
"
|
|
2120
|
+
"animation": {
|
|
2108
2121
|
"anyOf": [
|
|
2109
2122
|
{
|
|
2110
|
-
"$ref": "#/$defs/
|
|
2123
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
2111
2124
|
},
|
|
2112
2125
|
{
|
|
2113
2126
|
"type": "null"
|
|
@@ -2128,7 +2141,7 @@
|
|
|
2128
2141
|
"padding",
|
|
2129
2142
|
"align",
|
|
2130
2143
|
"active",
|
|
2131
|
-
"
|
|
2144
|
+
"animation"
|
|
2132
2145
|
]
|
|
2133
2146
|
},
|
|
2134
2147
|
"RichCaptionActive": {
|
|
@@ -2235,6 +2248,18 @@
|
|
|
2235
2248
|
}
|
|
2236
2249
|
]
|
|
2237
2250
|
},
|
|
2251
|
+
"size": {
|
|
2252
|
+
"anyOf": [
|
|
2253
|
+
{
|
|
2254
|
+
"type": "number",
|
|
2255
|
+
"minimum": 1,
|
|
2256
|
+
"maximum": 500
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"type": "null"
|
|
2260
|
+
}
|
|
2261
|
+
]
|
|
2262
|
+
},
|
|
2238
2263
|
"textDecoration": {
|
|
2239
2264
|
"anyOf": [
|
|
2240
2265
|
{
|
|
@@ -2256,10 +2281,11 @@
|
|
|
2256
2281
|
"color",
|
|
2257
2282
|
"background",
|
|
2258
2283
|
"opacity",
|
|
2284
|
+
"size",
|
|
2259
2285
|
"textDecoration"
|
|
2260
2286
|
]
|
|
2261
2287
|
},
|
|
2262
|
-
"
|
|
2288
|
+
"RichCaptionAnimation": {
|
|
2263
2289
|
"type": "object",
|
|
2264
2290
|
"properties": {
|
|
2265
2291
|
"style": {
|
|
@@ -1877,6 +1877,18 @@
|
|
|
1877
1877
|
}
|
|
1878
1878
|
]
|
|
1879
1879
|
},
|
|
1880
|
+
"size": {
|
|
1881
|
+
"anyOf": [
|
|
1882
|
+
{
|
|
1883
|
+
"type": "number",
|
|
1884
|
+
"minimum": 1,
|
|
1885
|
+
"maximum": 500
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"type": "null"
|
|
1889
|
+
}
|
|
1890
|
+
]
|
|
1891
|
+
},
|
|
1880
1892
|
"textDecoration": {
|
|
1881
1893
|
"anyOf": [
|
|
1882
1894
|
{
|
|
@@ -1908,6 +1920,7 @@
|
|
|
1908
1920
|
"letterSpacing",
|
|
1909
1921
|
"lineHeight",
|
|
1910
1922
|
"textTransform",
|
|
1923
|
+
"size",
|
|
1911
1924
|
"textDecoration",
|
|
1912
1925
|
"gradient"
|
|
1913
1926
|
]
|
|
@@ -1991,10 +2004,10 @@
|
|
|
1991
2004
|
}
|
|
1992
2005
|
]
|
|
1993
2006
|
},
|
|
1994
|
-
"
|
|
2007
|
+
"animation": {
|
|
1995
2008
|
"anyOf": [
|
|
1996
2009
|
{
|
|
1997
|
-
"$ref": "#/$defs/
|
|
2010
|
+
"$ref": "#/$defs/RichCaptionAnimation"
|
|
1998
2011
|
},
|
|
1999
2012
|
{
|
|
2000
2013
|
"type": "null"
|
|
@@ -2015,7 +2028,7 @@
|
|
|
2015
2028
|
"padding",
|
|
2016
2029
|
"align",
|
|
2017
2030
|
"active",
|
|
2018
|
-
"
|
|
2031
|
+
"animation"
|
|
2019
2032
|
]
|
|
2020
2033
|
},
|
|
2021
2034
|
"RichCaptionActive": {
|
|
@@ -2122,6 +2135,18 @@
|
|
|
2122
2135
|
}
|
|
2123
2136
|
]
|
|
2124
2137
|
},
|
|
2138
|
+
"size": {
|
|
2139
|
+
"anyOf": [
|
|
2140
|
+
{
|
|
2141
|
+
"type": "number",
|
|
2142
|
+
"minimum": 1,
|
|
2143
|
+
"maximum": 500
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"type": "null"
|
|
2147
|
+
}
|
|
2148
|
+
]
|
|
2149
|
+
},
|
|
2125
2150
|
"textDecoration": {
|
|
2126
2151
|
"anyOf": [
|
|
2127
2152
|
{
|
|
@@ -2143,10 +2168,11 @@
|
|
|
2143
2168
|
"color",
|
|
2144
2169
|
"background",
|
|
2145
2170
|
"opacity",
|
|
2171
|
+
"size",
|
|
2146
2172
|
"textDecoration"
|
|
2147
2173
|
]
|
|
2148
2174
|
},
|
|
2149
|
-
"
|
|
2175
|
+
"RichCaptionAnimation": {
|
|
2150
2176
|
"type": "object",
|
|
2151
2177
|
"properties": {
|
|
2152
2178
|
"style": {
|