stormcloud-video-player 0.3.19 → 0.3.20

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