stormcloud-video-player 0.3.52 → 0.3.54
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 +552 -406
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +359 -220
- package/lib/index.d.ts +359 -220
- package/lib/index.js +513 -367
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +283 -146
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +11 -0
- package/lib/players/FilePlayer.cjs +99 -116
- package/lib/players/FilePlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.cjs +335 -198
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/index.cjs +414 -277
- 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/ima.cjs +43 -48
- package/lib/sdk/ima.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.cjs +374 -228
- package/lib/ui/StormcloudVideoPlayer.cjs.map +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 +19 -11
- package/lib/utils/tracking.cjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -154,6 +154,13 @@ declare class StormcloudVideoPlayer {
|
|
|
154
154
|
private readonly backoffBaseMs;
|
|
155
155
|
private readonly maxBackoffMs;
|
|
156
156
|
private placeholderContainer;
|
|
157
|
+
private globalConsecutiveNoFills;
|
|
158
|
+
private readonly globalNoFillThreshold;
|
|
159
|
+
private globalNoFillCooldownUntil;
|
|
160
|
+
private readonly globalNoFillBackoffBaseMs;
|
|
161
|
+
private readonly globalNoFillBackoffMaxMs;
|
|
162
|
+
private globalLastGamRequestTime;
|
|
163
|
+
private readonly globalMinGamIntervalMs;
|
|
157
164
|
private preloadPool;
|
|
158
165
|
private readonly maxPreloadPoolSize;
|
|
159
166
|
private preloadPoolActive;
|
|
@@ -216,6 +223,10 @@ declare class StormcloudVideoPlayer {
|
|
|
216
223
|
private isTemporaryAdError;
|
|
217
224
|
private isUrlInCooldown;
|
|
218
225
|
private cleanupTemporaryFailures;
|
|
226
|
+
private isGamInCooldown;
|
|
227
|
+
private recordGamNoFill;
|
|
228
|
+
private resetGamNoFillCounter;
|
|
229
|
+
private enforceGlobalRateLimit;
|
|
219
230
|
private playSingleAd;
|
|
220
231
|
private handleAdPodComplete;
|
|
221
232
|
private handleAdFailure;
|
|
@@ -351,6 +362,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
351
362
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
352
363
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
353
364
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
365
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
366
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
367
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
354
368
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
355
369
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
356
370
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -377,17 +391,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
377
391
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
378
392
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
379
393
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
380
|
-
|
|
394
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
381
395
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
382
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
383
396
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
384
397
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
385
398
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
386
399
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
387
400
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
388
401
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
389
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
390
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
391
402
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
392
403
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
393
404
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -401,15 +412,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
401
412
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
402
413
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
403
414
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
404
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
405
415
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
406
416
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
407
417
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
408
418
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
409
419
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
410
420
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
411
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
412
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
413
421
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
414
422
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
415
423
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -436,8 +444,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
436
444
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
437
445
|
clear?: csstype.Property.Clear | undefined;
|
|
438
446
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
447
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
439
448
|
color?: csstype.Property.Color | undefined;
|
|
440
449
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
450
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
441
451
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
442
452
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
443
453
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -460,9 +470,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
460
470
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
461
471
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
462
472
|
cursor?: csstype.Property.Cursor | undefined;
|
|
473
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
474
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
475
|
+
d?: csstype.Property.D | undefined;
|
|
463
476
|
direction?: csstype.Property.Direction | undefined;
|
|
464
477
|
display?: csstype.Property.Display | undefined;
|
|
478
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
465
479
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
480
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
481
|
+
fill?: csstype.Property.Fill | undefined;
|
|
482
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
483
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
466
484
|
filter?: csstype.Property.Filter | undefined;
|
|
467
485
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
468
486
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -470,6 +488,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
470
488
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
471
489
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
472
490
|
float?: csstype.Property.Float | undefined;
|
|
491
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
492
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
473
493
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
474
494
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
475
495
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -479,7 +499,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
479
499
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
480
500
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
481
501
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
482
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
483
502
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
484
503
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
485
504
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -496,6 +515,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
496
515
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
497
516
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
498
517
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
518
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
499
519
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
500
520
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
501
521
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -515,12 +535,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
515
535
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
516
536
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
517
537
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
538
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
518
539
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
519
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
520
540
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
521
541
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
522
542
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
523
543
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
544
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
524
545
|
isolation?: csstype.Property.Isolation | undefined;
|
|
525
546
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
526
547
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -528,6 +549,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
528
549
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
529
550
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
530
551
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
552
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
531
553
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
532
554
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
533
555
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -543,6 +565,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
543
565
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
544
566
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
545
567
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
568
|
+
marker?: csstype.Property.Marker | undefined;
|
|
569
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
570
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
571
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
546
572
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
547
573
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
548
574
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -577,6 +603,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
577
603
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
578
604
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
579
605
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
606
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
580
607
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
581
608
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
582
609
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -612,25 +639,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
612
639
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
613
640
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
614
641
|
page?: csstype.Property.Page | undefined;
|
|
615
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
616
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
617
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
618
642
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
619
643
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
620
644
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
621
645
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
622
646
|
position?: csstype.Property.Position | undefined;
|
|
647
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
648
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
649
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
650
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
651
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
623
652
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
624
653
|
quotes?: csstype.Property.Quotes | undefined;
|
|
654
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
625
655
|
resize?: csstype.Property.Resize | undefined;
|
|
626
656
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
627
657
|
rotate?: csstype.Property.Rotate | undefined;
|
|
628
658
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
629
659
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
630
660
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
661
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
631
662
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
663
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
664
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
632
665
|
scale?: csstype.Property.Scale | undefined;
|
|
633
666
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
667
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
634
668
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
635
669
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
636
670
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -662,10 +696,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
662
696
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
663
697
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
664
698
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
699
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
700
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
701
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
702
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
703
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
704
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
705
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
706
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
707
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
708
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
709
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
710
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
711
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
665
712
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
666
713
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
667
714
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
668
715
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
716
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
717
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
718
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
719
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
720
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
669
721
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
670
722
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
671
723
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -683,10 +735,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
683
735
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
684
736
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
685
737
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
738
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
686
739
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
687
740
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
688
741
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
689
|
-
|
|
742
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
743
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
690
744
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
691
745
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
692
746
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -702,21 +756,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
702
756
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
703
757
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
704
758
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
759
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
705
760
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
706
761
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
707
762
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
708
763
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
764
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
709
765
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
710
766
|
visibility?: csstype.Property.Visibility | undefined;
|
|
711
767
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
712
768
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
713
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
714
769
|
widows?: csstype.Property.Widows | undefined;
|
|
715
770
|
willChange?: csstype.Property.WillChange | undefined;
|
|
716
771
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
717
772
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
718
773
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
719
774
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
775
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
776
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
720
777
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
721
778
|
zoom?: csstype.Property.Zoom | undefined;
|
|
722
779
|
all?: csstype.Property.All | undefined;
|
|
@@ -726,14 +783,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
726
783
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
727
784
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
728
785
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
786
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
729
787
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
730
788
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
789
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
790
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
731
791
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
732
792
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
733
793
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
734
794
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
795
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
735
796
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
736
797
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
798
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
799
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
737
800
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
738
801
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
739
802
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -775,6 +838,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
775
838
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
776
839
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
777
840
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
841
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
778
842
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
779
843
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
780
844
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -785,6 +849,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
785
849
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
786
850
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
787
851
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
852
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
788
853
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
789
854
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
790
855
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -796,6 +861,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
796
861
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
797
862
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
798
863
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
864
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
799
865
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
800
866
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
801
867
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -807,8 +873,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
807
873
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
808
874
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
809
875
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
810
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
811
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
812
876
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
813
877
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
814
878
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -817,7 +881,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
817
881
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
818
882
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
819
883
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
820
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
821
884
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
822
885
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
823
886
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -828,11 +891,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
828
891
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
829
892
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
830
893
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
894
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
895
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
831
896
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
832
897
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
833
898
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
834
899
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
835
|
-
|
|
900
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
901
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
902
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
836
903
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
837
904
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
838
905
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -951,6 +1018,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
951
1018
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
952
1019
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
953
1020
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1021
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1022
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
954
1023
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
955
1024
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
956
1025
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1005,13 +1074,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1005
1074
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1006
1075
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1007
1076
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1008
|
-
WebkitUserSelect?: csstype.Property.
|
|
1077
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1009
1078
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1010
1079
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1011
1080
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1012
1081
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1013
1082
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1014
1083
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
1084
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1015
1085
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1016
1086
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1017
1087
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1032,7 +1102,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1032
1102
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1033
1103
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1034
1104
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1035
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1036
1105
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1037
1106
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1038
1107
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1042,16 +1111,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1042
1111
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1043
1112
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1044
1113
|
clip?: csstype.Property.Clip | undefined;
|
|
1114
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1045
1115
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1046
1116
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1047
1117
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1048
1118
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
1119
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1049
1120
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1050
1121
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1051
1122
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1052
1123
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1053
1124
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1054
1125
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1126
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1127
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1128
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1129
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1055
1130
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1056
1131
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1057
1132
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -1069,9 +1144,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1069
1144
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1070
1145
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
1071
1146
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1072
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1073
1147
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
1074
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
1075
1148
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
1076
1149
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1077
1150
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -1086,6 +1159,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1086
1159
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1087
1160
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1088
1161
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
1162
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1163
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1089
1164
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
1090
1165
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
1091
1166
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -1093,20 +1168,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1093
1168
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
1094
1169
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
1095
1170
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
1096
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1097
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1098
1171
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1099
1172
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1100
1173
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
1101
1174
|
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
1175
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
1107
1176
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
1108
1177
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1109
1178
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1179
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
1110
1180
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
1111
1181
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
1112
1182
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -1139,36 +1209,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1139
1209
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
1140
1210
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1141
1211
|
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
1212
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
1146
1213
|
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
1214
|
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
1215
|
};
|
|
1173
1216
|
}, HTMLElement>;
|
|
1174
1217
|
context: unknown;
|
|
@@ -1218,6 +1261,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1218
1261
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
1219
1262
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
1220
1263
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
1264
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
1265
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
1266
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
1221
1267
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
1222
1268
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
1223
1269
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -1244,17 +1290,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1244
1290
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
1245
1291
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
1246
1292
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1247
|
-
|
|
1293
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
1248
1294
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1249
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1250
1295
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
1251
1296
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
1252
1297
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
1253
1298
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
1254
1299
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
1255
1300
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
1256
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1257
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1258
1301
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
1259
1302
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1260
1303
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -1268,15 +1311,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1268
1311
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
1269
1312
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
1270
1313
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
1271
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1272
1314
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
1273
1315
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
1274
1316
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1275
1317
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
1276
1318
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1277
1319
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
1278
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1279
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1280
1320
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
1281
1321
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
1282
1322
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -1303,8 +1343,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1303
1343
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
1304
1344
|
clear?: csstype.Property.Clear | undefined;
|
|
1305
1345
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
1346
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
1306
1347
|
color?: csstype.Property.Color | undefined;
|
|
1307
1348
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1349
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
1308
1350
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
1309
1351
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
1310
1352
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -1327,9 +1369,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1327
1369
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
1328
1370
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
1329
1371
|
cursor?: csstype.Property.Cursor | undefined;
|
|
1372
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
1373
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
1374
|
+
d?: csstype.Property.D | undefined;
|
|
1330
1375
|
direction?: csstype.Property.Direction | undefined;
|
|
1331
1376
|
display?: csstype.Property.Display | undefined;
|
|
1377
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
1332
1378
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
1379
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
1380
|
+
fill?: csstype.Property.Fill | undefined;
|
|
1381
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
1382
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
1333
1383
|
filter?: csstype.Property.Filter | undefined;
|
|
1334
1384
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
1335
1385
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -1337,6 +1387,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1337
1387
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
1338
1388
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
1339
1389
|
float?: csstype.Property.Float | undefined;
|
|
1390
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
1391
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
1340
1392
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
1341
1393
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1342
1394
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -1346,7 +1398,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1346
1398
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
1347
1399
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
1348
1400
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
1349
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1350
1401
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
1351
1402
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
1352
1403
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -1363,6 +1414,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1363
1414
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
1364
1415
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
1365
1416
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
1417
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
1366
1418
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
1367
1419
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
1368
1420
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -1382,12 +1434,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1382
1434
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
1383
1435
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
1384
1436
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
1437
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
1385
1438
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1386
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
1387
1439
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1388
1440
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1389
1441
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1390
1442
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1443
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
1391
1444
|
isolation?: csstype.Property.Isolation | undefined;
|
|
1392
1445
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1393
1446
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -1395,6 +1448,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1395
1448
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
1396
1449
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
1397
1450
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
1451
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
1398
1452
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
1399
1453
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
1400
1454
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1410,6 +1464,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1410
1464
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
1411
1465
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
1412
1466
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
1467
|
+
marker?: csstype.Property.Marker | undefined;
|
|
1468
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
1469
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
1470
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
1413
1471
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
1414
1472
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
1415
1473
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -1444,6 +1502,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1444
1502
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
1445
1503
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
1446
1504
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
1505
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
1447
1506
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
1448
1507
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
1449
1508
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -1479,25 +1538,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1479
1538
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
1480
1539
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
1481
1540
|
page?: csstype.Property.Page | undefined;
|
|
1482
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1483
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1484
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1485
1541
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
1486
1542
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1487
1543
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1488
1544
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
1489
1545
|
position?: csstype.Property.Position | undefined;
|
|
1546
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
1547
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
1548
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1549
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
1550
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
1490
1551
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1491
1552
|
quotes?: csstype.Property.Quotes | undefined;
|
|
1553
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
1492
1554
|
resize?: csstype.Property.Resize | undefined;
|
|
1493
1555
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
1494
1556
|
rotate?: csstype.Property.Rotate | undefined;
|
|
1495
1557
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
1496
1558
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
1497
1559
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
1560
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
1498
1561
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
1562
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
1563
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
1499
1564
|
scale?: csstype.Property.Scale | undefined;
|
|
1500
1565
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
1566
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
1501
1567
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1502
1568
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1503
1569
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1529,10 +1595,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1529
1595
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
1530
1596
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
1531
1597
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
1598
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
1599
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
1600
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
1601
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
1602
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
1603
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
1604
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
1605
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
1606
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
1607
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
1608
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
1609
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
1610
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
1532
1611
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1533
1612
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
1534
1613
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
1535
1614
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1615
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
1616
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
1617
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
1618
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
1619
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
1536
1620
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
1537
1621
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1538
1622
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -1550,10 +1634,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1550
1634
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
1551
1635
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
1552
1636
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1637
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
1553
1638
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
1554
1639
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
1555
1640
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
1556
|
-
|
|
1641
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
1642
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
1557
1643
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
1558
1644
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
1559
1645
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -1569,21 +1655,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1569
1655
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
1570
1656
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
1571
1657
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
1658
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
1572
1659
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
1573
1660
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
1574
1661
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
1575
1662
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
1663
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
1576
1664
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
1577
1665
|
visibility?: csstype.Property.Visibility | undefined;
|
|
1578
1666
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
1579
1667
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
1580
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
1581
1668
|
widows?: csstype.Property.Widows | undefined;
|
|
1582
1669
|
willChange?: csstype.Property.WillChange | undefined;
|
|
1583
1670
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
1584
1671
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
1585
1672
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
1586
1673
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
1674
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
1675
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
1587
1676
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
1588
1677
|
zoom?: csstype.Property.Zoom | undefined;
|
|
1589
1678
|
all?: csstype.Property.All | undefined;
|
|
@@ -1593,14 +1682,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1593
1682
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
1594
1683
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
1595
1684
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
1685
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1596
1686
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
1597
1687
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
1688
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1689
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1598
1690
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
1599
1691
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
1600
1692
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
1601
1693
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
1694
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1602
1695
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
1603
1696
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
1697
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1698
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1604
1699
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
1605
1700
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
1606
1701
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -1642,6 +1737,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1642
1737
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
1643
1738
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
1644
1739
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
1740
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
1645
1741
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
1646
1742
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
1647
1743
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1652,6 +1748,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1652
1748
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
1653
1749
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
1654
1750
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1751
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
1655
1752
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1656
1753
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
1657
1754
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -1663,6 +1760,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1663
1760
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
1664
1761
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
1665
1762
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
1763
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1666
1764
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
1667
1765
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
1668
1766
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -1674,8 +1772,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1674
1772
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1675
1773
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
1676
1774
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
1677
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1678
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1679
1775
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
1680
1776
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
1681
1777
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1684,7 +1780,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1684
1780
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1685
1781
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
1686
1782
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
1687
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
1688
1783
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1689
1784
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1690
1785
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -1695,11 +1790,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1695
1790
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1696
1791
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
1697
1792
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
1793
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1794
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1698
1795
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
1699
1796
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1700
1797
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
1701
1798
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1702
|
-
|
|
1799
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
1800
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1801
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1703
1802
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
1704
1803
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1705
1804
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -1818,6 +1917,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1818
1917
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1819
1918
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1820
1919
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1920
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1921
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1821
1922
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1822
1923
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1823
1924
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1872,13 +1973,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1872
1973
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1873
1974
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1874
1975
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1875
|
-
WebkitUserSelect?: csstype.Property.
|
|
1976
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1876
1977
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1877
1978
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1878
1979
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1879
1980
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1880
1981
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1881
1982
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
1983
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1882
1984
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1883
1985
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1884
1986
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1899,7 +2001,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1899
2001
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1900
2002
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1901
2003
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1902
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1903
2004
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1904
2005
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1905
2006
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1909,16 +2010,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1909
2010
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1910
2011
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1911
2012
|
clip?: csstype.Property.Clip | undefined;
|
|
2013
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1912
2014
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1913
2015
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1914
2016
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1915
2017
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2018
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1916
2019
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1917
2020
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1918
2021
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1919
2022
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1920
2023
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1921
2024
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2025
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2026
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2027
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2028
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1922
2029
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1923
2030
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1924
2031
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -1936,9 +2043,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1936
2043
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1937
2044
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
1938
2045
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1939
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1940
2046
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
1941
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
1942
2047
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
1943
2048
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1944
2049
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -1953,6 +2058,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1953
2058
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1954
2059
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1955
2060
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2061
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2062
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1956
2063
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
1957
2064
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
1958
2065
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -1960,20 +2067,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1960
2067
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
1961
2068
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
1962
2069
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
1963
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1964
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1965
2070
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1966
2071
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1967
2072
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
1968
2073
|
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
2074
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
1974
2075
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
1975
2076
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1976
2077
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2078
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
1977
2079
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
1978
2080
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
1979
2081
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2006,36 +2108,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2006
2108
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2007
2109
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2008
2110
|
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
2111
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2013
2112
|
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
2113
|
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
2114
|
};
|
|
2040
2115
|
}, HTMLElement>;
|
|
2041
2116
|
context: unknown;
|
|
@@ -2097,6 +2172,9 @@ declare const StormcloudPlayer: {
|
|
|
2097
2172
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
2098
2173
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
2099
2174
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
2175
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2176
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
2177
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
2100
2178
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
2101
2179
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
2102
2180
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -2123,17 +2201,14 @@ declare const StormcloudPlayer: {
|
|
|
2123
2201
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
2124
2202
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
2125
2203
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2126
|
-
|
|
2204
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2127
2205
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2128
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2129
2206
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
2130
2207
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
2131
2208
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2132
2209
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
2133
2210
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
2134
2211
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
2135
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2136
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2137
2212
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
2138
2213
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2139
2214
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -2147,15 +2222,12 @@ declare const StormcloudPlayer: {
|
|
|
2147
2222
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
2148
2223
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
2149
2224
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
2150
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2151
2225
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
2152
2226
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
2153
2227
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
2154
2228
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
2155
2229
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2156
2230
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
2157
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2158
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2159
2231
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
2160
2232
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
2161
2233
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -2182,8 +2254,10 @@ declare const StormcloudPlayer: {
|
|
|
2182
2254
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
2183
2255
|
clear?: csstype.Property.Clear | undefined;
|
|
2184
2256
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
2257
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2185
2258
|
color?: csstype.Property.Color | undefined;
|
|
2186
2259
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2260
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
2187
2261
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
2188
2262
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
2189
2263
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -2206,9 +2280,17 @@ declare const StormcloudPlayer: {
|
|
|
2206
2280
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
2207
2281
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
2208
2282
|
cursor?: csstype.Property.Cursor | undefined;
|
|
2283
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
2284
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
2285
|
+
d?: csstype.Property.D | undefined;
|
|
2209
2286
|
direction?: csstype.Property.Direction | undefined;
|
|
2210
2287
|
display?: csstype.Property.Display | undefined;
|
|
2288
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2211
2289
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
2290
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
2291
|
+
fill?: csstype.Property.Fill | undefined;
|
|
2292
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2293
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
2212
2294
|
filter?: csstype.Property.Filter | undefined;
|
|
2213
2295
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2214
2296
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -2216,6 +2298,8 @@ declare const StormcloudPlayer: {
|
|
|
2216
2298
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
2217
2299
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
2218
2300
|
float?: csstype.Property.Float | undefined;
|
|
2301
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2302
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2219
2303
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
2220
2304
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2221
2305
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -2225,7 +2309,6 @@ declare const StormcloudPlayer: {
|
|
|
2225
2309
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
2226
2310
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
2227
2311
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
2228
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2229
2312
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
2230
2313
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
2231
2314
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -2242,6 +2325,7 @@ declare const StormcloudPlayer: {
|
|
|
2242
2325
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
2243
2326
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
2244
2327
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
2328
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
2245
2329
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
2246
2330
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2247
2331
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -2261,12 +2345,13 @@ declare const StormcloudPlayer: {
|
|
|
2261
2345
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
2262
2346
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
2263
2347
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
2348
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
2264
2349
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2265
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
2266
2350
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2267
2351
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2268
2352
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2269
2353
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2354
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
2270
2355
|
isolation?: csstype.Property.Isolation | undefined;
|
|
2271
2356
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2272
2357
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -2274,6 +2359,7 @@ declare const StormcloudPlayer: {
|
|
|
2274
2359
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
2275
2360
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
2276
2361
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
2362
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2277
2363
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
2278
2364
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
2279
2365
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -2289,6 +2375,10 @@ declare const StormcloudPlayer: {
|
|
|
2289
2375
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
2290
2376
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
2291
2377
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
2378
|
+
marker?: csstype.Property.Marker | undefined;
|
|
2379
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2380
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2381
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2292
2382
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
2293
2383
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
2294
2384
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -2323,6 +2413,7 @@ declare const StormcloudPlayer: {
|
|
|
2323
2413
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
2324
2414
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
2325
2415
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
2416
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
2326
2417
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
2327
2418
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
2328
2419
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -2358,25 +2449,32 @@ declare const StormcloudPlayer: {
|
|
|
2358
2449
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
2359
2450
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
2360
2451
|
page?: csstype.Property.Page | undefined;
|
|
2361
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2362
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2363
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2364
2452
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
2365
2453
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2366
2454
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2367
2455
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
2368
2456
|
position?: csstype.Property.Position | undefined;
|
|
2457
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
2458
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
2459
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2460
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
2461
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
2369
2462
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2370
2463
|
quotes?: csstype.Property.Quotes | undefined;
|
|
2464
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
2371
2465
|
resize?: csstype.Property.Resize | undefined;
|
|
2372
2466
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
2373
2467
|
rotate?: csstype.Property.Rotate | undefined;
|
|
2374
2468
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
2375
2469
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
2376
2470
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
2471
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
2377
2472
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
2473
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
2474
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
2378
2475
|
scale?: csstype.Property.Scale | undefined;
|
|
2379
2476
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
2477
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
2380
2478
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
2381
2479
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
2382
2480
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -2408,10 +2506,28 @@ declare const StormcloudPlayer: {
|
|
|
2408
2506
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
2409
2507
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
2410
2508
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
2509
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2510
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
2511
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
2512
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2513
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
2514
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
2515
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2516
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2517
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2518
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2519
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2520
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2521
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2411
2522
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2412
2523
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
2413
2524
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
2414
2525
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2526
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2527
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
2528
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
2529
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
2530
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
2415
2531
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
2416
2532
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2417
2533
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -2429,10 +2545,12 @@ declare const StormcloudPlayer: {
|
|
|
2429
2545
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
2430
2546
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
2431
2547
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2548
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
2432
2549
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
2433
2550
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
2434
2551
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
2435
|
-
|
|
2552
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
2553
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
2436
2554
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
2437
2555
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
2438
2556
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -2448,21 +2566,24 @@ declare const StormcloudPlayer: {
|
|
|
2448
2566
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
2449
2567
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
2450
2568
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
2569
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2451
2570
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
2452
2571
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
2453
2572
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
2454
2573
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
2574
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
2455
2575
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
2456
2576
|
visibility?: csstype.Property.Visibility | undefined;
|
|
2457
2577
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
2458
2578
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
2459
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
2460
2579
|
widows?: csstype.Property.Widows | undefined;
|
|
2461
2580
|
willChange?: csstype.Property.WillChange | undefined;
|
|
2462
2581
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
2463
2582
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
2464
2583
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
2465
2584
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
2585
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
2586
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
2466
2587
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
2467
2588
|
zoom?: csstype.Property.Zoom | undefined;
|
|
2468
2589
|
all?: csstype.Property.All | undefined;
|
|
@@ -2472,14 +2593,20 @@ declare const StormcloudPlayer: {
|
|
|
2472
2593
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
2473
2594
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
2474
2595
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
2596
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2475
2597
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
2476
2598
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
2599
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2600
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2477
2601
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
2478
2602
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
2479
2603
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
2480
2604
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
2605
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2481
2606
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
2482
2607
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
2608
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2609
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2483
2610
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
2484
2611
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
2485
2612
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -2521,6 +2648,7 @@ declare const StormcloudPlayer: {
|
|
|
2521
2648
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
2522
2649
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
2523
2650
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
2651
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
2524
2652
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
2525
2653
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
2526
2654
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -2531,6 +2659,7 @@ declare const StormcloudPlayer: {
|
|
|
2531
2659
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
2532
2660
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
2533
2661
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2662
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
2534
2663
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2535
2664
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
2536
2665
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -2542,6 +2671,7 @@ declare const StormcloudPlayer: {
|
|
|
2542
2671
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
2543
2672
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
2544
2673
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
2674
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2545
2675
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
2546
2676
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
2547
2677
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -2553,8 +2683,6 @@ declare const StormcloudPlayer: {
|
|
|
2553
2683
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2554
2684
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
2555
2685
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
2556
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2557
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2558
2686
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
2559
2687
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
2560
2688
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2563,7 +2691,6 @@ declare const StormcloudPlayer: {
|
|
|
2563
2691
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2564
2692
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
2565
2693
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
2566
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
2567
2694
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2568
2695
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2569
2696
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -2574,11 +2701,15 @@ declare const StormcloudPlayer: {
|
|
|
2574
2701
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2575
2702
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
2576
2703
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
2704
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2705
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2577
2706
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
2578
2707
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2579
2708
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
2580
2709
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2581
|
-
|
|
2710
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
2711
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2712
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2582
2713
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
2583
2714
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2584
2715
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -2697,6 +2828,8 @@ declare const StormcloudPlayer: {
|
|
|
2697
2828
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2698
2829
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2699
2830
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
2831
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2832
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2700
2833
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2701
2834
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2702
2835
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -2751,13 +2884,14 @@ declare const StormcloudPlayer: {
|
|
|
2751
2884
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2752
2885
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2753
2886
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
2754
|
-
WebkitUserSelect?: csstype.Property.
|
|
2887
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
2755
2888
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
2756
2889
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
2757
2890
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
2758
2891
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
2759
2892
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
2760
2893
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
2894
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2761
2895
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
2762
2896
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
2763
2897
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -2778,7 +2912,6 @@ declare const StormcloudPlayer: {
|
|
|
2778
2912
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2779
2913
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
2780
2914
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2781
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
2782
2915
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
2783
2916
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
2784
2917
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -2788,16 +2921,22 @@ declare const StormcloudPlayer: {
|
|
|
2788
2921
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2789
2922
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
2790
2923
|
clip?: csstype.Property.Clip | undefined;
|
|
2924
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2791
2925
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
2792
2926
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
2793
2927
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
2794
2928
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2929
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
2795
2930
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
2796
2931
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2797
2932
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2798
2933
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
2799
2934
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2800
2935
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2936
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2937
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2938
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2939
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2801
2940
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
2802
2941
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
2803
2942
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -2815,9 +2954,7 @@ declare const StormcloudPlayer: {
|
|
|
2815
2954
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2816
2955
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
2817
2956
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2818
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2819
2957
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
2820
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
2821
2958
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
2822
2959
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2823
2960
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -2832,6 +2969,8 @@ declare const StormcloudPlayer: {
|
|
|
2832
2969
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2833
2970
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2834
2971
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2972
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2973
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2835
2974
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
2836
2975
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
2837
2976
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -2839,20 +2978,15 @@ declare const StormcloudPlayer: {
|
|
|
2839
2978
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
2840
2979
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
2841
2980
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
2842
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2843
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2844
2981
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2845
2982
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2846
2983
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
2847
2984
|
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
2985
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
2853
2986
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
2854
2987
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2855
2988
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2989
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
2856
2990
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
2857
2991
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
2858
2992
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2885,36 +3019,9 @@ declare const StormcloudPlayer: {
|
|
|
2885
3019
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2886
3020
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2887
3021
|
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
3022
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2892
3023
|
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
3024
|
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
3025
|
};
|
|
2919
3026
|
}, HTMLElement>;
|
|
2920
3027
|
context: unknown;
|
|
@@ -2964,6 +3071,9 @@ declare const StormcloudPlayer: {
|
|
|
2964
3071
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
2965
3072
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
2966
3073
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
3074
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
3075
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
3076
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
2967
3077
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
2968
3078
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
2969
3079
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -2990,17 +3100,14 @@ declare const StormcloudPlayer: {
|
|
|
2990
3100
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
2991
3101
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
2992
3102
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2993
|
-
|
|
3103
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2994
3104
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2995
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2996
3105
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
2997
3106
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
2998
3107
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2999
3108
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
3000
3109
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
3001
3110
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
3002
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3003
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3004
3111
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
3005
3112
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
3006
3113
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -3014,15 +3121,12 @@ declare const StormcloudPlayer: {
|
|
|
3014
3121
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
3015
3122
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
3016
3123
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
3017
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3018
3124
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
3019
3125
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
3020
3126
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
3021
3127
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
3022
3128
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3023
3129
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
3024
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3025
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3026
3130
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
3027
3131
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
3028
3132
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -3049,8 +3153,10 @@ declare const StormcloudPlayer: {
|
|
|
3049
3153
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
3050
3154
|
clear?: csstype.Property.Clear | undefined;
|
|
3051
3155
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
3156
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
3052
3157
|
color?: csstype.Property.Color | undefined;
|
|
3053
3158
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3159
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
3054
3160
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
3055
3161
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
3056
3162
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -3073,9 +3179,17 @@ declare const StormcloudPlayer: {
|
|
|
3073
3179
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
3074
3180
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
3075
3181
|
cursor?: csstype.Property.Cursor | undefined;
|
|
3182
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
3183
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
3184
|
+
d?: csstype.Property.D | undefined;
|
|
3076
3185
|
direction?: csstype.Property.Direction | undefined;
|
|
3077
3186
|
display?: csstype.Property.Display | undefined;
|
|
3187
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
3078
3188
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
3189
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
3190
|
+
fill?: csstype.Property.Fill | undefined;
|
|
3191
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
3192
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
3079
3193
|
filter?: csstype.Property.Filter | undefined;
|
|
3080
3194
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3081
3195
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -3083,6 +3197,8 @@ declare const StormcloudPlayer: {
|
|
|
3083
3197
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
3084
3198
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
3085
3199
|
float?: csstype.Property.Float | undefined;
|
|
3200
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
3201
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
3086
3202
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
3087
3203
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3088
3204
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -3092,7 +3208,6 @@ declare const StormcloudPlayer: {
|
|
|
3092
3208
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
3093
3209
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
3094
3210
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
3095
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3096
3211
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
3097
3212
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
3098
3213
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -3109,6 +3224,7 @@ declare const StormcloudPlayer: {
|
|
|
3109
3224
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
3110
3225
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
3111
3226
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
3227
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
3112
3228
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
3113
3229
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3114
3230
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -3128,12 +3244,13 @@ declare const StormcloudPlayer: {
|
|
|
3128
3244
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
3129
3245
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
3130
3246
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
3247
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
3131
3248
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3132
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
3133
3249
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3134
3250
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3135
3251
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3136
3252
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3253
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
3137
3254
|
isolation?: csstype.Property.Isolation | undefined;
|
|
3138
3255
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3139
3256
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -3141,6 +3258,7 @@ declare const StormcloudPlayer: {
|
|
|
3141
3258
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
3142
3259
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
3143
3260
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
3261
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
3144
3262
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
3145
3263
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
3146
3264
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -3156,6 +3274,10 @@ declare const StormcloudPlayer: {
|
|
|
3156
3274
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
3157
3275
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
3158
3276
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
3277
|
+
marker?: csstype.Property.Marker | undefined;
|
|
3278
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
3279
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
3280
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
3159
3281
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
3160
3282
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
3161
3283
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -3190,6 +3312,7 @@ declare const StormcloudPlayer: {
|
|
|
3190
3312
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
3191
3313
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
3192
3314
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
3315
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
3193
3316
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
3194
3317
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
3195
3318
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -3225,25 +3348,32 @@ declare const StormcloudPlayer: {
|
|
|
3225
3348
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
3226
3349
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
3227
3350
|
page?: csstype.Property.Page | undefined;
|
|
3228
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3229
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3230
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3231
3351
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
3232
3352
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3233
3353
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3234
3354
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
3235
3355
|
position?: csstype.Property.Position | undefined;
|
|
3356
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
3357
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
3358
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3359
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
3360
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
3236
3361
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3237
3362
|
quotes?: csstype.Property.Quotes | undefined;
|
|
3363
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
3238
3364
|
resize?: csstype.Property.Resize | undefined;
|
|
3239
3365
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
3240
3366
|
rotate?: csstype.Property.Rotate | undefined;
|
|
3241
3367
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
3242
3368
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
3243
3369
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
3370
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
3244
3371
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
3372
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
3373
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
3245
3374
|
scale?: csstype.Property.Scale | undefined;
|
|
3246
3375
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
3376
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
3247
3377
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
3248
3378
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
3249
3379
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -3275,10 +3405,28 @@ declare const StormcloudPlayer: {
|
|
|
3275
3405
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
3276
3406
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
3277
3407
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
3408
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
3409
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
3410
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
3411
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
3412
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
3413
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
3414
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
3415
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
3416
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
3417
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
3418
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
3419
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
3420
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
3278
3421
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3279
3422
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
3280
3423
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
3281
3424
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3425
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
3426
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
3427
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
3428
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
3429
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
3282
3430
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
3283
3431
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3284
3432
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -3296,10 +3444,12 @@ declare const StormcloudPlayer: {
|
|
|
3296
3444
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
3297
3445
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
3298
3446
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3447
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
3299
3448
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
3300
3449
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
3301
3450
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
3302
|
-
|
|
3451
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
3452
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
3303
3453
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
3304
3454
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
3305
3455
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -3315,21 +3465,24 @@ declare const StormcloudPlayer: {
|
|
|
3315
3465
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
3316
3466
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
3317
3467
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
3468
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
3318
3469
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
3319
3470
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
3320
3471
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
3321
3472
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
3473
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
3322
3474
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
3323
3475
|
visibility?: csstype.Property.Visibility | undefined;
|
|
3324
3476
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
3325
3477
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
3326
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
3327
3478
|
widows?: csstype.Property.Widows | undefined;
|
|
3328
3479
|
willChange?: csstype.Property.WillChange | undefined;
|
|
3329
3480
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
3330
3481
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
3331
3482
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
3332
3483
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
3484
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
3485
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
3333
3486
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
3334
3487
|
zoom?: csstype.Property.Zoom | undefined;
|
|
3335
3488
|
all?: csstype.Property.All | undefined;
|
|
@@ -3339,14 +3492,20 @@ declare const StormcloudPlayer: {
|
|
|
3339
3492
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
3340
3493
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
3341
3494
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
3495
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
3342
3496
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
3343
3497
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
3498
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3499
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3344
3500
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
3345
3501
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
3346
3502
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
3347
3503
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
3504
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3348
3505
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
3349
3506
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
3507
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3508
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3350
3509
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
3351
3510
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
3352
3511
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -3388,6 +3547,7 @@ declare const StormcloudPlayer: {
|
|
|
3388
3547
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
3389
3548
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
3390
3549
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
3550
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
3391
3551
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
3392
3552
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
3393
3553
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -3398,6 +3558,7 @@ declare const StormcloudPlayer: {
|
|
|
3398
3558
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
3399
3559
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
3400
3560
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3561
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
3401
3562
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3402
3563
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
3403
3564
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -3409,6 +3570,7 @@ declare const StormcloudPlayer: {
|
|
|
3409
3570
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
3410
3571
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
3411
3572
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
3573
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3412
3574
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
3413
3575
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
3414
3576
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -3420,8 +3582,6 @@ declare const StormcloudPlayer: {
|
|
|
3420
3582
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3421
3583
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
3422
3584
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
3423
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3424
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3425
3585
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
3426
3586
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
3427
3587
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -3430,7 +3590,6 @@ declare const StormcloudPlayer: {
|
|
|
3430
3590
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3431
3591
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
3432
3592
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
3433
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
3434
3593
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3435
3594
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3436
3595
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -3441,11 +3600,15 @@ declare const StormcloudPlayer: {
|
|
|
3441
3600
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
3442
3601
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
3443
3602
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
3603
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3604
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3444
3605
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
3445
3606
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3446
3607
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
3447
3608
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3448
|
-
|
|
3609
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
3610
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
3611
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
3449
3612
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
3450
3613
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3451
3614
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -3564,6 +3727,8 @@ declare const StormcloudPlayer: {
|
|
|
3564
3727
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3565
3728
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3566
3729
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
3730
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
3731
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3567
3732
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3568
3733
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3569
3734
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -3618,13 +3783,14 @@ declare const StormcloudPlayer: {
|
|
|
3618
3783
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3619
3784
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3620
3785
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
3621
|
-
WebkitUserSelect?: csstype.Property.
|
|
3786
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
3622
3787
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
3623
3788
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
3624
3789
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
3625
3790
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
3626
3791
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
3627
3792
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
3793
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3628
3794
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
3629
3795
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
3630
3796
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -3645,7 +3811,6 @@ declare const StormcloudPlayer: {
|
|
|
3645
3811
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3646
3812
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
3647
3813
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3648
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
3649
3814
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
3650
3815
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
3651
3816
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -3655,16 +3820,22 @@ declare const StormcloudPlayer: {
|
|
|
3655
3820
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3656
3821
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
3657
3822
|
clip?: csstype.Property.Clip | undefined;
|
|
3823
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3658
3824
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
3659
3825
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
3660
3826
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
3661
3827
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
3828
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
3662
3829
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
3663
3830
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3664
3831
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3665
3832
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
3666
3833
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3667
3834
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3835
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3836
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3837
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3838
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3668
3839
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
3669
3840
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
3670
3841
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -3682,9 +3853,7 @@ declare const StormcloudPlayer: {
|
|
|
3682
3853
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3683
3854
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
3684
3855
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3685
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3686
3856
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
3687
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
3688
3857
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
3689
3858
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
3690
3859
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -3699,6 +3868,8 @@ declare const StormcloudPlayer: {
|
|
|
3699
3868
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3700
3869
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
3701
3870
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
3871
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3872
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3702
3873
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
3703
3874
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
3704
3875
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -3706,20 +3877,15 @@ declare const StormcloudPlayer: {
|
|
|
3706
3877
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
3707
3878
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
3708
3879
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
3709
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3710
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3711
3880
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3712
3881
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3713
3882
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
3714
3883
|
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
3884
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
3720
3885
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
3721
3886
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3722
3887
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3888
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
3723
3889
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
3724
3890
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
3725
3891
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -3752,36 +3918,9 @@ declare const StormcloudPlayer: {
|
|
|
3752
3918
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
3753
3919
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3754
3920
|
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
3921
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
3759
3922
|
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
3923
|
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
3924
|
};
|
|
3786
3925
|
}, HTMLElement>;
|
|
3787
3926
|
context: unknown;
|