@await-widget/runtime 0.0.6 → 0.0.8
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/package.json +4 -2
- package/types/await.d.ts +221 -200
- package/types/bridge.d.ts +121 -121
- package/types/index.d.ts +2 -2
- package/types/jsx.d.ts +2 -2
- package/types/meta.d.ts +330 -306
- package/types/model.d.ts +274 -0
- package/types/prop.d.ts +184 -166
- package/types/global.d.ts +0 -282
package/types/meta.d.ts
CHANGED
|
@@ -1,392 +1,416 @@
|
|
|
1
|
-
type CornerRadiusStyle =
|
|
1
|
+
type CornerRadiusStyle = 'circular' | 'continuous';
|
|
2
2
|
|
|
3
|
-
type TimeStyle =
|
|
3
|
+
type TimeStyle = 'time' | 'date' | 'relative' | 'offset' | 'timer';
|
|
4
4
|
|
|
5
|
-
type Material =
|
|
5
|
+
type Material = 'regular' | 'thin' | 'thick' | 'ultraThin' | 'ultraThick';
|
|
6
6
|
|
|
7
7
|
type ShapeStyle =
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
| Color
|
|
9
|
+
| Material
|
|
10
|
+
| LinearGradient
|
|
11
|
+
| RadialGradient
|
|
12
|
+
| AngularGradient
|
|
13
|
+
| 'primary'
|
|
14
|
+
| 'secondary'
|
|
15
|
+
| 'tertiary'
|
|
16
|
+
| 'quaternary'
|
|
17
|
+
| 'quinary';
|
|
18
18
|
|
|
19
19
|
type NativeAnimation = (
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
20
|
+
| {
|
|
21
|
+
type?:
|
|
22
|
+
| 'linear'
|
|
23
|
+
| 'default'
|
|
24
|
+
| 'easeIn'
|
|
25
|
+
| 'easeInOut'
|
|
26
|
+
| 'easeOut'
|
|
27
|
+
| 'circularEaseIn'
|
|
28
|
+
| 'circularEaseInOut'
|
|
29
|
+
| 'circularEaseOut';
|
|
30
|
+
duration?: number;
|
|
31
|
+
}
|
|
32
|
+
| {
|
|
33
|
+
type: 'interactiveSpring';
|
|
34
|
+
blendDuration?: number;
|
|
35
|
+
duration?: number;
|
|
36
|
+
bounce?: number;
|
|
37
|
+
}
|
|
38
|
+
| {
|
|
39
|
+
type: 'bouncy';
|
|
40
|
+
bounce?: number;
|
|
41
|
+
duration?: number;
|
|
42
|
+
}
|
|
43
|
+
| {
|
|
44
|
+
type: 'smooth';
|
|
45
|
+
duration?: number;
|
|
46
|
+
bounce?: number;
|
|
47
|
+
}
|
|
48
|
+
| {
|
|
49
|
+
type: 'spring';
|
|
50
|
+
blendDuration?: number;
|
|
51
|
+
duration?: number;
|
|
52
|
+
bounce?: number;
|
|
53
|
+
}
|
|
54
|
+
| {
|
|
55
|
+
type: 'timingCurve';
|
|
56
|
+
start: UnitPoint;
|
|
57
|
+
end: UnitPoint;
|
|
58
|
+
duration?: number;
|
|
59
|
+
}
|
|
60
|
+
| {
|
|
61
|
+
type: 'snappy';
|
|
62
|
+
bounce?: number;
|
|
63
|
+
duration?: number;
|
|
64
|
+
}
|
|
65
65
|
) & {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
value?: unknown;
|
|
67
|
+
delay?: number;
|
|
68
|
+
autoreverses?: boolean;
|
|
69
|
+
speed?: number;
|
|
70
|
+
loop?: boolean | number;
|
|
71
71
|
};
|
|
72
72
|
|
|
73
73
|
type ContentTransition =
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
74
|
+
| 'identity'
|
|
75
|
+
| 'interpolate'
|
|
76
|
+
| 'opacity'
|
|
77
|
+
| 'symbolEffect'
|
|
78
|
+
| 'numericText'
|
|
79
|
+
| ['numericText', boolean]
|
|
80
|
+
| ['numericText', number];
|
|
81
81
|
|
|
82
|
-
type Edge =
|
|
82
|
+
type Edge = 'top' | 'bottom' | 'leading' | 'trailing';
|
|
83
83
|
|
|
84
84
|
type RawTransition =
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
85
|
+
| 'identity'
|
|
86
|
+
| 'blurReplace'
|
|
87
|
+
| 'opacity'
|
|
88
|
+
| 'slide'
|
|
89
|
+
| 'scale'
|
|
90
|
+
| ['scale', number, UnitPoint?]
|
|
91
|
+
| ['push', Edge]
|
|
92
|
+
| ['offset', number, number]
|
|
93
|
+
| ['move', Edge];
|
|
94
94
|
|
|
95
95
|
type Transition = RawTransition | [RawTransition, RawTransition];
|
|
96
96
|
|
|
97
97
|
type Padding =
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
98
|
+
| number
|
|
99
|
+
| {
|
|
100
|
+
left?: number;
|
|
101
|
+
right?: number;
|
|
102
|
+
top?: number;
|
|
103
|
+
bottom?: number;
|
|
104
|
+
vertical?: number;
|
|
105
|
+
horizontal?: number;
|
|
106
|
+
other?: number;
|
|
107
|
+
};
|
|
108
108
|
|
|
109
109
|
type RadialGradient = {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
110
|
+
gradient: 'radial';
|
|
111
|
+
colors?: Color[];
|
|
112
|
+
stops?: Array<[Color, number]>;
|
|
113
|
+
startRadius?: number;
|
|
114
|
+
endRadius?: number;
|
|
115
115
|
};
|
|
116
116
|
|
|
117
117
|
type AngularGradient = {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
118
|
+
gradient: 'angular';
|
|
119
|
+
colors?: Color[];
|
|
120
|
+
stops?: Array<[Color, number]>;
|
|
121
|
+
angle?: number;
|
|
122
|
+
center?: UnitPoint;
|
|
123
123
|
};
|
|
124
124
|
|
|
125
125
|
type LinearGradient = {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
126
|
+
gradient: 'linear';
|
|
127
|
+
colors?: Color[];
|
|
128
|
+
stops?: Stop[];
|
|
129
|
+
startPoint?: UnitPoint;
|
|
130
|
+
endPoint?: UnitPoint;
|
|
131
131
|
};
|
|
132
132
|
|
|
133
133
|
type UnitPoint =
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
134
|
+
| 'center'
|
|
135
|
+
| 'zero'
|
|
136
|
+
| 'leading'
|
|
137
|
+
| 'trailing'
|
|
138
|
+
| 'top'
|
|
139
|
+
| 'topLeading'
|
|
140
|
+
| 'topTrailing'
|
|
141
|
+
| 'bottom'
|
|
142
|
+
| 'bottomLeading'
|
|
143
|
+
| 'bottomTrailing'
|
|
144
|
+
| Point;
|
|
145
145
|
|
|
146
146
|
type Stop = [Color, number];
|
|
147
147
|
|
|
148
148
|
type RawColor =
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
149
|
+
| ''
|
|
150
|
+
| 'background'
|
|
151
|
+
| 'black'
|
|
152
|
+
| 'blue'
|
|
153
|
+
| 'brown'
|
|
154
|
+
| 'cyan'
|
|
155
|
+
| 'gray'
|
|
156
|
+
| 'green'
|
|
157
|
+
| 'indigo'
|
|
158
|
+
| 'magenta'
|
|
159
|
+
| 'mint'
|
|
160
|
+
| 'orange'
|
|
161
|
+
| 'pink'
|
|
162
|
+
| 'primary'
|
|
163
|
+
| 'purple'
|
|
164
|
+
| 'red'
|
|
165
|
+
| 'secondary'
|
|
166
|
+
| 'teal'
|
|
167
|
+
| 'white'
|
|
168
|
+
| 'yellow'
|
|
169
|
+
| string
|
|
170
|
+
| number;
|
|
171
171
|
|
|
172
172
|
type RawThemeColor = RawColor | [RawColor, number];
|
|
173
173
|
|
|
174
174
|
type Color =
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
175
|
+
| RawThemeColor
|
|
176
|
+
| {
|
|
177
|
+
dark?: RawThemeColor;
|
|
178
|
+
light?: RawThemeColor;
|
|
179
|
+
};
|
|
180
180
|
|
|
181
181
|
type VerticalAlignment =
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
182
|
+
| 'firstTextBaseline'
|
|
183
|
+
| 'lastTextBaseline'
|
|
184
|
+
| 'top'
|
|
185
|
+
| 'bottom'
|
|
186
|
+
| 'center';
|
|
187
187
|
|
|
188
188
|
type HorizontalAlignment =
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
189
|
+
| 'listRowSeparatorLeading'
|
|
190
|
+
| 'listRowSeparatorTrailing'
|
|
191
|
+
| 'leading'
|
|
192
|
+
| 'trailing'
|
|
193
|
+
| 'center';
|
|
194
194
|
|
|
195
195
|
type Alignment =
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
type Dimension =
|
|
196
|
+
| 'leading'
|
|
197
|
+
| 'trailing'
|
|
198
|
+
| 'top'
|
|
199
|
+
| 'bottom'
|
|
200
|
+
| 'topLeading'
|
|
201
|
+
| 'topTrailing'
|
|
202
|
+
| 'bottomLeading'
|
|
203
|
+
| 'bottomTrailing'
|
|
204
|
+
| 'center'
|
|
205
|
+
| 'trailingFirstTextBaseline'
|
|
206
|
+
| 'leadingLastTextBaseline'
|
|
207
|
+
| 'leadingFirstTextBaseline'
|
|
208
|
+
| 'centerLastTextBaseline'
|
|
209
|
+
| 'centerFirstTextBaseline'
|
|
210
|
+
| 'trailingLastTextBaseline';
|
|
211
|
+
|
|
212
|
+
type Dimension = 'max' | number;
|
|
213
|
+
|
|
214
|
+
type Size = {
|
|
215
|
+
width: number;
|
|
216
|
+
height: number;
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
type TemplateRenderingMode = 'original' | 'template';
|
|
213
220
|
|
|
214
221
|
type AspectRatio =
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
222
|
+
| 'fill'
|
|
223
|
+
| 'fit'
|
|
224
|
+
| [aspectRatio: number, contentMode: 'fill' | 'fit'];
|
|
225
|
+
|
|
226
|
+
type IntentInfo = {
|
|
227
|
+
name: string;
|
|
228
|
+
args: Encodable[];
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
type Encodable =
|
|
232
|
+
| string
|
|
233
|
+
| number
|
|
234
|
+
| boolean
|
|
235
|
+
| undefined
|
|
236
|
+
| Encodable[]
|
|
237
|
+
| {
|
|
238
|
+
[key: string]: Encodable;
|
|
239
|
+
};
|
|
218
240
|
|
|
219
241
|
type ID = {
|
|
220
|
-
|
|
242
|
+
id?: Encodable;
|
|
221
243
|
};
|
|
222
244
|
|
|
223
|
-
type TextAlignment =
|
|
245
|
+
type TextAlignment = 'center' | 'leading' | 'trailing';
|
|
224
246
|
|
|
225
|
-
type FontDesign =
|
|
247
|
+
type FontDesign = 'monospaced' | 'rounded' | 'serif' | 'default';
|
|
226
248
|
|
|
227
249
|
type FontWeight =
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
type FontWidth =
|
|
248
|
-
|
|
249
|
-
type Interpolation =
|
|
250
|
-
|
|
251
|
-
type Resizable = boolean |
|
|
250
|
+
| 100
|
|
251
|
+
| 'ultraLight'
|
|
252
|
+
| 200
|
|
253
|
+
| 'thin'
|
|
254
|
+
| 300
|
|
255
|
+
| 'light'
|
|
256
|
+
| 400
|
|
257
|
+
| 'regular'
|
|
258
|
+
| 500
|
|
259
|
+
| 'medium'
|
|
260
|
+
| 600
|
|
261
|
+
| 'semibold'
|
|
262
|
+
| 700
|
|
263
|
+
| 'bold'
|
|
264
|
+
| 800
|
|
265
|
+
| 'heavy'
|
|
266
|
+
| 900
|
|
267
|
+
| 'black';
|
|
268
|
+
|
|
269
|
+
type FontWidth = 'compressed' | 'condensed' | 'standard' | 'expanded' | number;
|
|
270
|
+
|
|
271
|
+
type Interpolation = 'none' | 'low' | 'medium' | 'high';
|
|
272
|
+
|
|
273
|
+
type Resizable = boolean | 'stretch' | 'tile';
|
|
252
274
|
|
|
253
275
|
type Point =
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
276
|
+
| number
|
|
277
|
+
| {
|
|
278
|
+
x?: number;
|
|
279
|
+
y?: number;
|
|
280
|
+
};
|
|
259
281
|
|
|
260
282
|
type ScaleEffect =
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
283
|
+
| number
|
|
284
|
+
| {
|
|
285
|
+
scale?: number;
|
|
286
|
+
anchor?: UnitPoint;
|
|
287
|
+
}
|
|
288
|
+
| {
|
|
289
|
+
x?: number;
|
|
290
|
+
y?: number;
|
|
291
|
+
anchor?: UnitPoint;
|
|
292
|
+
};
|
|
271
293
|
|
|
272
294
|
type Font = {
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
295
|
+
name: string;
|
|
296
|
+
size: number;
|
|
297
|
+
wght?: number;
|
|
298
|
+
wdth?: number;
|
|
299
|
+
opsz?: number;
|
|
300
|
+
slnt?: number;
|
|
301
|
+
ital?: number;
|
|
302
|
+
|
|
303
|
+
GRAD?: number;
|
|
304
|
+
HGHT?: number;
|
|
305
|
+
SOFT?: number;
|
|
306
|
+
|
|
307
|
+
monospacedDigit?: boolean;
|
|
308
|
+
features?: string[] | string;
|
|
287
309
|
};
|
|
288
310
|
|
|
289
311
|
type Rotation3DEffect = {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
312
|
+
angle: number;
|
|
313
|
+
x?: number;
|
|
314
|
+
y?: number;
|
|
315
|
+
z?: number;
|
|
316
|
+
anchor?: UnitPoint;
|
|
317
|
+
anchorZ?: number;
|
|
318
|
+
perspective?: number;
|
|
297
319
|
};
|
|
298
320
|
|
|
299
321
|
type RotationEffect =
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
322
|
+
| number
|
|
323
|
+
| {
|
|
324
|
+
angle: number;
|
|
325
|
+
anchor: UnitPoint;
|
|
326
|
+
};
|
|
305
327
|
|
|
306
328
|
type Frame =
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
329
|
+
| {
|
|
330
|
+
maxWidth?: Dimension;
|
|
331
|
+
maxHeight?: Dimension;
|
|
332
|
+
alignment?: Alignment;
|
|
333
|
+
}
|
|
334
|
+
| {
|
|
335
|
+
width?: number;
|
|
336
|
+
height?: number;
|
|
337
|
+
alignment?: Alignment;
|
|
338
|
+
};
|
|
317
339
|
|
|
318
340
|
type Shadow = {
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
341
|
+
color?: Color;
|
|
342
|
+
x?: number;
|
|
343
|
+
y?: number;
|
|
344
|
+
blur?: number;
|
|
323
345
|
};
|
|
324
346
|
|
|
325
|
-
type Pattern =
|
|
347
|
+
type Pattern = 'dash' | 'dashDot' | 'dashDotDot' | 'dot' | 'solid';
|
|
326
348
|
|
|
327
349
|
type BlendMode =
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
350
|
+
| 'normal'
|
|
351
|
+
| 'multiply'
|
|
352
|
+
| 'screen'
|
|
353
|
+
| 'overlay'
|
|
354
|
+
| 'darken'
|
|
355
|
+
| 'lighten'
|
|
356
|
+
| 'colorDodge'
|
|
357
|
+
| 'colorBurn'
|
|
358
|
+
| 'softLight'
|
|
359
|
+
| 'hardLight'
|
|
360
|
+
| 'difference'
|
|
361
|
+
| 'exclusion'
|
|
362
|
+
| 'hue'
|
|
363
|
+
| 'saturation'
|
|
364
|
+
| 'color'
|
|
365
|
+
| 'luminosity'
|
|
366
|
+
| 'sourceAtop'
|
|
367
|
+
| 'destinationOver'
|
|
368
|
+
| 'destinationOut'
|
|
369
|
+
| 'plusDarker'
|
|
370
|
+
| 'plusLighter';
|
|
349
371
|
|
|
350
372
|
type ButtonStyle =
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
373
|
+
| 'automatic'
|
|
374
|
+
| 'bordered'
|
|
375
|
+
| 'borderedProminent'
|
|
376
|
+
| 'borderless'
|
|
377
|
+
| 'plain'
|
|
378
|
+
| CustomButtonStyle;
|
|
357
379
|
|
|
358
380
|
type CustomButtonStyle = {
|
|
359
|
-
|
|
360
|
-
|
|
381
|
+
press: NativeView;
|
|
382
|
+
normal: NativeView;
|
|
361
383
|
};
|
|
362
384
|
|
|
363
385
|
type GifDuration = 2 | 4 | 6 | 10 | 12 | 20 | 30 | 60;
|
|
364
386
|
|
|
387
|
+
type TickerStyle = 'minute' | 'second' | 'hour12' | 'hour24';
|
|
388
|
+
|
|
365
389
|
type LineHeight =
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
390
|
+
| number
|
|
391
|
+
| 'loose'
|
|
392
|
+
| 'normal'
|
|
393
|
+
| 'tight'
|
|
394
|
+
| 'variable'
|
|
395
|
+
| [type: 'multiple' | 'leading', value: number];
|
|
372
396
|
|
|
373
397
|
type Blur =
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
398
|
+
| number
|
|
399
|
+
| {
|
|
400
|
+
blur: number;
|
|
401
|
+
opaque?: boolean;
|
|
402
|
+
};
|
|
379
403
|
|
|
380
404
|
type FixedSize =
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
405
|
+
| boolean
|
|
406
|
+
| {
|
|
407
|
+
horizontal?: boolean;
|
|
408
|
+
vertical?: boolean;
|
|
409
|
+
};
|
|
386
410
|
|
|
387
411
|
type strikethrough =
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
412
|
+
| boolean
|
|
413
|
+
| {
|
|
414
|
+
isActive?: boolean;
|
|
415
|
+
color?: Color;
|
|
416
|
+
};
|