stormcloud-video-player 0.3.53 → 0.3.55
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/dist/stormcloud-vp.min.js +1 -1
- package/lib/index.cjs +1315 -1140
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +391 -221
- package/lib/index.d.ts +391 -221
- package/lib/index.js +1264 -1101
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +547 -148
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +13 -1
- package/lib/players/FilePlayer.cjs +99 -116
- package/lib/players/FilePlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.cjs +599 -200
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.d.cts +1 -1
- package/lib/players/index.cjs +678 -279
- package/lib/players/index.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.cjs +17 -9
- package/lib/sdk/hlsAdPlayer.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.d.cts +1 -1
- package/lib/sdk/ima.cjs +43 -48
- package/lib/sdk/ima.cjs.map +1 -1
- package/lib/sdk/ima.d.cts +1 -1
- package/lib/{types-DYelrVG6.d.cts → types-C23mJ_hh.d.cts} +15 -1
- package/lib/ui/StormcloudVideoPlayer.cjs +1124 -961
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.d.cts +1 -1
- package/lib/utils/browserCompat.cjs +11 -11
- package/lib/utils/browserCompat.cjs.map +1 -1
- package/lib/utils/polyfills.cjs +13 -13
- package/lib/utils/polyfills.cjs.map +1 -1
- package/lib/utils/tracking.cjs +283 -14
- package/lib/utils/tracking.cjs.map +1 -1
- package/lib/utils/tracking.d.cts +12 -2
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -101,6 +101,26 @@ interface HeartbeatData {
|
|
|
101
101
|
browserId: string;
|
|
102
102
|
timestamp: string;
|
|
103
103
|
}
|
|
104
|
+
interface AdDetectInfo {
|
|
105
|
+
source: string;
|
|
106
|
+
durationSeconds?: number;
|
|
107
|
+
ptsSeconds?: number;
|
|
108
|
+
detectedAtFragmentSn?: number;
|
|
109
|
+
timestamp: string;
|
|
110
|
+
}
|
|
111
|
+
type AdTrackingSource = "prebid" | "ima" | "hls";
|
|
112
|
+
interface AdLoadedInfo {
|
|
113
|
+
source: AdTrackingSource;
|
|
114
|
+
vastUrl?: string;
|
|
115
|
+
durationSeconds?: number;
|
|
116
|
+
timestamp: string;
|
|
117
|
+
}
|
|
118
|
+
interface AdImpressionInfo {
|
|
119
|
+
source: AdTrackingSource;
|
|
120
|
+
adIndex: number;
|
|
121
|
+
durationSeconds?: number;
|
|
122
|
+
timestamp: string;
|
|
123
|
+
}
|
|
104
124
|
|
|
105
125
|
declare class StormcloudVideoPlayer {
|
|
106
126
|
private readonly video;
|
|
@@ -154,10 +174,18 @@ declare class StormcloudVideoPlayer {
|
|
|
154
174
|
private readonly backoffBaseMs;
|
|
155
175
|
private readonly maxBackoffMs;
|
|
156
176
|
private placeholderContainer;
|
|
177
|
+
private globalConsecutiveNoFills;
|
|
178
|
+
private readonly globalNoFillThreshold;
|
|
179
|
+
private globalNoFillCooldownUntil;
|
|
180
|
+
private readonly globalNoFillBackoffBaseMs;
|
|
181
|
+
private readonly globalNoFillBackoffMaxMs;
|
|
182
|
+
private globalLastGamRequestTime;
|
|
183
|
+
private readonly globalMinGamIntervalMs;
|
|
157
184
|
private preloadPool;
|
|
158
185
|
private readonly maxPreloadPoolSize;
|
|
159
186
|
private preloadPoolActive;
|
|
160
187
|
private preloadPoolLoopRunning;
|
|
188
|
+
private adDetectSentForCurrentBreak;
|
|
161
189
|
constructor(config: StormcloudVideoPlayerConfig);
|
|
162
190
|
private createAdPlayer;
|
|
163
191
|
load(): Promise<void>;
|
|
@@ -216,6 +244,10 @@ declare class StormcloudVideoPlayer {
|
|
|
216
244
|
private isTemporaryAdError;
|
|
217
245
|
private isUrlInCooldown;
|
|
218
246
|
private cleanupTemporaryFailures;
|
|
247
|
+
private isGamInCooldown;
|
|
248
|
+
private recordGamNoFill;
|
|
249
|
+
private resetGamNoFillCounter;
|
|
250
|
+
private enforceGlobalRateLimit;
|
|
219
251
|
private playSingleAd;
|
|
220
252
|
private handleAdPodComplete;
|
|
221
253
|
private handleAdFailure;
|
|
@@ -351,6 +383,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
351
383
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
352
384
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
353
385
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
386
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
387
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
388
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
354
389
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
355
390
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
356
391
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -377,17 +412,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
377
412
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
378
413
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
379
414
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
380
|
-
|
|
415
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
381
416
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
382
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
383
417
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
384
418
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
385
419
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
386
420
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
387
421
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
388
422
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
389
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
390
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
391
423
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
392
424
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
393
425
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -401,15 +433,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
401
433
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
402
434
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
403
435
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
404
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
405
436
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
406
437
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
407
438
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
408
439
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
409
440
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
410
441
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
411
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
412
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
413
442
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
414
443
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
415
444
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -436,8 +465,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
436
465
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
437
466
|
clear?: csstype.Property.Clear | undefined;
|
|
438
467
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
468
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
439
469
|
color?: csstype.Property.Color | undefined;
|
|
440
470
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
471
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
441
472
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
442
473
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
443
474
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -460,9 +491,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
460
491
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
461
492
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
462
493
|
cursor?: csstype.Property.Cursor | undefined;
|
|
494
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
495
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
496
|
+
d?: csstype.Property.D | undefined;
|
|
463
497
|
direction?: csstype.Property.Direction | undefined;
|
|
464
498
|
display?: csstype.Property.Display | undefined;
|
|
499
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
465
500
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
501
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
502
|
+
fill?: csstype.Property.Fill | undefined;
|
|
503
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
504
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
466
505
|
filter?: csstype.Property.Filter | undefined;
|
|
467
506
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
468
507
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -470,6 +509,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
470
509
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
471
510
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
472
511
|
float?: csstype.Property.Float | undefined;
|
|
512
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
513
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
473
514
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
474
515
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
475
516
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -479,7 +520,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
479
520
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
480
521
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
481
522
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
482
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
483
523
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
484
524
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
485
525
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -496,6 +536,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
496
536
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
497
537
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
498
538
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
539
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
499
540
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
500
541
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
501
542
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -515,12 +556,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
515
556
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
516
557
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
517
558
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
559
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
518
560
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
519
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
520
561
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
521
562
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
522
563
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
523
564
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
565
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
524
566
|
isolation?: csstype.Property.Isolation | undefined;
|
|
525
567
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
526
568
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -528,6 +570,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
528
570
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
529
571
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
530
572
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
573
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
531
574
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
532
575
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
533
576
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -543,6 +586,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
543
586
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
544
587
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
545
588
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
589
|
+
marker?: csstype.Property.Marker | undefined;
|
|
590
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
591
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
592
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
546
593
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
547
594
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
548
595
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -577,6 +624,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
577
624
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
578
625
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
579
626
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
627
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
580
628
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
581
629
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
582
630
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -612,25 +660,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
612
660
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
613
661
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
614
662
|
page?: csstype.Property.Page | undefined;
|
|
615
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
616
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
617
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
618
663
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
619
664
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
620
665
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
621
666
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
622
667
|
position?: csstype.Property.Position | undefined;
|
|
668
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
669
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
670
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
671
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
672
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
623
673
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
624
674
|
quotes?: csstype.Property.Quotes | undefined;
|
|
675
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
625
676
|
resize?: csstype.Property.Resize | undefined;
|
|
626
677
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
627
678
|
rotate?: csstype.Property.Rotate | undefined;
|
|
628
679
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
629
680
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
630
681
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
682
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
631
683
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
684
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
685
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
632
686
|
scale?: csstype.Property.Scale | undefined;
|
|
633
687
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
688
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
634
689
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
635
690
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
636
691
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -662,10 +717,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
662
717
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
663
718
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
664
719
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
720
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
721
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
722
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
723
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
724
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
725
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
726
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
727
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
728
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
729
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
730
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
731
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
732
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
665
733
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
666
734
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
667
735
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
668
736
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
737
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
738
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
739
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
740
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
741
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
669
742
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
670
743
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
671
744
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -683,10 +756,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
683
756
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
684
757
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
685
758
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
759
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
686
760
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
687
761
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
688
762
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
689
|
-
|
|
763
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
764
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
690
765
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
691
766
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
692
767
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -702,21 +777,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
702
777
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
703
778
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
704
779
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
780
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
705
781
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
706
782
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
707
783
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
708
784
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
785
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
709
786
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
710
787
|
visibility?: csstype.Property.Visibility | undefined;
|
|
711
788
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
712
789
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
713
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
714
790
|
widows?: csstype.Property.Widows | undefined;
|
|
715
791
|
willChange?: csstype.Property.WillChange | undefined;
|
|
716
792
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
717
793
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
718
794
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
719
795
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
796
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
797
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
720
798
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
721
799
|
zoom?: csstype.Property.Zoom | undefined;
|
|
722
800
|
all?: csstype.Property.All | undefined;
|
|
@@ -726,14 +804,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
726
804
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
727
805
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
728
806
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
807
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
729
808
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
730
809
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
810
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
811
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
731
812
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
732
813
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
733
814
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
734
815
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
816
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
735
817
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
736
818
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
819
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
820
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
737
821
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
738
822
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
739
823
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -775,6 +859,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
775
859
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
776
860
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
777
861
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
862
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
778
863
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
779
864
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
780
865
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -785,6 +870,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
785
870
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
786
871
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
787
872
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
873
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
788
874
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
789
875
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
790
876
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -796,6 +882,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
796
882
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
797
883
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
798
884
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
885
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
799
886
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
800
887
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
801
888
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -807,8 +894,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
807
894
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
808
895
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
809
896
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
810
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
811
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
812
897
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
813
898
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
814
899
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -817,7 +902,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
817
902
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
818
903
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
819
904
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
820
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
821
905
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
822
906
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
823
907
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -828,11 +912,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
828
912
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
829
913
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
830
914
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
915
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
916
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
831
917
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
832
918
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
833
919
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
834
920
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
835
|
-
|
|
921
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
922
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
923
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
836
924
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
837
925
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
838
926
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -951,6 +1039,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
951
1039
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
952
1040
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
953
1041
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1042
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1043
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
954
1044
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
955
1045
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
956
1046
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1005,13 +1095,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1005
1095
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1006
1096
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1007
1097
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1008
|
-
WebkitUserSelect?: csstype.Property.
|
|
1098
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1009
1099
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1010
1100
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1011
1101
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1012
1102
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1013
1103
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1014
1104
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
1105
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1015
1106
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1016
1107
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1017
1108
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1032,7 +1123,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1032
1123
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1033
1124
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1034
1125
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1035
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1036
1126
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1037
1127
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1038
1128
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1042,16 +1132,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1042
1132
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1043
1133
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1044
1134
|
clip?: csstype.Property.Clip | undefined;
|
|
1135
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1045
1136
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1046
1137
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1047
1138
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1048
1139
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
1140
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1049
1141
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1050
1142
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1051
1143
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1052
1144
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1053
1145
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1054
1146
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1147
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1148
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1149
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1150
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1055
1151
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1056
1152
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1057
1153
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -1069,9 +1165,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1069
1165
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1070
1166
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
1071
1167
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1072
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1073
1168
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
1074
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
1075
1169
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
1076
1170
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1077
1171
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -1086,6 +1180,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1086
1180
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1087
1181
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1088
1182
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
1183
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1184
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1089
1185
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
1090
1186
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
1091
1187
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -1093,20 +1189,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1093
1189
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
1094
1190
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
1095
1191
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
1096
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1097
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1098
1192
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1099
1193
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1100
1194
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
1101
1195
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
1102
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
1103
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1104
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1105
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1106
1196
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
1107
1197
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
1108
1198
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1109
1199
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1200
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
1110
1201
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
1111
1202
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
1112
1203
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -1139,36 +1230,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1139
1230
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
1140
1231
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1141
1232
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1142
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
1143
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
1144
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
1145
1233
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
1146
1234
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
1147
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
1148
|
-
fill?: csstype.Property.Fill | undefined;
|
|
1149
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
1150
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
1151
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
1152
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
1153
1235
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
1154
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
1155
|
-
marker?: csstype.Property.Marker | undefined;
|
|
1156
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
1157
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
1158
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
1159
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
1160
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
1161
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
1162
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
1163
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
1164
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
1165
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
1166
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
1167
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
1168
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
1169
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
1170
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
1171
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
1172
1236
|
};
|
|
1173
1237
|
}, HTMLElement>;
|
|
1174
1238
|
context: unknown;
|
|
@@ -1218,6 +1282,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1218
1282
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
1219
1283
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
1220
1284
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
1285
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
1286
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
1287
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
1221
1288
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
1222
1289
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
1223
1290
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -1244,17 +1311,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1244
1311
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
1245
1312
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
1246
1313
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1247
|
-
|
|
1314
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
1248
1315
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1249
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1250
1316
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
1251
1317
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
1252
1318
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
1253
1319
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
1254
1320
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
1255
1321
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
1256
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1257
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1258
1322
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
1259
1323
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1260
1324
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -1268,15 +1332,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1268
1332
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
1269
1333
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
1270
1334
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
1271
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1272
1335
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
1273
1336
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
1274
1337
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1275
1338
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
1276
1339
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1277
1340
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
1278
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1279
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1280
1341
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
1281
1342
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
1282
1343
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -1303,8 +1364,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1303
1364
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
1304
1365
|
clear?: csstype.Property.Clear | undefined;
|
|
1305
1366
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
1367
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
1306
1368
|
color?: csstype.Property.Color | undefined;
|
|
1307
1369
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1370
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
1308
1371
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
1309
1372
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
1310
1373
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -1327,9 +1390,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1327
1390
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
1328
1391
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
1329
1392
|
cursor?: csstype.Property.Cursor | undefined;
|
|
1393
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
1394
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
1395
|
+
d?: csstype.Property.D | undefined;
|
|
1330
1396
|
direction?: csstype.Property.Direction | undefined;
|
|
1331
1397
|
display?: csstype.Property.Display | undefined;
|
|
1398
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
1332
1399
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
1400
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
1401
|
+
fill?: csstype.Property.Fill | undefined;
|
|
1402
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
1403
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
1333
1404
|
filter?: csstype.Property.Filter | undefined;
|
|
1334
1405
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
1335
1406
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -1337,6 +1408,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1337
1408
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
1338
1409
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
1339
1410
|
float?: csstype.Property.Float | undefined;
|
|
1411
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
1412
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
1340
1413
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
1341
1414
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1342
1415
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -1346,7 +1419,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1346
1419
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
1347
1420
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
1348
1421
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
1349
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1350
1422
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
1351
1423
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
1352
1424
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -1363,6 +1435,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1363
1435
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
1364
1436
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
1365
1437
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
1438
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
1366
1439
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
1367
1440
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
1368
1441
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -1382,12 +1455,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1382
1455
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
1383
1456
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
1384
1457
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
1458
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
1385
1459
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1386
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
1387
1460
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1388
1461
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1389
1462
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1390
1463
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1464
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
1391
1465
|
isolation?: csstype.Property.Isolation | undefined;
|
|
1392
1466
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1393
1467
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -1395,6 +1469,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1395
1469
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
1396
1470
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
1397
1471
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
1472
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
1398
1473
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
1399
1474
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
1400
1475
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1410,6 +1485,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1410
1485
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
1411
1486
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
1412
1487
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
1488
|
+
marker?: csstype.Property.Marker | undefined;
|
|
1489
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
1490
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
1491
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
1413
1492
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
1414
1493
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
1415
1494
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -1444,6 +1523,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1444
1523
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
1445
1524
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
1446
1525
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
1526
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
1447
1527
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
1448
1528
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
1449
1529
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -1479,25 +1559,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1479
1559
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
1480
1560
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
1481
1561
|
page?: csstype.Property.Page | undefined;
|
|
1482
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1483
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1484
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1485
1562
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
1486
1563
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1487
1564
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1488
1565
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
1489
1566
|
position?: csstype.Property.Position | undefined;
|
|
1567
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
1568
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
1569
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1570
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
1571
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
1490
1572
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1491
1573
|
quotes?: csstype.Property.Quotes | undefined;
|
|
1574
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
1492
1575
|
resize?: csstype.Property.Resize | undefined;
|
|
1493
1576
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
1494
1577
|
rotate?: csstype.Property.Rotate | undefined;
|
|
1495
1578
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
1496
1579
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
1497
1580
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
1581
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
1498
1582
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
1583
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
1584
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
1499
1585
|
scale?: csstype.Property.Scale | undefined;
|
|
1500
1586
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
1587
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
1501
1588
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1502
1589
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1503
1590
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1529,10 +1616,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1529
1616
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
1530
1617
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
1531
1618
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
1619
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
1620
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
1621
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
1622
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
1623
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
1624
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
1625
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
1626
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
1627
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
1628
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
1629
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
1630
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
1631
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
1532
1632
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1533
1633
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
1534
1634
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
1535
1635
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1636
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
1637
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
1638
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
1639
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
1640
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
1536
1641
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
1537
1642
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1538
1643
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -1550,10 +1655,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1550
1655
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
1551
1656
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
1552
1657
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1658
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
1553
1659
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
1554
1660
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
1555
1661
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
1556
|
-
|
|
1662
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
1663
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
1557
1664
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
1558
1665
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
1559
1666
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -1569,21 +1676,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1569
1676
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
1570
1677
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
1571
1678
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
1679
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
1572
1680
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
1573
1681
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
1574
1682
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
1575
1683
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
1684
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
1576
1685
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
1577
1686
|
visibility?: csstype.Property.Visibility | undefined;
|
|
1578
1687
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
1579
1688
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
1580
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
1581
1689
|
widows?: csstype.Property.Widows | undefined;
|
|
1582
1690
|
willChange?: csstype.Property.WillChange | undefined;
|
|
1583
1691
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
1584
1692
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
1585
1693
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
1586
1694
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
1695
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
1696
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
1587
1697
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
1588
1698
|
zoom?: csstype.Property.Zoom | undefined;
|
|
1589
1699
|
all?: csstype.Property.All | undefined;
|
|
@@ -1593,14 +1703,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1593
1703
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
1594
1704
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
1595
1705
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
1706
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1596
1707
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
1597
1708
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
1709
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1710
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1598
1711
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
1599
1712
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
1600
1713
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
1601
1714
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
1715
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1602
1716
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
1603
1717
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
1718
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1719
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1604
1720
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
1605
1721
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
1606
1722
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -1642,6 +1758,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1642
1758
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
1643
1759
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
1644
1760
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
1761
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
1645
1762
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
1646
1763
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
1647
1764
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1652,6 +1769,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1652
1769
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
1653
1770
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
1654
1771
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1772
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
1655
1773
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1656
1774
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
1657
1775
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -1663,6 +1781,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1663
1781
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
1664
1782
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
1665
1783
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
1784
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1666
1785
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
1667
1786
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
1668
1787
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -1674,8 +1793,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1674
1793
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1675
1794
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
1676
1795
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
1677
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1678
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1679
1796
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
1680
1797
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
1681
1798
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1684,7 +1801,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1684
1801
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1685
1802
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
1686
1803
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
1687
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
1688
1804
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1689
1805
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1690
1806
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -1695,11 +1811,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1695
1811
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1696
1812
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
1697
1813
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
1814
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1815
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1698
1816
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
1699
1817
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1700
1818
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
1701
1819
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1702
|
-
|
|
1820
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
1821
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1822
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1703
1823
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
1704
1824
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1705
1825
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -1818,6 +1938,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1818
1938
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1819
1939
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1820
1940
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1941
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1942
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1821
1943
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1822
1944
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1823
1945
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1872,13 +1994,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1872
1994
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1873
1995
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1874
1996
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1875
|
-
WebkitUserSelect?: csstype.Property.
|
|
1997
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1876
1998
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1877
1999
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1878
2000
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1879
2001
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1880
2002
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1881
2003
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
2004
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1882
2005
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1883
2006
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1884
2007
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1899,7 +2022,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1899
2022
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1900
2023
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1901
2024
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1902
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1903
2025
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1904
2026
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1905
2027
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1909,16 +2031,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1909
2031
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1910
2032
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1911
2033
|
clip?: csstype.Property.Clip | undefined;
|
|
2034
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1912
2035
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1913
2036
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1914
2037
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1915
2038
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2039
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1916
2040
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1917
2041
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1918
2042
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1919
2043
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1920
2044
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1921
2045
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2046
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2047
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2048
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2049
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1922
2050
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1923
2051
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1924
2052
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -1936,9 +2064,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1936
2064
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1937
2065
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
1938
2066
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1939
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1940
2067
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
1941
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
1942
2068
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
1943
2069
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1944
2070
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -1953,6 +2079,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1953
2079
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1954
2080
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1955
2081
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2082
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2083
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1956
2084
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
1957
2085
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
1958
2086
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -1960,20 +2088,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1960
2088
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
1961
2089
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
1962
2090
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
1963
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1964
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1965
2091
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1966
2092
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1967
2093
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
1968
2094
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
1969
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
1970
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1971
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1972
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1973
2095
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
1974
2096
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
1975
2097
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1976
2098
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2099
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
1977
2100
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
1978
2101
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
1979
2102
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2006,36 +2129,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2006
2129
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2007
2130
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2008
2131
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2009
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2010
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2011
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2012
2132
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2013
2133
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
2014
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2015
|
-
fill?: csstype.Property.Fill | undefined;
|
|
2016
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2017
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
2018
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2019
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2020
2134
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
2021
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2022
|
-
marker?: csstype.Property.Marker | undefined;
|
|
2023
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2024
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2025
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2026
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2027
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
2028
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2029
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
2030
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2031
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2032
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2033
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2034
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2035
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2036
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2037
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2038
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2039
2135
|
};
|
|
2040
2136
|
}, HTMLElement>;
|
|
2041
2137
|
context: unknown;
|
|
@@ -2097,6 +2193,9 @@ declare const StormcloudPlayer: {
|
|
|
2097
2193
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
2098
2194
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
2099
2195
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
2196
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2197
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
2198
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
2100
2199
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
2101
2200
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
2102
2201
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -2123,17 +2222,14 @@ declare const StormcloudPlayer: {
|
|
|
2123
2222
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
2124
2223
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
2125
2224
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2126
|
-
|
|
2225
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2127
2226
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2128
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2129
2227
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
2130
2228
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
2131
2229
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2132
2230
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
2133
2231
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
2134
2232
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
2135
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2136
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2137
2233
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
2138
2234
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2139
2235
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -2147,15 +2243,12 @@ declare const StormcloudPlayer: {
|
|
|
2147
2243
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
2148
2244
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
2149
2245
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
2150
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2151
2246
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
2152
2247
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
2153
2248
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
2154
2249
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
2155
2250
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2156
2251
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
2157
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2158
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2159
2252
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
2160
2253
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
2161
2254
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -2182,8 +2275,10 @@ declare const StormcloudPlayer: {
|
|
|
2182
2275
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
2183
2276
|
clear?: csstype.Property.Clear | undefined;
|
|
2184
2277
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
2278
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2185
2279
|
color?: csstype.Property.Color | undefined;
|
|
2186
2280
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2281
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
2187
2282
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
2188
2283
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
2189
2284
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -2206,9 +2301,17 @@ declare const StormcloudPlayer: {
|
|
|
2206
2301
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
2207
2302
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
2208
2303
|
cursor?: csstype.Property.Cursor | undefined;
|
|
2304
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
2305
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
2306
|
+
d?: csstype.Property.D | undefined;
|
|
2209
2307
|
direction?: csstype.Property.Direction | undefined;
|
|
2210
2308
|
display?: csstype.Property.Display | undefined;
|
|
2309
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2211
2310
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
2311
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
2312
|
+
fill?: csstype.Property.Fill | undefined;
|
|
2313
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2314
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
2212
2315
|
filter?: csstype.Property.Filter | undefined;
|
|
2213
2316
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2214
2317
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -2216,6 +2319,8 @@ declare const StormcloudPlayer: {
|
|
|
2216
2319
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
2217
2320
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
2218
2321
|
float?: csstype.Property.Float | undefined;
|
|
2322
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2323
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2219
2324
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
2220
2325
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2221
2326
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -2225,7 +2330,6 @@ declare const StormcloudPlayer: {
|
|
|
2225
2330
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
2226
2331
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
2227
2332
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
2228
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2229
2333
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
2230
2334
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
2231
2335
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -2242,6 +2346,7 @@ declare const StormcloudPlayer: {
|
|
|
2242
2346
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
2243
2347
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
2244
2348
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
2349
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
2245
2350
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
2246
2351
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2247
2352
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -2261,12 +2366,13 @@ declare const StormcloudPlayer: {
|
|
|
2261
2366
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
2262
2367
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
2263
2368
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
2369
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
2264
2370
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2265
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
2266
2371
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2267
2372
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2268
2373
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2269
2374
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2375
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
2270
2376
|
isolation?: csstype.Property.Isolation | undefined;
|
|
2271
2377
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2272
2378
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -2274,6 +2380,7 @@ declare const StormcloudPlayer: {
|
|
|
2274
2380
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
2275
2381
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
2276
2382
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
2383
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2277
2384
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
2278
2385
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
2279
2386
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -2289,6 +2396,10 @@ declare const StormcloudPlayer: {
|
|
|
2289
2396
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
2290
2397
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
2291
2398
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
2399
|
+
marker?: csstype.Property.Marker | undefined;
|
|
2400
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2401
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2402
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2292
2403
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
2293
2404
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
2294
2405
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -2323,6 +2434,7 @@ declare const StormcloudPlayer: {
|
|
|
2323
2434
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
2324
2435
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
2325
2436
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
2437
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
2326
2438
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
2327
2439
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
2328
2440
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -2358,25 +2470,32 @@ declare const StormcloudPlayer: {
|
|
|
2358
2470
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
2359
2471
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
2360
2472
|
page?: csstype.Property.Page | undefined;
|
|
2361
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2362
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2363
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2364
2473
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
2365
2474
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2366
2475
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2367
2476
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
2368
2477
|
position?: csstype.Property.Position | undefined;
|
|
2478
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
2479
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
2480
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2481
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
2482
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
2369
2483
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2370
2484
|
quotes?: csstype.Property.Quotes | undefined;
|
|
2485
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
2371
2486
|
resize?: csstype.Property.Resize | undefined;
|
|
2372
2487
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
2373
2488
|
rotate?: csstype.Property.Rotate | undefined;
|
|
2374
2489
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
2375
2490
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
2376
2491
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
2492
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
2377
2493
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
2494
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
2495
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
2378
2496
|
scale?: csstype.Property.Scale | undefined;
|
|
2379
2497
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
2498
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
2380
2499
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
2381
2500
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
2382
2501
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -2408,10 +2527,28 @@ declare const StormcloudPlayer: {
|
|
|
2408
2527
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
2409
2528
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
2410
2529
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
2530
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2531
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
2532
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
2533
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2534
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
2535
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
2536
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2537
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2538
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2539
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2540
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2541
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2542
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2411
2543
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2412
2544
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
2413
2545
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
2414
2546
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2547
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2548
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
2549
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
2550
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
2551
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
2415
2552
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
2416
2553
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2417
2554
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -2429,10 +2566,12 @@ declare const StormcloudPlayer: {
|
|
|
2429
2566
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
2430
2567
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
2431
2568
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2569
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
2432
2570
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
2433
2571
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
2434
2572
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
2435
|
-
|
|
2573
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
2574
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
2436
2575
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
2437
2576
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
2438
2577
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -2448,21 +2587,24 @@ declare const StormcloudPlayer: {
|
|
|
2448
2587
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
2449
2588
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
2450
2589
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
2590
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2451
2591
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
2452
2592
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
2453
2593
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
2454
2594
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
2595
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
2455
2596
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
2456
2597
|
visibility?: csstype.Property.Visibility | undefined;
|
|
2457
2598
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
2458
2599
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
2459
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
2460
2600
|
widows?: csstype.Property.Widows | undefined;
|
|
2461
2601
|
willChange?: csstype.Property.WillChange | undefined;
|
|
2462
2602
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
2463
2603
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
2464
2604
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
2465
2605
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
2606
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
2607
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
2466
2608
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
2467
2609
|
zoom?: csstype.Property.Zoom | undefined;
|
|
2468
2610
|
all?: csstype.Property.All | undefined;
|
|
@@ -2472,14 +2614,20 @@ declare const StormcloudPlayer: {
|
|
|
2472
2614
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
2473
2615
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
2474
2616
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
2617
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2475
2618
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
2476
2619
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
2620
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2621
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2477
2622
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
2478
2623
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
2479
2624
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
2480
2625
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
2626
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2481
2627
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
2482
2628
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
2629
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2630
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2483
2631
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
2484
2632
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
2485
2633
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -2521,6 +2669,7 @@ declare const StormcloudPlayer: {
|
|
|
2521
2669
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
2522
2670
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
2523
2671
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
2672
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
2524
2673
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
2525
2674
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
2526
2675
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -2531,6 +2680,7 @@ declare const StormcloudPlayer: {
|
|
|
2531
2680
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
2532
2681
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
2533
2682
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2683
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
2534
2684
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2535
2685
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
2536
2686
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -2542,6 +2692,7 @@ declare const StormcloudPlayer: {
|
|
|
2542
2692
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
2543
2693
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
2544
2694
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
2695
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2545
2696
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
2546
2697
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
2547
2698
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -2553,8 +2704,6 @@ declare const StormcloudPlayer: {
|
|
|
2553
2704
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2554
2705
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
2555
2706
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
2556
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2557
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2558
2707
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
2559
2708
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
2560
2709
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2563,7 +2712,6 @@ declare const StormcloudPlayer: {
|
|
|
2563
2712
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2564
2713
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
2565
2714
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
2566
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
2567
2715
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2568
2716
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2569
2717
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -2574,11 +2722,15 @@ declare const StormcloudPlayer: {
|
|
|
2574
2722
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2575
2723
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
2576
2724
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
2725
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2726
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2577
2727
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
2578
2728
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2579
2729
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
2580
2730
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2581
|
-
|
|
2731
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
2732
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2733
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2582
2734
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
2583
2735
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2584
2736
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -2697,6 +2849,8 @@ declare const StormcloudPlayer: {
|
|
|
2697
2849
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2698
2850
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2699
2851
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
2852
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2853
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2700
2854
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2701
2855
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2702
2856
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -2751,13 +2905,14 @@ declare const StormcloudPlayer: {
|
|
|
2751
2905
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2752
2906
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2753
2907
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
2754
|
-
WebkitUserSelect?: csstype.Property.
|
|
2908
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
2755
2909
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
2756
2910
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
2757
2911
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
2758
2912
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
2759
2913
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
2760
2914
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
2915
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2761
2916
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
2762
2917
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
2763
2918
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -2778,7 +2933,6 @@ declare const StormcloudPlayer: {
|
|
|
2778
2933
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2779
2934
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
2780
2935
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2781
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
2782
2936
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
2783
2937
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
2784
2938
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -2788,16 +2942,22 @@ declare const StormcloudPlayer: {
|
|
|
2788
2942
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2789
2943
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
2790
2944
|
clip?: csstype.Property.Clip | undefined;
|
|
2945
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2791
2946
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
2792
2947
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
2793
2948
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
2794
2949
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2950
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
2795
2951
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
2796
2952
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2797
2953
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2798
2954
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
2799
2955
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2800
2956
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2957
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2958
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2959
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2960
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2801
2961
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
2802
2962
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
2803
2963
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -2815,9 +2975,7 @@ declare const StormcloudPlayer: {
|
|
|
2815
2975
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2816
2976
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
2817
2977
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2818
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2819
2978
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
2820
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
2821
2979
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
2822
2980
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2823
2981
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -2832,6 +2990,8 @@ declare const StormcloudPlayer: {
|
|
|
2832
2990
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2833
2991
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2834
2992
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2993
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2994
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2835
2995
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
2836
2996
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
2837
2997
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -2839,20 +2999,15 @@ declare const StormcloudPlayer: {
|
|
|
2839
2999
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
2840
3000
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
2841
3001
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
2842
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2843
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2844
3002
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2845
3003
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2846
3004
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
2847
3005
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
2848
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
2849
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2850
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2851
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2852
3006
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
2853
3007
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
2854
3008
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2855
3009
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3010
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
2856
3011
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
2857
3012
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
2858
3013
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2885,36 +3040,9 @@ declare const StormcloudPlayer: {
|
|
|
2885
3040
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2886
3041
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2887
3042
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2888
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2889
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2890
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2891
3043
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2892
3044
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
2893
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2894
|
-
fill?: csstype.Property.Fill | undefined;
|
|
2895
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2896
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
2897
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2898
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2899
3045
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
2900
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2901
|
-
marker?: csstype.Property.Marker | undefined;
|
|
2902
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2903
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2904
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2905
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2906
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
2907
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2908
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
2909
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2910
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2911
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2912
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2913
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2914
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2915
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2916
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2917
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2918
3046
|
};
|
|
2919
3047
|
}, HTMLElement>;
|
|
2920
3048
|
context: unknown;
|
|
@@ -2964,6 +3092,9 @@ declare const StormcloudPlayer: {
|
|
|
2964
3092
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
2965
3093
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
2966
3094
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
3095
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
3096
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
3097
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
2967
3098
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
2968
3099
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
2969
3100
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -2990,17 +3121,14 @@ declare const StormcloudPlayer: {
|
|
|
2990
3121
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
2991
3122
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
2992
3123
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2993
|
-
|
|
3124
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2994
3125
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2995
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2996
3126
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
2997
3127
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
2998
3128
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2999
3129
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
3000
3130
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
3001
3131
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
3002
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3003
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3004
3132
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
3005
3133
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
3006
3134
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -3014,15 +3142,12 @@ declare const StormcloudPlayer: {
|
|
|
3014
3142
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
3015
3143
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
3016
3144
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
3017
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3018
3145
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
3019
3146
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
3020
3147
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
3021
3148
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
3022
3149
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3023
3150
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
3024
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3025
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3026
3151
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
3027
3152
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
3028
3153
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -3049,8 +3174,10 @@ declare const StormcloudPlayer: {
|
|
|
3049
3174
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
3050
3175
|
clear?: csstype.Property.Clear | undefined;
|
|
3051
3176
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
3177
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
3052
3178
|
color?: csstype.Property.Color | undefined;
|
|
3053
3179
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3180
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
3054
3181
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
3055
3182
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
3056
3183
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -3073,9 +3200,17 @@ declare const StormcloudPlayer: {
|
|
|
3073
3200
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
3074
3201
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
3075
3202
|
cursor?: csstype.Property.Cursor | undefined;
|
|
3203
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
3204
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
3205
|
+
d?: csstype.Property.D | undefined;
|
|
3076
3206
|
direction?: csstype.Property.Direction | undefined;
|
|
3077
3207
|
display?: csstype.Property.Display | undefined;
|
|
3208
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
3078
3209
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
3210
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
3211
|
+
fill?: csstype.Property.Fill | undefined;
|
|
3212
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
3213
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
3079
3214
|
filter?: csstype.Property.Filter | undefined;
|
|
3080
3215
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3081
3216
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -3083,6 +3218,8 @@ declare const StormcloudPlayer: {
|
|
|
3083
3218
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
3084
3219
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
3085
3220
|
float?: csstype.Property.Float | undefined;
|
|
3221
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
3222
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
3086
3223
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
3087
3224
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3088
3225
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -3092,7 +3229,6 @@ declare const StormcloudPlayer: {
|
|
|
3092
3229
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
3093
3230
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
3094
3231
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
3095
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3096
3232
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
3097
3233
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
3098
3234
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -3109,6 +3245,7 @@ declare const StormcloudPlayer: {
|
|
|
3109
3245
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
3110
3246
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
3111
3247
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
3248
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
3112
3249
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
3113
3250
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3114
3251
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -3128,12 +3265,13 @@ declare const StormcloudPlayer: {
|
|
|
3128
3265
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
3129
3266
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
3130
3267
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
3268
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
3131
3269
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3132
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
3133
3270
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3134
3271
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3135
3272
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3136
3273
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3274
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
3137
3275
|
isolation?: csstype.Property.Isolation | undefined;
|
|
3138
3276
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3139
3277
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -3141,6 +3279,7 @@ declare const StormcloudPlayer: {
|
|
|
3141
3279
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
3142
3280
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
3143
3281
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
3282
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
3144
3283
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
3145
3284
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
3146
3285
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -3156,6 +3295,10 @@ declare const StormcloudPlayer: {
|
|
|
3156
3295
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
3157
3296
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
3158
3297
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
3298
|
+
marker?: csstype.Property.Marker | undefined;
|
|
3299
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
3300
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
3301
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
3159
3302
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
3160
3303
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
3161
3304
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -3190,6 +3333,7 @@ declare const StormcloudPlayer: {
|
|
|
3190
3333
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
3191
3334
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
3192
3335
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
3336
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
3193
3337
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
3194
3338
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
3195
3339
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -3225,25 +3369,32 @@ declare const StormcloudPlayer: {
|
|
|
3225
3369
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
3226
3370
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
3227
3371
|
page?: csstype.Property.Page | undefined;
|
|
3228
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3229
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3230
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3231
3372
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
3232
3373
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3233
3374
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3234
3375
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
3235
3376
|
position?: csstype.Property.Position | undefined;
|
|
3377
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
3378
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
3379
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3380
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
3381
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
3236
3382
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3237
3383
|
quotes?: csstype.Property.Quotes | undefined;
|
|
3384
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
3238
3385
|
resize?: csstype.Property.Resize | undefined;
|
|
3239
3386
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
3240
3387
|
rotate?: csstype.Property.Rotate | undefined;
|
|
3241
3388
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
3242
3389
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
3243
3390
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
3391
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
3244
3392
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
3393
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
3394
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
3245
3395
|
scale?: csstype.Property.Scale | undefined;
|
|
3246
3396
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
3397
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
3247
3398
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
3248
3399
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
3249
3400
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -3275,10 +3426,28 @@ declare const StormcloudPlayer: {
|
|
|
3275
3426
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
3276
3427
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
3277
3428
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
3429
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
3430
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
3431
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
3432
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
3433
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
3434
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
3435
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
3436
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
3437
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
3438
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
3439
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
3440
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
3441
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
3278
3442
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3279
3443
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
3280
3444
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
3281
3445
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3446
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
3447
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
3448
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
3449
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
3450
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
3282
3451
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
3283
3452
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3284
3453
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -3296,10 +3465,12 @@ declare const StormcloudPlayer: {
|
|
|
3296
3465
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
3297
3466
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
3298
3467
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3468
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
3299
3469
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
3300
3470
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
3301
3471
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
3302
|
-
|
|
3472
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
3473
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
3303
3474
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
3304
3475
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
3305
3476
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -3315,21 +3486,24 @@ declare const StormcloudPlayer: {
|
|
|
3315
3486
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
3316
3487
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
3317
3488
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
3489
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
3318
3490
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
3319
3491
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
3320
3492
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
3321
3493
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
3494
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
3322
3495
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
3323
3496
|
visibility?: csstype.Property.Visibility | undefined;
|
|
3324
3497
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
3325
3498
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
3326
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
3327
3499
|
widows?: csstype.Property.Widows | undefined;
|
|
3328
3500
|
willChange?: csstype.Property.WillChange | undefined;
|
|
3329
3501
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
3330
3502
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
3331
3503
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
3332
3504
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
3505
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
3506
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
3333
3507
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
3334
3508
|
zoom?: csstype.Property.Zoom | undefined;
|
|
3335
3509
|
all?: csstype.Property.All | undefined;
|
|
@@ -3339,14 +3513,20 @@ declare const StormcloudPlayer: {
|
|
|
3339
3513
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
3340
3514
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
3341
3515
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
3516
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
3342
3517
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
3343
3518
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
3519
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3520
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3344
3521
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
3345
3522
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
3346
3523
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
3347
3524
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
3525
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3348
3526
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
3349
3527
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
3528
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3529
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3350
3530
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
3351
3531
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
3352
3532
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -3388,6 +3568,7 @@ declare const StormcloudPlayer: {
|
|
|
3388
3568
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
3389
3569
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
3390
3570
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
3571
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
3391
3572
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
3392
3573
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
3393
3574
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -3398,6 +3579,7 @@ declare const StormcloudPlayer: {
|
|
|
3398
3579
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
3399
3580
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
3400
3581
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3582
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
3401
3583
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3402
3584
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
3403
3585
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -3409,6 +3591,7 @@ declare const StormcloudPlayer: {
|
|
|
3409
3591
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
3410
3592
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
3411
3593
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
3594
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3412
3595
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
3413
3596
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
3414
3597
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -3420,8 +3603,6 @@ declare const StormcloudPlayer: {
|
|
|
3420
3603
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3421
3604
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
3422
3605
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
3423
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3424
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3425
3606
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
3426
3607
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
3427
3608
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -3430,7 +3611,6 @@ declare const StormcloudPlayer: {
|
|
|
3430
3611
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3431
3612
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
3432
3613
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
3433
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
3434
3614
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3435
3615
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3436
3616
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -3441,11 +3621,15 @@ declare const StormcloudPlayer: {
|
|
|
3441
3621
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
3442
3622
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
3443
3623
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
3624
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3625
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3444
3626
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
3445
3627
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3446
3628
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
3447
3629
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3448
|
-
|
|
3630
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
3631
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
3632
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
3449
3633
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
3450
3634
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3451
3635
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -3564,6 +3748,8 @@ declare const StormcloudPlayer: {
|
|
|
3564
3748
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3565
3749
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3566
3750
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
3751
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
3752
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3567
3753
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3568
3754
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3569
3755
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -3618,13 +3804,14 @@ declare const StormcloudPlayer: {
|
|
|
3618
3804
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3619
3805
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3620
3806
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
3621
|
-
WebkitUserSelect?: csstype.Property.
|
|
3807
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
3622
3808
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
3623
3809
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
3624
3810
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
3625
3811
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
3626
3812
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
3627
3813
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
3814
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3628
3815
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
3629
3816
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
3630
3817
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -3645,7 +3832,6 @@ declare const StormcloudPlayer: {
|
|
|
3645
3832
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3646
3833
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
3647
3834
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3648
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
3649
3835
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
3650
3836
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
3651
3837
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -3655,16 +3841,22 @@ declare const StormcloudPlayer: {
|
|
|
3655
3841
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3656
3842
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
3657
3843
|
clip?: csstype.Property.Clip | undefined;
|
|
3844
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3658
3845
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
3659
3846
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
3660
3847
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
3661
3848
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
3849
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
3662
3850
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
3663
3851
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3664
3852
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3665
3853
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
3666
3854
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3667
3855
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3856
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3857
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3858
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3859
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3668
3860
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
3669
3861
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
3670
3862
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -3682,9 +3874,7 @@ declare const StormcloudPlayer: {
|
|
|
3682
3874
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3683
3875
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
3684
3876
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3685
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3686
3877
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
3687
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
3688
3878
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
3689
3879
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
3690
3880
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -3699,6 +3889,8 @@ declare const StormcloudPlayer: {
|
|
|
3699
3889
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3700
3890
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
3701
3891
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
3892
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3893
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3702
3894
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
3703
3895
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
3704
3896
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -3706,20 +3898,15 @@ declare const StormcloudPlayer: {
|
|
|
3706
3898
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
3707
3899
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
3708
3900
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
3709
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3710
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3711
3901
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3712
3902
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3713
3903
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
3714
3904
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
3715
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
3716
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
3717
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
3718
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3719
3905
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
3720
3906
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
3721
3907
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3722
3908
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3909
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
3723
3910
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
3724
3911
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
3725
3912
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -3752,36 +3939,9 @@ declare const StormcloudPlayer: {
|
|
|
3752
3939
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
3753
3940
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3754
3941
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
3755
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
3756
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
3757
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
3758
3942
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
3759
3943
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
3760
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
3761
|
-
fill?: csstype.Property.Fill | undefined;
|
|
3762
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
3763
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
3764
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
3765
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
3766
3944
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
3767
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
3768
|
-
marker?: csstype.Property.Marker | undefined;
|
|
3769
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
3770
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
3771
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
3772
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
3773
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
3774
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
3775
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
3776
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
3777
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
3778
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
3779
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
3780
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
3781
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
3782
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
3783
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
3784
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
3785
3945
|
};
|
|
3786
3946
|
}, HTMLElement>;
|
|
3787
3947
|
context: unknown;
|
|
@@ -3842,6 +4002,16 @@ declare function getClientInfo(): ClientInfo;
|
|
|
3842
4002
|
declare function getBrowserID(clientInfo: ClientInfo): Promise<string>;
|
|
3843
4003
|
declare function sendInitialTracking(licenseKey?: string): Promise<void>;
|
|
3844
4004
|
declare function sendHeartbeat(licenseKey?: string): Promise<void>;
|
|
4005
|
+
declare function sendAdDetectTracking(licenseKey: string | undefined, payload: Omit<AdDetectInfo, "source" | "timestamp"> & Partial<Pick<AdDetectInfo, "source" | "timestamp">>): Promise<void>;
|
|
4006
|
+
declare function sendAdLoadedTracking(licenseKey: string | undefined, payload: Omit<AdLoadedInfo, "timestamp" | "source"> & {
|
|
4007
|
+
source?: AdTrackingSource | string;
|
|
4008
|
+
}, adPlayerType?: "ima" | "hls"): Promise<void>;
|
|
4009
|
+
type AdImpressionTrackingPayload = {
|
|
4010
|
+
adIndex: number;
|
|
4011
|
+
source?: AdTrackingSource | string;
|
|
4012
|
+
durationSeconds?: number;
|
|
4013
|
+
};
|
|
4014
|
+
declare function sendAdImpressionTracking(licenseKey: string | undefined, payload: AdImpressionTrackingPayload, adPlayerType?: "ima" | "hls"): Promise<void>;
|
|
3845
4015
|
|
|
3846
4016
|
declare function initializePolyfills(): void;
|
|
3847
4017
|
|
|
@@ -3898,4 +4068,4 @@ declare function createHlsAdPlayer(contentVideo: HTMLVideoElement, options?: {
|
|
|
3898
4068
|
mainHlsInstance?: Hls;
|
|
3899
4069
|
}): ImaController;
|
|
3900
4070
|
|
|
3901
|
-
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 };
|
|
4071
|
+
export { type AdBreak, type AdDetectInfo, type AdImpressionInfo, type AdLoadedInfo, type AdSchedule, type AdTrackingSource, 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, sendAdDetectTracking, sendAdImpressionTracking, sendAdLoadedTracking, sendHeartbeat, sendInitialTracking, supportsFeature, supportsGoogleIMA, supportsModernJS, supportsWebKitPresentationMode };
|