stormcloud-video-player 0.1.13 → 0.2.0

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/lib/index.d.cts CHANGED
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import * as csstype from 'csstype';
2
+ import React, { CSSProperties, lazy as lazy$1 } from 'react';
2
3
 
3
4
  type LateJoinPolicy = "play_remaining" | "skip_to_content";
4
5
  interface AdBreak {
@@ -140,6 +141,3572 @@ declare class StormcloudVideoPlayer {
140
141
  destroy(): void;
141
142
  }
142
143
 
144
+ interface OnProgressProps {
145
+ played: number;
146
+ playedSeconds: number;
147
+ loaded: number;
148
+ loadedSeconds: number;
149
+ }
150
+ interface BaseStormcloudPlayerProps {
151
+ src?: string;
152
+ playing?: boolean;
153
+ loop?: boolean;
154
+ controls?: boolean;
155
+ volume?: number;
156
+ muted?: boolean;
157
+ playbackRate?: number;
158
+ width?: string | number;
159
+ height?: string | number;
160
+ style?: CSSProperties;
161
+ progressInterval?: number;
162
+ playsInline?: boolean;
163
+ autoplay?: boolean;
164
+ preload?: string;
165
+ poster?: string;
166
+ className?: string;
167
+ wrapperClassName?: string;
168
+ wrapperStyle?: CSSProperties;
169
+ allowNativeHls?: boolean;
170
+ lowLatencyMode?: boolean;
171
+ driftToleranceMs?: number;
172
+ immediateManifestAds?: boolean;
173
+ debugAdTiming?: boolean;
174
+ showCustomControls?: boolean;
175
+ licenseKey?: string;
176
+ adFailsafeTimeoutMs?: number;
177
+ onReady?: (player: StormcloudVideoPlayer) => void;
178
+ onStart?: () => void;
179
+ onPlay?: () => void;
180
+ onPause?: (e?: any) => void;
181
+ onBuffer?: () => void;
182
+ onBufferEnd?: () => void;
183
+ onEnded?: () => void;
184
+ onError?: (error: any, data?: any, hlsInstance?: any, hlsGlobal?: any) => void;
185
+ onDuration?: (duration: number) => void;
186
+ onSeek?: (seconds: number) => void;
187
+ onProgress?: (state: OnProgressProps) => void;
188
+ onVolumeToggle?: () => void;
189
+ onFullscreenToggle?: () => void;
190
+ onControlClick?: () => void;
191
+ [otherProps: string]: any;
192
+ }
193
+
194
+ interface PlayerProps extends BaseStormcloudPlayerProps {
195
+ activePlayer: any;
196
+ onReady: () => void;
197
+ }
198
+
199
+ interface PlayerConfig {
200
+ key: string;
201
+ name: string;
202
+ canPlay: (url: string) => boolean;
203
+ canEnablePIP?: (url: string) => boolean;
204
+ lazyPlayer?: any;
205
+ }
206
+ declare const players: PlayerConfig[];
207
+
208
+ interface StormcloudPlayerProps extends BaseStormcloudPlayerProps {
209
+ fallback?: React.ReactElement;
210
+ wrapper?: React.ComponentType<{
211
+ children: React.ReactNode;
212
+ }> | string;
213
+ }
214
+ interface StormcloudPlayerState {
215
+ showPreview: boolean;
216
+ }
217
+ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: PlayerConfig) => {
218
+ new (props: StormcloudPlayerProps): {
219
+ state: StormcloudPlayerState;
220
+ wrapper?: HTMLElement;
221
+ player?: any;
222
+ references: {
223
+ wrapper: (wrapper: HTMLElement) => void;
224
+ player: (player: any) => void;
225
+ };
226
+ getActivePlayer: (src?: string) => PlayerConfig | null;
227
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
228
+ handleReady: () => void;
229
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
230
+ getCurrentTime: () => number | null;
231
+ getSecondsLoaded: () => number | null;
232
+ getDuration: () => number | null;
233
+ getInternalPlayer: (key?: string) => any;
234
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
235
+ render(): React.DetailedReactHTMLElement<{
236
+ ref: ((wrapper: HTMLElement) => void) | undefined;
237
+ style: {
238
+ width: string | number | undefined;
239
+ height: string | number | undefined;
240
+ accentColor?: csstype.Property.AccentColor | undefined;
241
+ alignContent?: csstype.Property.AlignContent | undefined;
242
+ alignItems?: csstype.Property.AlignItems | undefined;
243
+ alignSelf?: csstype.Property.AlignSelf | undefined;
244
+ alignTracks?: csstype.Property.AlignTracks | undefined;
245
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
246
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
247
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
248
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
249
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
250
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
251
+ animationName?: csstype.Property.AnimationName | undefined;
252
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
253
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
254
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
255
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
256
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
257
+ appearance?: csstype.Property.Appearance | undefined;
258
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
259
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
260
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
261
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
262
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
263
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
264
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
265
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
266
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
267
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
268
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
269
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
270
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
271
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
272
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
273
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
274
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
275
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
276
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
277
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
278
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
279
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
280
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
281
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
282
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
283
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
284
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
285
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
286
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
287
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
288
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
289
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
290
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
291
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
292
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
293
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
294
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
295
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
296
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
297
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
298
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
299
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
300
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
301
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
302
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
303
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
304
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
305
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
306
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
307
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
308
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
309
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
310
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
311
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
312
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
313
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
314
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
315
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
316
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
317
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
318
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
319
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
320
+ boxShadow?: csstype.Property.BoxShadow | undefined;
321
+ boxSizing?: csstype.Property.BoxSizing | undefined;
322
+ breakAfter?: csstype.Property.BreakAfter | undefined;
323
+ breakBefore?: csstype.Property.BreakBefore | undefined;
324
+ breakInside?: csstype.Property.BreakInside | undefined;
325
+ captionSide?: csstype.Property.CaptionSide | undefined;
326
+ caretColor?: csstype.Property.CaretColor | undefined;
327
+ caretShape?: csstype.Property.CaretShape | undefined;
328
+ clear?: csstype.Property.Clear | undefined;
329
+ clipPath?: csstype.Property.ClipPath | undefined;
330
+ color?: csstype.Property.Color | undefined;
331
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
332
+ colorScheme?: csstype.Property.ColorScheme | undefined;
333
+ columnCount?: csstype.Property.ColumnCount | undefined;
334
+ columnFill?: csstype.Property.ColumnFill | undefined;
335
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
336
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
337
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
338
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
339
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
340
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
341
+ contain?: csstype.Property.Contain | undefined;
342
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
343
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
344
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
345
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
346
+ containerName?: csstype.Property.ContainerName | undefined;
347
+ containerType?: csstype.Property.ContainerType | undefined;
348
+ content?: csstype.Property.Content | undefined;
349
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
350
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
351
+ counterReset?: csstype.Property.CounterReset | undefined;
352
+ counterSet?: csstype.Property.CounterSet | undefined;
353
+ cursor?: csstype.Property.Cursor | undefined;
354
+ direction?: csstype.Property.Direction | undefined;
355
+ display?: csstype.Property.Display | undefined;
356
+ emptyCells?: csstype.Property.EmptyCells | undefined;
357
+ filter?: csstype.Property.Filter | undefined;
358
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
359
+ flexDirection?: csstype.Property.FlexDirection | undefined;
360
+ flexGrow?: csstype.Property.FlexGrow | undefined;
361
+ flexShrink?: csstype.Property.FlexShrink | undefined;
362
+ flexWrap?: csstype.Property.FlexWrap | undefined;
363
+ float?: csstype.Property.Float | undefined;
364
+ fontFamily?: csstype.Property.FontFamily | undefined;
365
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
366
+ fontKerning?: csstype.Property.FontKerning | undefined;
367
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
368
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
369
+ fontPalette?: csstype.Property.FontPalette | undefined;
370
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
371
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
372
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
373
+ fontStretch?: csstype.Property.FontStretch | undefined;
374
+ fontStyle?: csstype.Property.FontStyle | undefined;
375
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
376
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
377
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
378
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
379
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
380
+ fontVariant?: csstype.Property.FontVariant | undefined;
381
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
382
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
383
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
384
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
385
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
386
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
387
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
388
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
389
+ fontWeight?: csstype.Property.FontWeight | undefined;
390
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
391
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
392
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
393
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
394
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
395
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
396
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
397
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
398
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
399
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
400
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
401
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
402
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
403
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
404
+ hyphens?: csstype.Property.Hyphens | undefined;
405
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
406
+ imageRendering?: csstype.Property.ImageRendering | undefined;
407
+ imageResolution?: csstype.Property.ImageResolution | undefined;
408
+ initialLetter?: csstype.Property.InitialLetter | undefined;
409
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
410
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
411
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
412
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
413
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
414
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
415
+ isolation?: csstype.Property.Isolation | undefined;
416
+ justifyContent?: csstype.Property.JustifyContent | undefined;
417
+ justifyItems?: csstype.Property.JustifyItems | undefined;
418
+ justifySelf?: csstype.Property.JustifySelf | undefined;
419
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
420
+ left?: csstype.Property.Left<string | number> | undefined;
421
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
422
+ lineBreak?: csstype.Property.LineBreak | undefined;
423
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
424
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
425
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
426
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
427
+ listStyleType?: csstype.Property.ListStyleType | undefined;
428
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
429
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
430
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
431
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
432
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
433
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
434
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
435
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
436
+ marginTrim?: csstype.Property.MarginTrim | undefined;
437
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
438
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
439
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
440
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
441
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
442
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
443
+ maskClip?: csstype.Property.MaskClip | undefined;
444
+ maskComposite?: csstype.Property.MaskComposite | undefined;
445
+ maskImage?: csstype.Property.MaskImage | undefined;
446
+ maskMode?: csstype.Property.MaskMode | undefined;
447
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
448
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
449
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
450
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
451
+ maskType?: csstype.Property.MaskType | undefined;
452
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
453
+ mathDepth?: csstype.Property.MathDepth | undefined;
454
+ mathShift?: csstype.Property.MathShift | undefined;
455
+ mathStyle?: csstype.Property.MathStyle | undefined;
456
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
457
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
458
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
459
+ maxLines?: csstype.Property.MaxLines | undefined;
460
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
461
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
462
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
463
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
464
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
465
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
466
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
467
+ motionPath?: csstype.Property.OffsetPath | undefined;
468
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
469
+ objectFit?: csstype.Property.ObjectFit | undefined;
470
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
471
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
472
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
473
+ offsetPath?: csstype.Property.OffsetPath | undefined;
474
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
475
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
476
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
477
+ opacity?: csstype.Property.Opacity | undefined;
478
+ order?: csstype.Property.Order | undefined;
479
+ orphans?: csstype.Property.Orphans | undefined;
480
+ outlineColor?: csstype.Property.OutlineColor | undefined;
481
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
482
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
483
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
484
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
485
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
486
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
487
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
488
+ overflowInline?: csstype.Property.OverflowInline | undefined;
489
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
490
+ overflowX?: csstype.Property.OverflowX | undefined;
491
+ overflowY?: csstype.Property.OverflowY | undefined;
492
+ overlay?: csstype.Property.Overlay | undefined;
493
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
494
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
495
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
496
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
497
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
498
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
499
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
500
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
501
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
502
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
503
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
504
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
505
+ page?: csstype.Property.Page | undefined;
506
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
507
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
508
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
509
+ paintOrder?: csstype.Property.PaintOrder | undefined;
510
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
511
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
512
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
513
+ position?: csstype.Property.Position | undefined;
514
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
515
+ quotes?: csstype.Property.Quotes | undefined;
516
+ resize?: csstype.Property.Resize | undefined;
517
+ right?: csstype.Property.Right<string | number> | undefined;
518
+ rotate?: csstype.Property.Rotate | undefined;
519
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
520
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
521
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
522
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
523
+ scale?: csstype.Property.Scale | undefined;
524
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
525
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
526
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
527
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
528
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
529
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
530
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
531
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
532
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
533
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
534
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
535
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
536
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
537
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
538
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
539
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
540
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
541
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
542
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
543
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
544
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
545
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
546
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
547
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
548
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
549
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
550
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
551
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
552
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
553
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
554
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
555
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
556
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
557
+ tableLayout?: csstype.Property.TableLayout | undefined;
558
+ textAlign?: csstype.Property.TextAlign | undefined;
559
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
560
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
561
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
562
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
563
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
564
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
565
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
566
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
567
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
568
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
569
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
570
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
571
+ textJustify?: csstype.Property.TextJustify | undefined;
572
+ textOrientation?: csstype.Property.TextOrientation | undefined;
573
+ textOverflow?: csstype.Property.TextOverflow | undefined;
574
+ textRendering?: csstype.Property.TextRendering | undefined;
575
+ textShadow?: csstype.Property.TextShadow | undefined;
576
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
577
+ textTransform?: csstype.Property.TextTransform | undefined;
578
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
579
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
580
+ textWrap?: csstype.Property.TextWrap | undefined;
581
+ timelineScope?: csstype.Property.TimelineScope | undefined;
582
+ top?: csstype.Property.Top<string | number> | undefined;
583
+ touchAction?: csstype.Property.TouchAction | undefined;
584
+ transform?: csstype.Property.Transform | undefined;
585
+ transformBox?: csstype.Property.TransformBox | undefined;
586
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
587
+ transformStyle?: csstype.Property.TransformStyle | undefined;
588
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
589
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
590
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
591
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
592
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
593
+ translate?: csstype.Property.Translate<string | number> | undefined;
594
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
595
+ userSelect?: csstype.Property.UserSelect | undefined;
596
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
597
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
598
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
599
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
600
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
601
+ visibility?: csstype.Property.Visibility | undefined;
602
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
603
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
604
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
605
+ widows?: csstype.Property.Widows | undefined;
606
+ willChange?: csstype.Property.WillChange | undefined;
607
+ wordBreak?: csstype.Property.WordBreak | undefined;
608
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
609
+ wordWrap?: csstype.Property.WordWrap | undefined;
610
+ writingMode?: csstype.Property.WritingMode | undefined;
611
+ zIndex?: csstype.Property.ZIndex | undefined;
612
+ zoom?: csstype.Property.Zoom | undefined;
613
+ all?: csstype.Property.All | undefined;
614
+ animation?: csstype.Property.Animation<string & {}> | undefined;
615
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
616
+ background?: csstype.Property.Background<string | number> | undefined;
617
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
618
+ border?: csstype.Property.Border<string | number> | undefined;
619
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
620
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
621
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
622
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
623
+ borderColor?: csstype.Property.BorderColor | undefined;
624
+ borderImage?: csstype.Property.BorderImage | undefined;
625
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
626
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
627
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
628
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
629
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
630
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
631
+ borderStyle?: csstype.Property.BorderStyle | undefined;
632
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
633
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
634
+ caret?: csstype.Property.Caret | undefined;
635
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
636
+ columns?: csstype.Property.Columns<string | number> | undefined;
637
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
638
+ container?: csstype.Property.Container | undefined;
639
+ flex?: csstype.Property.Flex<string | number> | undefined;
640
+ flexFlow?: csstype.Property.FlexFlow | undefined;
641
+ font?: csstype.Property.Font | undefined;
642
+ gap?: csstype.Property.Gap<string | number> | undefined;
643
+ grid?: csstype.Property.Grid | undefined;
644
+ gridArea?: csstype.Property.GridArea | undefined;
645
+ gridColumn?: csstype.Property.GridColumn | undefined;
646
+ gridRow?: csstype.Property.GridRow | undefined;
647
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
648
+ inset?: csstype.Property.Inset<string | number> | undefined;
649
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
650
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
651
+ lineClamp?: csstype.Property.LineClamp | undefined;
652
+ listStyle?: csstype.Property.ListStyle | undefined;
653
+ margin?: csstype.Property.Margin<string | number> | undefined;
654
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
655
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
656
+ mask?: csstype.Property.Mask<string | number> | undefined;
657
+ maskBorder?: csstype.Property.MaskBorder | undefined;
658
+ motion?: csstype.Property.Offset<string | number> | undefined;
659
+ offset?: csstype.Property.Offset<string | number> | undefined;
660
+ outline?: csstype.Property.Outline<string | number> | undefined;
661
+ overflow?: csstype.Property.Overflow | undefined;
662
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
663
+ padding?: csstype.Property.Padding<string | number> | undefined;
664
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
665
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
666
+ placeContent?: csstype.Property.PlaceContent | undefined;
667
+ placeItems?: csstype.Property.PlaceItems | undefined;
668
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
669
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
670
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
671
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
672
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
673
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
674
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
675
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
676
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
677
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
678
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
679
+ transition?: csstype.Property.Transition<string & {}> | undefined;
680
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
681
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
682
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
683
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
684
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
685
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
686
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
687
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
688
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
689
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
690
+ MozBinding?: csstype.Property.MozBinding | undefined;
691
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
692
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
693
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
694
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
695
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
696
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
697
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
698
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
699
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
700
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
701
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
702
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
703
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
704
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
705
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
706
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
707
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
708
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
709
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
710
+ MozHyphens?: csstype.Property.Hyphens | undefined;
711
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
712
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
713
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
714
+ MozOrient?: csstype.Property.MozOrient | undefined;
715
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
716
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
717
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
718
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
719
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
720
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
721
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
722
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
723
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
724
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
725
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
726
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
727
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
728
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
729
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
730
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
731
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
732
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
733
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
734
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
735
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
736
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
737
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
738
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
739
+ msFilter?: csstype.Property.MsFilter | undefined;
740
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
741
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
742
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
743
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
744
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
745
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
746
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
747
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
748
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
749
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
750
+ msHyphens?: csstype.Property.Hyphens | undefined;
751
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
752
+ msLineBreak?: csstype.Property.LineBreak | undefined;
753
+ msOrder?: csstype.Property.Order | undefined;
754
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
755
+ msOverflowX?: csstype.Property.OverflowX | undefined;
756
+ msOverflowY?: csstype.Property.OverflowY | undefined;
757
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
758
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
759
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
760
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
761
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
762
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
763
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
764
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
765
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
766
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
767
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
768
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
769
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
770
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
771
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
772
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
773
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
774
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
775
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
776
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
777
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
778
+ msTouchAction?: csstype.Property.TouchAction | undefined;
779
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
780
+ msTransform?: csstype.Property.Transform | undefined;
781
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
782
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
783
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
784
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
785
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
786
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
787
+ msWordBreak?: csstype.Property.WordBreak | undefined;
788
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
789
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
790
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
791
+ msWritingMode?: csstype.Property.WritingMode | undefined;
792
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
793
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
794
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
795
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
796
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
797
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
798
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
799
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
800
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
801
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
802
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
803
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
804
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
805
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
806
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
807
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
808
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
809
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
810
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
811
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
812
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
813
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
814
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
815
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
816
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
817
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
818
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
819
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
820
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
821
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
822
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
823
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
824
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
825
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
826
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
827
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
828
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
829
+ WebkitFilter?: csstype.Property.Filter | undefined;
830
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
831
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
832
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
833
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
834
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
835
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
836
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
837
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
838
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
839
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
840
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
841
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
842
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
843
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
844
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
845
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
846
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
847
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
848
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
849
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
850
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
851
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
852
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
853
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
854
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
855
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
856
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
857
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
858
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
859
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
860
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
861
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
862
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
863
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
864
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
865
+ WebkitOrder?: csstype.Property.Order | undefined;
866
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
867
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
868
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
869
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
870
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
871
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
872
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
873
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
874
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
875
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
876
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
877
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
878
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
879
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
880
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
881
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
882
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
883
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
884
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
885
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
886
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
887
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
888
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
889
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
890
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
891
+ WebkitTransform?: csstype.Property.Transform | undefined;
892
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
893
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
894
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
895
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
896
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
897
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
898
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
899
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
900
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
901
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
902
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
903
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
904
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
905
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
906
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
907
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
908
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
909
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
910
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
911
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
912
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
913
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
914
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
915
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
916
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
917
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
918
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
919
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
920
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
921
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
922
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
923
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
924
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
925
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
926
+ azimuth?: csstype.Property.Azimuth | undefined;
927
+ boxAlign?: csstype.Property.BoxAlign | undefined;
928
+ boxDirection?: csstype.Property.BoxDirection | undefined;
929
+ boxFlex?: csstype.Property.BoxFlex | undefined;
930
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
931
+ boxLines?: csstype.Property.BoxLines | undefined;
932
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
933
+ boxOrient?: csstype.Property.BoxOrient | undefined;
934
+ boxPack?: csstype.Property.BoxPack | undefined;
935
+ clip?: csstype.Property.Clip | undefined;
936
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
937
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
938
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
939
+ imeMode?: csstype.Property.ImeMode | undefined;
940
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
941
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
942
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
943
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
944
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
945
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
946
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
947
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
948
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
949
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
950
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
951
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
952
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
953
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
954
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
955
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
956
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
957
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
958
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
959
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
960
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
961
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
962
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
963
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
964
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
965
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
966
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
967
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
968
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
969
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
970
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
971
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
972
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
973
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
974
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
975
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
976
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
977
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
978
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
979
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
980
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
981
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
982
+ MozOpacity?: csstype.Property.Opacity | undefined;
983
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
984
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
985
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
986
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
987
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
988
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
989
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
990
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
991
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
992
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
993
+ MozTransform?: csstype.Property.Transform | undefined;
994
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
995
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
996
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
997
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
998
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
999
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1000
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1001
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
1002
+ msImeMode?: csstype.Property.ImeMode | undefined;
1003
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
1004
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1005
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1006
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1007
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1008
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1009
+ OAnimationName?: csstype.Property.AnimationName | undefined;
1010
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1011
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1012
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1013
+ OBorderImage?: csstype.Property.BorderImage | undefined;
1014
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
1015
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1016
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
1017
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
1018
+ OTransform?: csstype.Property.Transform | undefined;
1019
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1020
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
1021
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1022
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1023
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1024
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1025
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
1026
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
1027
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
1028
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1029
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
1030
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1031
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1032
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1033
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1034
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1035
+ clipRule?: csstype.Property.ClipRule | undefined;
1036
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1037
+ colorRendering?: csstype.Property.ColorRendering | undefined;
1038
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1039
+ fill?: csstype.Property.Fill | undefined;
1040
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1041
+ fillRule?: csstype.Property.FillRule | undefined;
1042
+ floodColor?: csstype.Property.FloodColor | undefined;
1043
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1044
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1045
+ lightingColor?: csstype.Property.LightingColor | undefined;
1046
+ marker?: csstype.Property.Marker | undefined;
1047
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1048
+ markerMid?: csstype.Property.MarkerMid | undefined;
1049
+ markerStart?: csstype.Property.MarkerStart | undefined;
1050
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1051
+ stopColor?: csstype.Property.StopColor | undefined;
1052
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1053
+ stroke?: csstype.Property.Stroke | undefined;
1054
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1055
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1056
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1057
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1058
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1059
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1060
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1061
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1062
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1063
+ };
1064
+ }, HTMLElement>;
1065
+ context: unknown;
1066
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
1067
+ forceUpdate(callback?: (() => void) | undefined): void;
1068
+ readonly props: Readonly<StormcloudPlayerProps>;
1069
+ refs: {
1070
+ [key: string]: React.ReactInstance;
1071
+ };
1072
+ componentDidMount?(): void;
1073
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
1074
+ componentWillUnmount?(): void;
1075
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1076
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
1077
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
1078
+ componentWillMount?(): void;
1079
+ UNSAFE_componentWillMount?(): void;
1080
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1081
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1082
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1083
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1084
+ };
1085
+ new (props: StormcloudPlayerProps, context: any): {
1086
+ state: StormcloudPlayerState;
1087
+ wrapper?: HTMLElement;
1088
+ player?: any;
1089
+ references: {
1090
+ wrapper: (wrapper: HTMLElement) => void;
1091
+ player: (player: any) => void;
1092
+ };
1093
+ getActivePlayer: (src?: string) => PlayerConfig | null;
1094
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
1095
+ handleReady: () => void;
1096
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
1097
+ getCurrentTime: () => number | null;
1098
+ getSecondsLoaded: () => number | null;
1099
+ getDuration: () => number | null;
1100
+ getInternalPlayer: (key?: string) => any;
1101
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
1102
+ render(): React.DetailedReactHTMLElement<{
1103
+ ref: ((wrapper: HTMLElement) => void) | undefined;
1104
+ style: {
1105
+ width: string | number | undefined;
1106
+ height: string | number | undefined;
1107
+ accentColor?: csstype.Property.AccentColor | undefined;
1108
+ alignContent?: csstype.Property.AlignContent | undefined;
1109
+ alignItems?: csstype.Property.AlignItems | undefined;
1110
+ alignSelf?: csstype.Property.AlignSelf | undefined;
1111
+ alignTracks?: csstype.Property.AlignTracks | undefined;
1112
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
1113
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1114
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
1115
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1116
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
1117
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1118
+ animationName?: csstype.Property.AnimationName | undefined;
1119
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
1120
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
1121
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
1122
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
1123
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1124
+ appearance?: csstype.Property.Appearance | undefined;
1125
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
1126
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
1127
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1128
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
1129
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
1130
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
1131
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
1132
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
1133
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1134
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
1135
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
1136
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
1137
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1138
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
1139
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
1140
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
1141
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
1142
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
1143
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
1144
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
1145
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
1146
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
1147
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
1148
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
1149
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
1150
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1151
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1152
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
1153
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
1154
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
1155
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
1156
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
1157
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
1158
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
1159
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1160
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
1161
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
1162
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
1163
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1164
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1165
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1166
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1167
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1168
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
1169
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
1170
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
1171
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
1172
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
1173
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
1174
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
1175
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
1176
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
1177
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
1178
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
1179
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
1180
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
1181
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1182
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1183
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
1184
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
1185
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
1186
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
1187
+ boxShadow?: csstype.Property.BoxShadow | undefined;
1188
+ boxSizing?: csstype.Property.BoxSizing | undefined;
1189
+ breakAfter?: csstype.Property.BreakAfter | undefined;
1190
+ breakBefore?: csstype.Property.BreakBefore | undefined;
1191
+ breakInside?: csstype.Property.BreakInside | undefined;
1192
+ captionSide?: csstype.Property.CaptionSide | undefined;
1193
+ caretColor?: csstype.Property.CaretColor | undefined;
1194
+ caretShape?: csstype.Property.CaretShape | undefined;
1195
+ clear?: csstype.Property.Clear | undefined;
1196
+ clipPath?: csstype.Property.ClipPath | undefined;
1197
+ color?: csstype.Property.Color | undefined;
1198
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1199
+ colorScheme?: csstype.Property.ColorScheme | undefined;
1200
+ columnCount?: csstype.Property.ColumnCount | undefined;
1201
+ columnFill?: csstype.Property.ColumnFill | undefined;
1202
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
1203
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1204
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1205
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1206
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
1207
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1208
+ contain?: csstype.Property.Contain | undefined;
1209
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
1210
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
1211
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
1212
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
1213
+ containerName?: csstype.Property.ContainerName | undefined;
1214
+ containerType?: csstype.Property.ContainerType | undefined;
1215
+ content?: csstype.Property.Content | undefined;
1216
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
1217
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
1218
+ counterReset?: csstype.Property.CounterReset | undefined;
1219
+ counterSet?: csstype.Property.CounterSet | undefined;
1220
+ cursor?: csstype.Property.Cursor | undefined;
1221
+ direction?: csstype.Property.Direction | undefined;
1222
+ display?: csstype.Property.Display | undefined;
1223
+ emptyCells?: csstype.Property.EmptyCells | undefined;
1224
+ filter?: csstype.Property.Filter | undefined;
1225
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1226
+ flexDirection?: csstype.Property.FlexDirection | undefined;
1227
+ flexGrow?: csstype.Property.FlexGrow | undefined;
1228
+ flexShrink?: csstype.Property.FlexShrink | undefined;
1229
+ flexWrap?: csstype.Property.FlexWrap | undefined;
1230
+ float?: csstype.Property.Float | undefined;
1231
+ fontFamily?: csstype.Property.FontFamily | undefined;
1232
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1233
+ fontKerning?: csstype.Property.FontKerning | undefined;
1234
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1235
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
1236
+ fontPalette?: csstype.Property.FontPalette | undefined;
1237
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
1238
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
1239
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
1240
+ fontStretch?: csstype.Property.FontStretch | undefined;
1241
+ fontStyle?: csstype.Property.FontStyle | undefined;
1242
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
1243
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
1244
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
1245
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
1246
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
1247
+ fontVariant?: csstype.Property.FontVariant | undefined;
1248
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
1249
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
1250
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
1251
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
1252
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
1253
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
1254
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
1255
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
1256
+ fontWeight?: csstype.Property.FontWeight | undefined;
1257
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
1258
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
1259
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
1260
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
1261
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
1262
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
1263
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
1264
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
1265
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
1266
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
1267
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
1268
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
1269
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
1270
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
1271
+ hyphens?: csstype.Property.Hyphens | undefined;
1272
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
1273
+ imageRendering?: csstype.Property.ImageRendering | undefined;
1274
+ imageResolution?: csstype.Property.ImageResolution | undefined;
1275
+ initialLetter?: csstype.Property.InitialLetter | undefined;
1276
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
1277
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
1278
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1279
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1280
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1281
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1282
+ isolation?: csstype.Property.Isolation | undefined;
1283
+ justifyContent?: csstype.Property.JustifyContent | undefined;
1284
+ justifyItems?: csstype.Property.JustifyItems | undefined;
1285
+ justifySelf?: csstype.Property.JustifySelf | undefined;
1286
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
1287
+ left?: csstype.Property.Left<string | number> | undefined;
1288
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
1289
+ lineBreak?: csstype.Property.LineBreak | undefined;
1290
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
1291
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
1292
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
1293
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
1294
+ listStyleType?: csstype.Property.ListStyleType | undefined;
1295
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
1296
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
1297
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
1298
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1299
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1300
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
1301
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
1302
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
1303
+ marginTrim?: csstype.Property.MarginTrim | undefined;
1304
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
1305
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1306
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
1307
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
1308
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
1309
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
1310
+ maskClip?: csstype.Property.MaskClip | undefined;
1311
+ maskComposite?: csstype.Property.MaskComposite | undefined;
1312
+ maskImage?: csstype.Property.MaskImage | undefined;
1313
+ maskMode?: csstype.Property.MaskMode | undefined;
1314
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
1315
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
1316
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
1317
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
1318
+ maskType?: csstype.Property.MaskType | undefined;
1319
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
1320
+ mathDepth?: csstype.Property.MathDepth | undefined;
1321
+ mathShift?: csstype.Property.MathShift | undefined;
1322
+ mathStyle?: csstype.Property.MathStyle | undefined;
1323
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
1324
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
1325
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
1326
+ maxLines?: csstype.Property.MaxLines | undefined;
1327
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
1328
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
1329
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
1330
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
1331
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
1332
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
1333
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
1334
+ motionPath?: csstype.Property.OffsetPath | undefined;
1335
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
1336
+ objectFit?: csstype.Property.ObjectFit | undefined;
1337
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1338
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
1339
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
1340
+ offsetPath?: csstype.Property.OffsetPath | undefined;
1341
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
1342
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
1343
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
1344
+ opacity?: csstype.Property.Opacity | undefined;
1345
+ order?: csstype.Property.Order | undefined;
1346
+ orphans?: csstype.Property.Orphans | undefined;
1347
+ outlineColor?: csstype.Property.OutlineColor | undefined;
1348
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
1349
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
1350
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1351
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
1352
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
1353
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
1354
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
1355
+ overflowInline?: csstype.Property.OverflowInline | undefined;
1356
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
1357
+ overflowX?: csstype.Property.OverflowX | undefined;
1358
+ overflowY?: csstype.Property.OverflowY | undefined;
1359
+ overlay?: csstype.Property.Overlay | undefined;
1360
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
1361
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
1362
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
1363
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
1364
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
1365
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
1366
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
1367
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1368
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1369
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
1370
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
1371
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
1372
+ page?: csstype.Property.Page | undefined;
1373
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
1374
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
1375
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
1376
+ paintOrder?: csstype.Property.PaintOrder | undefined;
1377
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
1378
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1379
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
1380
+ position?: csstype.Property.Position | undefined;
1381
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1382
+ quotes?: csstype.Property.Quotes | undefined;
1383
+ resize?: csstype.Property.Resize | undefined;
1384
+ right?: csstype.Property.Right<string | number> | undefined;
1385
+ rotate?: csstype.Property.Rotate | undefined;
1386
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
1387
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
1388
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
1389
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
1390
+ scale?: csstype.Property.Scale | undefined;
1391
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
1392
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
1393
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
1394
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
1395
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
1396
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
1397
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
1398
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
1399
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
1400
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
1401
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
1402
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
1403
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
1404
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
1405
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
1406
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
1407
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
1408
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
1409
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
1410
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
1411
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
1412
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
1413
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
1414
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
1415
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
1416
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
1417
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
1418
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
1419
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
1420
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
1421
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1422
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
1423
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
1424
+ tableLayout?: csstype.Property.TableLayout | undefined;
1425
+ textAlign?: csstype.Property.TextAlign | undefined;
1426
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
1427
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
1428
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1429
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1430
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1431
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
1432
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1433
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
1434
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1435
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1436
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1437
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
1438
+ textJustify?: csstype.Property.TextJustify | undefined;
1439
+ textOrientation?: csstype.Property.TextOrientation | undefined;
1440
+ textOverflow?: csstype.Property.TextOverflow | undefined;
1441
+ textRendering?: csstype.Property.TextRendering | undefined;
1442
+ textShadow?: csstype.Property.TextShadow | undefined;
1443
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1444
+ textTransform?: csstype.Property.TextTransform | undefined;
1445
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
1446
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1447
+ textWrap?: csstype.Property.TextWrap | undefined;
1448
+ timelineScope?: csstype.Property.TimelineScope | undefined;
1449
+ top?: csstype.Property.Top<string | number> | undefined;
1450
+ touchAction?: csstype.Property.TouchAction | undefined;
1451
+ transform?: csstype.Property.Transform | undefined;
1452
+ transformBox?: csstype.Property.TransformBox | undefined;
1453
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1454
+ transformStyle?: csstype.Property.TransformStyle | undefined;
1455
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
1456
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1457
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1458
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
1459
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1460
+ translate?: csstype.Property.Translate<string | number> | undefined;
1461
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
1462
+ userSelect?: csstype.Property.UserSelect | undefined;
1463
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
1464
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
1465
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
1466
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
1467
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
1468
+ visibility?: csstype.Property.Visibility | undefined;
1469
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
1470
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
1471
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
1472
+ widows?: csstype.Property.Widows | undefined;
1473
+ willChange?: csstype.Property.WillChange | undefined;
1474
+ wordBreak?: csstype.Property.WordBreak | undefined;
1475
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
1476
+ wordWrap?: csstype.Property.WordWrap | undefined;
1477
+ writingMode?: csstype.Property.WritingMode | undefined;
1478
+ zIndex?: csstype.Property.ZIndex | undefined;
1479
+ zoom?: csstype.Property.Zoom | undefined;
1480
+ all?: csstype.Property.All | undefined;
1481
+ animation?: csstype.Property.Animation<string & {}> | undefined;
1482
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
1483
+ background?: csstype.Property.Background<string | number> | undefined;
1484
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
1485
+ border?: csstype.Property.Border<string | number> | undefined;
1486
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
1487
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
1488
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
1489
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
1490
+ borderColor?: csstype.Property.BorderColor | undefined;
1491
+ borderImage?: csstype.Property.BorderImage | undefined;
1492
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
1493
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
1494
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
1495
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
1496
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1497
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
1498
+ borderStyle?: csstype.Property.BorderStyle | undefined;
1499
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
1500
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
1501
+ caret?: csstype.Property.Caret | undefined;
1502
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1503
+ columns?: csstype.Property.Columns<string | number> | undefined;
1504
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
1505
+ container?: csstype.Property.Container | undefined;
1506
+ flex?: csstype.Property.Flex<string | number> | undefined;
1507
+ flexFlow?: csstype.Property.FlexFlow | undefined;
1508
+ font?: csstype.Property.Font | undefined;
1509
+ gap?: csstype.Property.Gap<string | number> | undefined;
1510
+ grid?: csstype.Property.Grid | undefined;
1511
+ gridArea?: csstype.Property.GridArea | undefined;
1512
+ gridColumn?: csstype.Property.GridColumn | undefined;
1513
+ gridRow?: csstype.Property.GridRow | undefined;
1514
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
1515
+ inset?: csstype.Property.Inset<string | number> | undefined;
1516
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1517
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
1518
+ lineClamp?: csstype.Property.LineClamp | undefined;
1519
+ listStyle?: csstype.Property.ListStyle | undefined;
1520
+ margin?: csstype.Property.Margin<string | number> | undefined;
1521
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
1522
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
1523
+ mask?: csstype.Property.Mask<string | number> | undefined;
1524
+ maskBorder?: csstype.Property.MaskBorder | undefined;
1525
+ motion?: csstype.Property.Offset<string | number> | undefined;
1526
+ offset?: csstype.Property.Offset<string | number> | undefined;
1527
+ outline?: csstype.Property.Outline<string | number> | undefined;
1528
+ overflow?: csstype.Property.Overflow | undefined;
1529
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
1530
+ padding?: csstype.Property.Padding<string | number> | undefined;
1531
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
1532
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
1533
+ placeContent?: csstype.Property.PlaceContent | undefined;
1534
+ placeItems?: csstype.Property.PlaceItems | undefined;
1535
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
1536
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1537
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
1538
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
1539
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
1540
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
1541
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
1542
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1543
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
1544
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
1545
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
1546
+ transition?: csstype.Property.Transition<string & {}> | undefined;
1547
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
1548
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1549
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1550
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1551
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1552
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1553
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
1554
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1555
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1556
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
1557
+ MozBinding?: csstype.Property.MozBinding | undefined;
1558
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
1559
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1560
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1561
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1562
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
1563
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
1564
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1565
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1566
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
1567
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
1568
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
1569
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
1570
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1571
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1572
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1573
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1574
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
1575
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1576
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1577
+ MozHyphens?: csstype.Property.Hyphens | undefined;
1578
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
1579
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1580
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1581
+ MozOrient?: csstype.Property.MozOrient | undefined;
1582
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1583
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1584
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
1585
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
1586
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
1587
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1588
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1589
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
1590
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
1591
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
1592
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1593
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1594
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
1595
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
1596
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
1597
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
1598
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
1599
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
1600
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
1601
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
1602
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
1603
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
1604
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
1605
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
1606
+ msFilter?: csstype.Property.MsFilter | undefined;
1607
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
1608
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
1609
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
1610
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
1611
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
1612
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
1613
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
1614
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
1615
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
1616
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
1617
+ msHyphens?: csstype.Property.Hyphens | undefined;
1618
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
1619
+ msLineBreak?: csstype.Property.LineBreak | undefined;
1620
+ msOrder?: csstype.Property.Order | undefined;
1621
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
1622
+ msOverflowX?: csstype.Property.OverflowX | undefined;
1623
+ msOverflowY?: csstype.Property.OverflowY | undefined;
1624
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
1625
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
1626
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
1627
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
1628
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
1629
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
1630
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
1631
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
1632
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
1633
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
1634
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
1635
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
1636
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
1637
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
1638
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
1639
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
1640
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
1641
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
1642
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
1643
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
1644
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
1645
+ msTouchAction?: csstype.Property.TouchAction | undefined;
1646
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
1647
+ msTransform?: csstype.Property.Transform | undefined;
1648
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1649
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1650
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1651
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1652
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1653
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
1654
+ msWordBreak?: csstype.Property.WordBreak | undefined;
1655
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
1656
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
1657
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
1658
+ msWritingMode?: csstype.Property.WritingMode | undefined;
1659
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
1660
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
1661
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
1662
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1663
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1664
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1665
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1666
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1667
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
1668
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1669
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1670
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
1671
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
1672
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1673
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1674
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1675
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1676
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
1677
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
1678
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
1679
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1680
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1681
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1682
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1683
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1684
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
1685
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
1686
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
1687
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
1688
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
1689
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
1690
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
1691
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1692
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1693
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1694
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
1695
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1696
+ WebkitFilter?: csstype.Property.Filter | undefined;
1697
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1698
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
1699
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
1700
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
1701
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
1702
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1703
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
1704
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1705
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
1706
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
1707
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
1708
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
1709
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
1710
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
1711
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
1712
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1713
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1714
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
1715
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1716
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
1717
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
1718
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
1719
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
1720
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
1721
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
1722
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
1723
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
1724
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
1725
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
1726
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
1727
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
1728
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
1729
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
1730
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
1731
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
1732
+ WebkitOrder?: csstype.Property.Order | undefined;
1733
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
1734
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1735
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1736
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
1737
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1738
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1739
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
1740
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
1741
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1742
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
1743
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
1744
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1745
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1746
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1747
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1748
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1749
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1750
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1751
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
1752
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
1753
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1754
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
1755
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
1756
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1757
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
1758
+ WebkitTransform?: csstype.Property.Transform | undefined;
1759
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1760
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
1761
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1762
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1763
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1764
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1765
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
1766
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
1767
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
1768
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
1769
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
1770
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1771
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
1772
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
1773
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
1774
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
1775
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
1776
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
1777
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
1778
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
1779
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
1780
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
1781
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
1782
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
1783
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1784
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1785
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
1786
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
1787
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
1788
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
1789
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
1790
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
1791
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
1792
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
1793
+ azimuth?: csstype.Property.Azimuth | undefined;
1794
+ boxAlign?: csstype.Property.BoxAlign | undefined;
1795
+ boxDirection?: csstype.Property.BoxDirection | undefined;
1796
+ boxFlex?: csstype.Property.BoxFlex | undefined;
1797
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1798
+ boxLines?: csstype.Property.BoxLines | undefined;
1799
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1800
+ boxOrient?: csstype.Property.BoxOrient | undefined;
1801
+ boxPack?: csstype.Property.BoxPack | undefined;
1802
+ clip?: csstype.Property.Clip | undefined;
1803
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
1804
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
1805
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
1806
+ imeMode?: csstype.Property.ImeMode | undefined;
1807
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1808
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1809
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1810
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
1811
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1812
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1813
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
1814
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
1815
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
1816
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
1817
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
1818
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
1819
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
1820
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
1821
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
1822
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1823
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
1824
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1825
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
1826
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
1827
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
1828
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
1829
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
1830
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1831
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1832
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
1833
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1834
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1835
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1836
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1837
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1838
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1839
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1840
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
1841
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
1842
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
1843
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1844
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
1845
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
1846
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
1847
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
1848
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
1849
+ MozOpacity?: csstype.Property.Opacity | undefined;
1850
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
1851
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
1852
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
1853
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1854
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1855
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1856
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
1857
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1858
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1859
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1860
+ MozTransform?: csstype.Property.Transform | undefined;
1861
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1862
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1863
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1864
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1865
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1866
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1867
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1868
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
1869
+ msImeMode?: csstype.Property.ImeMode | undefined;
1870
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
1871
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1872
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1873
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1874
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1875
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1876
+ OAnimationName?: csstype.Property.AnimationName | undefined;
1877
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1878
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1879
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1880
+ OBorderImage?: csstype.Property.BorderImage | undefined;
1881
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
1882
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1883
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
1884
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
1885
+ OTransform?: csstype.Property.Transform | undefined;
1886
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1887
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
1888
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1889
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1890
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1891
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1892
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
1893
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
1894
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
1895
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1896
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
1897
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1898
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1899
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1900
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1901
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1902
+ clipRule?: csstype.Property.ClipRule | undefined;
1903
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1904
+ colorRendering?: csstype.Property.ColorRendering | undefined;
1905
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1906
+ fill?: csstype.Property.Fill | undefined;
1907
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1908
+ fillRule?: csstype.Property.FillRule | undefined;
1909
+ floodColor?: csstype.Property.FloodColor | undefined;
1910
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1911
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1912
+ lightingColor?: csstype.Property.LightingColor | undefined;
1913
+ marker?: csstype.Property.Marker | undefined;
1914
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1915
+ markerMid?: csstype.Property.MarkerMid | undefined;
1916
+ markerStart?: csstype.Property.MarkerStart | undefined;
1917
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1918
+ stopColor?: csstype.Property.StopColor | undefined;
1919
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1920
+ stroke?: csstype.Property.Stroke | undefined;
1921
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1922
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1923
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1924
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1925
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1926
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1927
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1928
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1929
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1930
+ };
1931
+ }, HTMLElement>;
1932
+ context: unknown;
1933
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
1934
+ forceUpdate(callback?: (() => void) | undefined): void;
1935
+ readonly props: Readonly<StormcloudPlayerProps>;
1936
+ refs: {
1937
+ [key: string]: React.ReactInstance;
1938
+ };
1939
+ componentDidMount?(): void;
1940
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
1941
+ componentWillUnmount?(): void;
1942
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1943
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
1944
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
1945
+ componentWillMount?(): void;
1946
+ UNSAFE_componentWillMount?(): void;
1947
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1948
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1949
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1950
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1951
+ };
1952
+ displayName: string;
1953
+ defaultProps: {
1954
+ fallback: null;
1955
+ wrapper: string;
1956
+ };
1957
+ addCustomPlayer: (player: PlayerConfig) => void;
1958
+ removeCustomPlayers: () => void;
1959
+ canPlay: (src: string) => boolean;
1960
+ canEnablePIP: (src: string) => boolean;
1961
+ contextType?: React.Context<any> | undefined;
1962
+ };
1963
+ declare const StormcloudPlayer: {
1964
+ new (props: StormcloudPlayerProps): {
1965
+ state: StormcloudPlayerState;
1966
+ wrapper?: HTMLElement;
1967
+ player?: any;
1968
+ references: {
1969
+ wrapper: (wrapper: HTMLElement) => void;
1970
+ player: (player: any) => void;
1971
+ };
1972
+ getActivePlayer: (src?: string) => PlayerConfig | null;
1973
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
1974
+ handleReady: () => void;
1975
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
1976
+ getCurrentTime: () => number | null;
1977
+ getSecondsLoaded: () => number | null;
1978
+ getDuration: () => number | null;
1979
+ getInternalPlayer: (key?: string) => any;
1980
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
1981
+ render(): React.DetailedReactHTMLElement<{
1982
+ ref: ((wrapper: HTMLElement) => void) | undefined;
1983
+ style: {
1984
+ width: string | number | undefined;
1985
+ height: string | number | undefined;
1986
+ accentColor?: csstype.Property.AccentColor | undefined;
1987
+ alignContent?: csstype.Property.AlignContent | undefined;
1988
+ alignItems?: csstype.Property.AlignItems | undefined;
1989
+ alignSelf?: csstype.Property.AlignSelf | undefined;
1990
+ alignTracks?: csstype.Property.AlignTracks | undefined;
1991
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
1992
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1993
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
1994
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1995
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
1996
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1997
+ animationName?: csstype.Property.AnimationName | undefined;
1998
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
1999
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
2000
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
2001
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
2002
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2003
+ appearance?: csstype.Property.Appearance | undefined;
2004
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
2005
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
2006
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2007
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
2008
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
2009
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
2010
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
2011
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
2012
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2013
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
2014
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2015
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2016
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2017
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
2018
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2019
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2020
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2021
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2022
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2023
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2024
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2025
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2026
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2027
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2028
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2029
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2030
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2031
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
2032
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
2033
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
2034
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
2035
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
2036
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
2037
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
2038
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2039
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
2040
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2041
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2042
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2043
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2044
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2045
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2046
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2047
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2048
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2049
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2050
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2051
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2052
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
2053
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
2054
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
2055
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
2056
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
2057
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
2058
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
2059
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
2060
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2061
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2062
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
2063
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
2064
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
2065
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2066
+ boxShadow?: csstype.Property.BoxShadow | undefined;
2067
+ boxSizing?: csstype.Property.BoxSizing | undefined;
2068
+ breakAfter?: csstype.Property.BreakAfter | undefined;
2069
+ breakBefore?: csstype.Property.BreakBefore | undefined;
2070
+ breakInside?: csstype.Property.BreakInside | undefined;
2071
+ captionSide?: csstype.Property.CaptionSide | undefined;
2072
+ caretColor?: csstype.Property.CaretColor | undefined;
2073
+ caretShape?: csstype.Property.CaretShape | undefined;
2074
+ clear?: csstype.Property.Clear | undefined;
2075
+ clipPath?: csstype.Property.ClipPath | undefined;
2076
+ color?: csstype.Property.Color | undefined;
2077
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2078
+ colorScheme?: csstype.Property.ColorScheme | undefined;
2079
+ columnCount?: csstype.Property.ColumnCount | undefined;
2080
+ columnFill?: csstype.Property.ColumnFill | undefined;
2081
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
2082
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2083
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2084
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2085
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
2086
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2087
+ contain?: csstype.Property.Contain | undefined;
2088
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
2089
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
2090
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
2091
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
2092
+ containerName?: csstype.Property.ContainerName | undefined;
2093
+ containerType?: csstype.Property.ContainerType | undefined;
2094
+ content?: csstype.Property.Content | undefined;
2095
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
2096
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
2097
+ counterReset?: csstype.Property.CounterReset | undefined;
2098
+ counterSet?: csstype.Property.CounterSet | undefined;
2099
+ cursor?: csstype.Property.Cursor | undefined;
2100
+ direction?: csstype.Property.Direction | undefined;
2101
+ display?: csstype.Property.Display | undefined;
2102
+ emptyCells?: csstype.Property.EmptyCells | undefined;
2103
+ filter?: csstype.Property.Filter | undefined;
2104
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2105
+ flexDirection?: csstype.Property.FlexDirection | undefined;
2106
+ flexGrow?: csstype.Property.FlexGrow | undefined;
2107
+ flexShrink?: csstype.Property.FlexShrink | undefined;
2108
+ flexWrap?: csstype.Property.FlexWrap | undefined;
2109
+ float?: csstype.Property.Float | undefined;
2110
+ fontFamily?: csstype.Property.FontFamily | undefined;
2111
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2112
+ fontKerning?: csstype.Property.FontKerning | undefined;
2113
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2114
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
2115
+ fontPalette?: csstype.Property.FontPalette | undefined;
2116
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
2117
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2118
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2119
+ fontStretch?: csstype.Property.FontStretch | undefined;
2120
+ fontStyle?: csstype.Property.FontStyle | undefined;
2121
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2122
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
2123
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
2124
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
2125
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
2126
+ fontVariant?: csstype.Property.FontVariant | undefined;
2127
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
2128
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
2129
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
2130
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
2131
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2132
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
2133
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
2134
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
2135
+ fontWeight?: csstype.Property.FontWeight | undefined;
2136
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
2137
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
2138
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
2139
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
2140
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
2141
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
2142
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
2143
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
2144
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
2145
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
2146
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
2147
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
2148
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2149
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
2150
+ hyphens?: csstype.Property.Hyphens | undefined;
2151
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
2152
+ imageRendering?: csstype.Property.ImageRendering | undefined;
2153
+ imageResolution?: csstype.Property.ImageResolution | undefined;
2154
+ initialLetter?: csstype.Property.InitialLetter | undefined;
2155
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
2156
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
2157
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2158
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2159
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2160
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2161
+ isolation?: csstype.Property.Isolation | undefined;
2162
+ justifyContent?: csstype.Property.JustifyContent | undefined;
2163
+ justifyItems?: csstype.Property.JustifyItems | undefined;
2164
+ justifySelf?: csstype.Property.JustifySelf | undefined;
2165
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
2166
+ left?: csstype.Property.Left<string | number> | undefined;
2167
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
2168
+ lineBreak?: csstype.Property.LineBreak | undefined;
2169
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
2170
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
2171
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
2172
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
2173
+ listStyleType?: csstype.Property.ListStyleType | undefined;
2174
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
2175
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
2176
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
2177
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2178
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2179
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
2180
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
2181
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
2182
+ marginTrim?: csstype.Property.MarginTrim | undefined;
2183
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
2184
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2185
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2186
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
2187
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
2188
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2189
+ maskClip?: csstype.Property.MaskClip | undefined;
2190
+ maskComposite?: csstype.Property.MaskComposite | undefined;
2191
+ maskImage?: csstype.Property.MaskImage | undefined;
2192
+ maskMode?: csstype.Property.MaskMode | undefined;
2193
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
2194
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
2195
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
2196
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
2197
+ maskType?: csstype.Property.MaskType | undefined;
2198
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
2199
+ mathDepth?: csstype.Property.MathDepth | undefined;
2200
+ mathShift?: csstype.Property.MathShift | undefined;
2201
+ mathStyle?: csstype.Property.MathStyle | undefined;
2202
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
2203
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
2204
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2205
+ maxLines?: csstype.Property.MaxLines | undefined;
2206
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
2207
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
2208
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
2209
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
2210
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
2211
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
2212
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2213
+ motionPath?: csstype.Property.OffsetPath | undefined;
2214
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
2215
+ objectFit?: csstype.Property.ObjectFit | undefined;
2216
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2217
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
2218
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2219
+ offsetPath?: csstype.Property.OffsetPath | undefined;
2220
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
2221
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
2222
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
2223
+ opacity?: csstype.Property.Opacity | undefined;
2224
+ order?: csstype.Property.Order | undefined;
2225
+ orphans?: csstype.Property.Orphans | undefined;
2226
+ outlineColor?: csstype.Property.OutlineColor | undefined;
2227
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
2228
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
2229
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2230
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
2231
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
2232
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
2233
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
2234
+ overflowInline?: csstype.Property.OverflowInline | undefined;
2235
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
2236
+ overflowX?: csstype.Property.OverflowX | undefined;
2237
+ overflowY?: csstype.Property.OverflowY | undefined;
2238
+ overlay?: csstype.Property.Overlay | undefined;
2239
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
2240
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
2241
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
2242
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
2243
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
2244
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
2245
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
2246
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2247
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2248
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
2249
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
2250
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
2251
+ page?: csstype.Property.Page | undefined;
2252
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2253
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2254
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2255
+ paintOrder?: csstype.Property.PaintOrder | undefined;
2256
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
2257
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2258
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
2259
+ position?: csstype.Property.Position | undefined;
2260
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2261
+ quotes?: csstype.Property.Quotes | undefined;
2262
+ resize?: csstype.Property.Resize | undefined;
2263
+ right?: csstype.Property.Right<string | number> | undefined;
2264
+ rotate?: csstype.Property.Rotate | undefined;
2265
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
2266
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
2267
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
2268
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
2269
+ scale?: csstype.Property.Scale | undefined;
2270
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
2271
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
2272
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
2273
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2274
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
2275
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
2276
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2277
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2278
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2279
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
2280
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
2281
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
2282
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
2283
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
2284
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
2285
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
2286
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
2287
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
2288
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2289
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2290
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2291
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2292
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
2293
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2294
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
2295
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
2296
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
2297
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
2298
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
2299
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
2300
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2301
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
2302
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
2303
+ tableLayout?: csstype.Property.TableLayout | undefined;
2304
+ textAlign?: csstype.Property.TextAlign | undefined;
2305
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
2306
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
2307
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2308
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2309
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2310
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
2311
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2312
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
2313
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2314
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2315
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2316
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
2317
+ textJustify?: csstype.Property.TextJustify | undefined;
2318
+ textOrientation?: csstype.Property.TextOrientation | undefined;
2319
+ textOverflow?: csstype.Property.TextOverflow | undefined;
2320
+ textRendering?: csstype.Property.TextRendering | undefined;
2321
+ textShadow?: csstype.Property.TextShadow | undefined;
2322
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2323
+ textTransform?: csstype.Property.TextTransform | undefined;
2324
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
2325
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2326
+ textWrap?: csstype.Property.TextWrap | undefined;
2327
+ timelineScope?: csstype.Property.TimelineScope | undefined;
2328
+ top?: csstype.Property.Top<string | number> | undefined;
2329
+ touchAction?: csstype.Property.TouchAction | undefined;
2330
+ transform?: csstype.Property.Transform | undefined;
2331
+ transformBox?: csstype.Property.TransformBox | undefined;
2332
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2333
+ transformStyle?: csstype.Property.TransformStyle | undefined;
2334
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
2335
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2336
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2337
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
2338
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2339
+ translate?: csstype.Property.Translate<string | number> | undefined;
2340
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
2341
+ userSelect?: csstype.Property.UserSelect | undefined;
2342
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
2343
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
2344
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
2345
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
2346
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
2347
+ visibility?: csstype.Property.Visibility | undefined;
2348
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
2349
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
2350
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
2351
+ widows?: csstype.Property.Widows | undefined;
2352
+ willChange?: csstype.Property.WillChange | undefined;
2353
+ wordBreak?: csstype.Property.WordBreak | undefined;
2354
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
2355
+ wordWrap?: csstype.Property.WordWrap | undefined;
2356
+ writingMode?: csstype.Property.WritingMode | undefined;
2357
+ zIndex?: csstype.Property.ZIndex | undefined;
2358
+ zoom?: csstype.Property.Zoom | undefined;
2359
+ all?: csstype.Property.All | undefined;
2360
+ animation?: csstype.Property.Animation<string & {}> | undefined;
2361
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
2362
+ background?: csstype.Property.Background<string | number> | undefined;
2363
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
2364
+ border?: csstype.Property.Border<string | number> | undefined;
2365
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
2366
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
2367
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
2368
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
2369
+ borderColor?: csstype.Property.BorderColor | undefined;
2370
+ borderImage?: csstype.Property.BorderImage | undefined;
2371
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
2372
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
2373
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
2374
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
2375
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2376
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
2377
+ borderStyle?: csstype.Property.BorderStyle | undefined;
2378
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
2379
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
2380
+ caret?: csstype.Property.Caret | undefined;
2381
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2382
+ columns?: csstype.Property.Columns<string | number> | undefined;
2383
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
2384
+ container?: csstype.Property.Container | undefined;
2385
+ flex?: csstype.Property.Flex<string | number> | undefined;
2386
+ flexFlow?: csstype.Property.FlexFlow | undefined;
2387
+ font?: csstype.Property.Font | undefined;
2388
+ gap?: csstype.Property.Gap<string | number> | undefined;
2389
+ grid?: csstype.Property.Grid | undefined;
2390
+ gridArea?: csstype.Property.GridArea | undefined;
2391
+ gridColumn?: csstype.Property.GridColumn | undefined;
2392
+ gridRow?: csstype.Property.GridRow | undefined;
2393
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
2394
+ inset?: csstype.Property.Inset<string | number> | undefined;
2395
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2396
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
2397
+ lineClamp?: csstype.Property.LineClamp | undefined;
2398
+ listStyle?: csstype.Property.ListStyle | undefined;
2399
+ margin?: csstype.Property.Margin<string | number> | undefined;
2400
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
2401
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
2402
+ mask?: csstype.Property.Mask<string | number> | undefined;
2403
+ maskBorder?: csstype.Property.MaskBorder | undefined;
2404
+ motion?: csstype.Property.Offset<string | number> | undefined;
2405
+ offset?: csstype.Property.Offset<string | number> | undefined;
2406
+ outline?: csstype.Property.Outline<string | number> | undefined;
2407
+ overflow?: csstype.Property.Overflow | undefined;
2408
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
2409
+ padding?: csstype.Property.Padding<string | number> | undefined;
2410
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
2411
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
2412
+ placeContent?: csstype.Property.PlaceContent | undefined;
2413
+ placeItems?: csstype.Property.PlaceItems | undefined;
2414
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
2415
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2416
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
2417
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
2418
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
2419
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
2420
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
2421
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2422
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
2423
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
2424
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
2425
+ transition?: csstype.Property.Transition<string & {}> | undefined;
2426
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
2427
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2428
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2429
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2430
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2431
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2432
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
2433
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2434
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2435
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
2436
+ MozBinding?: csstype.Property.MozBinding | undefined;
2437
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
2438
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2439
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2440
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2441
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
2442
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
2443
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2444
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2445
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
2446
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
2447
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
2448
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
2449
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2450
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2451
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2452
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2453
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
2454
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2455
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2456
+ MozHyphens?: csstype.Property.Hyphens | undefined;
2457
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
2458
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2459
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2460
+ MozOrient?: csstype.Property.MozOrient | undefined;
2461
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2462
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2463
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
2464
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
2465
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
2466
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2467
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2468
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
2469
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
2470
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
2471
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2472
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
2473
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
2474
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
2475
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
2476
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
2477
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
2478
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
2479
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
2480
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
2481
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
2482
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
2483
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
2484
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
2485
+ msFilter?: csstype.Property.MsFilter | undefined;
2486
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
2487
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
2488
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
2489
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
2490
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
2491
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
2492
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
2493
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
2494
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
2495
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
2496
+ msHyphens?: csstype.Property.Hyphens | undefined;
2497
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
2498
+ msLineBreak?: csstype.Property.LineBreak | undefined;
2499
+ msOrder?: csstype.Property.Order | undefined;
2500
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
2501
+ msOverflowX?: csstype.Property.OverflowX | undefined;
2502
+ msOverflowY?: csstype.Property.OverflowY | undefined;
2503
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
2504
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
2505
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
2506
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
2507
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
2508
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
2509
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
2510
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
2511
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
2512
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
2513
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
2514
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
2515
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
2516
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
2517
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
2518
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
2519
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
2520
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
2521
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
2522
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
2523
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
2524
+ msTouchAction?: csstype.Property.TouchAction | undefined;
2525
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
2526
+ msTransform?: csstype.Property.Transform | undefined;
2527
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2528
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2529
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2530
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2531
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2532
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
2533
+ msWordBreak?: csstype.Property.WordBreak | undefined;
2534
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
2535
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
2536
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
2537
+ msWritingMode?: csstype.Property.WritingMode | undefined;
2538
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
2539
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
2540
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
2541
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2542
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2543
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2544
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2545
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2546
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
2547
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2548
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2549
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
2550
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
2551
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2552
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2553
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2554
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2555
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
2556
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
2557
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
2558
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2559
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2560
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2561
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2562
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2563
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2564
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
2565
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
2566
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
2567
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
2568
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
2569
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
2570
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2571
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2572
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2573
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
2574
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2575
+ WebkitFilter?: csstype.Property.Filter | undefined;
2576
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2577
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
2578
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
2579
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
2580
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
2581
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2582
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
2583
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2584
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2585
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2586
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
2587
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
2588
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
2589
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
2590
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
2591
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2592
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2593
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
2594
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2595
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2596
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
2597
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
2598
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2599
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
2600
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
2601
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
2602
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
2603
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
2604
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
2605
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
2606
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
2607
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
2608
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
2609
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
2610
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2611
+ WebkitOrder?: csstype.Property.Order | undefined;
2612
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
2613
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2614
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2615
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
2616
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2617
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2618
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
2619
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2620
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2621
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
2622
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
2623
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2624
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2625
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2626
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2627
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2628
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2629
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2630
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
2631
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
2632
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2633
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
2634
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
2635
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2636
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
2637
+ WebkitTransform?: csstype.Property.Transform | undefined;
2638
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2639
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
2640
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2641
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2642
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2643
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2644
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
2645
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
2646
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
2647
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
2648
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
2649
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2650
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
2651
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
2652
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
2653
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
2654
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
2655
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
2656
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
2657
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
2658
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
2659
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
2660
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
2661
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
2662
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2663
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2664
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
2665
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
2666
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
2667
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
2668
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
2669
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
2670
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
2671
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
2672
+ azimuth?: csstype.Property.Azimuth | undefined;
2673
+ boxAlign?: csstype.Property.BoxAlign | undefined;
2674
+ boxDirection?: csstype.Property.BoxDirection | undefined;
2675
+ boxFlex?: csstype.Property.BoxFlex | undefined;
2676
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2677
+ boxLines?: csstype.Property.BoxLines | undefined;
2678
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2679
+ boxOrient?: csstype.Property.BoxOrient | undefined;
2680
+ boxPack?: csstype.Property.BoxPack | undefined;
2681
+ clip?: csstype.Property.Clip | undefined;
2682
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
2683
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
2684
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
2685
+ imeMode?: csstype.Property.ImeMode | undefined;
2686
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2687
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2688
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2689
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
2690
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2691
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2692
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
2693
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
2694
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
2695
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
2696
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
2697
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
2698
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
2699
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
2700
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
2701
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2702
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
2703
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2704
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
2705
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
2706
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
2707
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
2708
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
2709
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2710
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2711
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
2712
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2713
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2714
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2715
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2716
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2717
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2718
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2719
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
2720
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
2721
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
2722
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2723
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
2724
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
2725
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
2726
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
2727
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
2728
+ MozOpacity?: csstype.Property.Opacity | undefined;
2729
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
2730
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
2731
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
2732
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2733
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
2734
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2735
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
2736
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2737
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2738
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2739
+ MozTransform?: csstype.Property.Transform | undefined;
2740
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2741
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
2742
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
2743
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2744
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2745
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2746
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2747
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
2748
+ msImeMode?: csstype.Property.ImeMode | undefined;
2749
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
2750
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2751
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2752
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2753
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2754
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2755
+ OAnimationName?: csstype.Property.AnimationName | undefined;
2756
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2757
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2758
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2759
+ OBorderImage?: csstype.Property.BorderImage | undefined;
2760
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
2761
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2762
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
2763
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
2764
+ OTransform?: csstype.Property.Transform | undefined;
2765
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2766
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
2767
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2768
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2769
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2770
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2771
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
2772
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
2773
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
2774
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2775
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
2776
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2777
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
2778
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
2779
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2780
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2781
+ clipRule?: csstype.Property.ClipRule | undefined;
2782
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
2783
+ colorRendering?: csstype.Property.ColorRendering | undefined;
2784
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2785
+ fill?: csstype.Property.Fill | undefined;
2786
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
2787
+ fillRule?: csstype.Property.FillRule | undefined;
2788
+ floodColor?: csstype.Property.FloodColor | undefined;
2789
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
2790
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
2791
+ lightingColor?: csstype.Property.LightingColor | undefined;
2792
+ marker?: csstype.Property.Marker | undefined;
2793
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
2794
+ markerMid?: csstype.Property.MarkerMid | undefined;
2795
+ markerStart?: csstype.Property.MarkerStart | undefined;
2796
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
2797
+ stopColor?: csstype.Property.StopColor | undefined;
2798
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
2799
+ stroke?: csstype.Property.Stroke | undefined;
2800
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2801
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2802
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2803
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2804
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2805
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2806
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2807
+ textAnchor?: csstype.Property.TextAnchor | undefined;
2808
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
2809
+ };
2810
+ }, HTMLElement>;
2811
+ context: unknown;
2812
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
2813
+ forceUpdate(callback?: (() => void) | undefined): void;
2814
+ readonly props: Readonly<StormcloudPlayerProps>;
2815
+ refs: {
2816
+ [key: string]: React.ReactInstance;
2817
+ };
2818
+ componentDidMount?(): void;
2819
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
2820
+ componentWillUnmount?(): void;
2821
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
2822
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
2823
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
2824
+ componentWillMount?(): void;
2825
+ UNSAFE_componentWillMount?(): void;
2826
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
2827
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
2828
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
2829
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
2830
+ };
2831
+ new (props: StormcloudPlayerProps, context: any): {
2832
+ state: StormcloudPlayerState;
2833
+ wrapper?: HTMLElement;
2834
+ player?: any;
2835
+ references: {
2836
+ wrapper: (wrapper: HTMLElement) => void;
2837
+ player: (player: any) => void;
2838
+ };
2839
+ getActivePlayer: (src?: string) => PlayerConfig | null;
2840
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
2841
+ handleReady: () => void;
2842
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
2843
+ getCurrentTime: () => number | null;
2844
+ getSecondsLoaded: () => number | null;
2845
+ getDuration: () => number | null;
2846
+ getInternalPlayer: (key?: string) => any;
2847
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
2848
+ render(): React.DetailedReactHTMLElement<{
2849
+ ref: ((wrapper: HTMLElement) => void) | undefined;
2850
+ style: {
2851
+ width: string | number | undefined;
2852
+ height: string | number | undefined;
2853
+ accentColor?: csstype.Property.AccentColor | undefined;
2854
+ alignContent?: csstype.Property.AlignContent | undefined;
2855
+ alignItems?: csstype.Property.AlignItems | undefined;
2856
+ alignSelf?: csstype.Property.AlignSelf | undefined;
2857
+ alignTracks?: csstype.Property.AlignTracks | undefined;
2858
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
2859
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2860
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
2861
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2862
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
2863
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2864
+ animationName?: csstype.Property.AnimationName | undefined;
2865
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
2866
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
2867
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
2868
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
2869
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2870
+ appearance?: csstype.Property.Appearance | undefined;
2871
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
2872
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
2873
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2874
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
2875
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
2876
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
2877
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
2878
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
2879
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2880
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
2881
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2882
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2883
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2884
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
2885
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2886
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2887
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2888
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2889
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2890
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2891
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2892
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2893
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2894
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2895
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2896
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2897
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2898
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
2899
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
2900
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
2901
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
2902
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
2903
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
2904
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
2905
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2906
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
2907
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2908
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2909
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2910
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2911
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2912
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2913
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2914
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2915
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2916
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2917
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2918
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2919
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
2920
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
2921
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
2922
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
2923
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
2924
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
2925
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
2926
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
2927
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2928
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2929
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
2930
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
2931
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
2932
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2933
+ boxShadow?: csstype.Property.BoxShadow | undefined;
2934
+ boxSizing?: csstype.Property.BoxSizing | undefined;
2935
+ breakAfter?: csstype.Property.BreakAfter | undefined;
2936
+ breakBefore?: csstype.Property.BreakBefore | undefined;
2937
+ breakInside?: csstype.Property.BreakInside | undefined;
2938
+ captionSide?: csstype.Property.CaptionSide | undefined;
2939
+ caretColor?: csstype.Property.CaretColor | undefined;
2940
+ caretShape?: csstype.Property.CaretShape | undefined;
2941
+ clear?: csstype.Property.Clear | undefined;
2942
+ clipPath?: csstype.Property.ClipPath | undefined;
2943
+ color?: csstype.Property.Color | undefined;
2944
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2945
+ colorScheme?: csstype.Property.ColorScheme | undefined;
2946
+ columnCount?: csstype.Property.ColumnCount | undefined;
2947
+ columnFill?: csstype.Property.ColumnFill | undefined;
2948
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
2949
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2950
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2951
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2952
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
2953
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2954
+ contain?: csstype.Property.Contain | undefined;
2955
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
2956
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
2957
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
2958
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
2959
+ containerName?: csstype.Property.ContainerName | undefined;
2960
+ containerType?: csstype.Property.ContainerType | undefined;
2961
+ content?: csstype.Property.Content | undefined;
2962
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
2963
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
2964
+ counterReset?: csstype.Property.CounterReset | undefined;
2965
+ counterSet?: csstype.Property.CounterSet | undefined;
2966
+ cursor?: csstype.Property.Cursor | undefined;
2967
+ direction?: csstype.Property.Direction | undefined;
2968
+ display?: csstype.Property.Display | undefined;
2969
+ emptyCells?: csstype.Property.EmptyCells | undefined;
2970
+ filter?: csstype.Property.Filter | undefined;
2971
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2972
+ flexDirection?: csstype.Property.FlexDirection | undefined;
2973
+ flexGrow?: csstype.Property.FlexGrow | undefined;
2974
+ flexShrink?: csstype.Property.FlexShrink | undefined;
2975
+ flexWrap?: csstype.Property.FlexWrap | undefined;
2976
+ float?: csstype.Property.Float | undefined;
2977
+ fontFamily?: csstype.Property.FontFamily | undefined;
2978
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2979
+ fontKerning?: csstype.Property.FontKerning | undefined;
2980
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2981
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
2982
+ fontPalette?: csstype.Property.FontPalette | undefined;
2983
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
2984
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2985
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2986
+ fontStretch?: csstype.Property.FontStretch | undefined;
2987
+ fontStyle?: csstype.Property.FontStyle | undefined;
2988
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2989
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
2990
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
2991
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
2992
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
2993
+ fontVariant?: csstype.Property.FontVariant | undefined;
2994
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
2995
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
2996
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
2997
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
2998
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2999
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
3000
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
3001
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
3002
+ fontWeight?: csstype.Property.FontWeight | undefined;
3003
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
3004
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
3005
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
3006
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
3007
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
3008
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
3009
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
3010
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
3011
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
3012
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
3013
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
3014
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
3015
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3016
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
3017
+ hyphens?: csstype.Property.Hyphens | undefined;
3018
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
3019
+ imageRendering?: csstype.Property.ImageRendering | undefined;
3020
+ imageResolution?: csstype.Property.ImageResolution | undefined;
3021
+ initialLetter?: csstype.Property.InitialLetter | undefined;
3022
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
3023
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
3024
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3025
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3026
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3027
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3028
+ isolation?: csstype.Property.Isolation | undefined;
3029
+ justifyContent?: csstype.Property.JustifyContent | undefined;
3030
+ justifyItems?: csstype.Property.JustifyItems | undefined;
3031
+ justifySelf?: csstype.Property.JustifySelf | undefined;
3032
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
3033
+ left?: csstype.Property.Left<string | number> | undefined;
3034
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
3035
+ lineBreak?: csstype.Property.LineBreak | undefined;
3036
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
3037
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
3038
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
3039
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
3040
+ listStyleType?: csstype.Property.ListStyleType | undefined;
3041
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
3042
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
3043
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
3044
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3045
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3046
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
3047
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
3048
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
3049
+ marginTrim?: csstype.Property.MarginTrim | undefined;
3050
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
3051
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3052
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3053
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
3054
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
3055
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3056
+ maskClip?: csstype.Property.MaskClip | undefined;
3057
+ maskComposite?: csstype.Property.MaskComposite | undefined;
3058
+ maskImage?: csstype.Property.MaskImage | undefined;
3059
+ maskMode?: csstype.Property.MaskMode | undefined;
3060
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
3061
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
3062
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
3063
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
3064
+ maskType?: csstype.Property.MaskType | undefined;
3065
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
3066
+ mathDepth?: csstype.Property.MathDepth | undefined;
3067
+ mathShift?: csstype.Property.MathShift | undefined;
3068
+ mathStyle?: csstype.Property.MathStyle | undefined;
3069
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
3070
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
3071
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3072
+ maxLines?: csstype.Property.MaxLines | undefined;
3073
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
3074
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
3075
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
3076
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
3077
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
3078
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
3079
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3080
+ motionPath?: csstype.Property.OffsetPath | undefined;
3081
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
3082
+ objectFit?: csstype.Property.ObjectFit | undefined;
3083
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3084
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
3085
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3086
+ offsetPath?: csstype.Property.OffsetPath | undefined;
3087
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
3088
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
3089
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
3090
+ opacity?: csstype.Property.Opacity | undefined;
3091
+ order?: csstype.Property.Order | undefined;
3092
+ orphans?: csstype.Property.Orphans | undefined;
3093
+ outlineColor?: csstype.Property.OutlineColor | undefined;
3094
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
3095
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
3096
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3097
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
3098
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
3099
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
3100
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
3101
+ overflowInline?: csstype.Property.OverflowInline | undefined;
3102
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
3103
+ overflowX?: csstype.Property.OverflowX | undefined;
3104
+ overflowY?: csstype.Property.OverflowY | undefined;
3105
+ overlay?: csstype.Property.Overlay | undefined;
3106
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
3107
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
3108
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
3109
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
3110
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
3111
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
3112
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
3113
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3114
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3115
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
3116
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
3117
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
3118
+ page?: csstype.Property.Page | undefined;
3119
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
3120
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
3121
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
3122
+ paintOrder?: csstype.Property.PaintOrder | undefined;
3123
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
3124
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3125
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
3126
+ position?: csstype.Property.Position | undefined;
3127
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3128
+ quotes?: csstype.Property.Quotes | undefined;
3129
+ resize?: csstype.Property.Resize | undefined;
3130
+ right?: csstype.Property.Right<string | number> | undefined;
3131
+ rotate?: csstype.Property.Rotate | undefined;
3132
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
3133
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
3134
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
3135
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
3136
+ scale?: csstype.Property.Scale | undefined;
3137
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
3138
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
3139
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
3140
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3141
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
3142
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
3143
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3144
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3145
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3146
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
3147
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
3148
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
3149
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
3150
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
3151
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
3152
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
3153
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
3154
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
3155
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3156
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3157
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3158
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3159
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
3160
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3161
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
3162
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
3163
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
3164
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
3165
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
3166
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
3167
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3168
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
3169
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
3170
+ tableLayout?: csstype.Property.TableLayout | undefined;
3171
+ textAlign?: csstype.Property.TextAlign | undefined;
3172
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
3173
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
3174
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3175
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3176
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3177
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
3178
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3179
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
3180
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3181
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3182
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3183
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
3184
+ textJustify?: csstype.Property.TextJustify | undefined;
3185
+ textOrientation?: csstype.Property.TextOrientation | undefined;
3186
+ textOverflow?: csstype.Property.TextOverflow | undefined;
3187
+ textRendering?: csstype.Property.TextRendering | undefined;
3188
+ textShadow?: csstype.Property.TextShadow | undefined;
3189
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3190
+ textTransform?: csstype.Property.TextTransform | undefined;
3191
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
3192
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3193
+ textWrap?: csstype.Property.TextWrap | undefined;
3194
+ timelineScope?: csstype.Property.TimelineScope | undefined;
3195
+ top?: csstype.Property.Top<string | number> | undefined;
3196
+ touchAction?: csstype.Property.TouchAction | undefined;
3197
+ transform?: csstype.Property.Transform | undefined;
3198
+ transformBox?: csstype.Property.TransformBox | undefined;
3199
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3200
+ transformStyle?: csstype.Property.TransformStyle | undefined;
3201
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
3202
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3203
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3204
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
3205
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3206
+ translate?: csstype.Property.Translate<string | number> | undefined;
3207
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
3208
+ userSelect?: csstype.Property.UserSelect | undefined;
3209
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
3210
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
3211
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
3212
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
3213
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
3214
+ visibility?: csstype.Property.Visibility | undefined;
3215
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
3216
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
3217
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
3218
+ widows?: csstype.Property.Widows | undefined;
3219
+ willChange?: csstype.Property.WillChange | undefined;
3220
+ wordBreak?: csstype.Property.WordBreak | undefined;
3221
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
3222
+ wordWrap?: csstype.Property.WordWrap | undefined;
3223
+ writingMode?: csstype.Property.WritingMode | undefined;
3224
+ zIndex?: csstype.Property.ZIndex | undefined;
3225
+ zoom?: csstype.Property.Zoom | undefined;
3226
+ all?: csstype.Property.All | undefined;
3227
+ animation?: csstype.Property.Animation<string & {}> | undefined;
3228
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
3229
+ background?: csstype.Property.Background<string | number> | undefined;
3230
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
3231
+ border?: csstype.Property.Border<string | number> | undefined;
3232
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
3233
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
3234
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
3235
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
3236
+ borderColor?: csstype.Property.BorderColor | undefined;
3237
+ borderImage?: csstype.Property.BorderImage | undefined;
3238
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
3239
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
3240
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
3241
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
3242
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3243
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
3244
+ borderStyle?: csstype.Property.BorderStyle | undefined;
3245
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
3246
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
3247
+ caret?: csstype.Property.Caret | undefined;
3248
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3249
+ columns?: csstype.Property.Columns<string | number> | undefined;
3250
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
3251
+ container?: csstype.Property.Container | undefined;
3252
+ flex?: csstype.Property.Flex<string | number> | undefined;
3253
+ flexFlow?: csstype.Property.FlexFlow | undefined;
3254
+ font?: csstype.Property.Font | undefined;
3255
+ gap?: csstype.Property.Gap<string | number> | undefined;
3256
+ grid?: csstype.Property.Grid | undefined;
3257
+ gridArea?: csstype.Property.GridArea | undefined;
3258
+ gridColumn?: csstype.Property.GridColumn | undefined;
3259
+ gridRow?: csstype.Property.GridRow | undefined;
3260
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
3261
+ inset?: csstype.Property.Inset<string | number> | undefined;
3262
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3263
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
3264
+ lineClamp?: csstype.Property.LineClamp | undefined;
3265
+ listStyle?: csstype.Property.ListStyle | undefined;
3266
+ margin?: csstype.Property.Margin<string | number> | undefined;
3267
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
3268
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
3269
+ mask?: csstype.Property.Mask<string | number> | undefined;
3270
+ maskBorder?: csstype.Property.MaskBorder | undefined;
3271
+ motion?: csstype.Property.Offset<string | number> | undefined;
3272
+ offset?: csstype.Property.Offset<string | number> | undefined;
3273
+ outline?: csstype.Property.Outline<string | number> | undefined;
3274
+ overflow?: csstype.Property.Overflow | undefined;
3275
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
3276
+ padding?: csstype.Property.Padding<string | number> | undefined;
3277
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
3278
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
3279
+ placeContent?: csstype.Property.PlaceContent | undefined;
3280
+ placeItems?: csstype.Property.PlaceItems | undefined;
3281
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
3282
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3283
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
3284
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
3285
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
3286
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
3287
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
3288
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3289
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
3290
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
3291
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
3292
+ transition?: csstype.Property.Transition<string & {}> | undefined;
3293
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
3294
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3295
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3296
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3297
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3298
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3299
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
3300
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3301
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3302
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
3303
+ MozBinding?: csstype.Property.MozBinding | undefined;
3304
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
3305
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
3306
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
3307
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
3308
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
3309
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
3310
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
3311
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3312
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
3313
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
3314
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
3315
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
3316
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3317
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3318
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3319
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3320
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
3321
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3322
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
3323
+ MozHyphens?: csstype.Property.Hyphens | undefined;
3324
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
3325
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3326
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3327
+ MozOrient?: csstype.Property.MozOrient | undefined;
3328
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3329
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3330
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
3331
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
3332
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
3333
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3334
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3335
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
3336
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
3337
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
3338
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3339
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
3340
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
3341
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
3342
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
3343
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
3344
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
3345
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
3346
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
3347
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
3348
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
3349
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
3350
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
3351
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
3352
+ msFilter?: csstype.Property.MsFilter | undefined;
3353
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
3354
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
3355
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
3356
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
3357
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
3358
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
3359
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
3360
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
3361
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
3362
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
3363
+ msHyphens?: csstype.Property.Hyphens | undefined;
3364
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
3365
+ msLineBreak?: csstype.Property.LineBreak | undefined;
3366
+ msOrder?: csstype.Property.Order | undefined;
3367
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
3368
+ msOverflowX?: csstype.Property.OverflowX | undefined;
3369
+ msOverflowY?: csstype.Property.OverflowY | undefined;
3370
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
3371
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
3372
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
3373
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
3374
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
3375
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
3376
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
3377
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
3378
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
3379
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
3380
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
3381
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
3382
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
3383
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
3384
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
3385
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
3386
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
3387
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
3388
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
3389
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
3390
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
3391
+ msTouchAction?: csstype.Property.TouchAction | undefined;
3392
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
3393
+ msTransform?: csstype.Property.Transform | undefined;
3394
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3395
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3396
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3397
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3398
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3399
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
3400
+ msWordBreak?: csstype.Property.WordBreak | undefined;
3401
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
3402
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
3403
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
3404
+ msWritingMode?: csstype.Property.WritingMode | undefined;
3405
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
3406
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
3407
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
3408
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3409
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3410
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3411
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3412
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3413
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
3414
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3415
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3416
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
3417
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
3418
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3419
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3420
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3421
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3422
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
3423
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
3424
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
3425
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3426
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3427
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
3428
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3429
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3430
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
3431
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
3432
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
3433
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
3434
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
3435
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
3436
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
3437
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3438
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3439
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3440
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
3441
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3442
+ WebkitFilter?: csstype.Property.Filter | undefined;
3443
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
3444
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
3445
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
3446
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
3447
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
3448
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3449
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
3450
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3451
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
3452
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3453
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
3454
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
3455
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
3456
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
3457
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
3458
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3459
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3460
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
3461
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3462
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3463
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
3464
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
3465
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3466
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
3467
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
3468
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
3469
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
3470
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
3471
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
3472
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
3473
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
3474
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
3475
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
3476
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
3477
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3478
+ WebkitOrder?: csstype.Property.Order | undefined;
3479
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
3480
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3481
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3482
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
3483
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3484
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3485
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
3486
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3487
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3488
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
3489
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
3490
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3491
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3492
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3493
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3494
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3495
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3496
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3497
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
3498
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
3499
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3500
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
3501
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
3502
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3503
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
3504
+ WebkitTransform?: csstype.Property.Transform | undefined;
3505
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3506
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
3507
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3508
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3509
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3510
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3511
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
3512
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
3513
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
3514
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
3515
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
3516
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3517
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
3518
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
3519
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
3520
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
3521
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
3522
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
3523
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
3524
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
3525
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
3526
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
3527
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
3528
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
3529
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3530
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3531
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
3532
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
3533
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
3534
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
3535
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
3536
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
3537
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
3538
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
3539
+ azimuth?: csstype.Property.Azimuth | undefined;
3540
+ boxAlign?: csstype.Property.BoxAlign | undefined;
3541
+ boxDirection?: csstype.Property.BoxDirection | undefined;
3542
+ boxFlex?: csstype.Property.BoxFlex | undefined;
3543
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3544
+ boxLines?: csstype.Property.BoxLines | undefined;
3545
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3546
+ boxOrient?: csstype.Property.BoxOrient | undefined;
3547
+ boxPack?: csstype.Property.BoxPack | undefined;
3548
+ clip?: csstype.Property.Clip | undefined;
3549
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
3550
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
3551
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
3552
+ imeMode?: csstype.Property.ImeMode | undefined;
3553
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3554
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3555
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3556
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
3557
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3558
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3559
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
3560
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
3561
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
3562
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
3563
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
3564
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
3565
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
3566
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
3567
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
3568
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3569
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
3570
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3571
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
3572
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
3573
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
3574
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
3575
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
3576
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3577
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3578
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
3579
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3580
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3581
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3582
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3583
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3584
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3585
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3586
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
3587
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
3588
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
3589
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3590
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
3591
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
3592
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
3593
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
3594
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
3595
+ MozOpacity?: csstype.Property.Opacity | undefined;
3596
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
3597
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
3598
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
3599
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3600
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
3601
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3602
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
3603
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3604
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3605
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3606
+ MozTransform?: csstype.Property.Transform | undefined;
3607
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3608
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
3609
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
3610
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3611
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3612
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3613
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3614
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
3615
+ msImeMode?: csstype.Property.ImeMode | undefined;
3616
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
3617
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3618
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3619
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3620
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3621
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3622
+ OAnimationName?: csstype.Property.AnimationName | undefined;
3623
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3624
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3625
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3626
+ OBorderImage?: csstype.Property.BorderImage | undefined;
3627
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
3628
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3629
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
3630
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
3631
+ OTransform?: csstype.Property.Transform | undefined;
3632
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3633
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
3634
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3635
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3636
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3637
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3638
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
3639
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
3640
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
3641
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3642
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
3643
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3644
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
3645
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
3646
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
3647
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
3648
+ clipRule?: csstype.Property.ClipRule | undefined;
3649
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
3650
+ colorRendering?: csstype.Property.ColorRendering | undefined;
3651
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
3652
+ fill?: csstype.Property.Fill | undefined;
3653
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
3654
+ fillRule?: csstype.Property.FillRule | undefined;
3655
+ floodColor?: csstype.Property.FloodColor | undefined;
3656
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
3657
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
3658
+ lightingColor?: csstype.Property.LightingColor | undefined;
3659
+ marker?: csstype.Property.Marker | undefined;
3660
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
3661
+ markerMid?: csstype.Property.MarkerMid | undefined;
3662
+ markerStart?: csstype.Property.MarkerStart | undefined;
3663
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
3664
+ stopColor?: csstype.Property.StopColor | undefined;
3665
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
3666
+ stroke?: csstype.Property.Stroke | undefined;
3667
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
3668
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
3669
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
3670
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
3671
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
3672
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
3673
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
3674
+ textAnchor?: csstype.Property.TextAnchor | undefined;
3675
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
3676
+ };
3677
+ }, HTMLElement>;
3678
+ context: unknown;
3679
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
3680
+ forceUpdate(callback?: (() => void) | undefined): void;
3681
+ readonly props: Readonly<StormcloudPlayerProps>;
3682
+ refs: {
3683
+ [key: string]: React.ReactInstance;
3684
+ };
3685
+ componentDidMount?(): void;
3686
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
3687
+ componentWillUnmount?(): void;
3688
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
3689
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
3690
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
3691
+ componentWillMount?(): void;
3692
+ UNSAFE_componentWillMount?(): void;
3693
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
3694
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
3695
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
3696
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
3697
+ };
3698
+ displayName: string;
3699
+ defaultProps: {
3700
+ fallback: null;
3701
+ wrapper: string;
3702
+ };
3703
+ addCustomPlayer: (player: PlayerConfig) => void;
3704
+ removeCustomPlayers: () => void;
3705
+ canPlay: (src: string) => boolean;
3706
+ canEnablePIP: (src: string) => boolean;
3707
+ contextType?: React.Context<any> | undefined;
3708
+ };
3709
+
143
3710
  type StormcloudVideoPlayerProps = Omit<StormcloudVideoPlayerConfig, "videoElement"> & React.VideoHTMLAttributes<HTMLVideoElement> & {
144
3711
  onReady?: (player: StormcloudVideoPlayer) => void;
145
3712
  wrapperClassName?: string;
@@ -148,9 +3715,31 @@ type StormcloudVideoPlayerProps = Omit<StormcloudVideoPlayerConfig, "videoElemen
148
3715
  };
