stormcloud-video-player 0.3.17 → 0.3.19

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