stormcloud-video-player 0.3.19 → 0.3.21

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