149
3716
  declare const StormcloudVideoPlayerComponent: React.FC<StormcloudVideoPlayerProps>;
150
3717
 
3718
+ declare const canPlay: {
3719
+ hls: (url: string) => boolean;
3720
+ dash: (url: string) => boolean;
3721
+ video: (url: string) => boolean;
3722
+ audio: (url: string) => boolean;
3723
+ file: (url: string) => boolean;
3724
+ };
3725
+
3726
+ declare const lazy: typeof lazy$1;
3727
+ declare const omit: <T extends Record<string, any>, K extends keyof T>(object: T, keys: K[]) => Omit<T, K>;
3728
+ declare const isMediaStream: (url: any) => url is MediaStream;
3729
+ declare const supportsWebKitPresentationMode: () => boolean;
3730
+ declare const randomString: () => string;
3731
+ declare const parseQuery: (url: string) => Record<string, string>;
3732
+ declare const merge: <T extends Record<string, any>>(target: T, ...sources: Partial<T>[]) => T;
3733
+ declare const IS_BROWSER: false | Document;
3734
+ declare const IS_GLOBAL: false | Document;
3735
+ declare const IS_IOS: boolean;
3736
+ declare const IS_SAFARI: boolean;
3737
+ declare const SUPPORTS_HLS: () => boolean;
3738
+ declare const SUPPORTS_DASH: () => boolean;
3739
+
151
3740
  declare function getClientInfo(): ClientInfo;
152
3741
  declare function getBrowserID(clientInfo: ClientInfo): Promise<string>;
153
3742
  declare function sendInitialTracking(licenseKey?: string): Promise<void>;
154
3743
  declare function sendHeartbeat(licenseKey?: string): Promise<void>;
155
3744
 
156
- export { type AdBreak, type AdSchedule, type ClientInfo, type HeartbeatData, type LateJoinPolicy, StormcloudVideoPlayer, StormcloudVideoPlayerComponent, type StormcloudVideoPlayerConfig, type StormcloudVideoPlayerProps, type TrackingData, getBrowserID, getClientInfo, sendHeartbeat, sendInitialTracking };
3745
+ export { type AdBreak, type AdSchedule, type BaseStormcloudPlayerProps, type ClientInfo, type HeartbeatData, IS_BROWSER, IS_GLOBAL, IS_IOS, IS_SAFARI, type LateJoinPolicy, type OnProgressProps, SUPPORTS_DASH, SUPPORTS_HLS, StormcloudVideoPlayer, StormcloudVideoPlayerComponent, type StormcloudVideoPlayerConfig, type StormcloudVideoPlayerProps, type TrackingData, canPlay, createStormcloudPlayer, StormcloudPlayer as default, getBrowserID, getClientInfo, isMediaStream, lazy, merge, omit, parseQuery, players, randomString, sendHeartbeat, sendInitialTracking, supportsWebKitPresentationMode };