stormcloud-video-player 0.5.3 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.cts CHANGED
@@ -173,6 +173,9 @@ declare class StormcloudVideoPlayer {
173
173
  private readonly minAdRequestIntervalMs;
174
174
  private readonly backoffBaseMs;
175
175
  private readonly maxBackoffMs;
176
+ private readonly continuousFetchWallClockBufferMs;
177
+ private readonly continuousFetchMaxIterations;
178
+ private continuousFetchQueueFullConsecutiveWaits;
176
179
  private placeholderContainer;
177
180
  private preloadPool;
178
181
  private readonly maxPreloadPoolSize;
@@ -180,9 +183,10 @@ declare class StormcloudVideoPlayer {
180
183
  private preloadPoolLoopRunning;
181
184
  constructor(config: StormcloudVideoPlayerConfig);
182
185
  private createAdPlayer;
186
+ private getAdPlayerTypeLabel;
183
187
  load(): Promise<void>;
184
188
  private attachImaEventListeners;
185
- private recreateImaController;
189
+ private recreateAdController;
186
190
  private ensurePlaceholderContainer;
187
191
  private showPlaceholderLayer;
188
192
  private hidePlaceholderLayer;
@@ -202,6 +206,7 @@ declare class StormcloudVideoPlayer {
202
206
  private sendHeartbeatIfNeeded;
203
207
  private fetchAdConfiguration;
204
208
  private isPrebidMode;
209
+ private isLgStbDevice;
205
210
  getCurrentAdIndex(): number;
206
211
  getTotalAdsInBreak(): number;
207
212
  private generateVastUrlsWithCorrelators;
@@ -221,6 +226,8 @@ declare class StormcloudVideoPlayer {
221
226
  private continuousFetchLoopRunning;
222
227
  private startContinuousFetching;
223
228
  private continuousFetchLoop;
229
+ private waitForQueueWithBackoff;
230
+ private logQueueState;
224
231
  private stopContinuousFetching;
225
232
  private tryNextAvailableAdWithRateLimit;
226
233
  private tryNextAvailableAd;
@@ -372,6 +379,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
372
379
  alignItems?: csstype.Property.AlignItems | undefined;
373
380
  alignSelf?: csstype.Property.AlignSelf | undefined;
374
381
  alignTracks?: csstype.Property.AlignTracks | undefined;
382
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
383
+ anchorName?: csstype.Property.AnchorName | undefined;
384
+ anchorScope?: csstype.Property.AnchorScope | undefined;
375
385
  animationComposition?: csstype.Property.AnimationComposition | undefined;
376
386
  animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
377
387
  animationDirection?: csstype.Property.AnimationDirection | undefined;
@@ -398,17 +408,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
398
408
  backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
399
409
  backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
400
410
  backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
401
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
411
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
402
412
  blockSize?: csstype.Property.BlockSize<string | number> | undefined;
403
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
404
413
  borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
405
414
  borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
406
415
  borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
407
416
  borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
408
417
  borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
409
418
  borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
410
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
411
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
412
419
  borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
413
420
  borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
414
421
  borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
@@ -422,15 +429,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
422
429
  borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
423
430
  borderImageSource?: csstype.Property.BorderImageSource | undefined;
424
431
  borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
425
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
426
432
  borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
427
433
  borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
428
434
  borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
429
435
  borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
430
436
  borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
431
437
  borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
432
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
433
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
434
438
  borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
435
439
  borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
436
440
  borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
@@ -457,8 +461,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
457
461
  caretShape?: csstype.Property.CaretShape | undefined;
458
462
  clear?: csstype.Property.Clear | undefined;
459
463
  clipPath?: csstype.Property.ClipPath | undefined;
464
+ clipRule?: csstype.Property.ClipRule | undefined;
460
465
  color?: csstype.Property.Color | undefined;
461
466
  colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
467
+ colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
462
468
  colorScheme?: csstype.Property.ColorScheme | undefined;
463
469
  columnCount?: csstype.Property.ColumnCount | undefined;
464
470
  columnFill?: csstype.Property.ColumnFill | undefined;
@@ -481,9 +487,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
481
487
  counterReset?: csstype.Property.CounterReset | undefined;
482
488
  counterSet?: csstype.Property.CounterSet | undefined;
483
489
  cursor?: csstype.Property.Cursor | undefined;
490
+ cx?: csstype.Property.Cx<string | number> | undefined;
491
+ cy?: csstype.Property.Cy<string | number> | undefined;
492
+ d?: csstype.Property.D | undefined;
484
493
  direction?: csstype.Property.Direction | undefined;
485
494
  display?: csstype.Property.Display | undefined;
495
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
486
496
  emptyCells?: csstype.Property.EmptyCells | undefined;
497
+ fieldSizing?: csstype.Property.FieldSizing | undefined;
498
+ fill?: csstype.Property.Fill | undefined;
499
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
500
+ fillRule?: csstype.Property.FillRule | undefined;
487
501
  filter?: csstype.Property.Filter | undefined;
488
502
  flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
489
503
  flexDirection?: csstype.Property.FlexDirection | undefined;
@@ -491,6 +505,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
491
505
  flexShrink?: csstype.Property.FlexShrink | undefined;
492
506
  flexWrap?: csstype.Property.FlexWrap | undefined;
493
507
  float?: csstype.Property.Float | undefined;
508
+ floodColor?: csstype.Property.FloodColor | undefined;
509
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
494
510
  fontFamily?: csstype.Property.FontFamily | undefined;
495
511
  fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
496
512
  fontKerning?: csstype.Property.FontKerning | undefined;
@@ -500,7 +516,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
500
516
  fontSize?: csstype.Property.FontSize<string | number> | undefined;
501
517
  fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
502
518
  fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
503
- fontStretch?: csstype.Property.FontStretch | undefined;
504
519
  fontStyle?: csstype.Property.FontStyle | undefined;
505
520
  fontSynthesis?: csstype.Property.FontSynthesis | undefined;
506
521
  fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
@@ -517,6 +532,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
517
532
  fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
518
533
  fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
519
534
  fontWeight?: csstype.Property.FontWeight | undefined;
535
+ fontWidth?: csstype.Property.FontWidth | undefined;
520
536
  forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
521
537
  gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
522
538
  gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
@@ -536,12 +552,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
536
552
  imageRendering?: csstype.Property.ImageRendering | undefined;
537
553
  imageResolution?: csstype.Property.ImageResolution | undefined;
538
554
  initialLetter?: csstype.Property.InitialLetter | undefined;
555
+ initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
539
556
  inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
540
- inputSecurity?: csstype.Property.InputSecurity | undefined;
541
557
  insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
542
558
  insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
543
559
  insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
544
560
  insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
561
+ interpolateSize?: csstype.Property.InterpolateSize | undefined;
545
562
  isolation?: csstype.Property.Isolation | undefined;
546
563
  justifyContent?: csstype.Property.JustifyContent | undefined;
547
564
  justifyItems?: csstype.Property.JustifyItems | undefined;
@@ -549,6 +566,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
549
566
  justifyTracks?: csstype.Property.JustifyTracks | undefined;
550
567
  left?: csstype.Property.Left<string | number> | undefined;
551
568
  letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
569
+ lightingColor?: csstype.Property.LightingColor | undefined;
552
570
  lineBreak?: csstype.Property.LineBreak | undefined;
553
571
  lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
554
572
  lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
@@ -564,6 +582,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
564
582
  marginRight?: csstype.Property.MarginRight<string | number> | undefined;
565
583
  marginTop?: csstype.Property.MarginTop<string | number> | undefined;
566
584
  marginTrim?: csstype.Property.MarginTrim | undefined;
585
+ marker?: csstype.Property.Marker | undefined;
586
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
587
+ markerMid?: csstype.Property.MarkerMid | undefined;
588
+ markerStart?: csstype.Property.MarkerStart | undefined;
567
589
  maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
568
590
  maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
569
591
  maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
@@ -598,6 +620,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
598
620
  motionRotation?: csstype.Property.OffsetRotate | undefined;
599
621
  objectFit?: csstype.Property.ObjectFit | undefined;
600
622
  objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
623
+ objectViewBox?: csstype.Property.ObjectViewBox | undefined;
601
624
  offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
602
625
  offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
603
626
  offsetPath?: csstype.Property.OffsetPath | undefined;
@@ -633,25 +656,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
633
656
  paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
634
657
  paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
635
658
  page?: csstype.Property.Page | undefined;
636
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
637
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
638
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
639
659
  paintOrder?: csstype.Property.PaintOrder | undefined;
640
660
  perspective?: csstype.Property.Perspective<string | number> | undefined;
641
661
  perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
642
662
  pointerEvents?: csstype.Property.PointerEvents | undefined;
643
663
  position?: csstype.Property.Position | undefined;
664
+ positionAnchor?: csstype.Property.PositionAnchor | undefined;
665
+ positionArea?: csstype.Property.PositionArea | undefined;
666
+ positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
667
+ positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
668
+ positionVisibility?: csstype.Property.PositionVisibility | undefined;
644
669
  printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
645
670
  quotes?: csstype.Property.Quotes | undefined;
671
+ r?: csstype.Property.R<string | number> | undefined;
646
672
  resize?: csstype.Property.Resize | undefined;
647
673
  right?: csstype.Property.Right<string | number> | undefined;
648
674
  rotate?: csstype.Property.Rotate | undefined;
649
675
  rowGap?: csstype.Property.RowGap<string | number> | undefined;
650
676
  rubyAlign?: csstype.Property.RubyAlign | undefined;
651
677
  rubyMerge?: csstype.Property.RubyMerge | undefined;
678
+ rubyOverhang?: csstype.Property.RubyOverhang | undefined;
652
679
  rubyPosition?: csstype.Property.RubyPosition | undefined;
680
+ rx?: csstype.Property.Rx<string | number> | undefined;
681
+ ry?: csstype.Property.Ry<string | number> | undefined;
653
682
  scale?: csstype.Property.Scale | undefined;
654
683
  scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
684
+ scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
655
685
  scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
656
686
  scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
657
687
  scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
@@ -683,10 +713,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
683
713
  shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
684
714
  shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
685
715
  shapeOutside?: csstype.Property.ShapeOutside | undefined;
716
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
717
+ speakAs?: csstype.Property.SpeakAs | undefined;
718
+ stopColor?: csstype.Property.StopColor | undefined;
719
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
720
+ stroke?: csstype.Property.Stroke | undefined;
721
+ strokeColor?: csstype.Property.StrokeColor | undefined;
722
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
723
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
724
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
725
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
726
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
727
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
728
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
686
729
  tabSize?: csstype.Property.TabSize<string | number> | undefined;
687
730
  tableLayout?: csstype.Property.TableLayout | undefined;
688
731
  textAlign?: csstype.Property.TextAlign | undefined;
689
732
  textAlignLast?: csstype.Property.TextAlignLast | undefined;
733
+ textAnchor?: csstype.Property.TextAnchor | undefined;
734
+ textAutospace?: csstype.Property.TextAutospace | undefined;
735
+ textBox?: csstype.Property.TextBox | undefined;
736
+ textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
737
+ textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
690
738
  textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
691
739
  textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
692
740
  textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
@@ -704,10 +752,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
704
752
  textRendering?: csstype.Property.TextRendering | undefined;
705
753
  textShadow?: csstype.Property.TextShadow | undefined;
706
754
  textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
755
+ textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
707
756
  textTransform?: csstype.Property.TextTransform | undefined;
708
757
  textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
709
758
  textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
710
- textWrap?: csstype.Property.TextWrap | undefined;
759
+ textWrapMode?: csstype.Property.TextWrapMode | undefined;
760
+ textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
711
761
  timelineScope?: csstype.Property.TimelineScope | undefined;
712
762
  top?: csstype.Property.Top<string | number> | undefined;
713
763
  touchAction?: csstype.Property.TouchAction | undefined;
@@ -723,21 +773,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
723
773
  translate?: csstype.Property.Translate<string | number> | undefined;
724
774
  unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
725
775
  userSelect?: csstype.Property.UserSelect | undefined;
776
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
726
777
  verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
727
778
  viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
728
779
  viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
729
780
  viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
781
+ viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
730
782
  viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
731
783
  visibility?: csstype.Property.Visibility | undefined;
732
784
  whiteSpace?: csstype.Property.WhiteSpace | undefined;
733
785
  whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
734
- whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
735
786
  widows?: csstype.Property.Widows | undefined;
736
787
  willChange?: csstype.Property.WillChange | undefined;
737
788
  wordBreak?: csstype.Property.WordBreak | undefined;
738
789
  wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
739
790
  wordWrap?: csstype.Property.WordWrap | undefined;
740
791
  writingMode?: csstype.Property.WritingMode | undefined;
792
+ x?: csstype.Property.X<string | number> | undefined;
793
+ y?: csstype.Property.Y<string | number> | undefined;
741
794
  zIndex?: csstype.Property.ZIndex | undefined;
742
795
  zoom?: csstype.Property.Zoom | undefined;
743
796
  all?: csstype.Property.All | undefined;
@@ -747,14 +800,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
747
800
  backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
748
801
  border?: csstype.Property.Border<string | number> | undefined;
749
802
  borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
803
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
750
804
  borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
751
805
  borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
806
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
807
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
752
808
  borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
753
809
  borderColor?: csstype.Property.BorderColor | undefined;
754
810
  borderImage?: csstype.Property.BorderImage | undefined;
755
811
  borderInline?: csstype.Property.BorderInline<string | number> | undefined;
812
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
756
813
  borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
757
814
  borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
815
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
816
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
758
817
  borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
759
818
  borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
760
819
  borderRight?: csstype.Property.BorderRight<string | number> | undefined;
@@ -796,6 +855,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
796
855
  placeContent?: csstype.Property.PlaceContent | undefined;
797
856
  placeItems?: csstype.Property.PlaceItems | undefined;
798
857
  placeSelf?: csstype.Property.PlaceSelf | undefined;
858
+ positionTry?: csstype.Property.PositionTry | undefined;
799
859
  scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
800
860
  scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
801
861
  scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
@@ -806,6 +866,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
806
866
  scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
807
867
  textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
808
868
  textEmphasis?: csstype.Property.TextEmphasis | undefined;
869
+ textWrap?: csstype.Property.TextWrap | undefined;
809
870
  transition?: csstype.Property.Transition<string & {}> | undefined;
810
871
  viewTimeline?: csstype.Property.ViewTimeline | undefined;
811
872
  MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
@@ -817,6 +878,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
817
878
  MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
818
879
  MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
819
880
  MozAppearance?: csstype.Property.MozAppearance | undefined;
881
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
820
882
  MozBinding?: csstype.Property.MozBinding | undefined;
821
883
  MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
822
884
  MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
@@ -828,8 +890,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
828
890
  MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
829
891
  MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
830
892
  MozBoxSizing?: csstype.Property.BoxSizing | undefined;
831
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
832
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
833
893
  MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
834
894
  MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
835
895
  MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
@@ -838,7 +898,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
838
898
  MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
839
899
  MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
840
900
  MozHyphens?: csstype.Property.Hyphens | undefined;
841
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
842
901
  MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
843
902
  MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
844
903
  MozOrient?: csstype.Property.MozOrient | undefined;
@@ -849,11 +908,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
849
908
  MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
850
909
  MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
851
910
  MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
911
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
912
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
852
913
  MozStackSizing?: csstype.Property.MozStackSizing | undefined;
853
914
  MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
854
915
  MozTextBlink?: csstype.Property.MozTextBlink | undefined;
855
916
  MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
856
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
917
+ MozTransform?: csstype.Property.Transform | undefined;
918
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
919
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
857
920
  MozUserModify?: csstype.Property.MozUserModify | undefined;
858
921
  MozUserSelect?: csstype.Property.UserSelect | undefined;
859
922
  MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
@@ -972,6 +1035,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
972
1035
  WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
973
1036
  WebkitLineBreak?: csstype.Property.LineBreak | undefined;
974
1037
  WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
1038
+ WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
1039
+ WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
975
1040
  WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
976
1041
  WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
977
1042
  WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
@@ -1026,13 +1091,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1026
1091
  WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1027
1092
  WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1028
1093
  WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
1029
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
1094
+ WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
1030
1095
  WebkitWritingMode?: csstype.Property.WritingMode | undefined;
1031
1096
  MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
1032
1097
  MozBorderImage?: csstype.Property.BorderImage | undefined;
1033
1098
  MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1034
1099
  MozColumns?: csstype.Property.Columns<string | number> | undefined;
1035
1100
  MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
1101
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1036
1102
  msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
1037
1103
  msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
1038
1104
  msFlex?: csstype.Property.Flex<string | number> | undefined;
@@ -1053,7 +1119,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1053
1119
  WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
1054
1120
  WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
1055
1121
  WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
1056
- azimuth?: csstype.Property.Azimuth | undefined;
1057
1122
  boxAlign?: csstype.Property.BoxAlign | undefined;
1058
1123
  boxDirection?: csstype.Property.BoxDirection | undefined;
1059
1124
  boxFlex?: csstype.Property.BoxFlex | undefined;
@@ -1063,16 +1128,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1063
1128
  boxOrient?: csstype.Property.BoxOrient | undefined;
1064
1129
  boxPack?: csstype.Property.BoxPack | undefined;
1065
1130
  clip?: csstype.Property.Clip | undefined;
1131
+ fontStretch?: csstype.Property.FontStretch | undefined;
1066
1132
  gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
1067
1133
  gridGap?: csstype.Property.GridGap<string | number> | undefined;
1068
1134
  gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
1069
1135
  imeMode?: csstype.Property.ImeMode | undefined;
1136
+ insetArea?: csstype.Property.PositionArea | undefined;
1070
1137
  offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1071
1138
  offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1072
1139
  offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1073
1140
  offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
1074
1141
  offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1075
1142
  offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1143
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
1144
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
1145
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
1146
+ positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
1076
1147
  scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
1077
1148
  scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
1078
1149
  scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
@@ -1090,9 +1161,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1090
1161
  KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
1091
1162
  KhtmlOpacity?: csstype.Property.Opacity | undefined;
1092
1163
  KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
1093
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1094
1164
  MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1095
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
1096
1165
  MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1097
1166
  MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1098
1167
  MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
@@ -1107,6 +1176,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1107
1176
  MozBoxOrient?: csstype.Property.BoxOrient | undefined;
1108
1177
  MozBoxPack?: csstype.Property.BoxPack | undefined;
1109
1178
  MozBoxShadow?: csstype.Property.BoxShadow | undefined;
1179
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
1180
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
1110
1181
  MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
1111
1182
  MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
1112
1183
  MozOpacity?: csstype.Property.Opacity | undefined;
@@ -1114,20 +1185,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1114
1185
  MozOutlineColor?: csstype.Property.OutlineColor | undefined;
1115
1186
  MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
1116
1187
  MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1117
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1118
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1119
1188
  MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
1120
1189
  MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1121
1190
  MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1122
1191
  MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1123
- MozTransform?: csstype.Property.Transform | undefined;
1124
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1125
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1126
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1127
1192
  MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1128
1193
  MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1129
1194
  MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1130
1195
  MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1196
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1131
1197
  MozUserInput?: csstype.Property.MozUserInput | undefined;
1132
1198
  msImeMode?: csstype.Property.ImeMode | undefined;
1133
1199
  OAnimation?: csstype.Property.Animation<string & {}> | undefined;
@@ -1160,36 +1226,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1160
1226
  WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1161
1227
  WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1162
1228
  WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1163
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1164
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1165
- clipRule?: csstype.Property.ClipRule | undefined;
1166
1229
  colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1167
1230
  colorRendering?: csstype.Property.ColorRendering | undefined;
1168
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1169
- fill?: csstype.Property.Fill | undefined;
1170
- fillOpacity?: csstype.Property.FillOpacity | undefined;
1171
- fillRule?: csstype.Property.FillRule | undefined;
1172
- floodColor?: csstype.Property.FloodColor | undefined;
1173
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
1174
1231
  glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1175
- lightingColor?: csstype.Property.LightingColor | undefined;
1176
- marker?: csstype.Property.Marker | undefined;
1177
- markerEnd?: csstype.Property.MarkerEnd | undefined;
1178
- markerMid?: csstype.Property.MarkerMid | undefined;
1179
- markerStart?: csstype.Property.MarkerStart | undefined;
1180
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
1181
- stopColor?: csstype.Property.StopColor | undefined;
1182
- stopOpacity?: csstype.Property.StopOpacity | undefined;
1183
- stroke?: csstype.Property.Stroke | undefined;
1184
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1185
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1186
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1187
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1188
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1189
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1190
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1191
- textAnchor?: csstype.Property.TextAnchor | undefined;
1192
- vectorEffect?: csstype.Property.VectorEffect | undefined;
1193
1232
  };
1194
1233
  }, HTMLElement>;
1195
1234
  context: unknown;
@@ -1239,6 +1278,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1239
1278
  alignItems?: csstype.Property.AlignItems | undefined;
1240
1279
  alignSelf?: csstype.Property.AlignSelf | undefined;
1241
1280
  alignTracks?: csstype.Property.AlignTracks | undefined;
1281
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1282
+ anchorName?: csstype.Property.AnchorName | undefined;
1283
+ anchorScope?: csstype.Property.AnchorScope | undefined;
1242
1284
  animationComposition?: csstype.Property.AnimationComposition | undefined;
1243
1285
  animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1244
1286
  animationDirection?: csstype.Property.AnimationDirection | undefined;
@@ -1265,17 +1307,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1265
1307
  backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
1266
1308
  backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
1267
1309
  backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1268
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
1310
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1269
1311
  blockSize?: csstype.Property.BlockSize<string | number> | undefined;
1270
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
1271
1312
  borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
1272
1313
  borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
1273
1314
  borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
1274
1315
  borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
1275
1316
  borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
1276
1317
  borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
1277
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
1278
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
1279
1318
  borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
1280
1319
  borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1281
1320
  borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
@@ -1289,15 +1328,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1289
1328
  borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1290
1329
  borderImageSource?: csstype.Property.BorderImageSource | undefined;
1291
1330
  borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
1292
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
1293
1331
  borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1294
1332
  borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1295
1333
  borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1296
1334
  borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1297
1335
  borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1298
1336
  borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
1299
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
1300
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
1301
1337
  borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
1302
1338
  borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
1303
1339
  borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
@@ -1324,8 +1360,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1324
1360
  caretShape?: csstype.Property.CaretShape | undefined;
1325
1361
  clear?: csstype.Property.Clear | undefined;
1326
1362
  clipPath?: csstype.Property.ClipPath | undefined;
1363
+ clipRule?: csstype.Property.ClipRule | undefined;
1327
1364
  color?: csstype.Property.Color | undefined;
1328
1365
  colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1366
+ colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
1329
1367
  colorScheme?: csstype.Property.ColorScheme | undefined;
1330
1368
  columnCount?: csstype.Property.ColumnCount | undefined;
1331
1369
  columnFill?: csstype.Property.ColumnFill | undefined;
@@ -1348,9 +1386,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1348
1386
  counterReset?: csstype.Property.CounterReset | undefined;
1349
1387
  counterSet?: csstype.Property.CounterSet | undefined;
1350
1388
  cursor?: csstype.Property.Cursor | undefined;
1389
+ cx?: csstype.Property.Cx<string | number> | undefined;
1390
+ cy?: csstype.Property.Cy<string | number> | undefined;
1391
+ d?: csstype.Property.D | undefined;
1351
1392
  direction?: csstype.Property.Direction | undefined;
1352
1393
  display?: csstype.Property.Display | undefined;
1394
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1353
1395
  emptyCells?: csstype.Property.EmptyCells | undefined;
1396
+ fieldSizing?: csstype.Property.FieldSizing | undefined;
1397
+ fill?: csstype.Property.Fill | undefined;
1398
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1399
+ fillRule?: csstype.Property.FillRule | undefined;
1354
1400
  filter?: csstype.Property.Filter | undefined;
1355
1401
  flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1356
1402
  flexDirection?: csstype.Property.FlexDirection | undefined;
@@ -1358,6 +1404,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1358
1404
  flexShrink?: csstype.Property.FlexShrink | undefined;
1359
1405
  flexWrap?: csstype.Property.FlexWrap | undefined;
1360
1406
  float?: csstype.Property.Float | undefined;
1407
+ floodColor?: csstype.Property.FloodColor | undefined;
1408
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1361
1409
  fontFamily?: csstype.Property.FontFamily | undefined;
1362
1410
  fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1363
1411
  fontKerning?: csstype.Property.FontKerning | undefined;
@@ -1367,7 +1415,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1367
1415
  fontSize?: csstype.Property.FontSize<string | number> | undefined;
1368
1416
  fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
1369
1417
  fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
1370
- fontStretch?: csstype.Property.FontStretch | undefined;
1371
1418
  fontStyle?: csstype.Property.FontStyle | undefined;
1372
1419
  fontSynthesis?: csstype.Property.FontSynthesis | undefined;
1373
1420
  fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
@@ -1384,6 +1431,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1384
1431
  fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
1385
1432
  fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
1386
1433
  fontWeight?: csstype.Property.FontWeight | undefined;
1434
+ fontWidth?: csstype.Property.FontWidth | undefined;
1387
1435
  forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
1388
1436
  gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
1389
1437
  gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
@@ -1403,12 +1451,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1403
1451
  imageRendering?: csstype.Property.ImageRendering | undefined;
1404
1452
  imageResolution?: csstype.Property.ImageResolution | undefined;
1405
1453
  initialLetter?: csstype.Property.InitialLetter | undefined;
1454
+ initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
1406
1455
  inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
1407
- inputSecurity?: csstype.Property.InputSecurity | undefined;
1408
1456
  insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1409
1457
  insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1410
1458
  insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1411
1459
  insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1460
+ interpolateSize?: csstype.Property.InterpolateSize | undefined;
1412
1461
  isolation?: csstype.Property.Isolation | undefined;
1413
1462
  justifyContent?: csstype.Property.JustifyContent | undefined;
1414
1463
  justifyItems?: csstype.Property.JustifyItems | undefined;
@@ -1416,6 +1465,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1416
1465
  justifyTracks?: csstype.Property.JustifyTracks | undefined;
1417
1466
  left?: csstype.Property.Left<string | number> | undefined;
1418
1467
  letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
1468
+ lightingColor?: csstype.Property.LightingColor | undefined;
1419
1469
  lineBreak?: csstype.Property.LineBreak | undefined;
1420
1470
  lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
1421
1471
  lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
@@ -1431,6 +1481,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1431
1481
  marginRight?: csstype.Property.MarginRight<string | number> | undefined;
1432
1482
  marginTop?: csstype.Property.MarginTop<string | number> | undefined;
1433
1483
  marginTrim?: csstype.Property.MarginTrim | undefined;
1484
+ marker?: csstype.Property.Marker | undefined;
1485
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1486
+ markerMid?: csstype.Property.MarkerMid | undefined;
1487
+ markerStart?: csstype.Property.MarkerStart | undefined;
1434
1488
  maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
1435
1489
  maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1436
1490
  maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
@@ -1465,6 +1519,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1465
1519
  motionRotation?: csstype.Property.OffsetRotate | undefined;
1466
1520
  objectFit?: csstype.Property.ObjectFit | undefined;
1467
1521
  objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1522
+ objectViewBox?: csstype.Property.ObjectViewBox | undefined;
1468
1523
  offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
1469
1524
  offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
1470
1525
  offsetPath?: csstype.Property.OffsetPath | undefined;
@@ -1500,25 +1555,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1500
1555
  paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
1501
1556
  paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
1502
1557
  page?: csstype.Property.Page | undefined;
1503
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
1504
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
1505
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
1506
1558
  paintOrder?: csstype.Property.PaintOrder | undefined;
1507
1559
  perspective?: csstype.Property.Perspective<string | number> | undefined;
1508
1560
  perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1509
1561
  pointerEvents?: csstype.Property.PointerEvents | undefined;
1510
1562
  position?: csstype.Property.Position | undefined;
1563
+ positionAnchor?: csstype.Property.PositionAnchor | undefined;
1564
+ positionArea?: csstype.Property.PositionArea | undefined;
1565
+ positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
1566
+ positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
1567
+ positionVisibility?: csstype.Property.PositionVisibility | undefined;
1511
1568
  printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1512
1569
  quotes?: csstype.Property.Quotes | undefined;
1570
+ r?: csstype.Property.R<string | number> | undefined;
1513
1571
  resize?: csstype.Property.Resize | undefined;
1514
1572
  right?: csstype.Property.Right<string | number> | undefined;
1515
1573
  rotate?: csstype.Property.Rotate | undefined;
1516
1574
  rowGap?: csstype.Property.RowGap<string | number> | undefined;
1517
1575
  rubyAlign?: csstype.Property.RubyAlign | undefined;
1518
1576
  rubyMerge?: csstype.Property.RubyMerge | undefined;
1577
+ rubyOverhang?: csstype.Property.RubyOverhang | undefined;
1519
1578
  rubyPosition?: csstype.Property.RubyPosition | undefined;
1579
+ rx?: csstype.Property.Rx<string | number> | undefined;
1580
+ ry?: csstype.Property.Ry<string | number> | undefined;
1520
1581
  scale?: csstype.Property.Scale | undefined;
1521
1582
  scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
1583
+ scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
1522
1584
  scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
1523
1585
  scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
1524
1586
  scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
@@ -1550,10 +1612,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1550
1612
  shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
1551
1613
  shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1552
1614
  shapeOutside?: csstype.Property.ShapeOutside | undefined;
1615
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1616
+ speakAs?: csstype.Property.SpeakAs | undefined;
1617
+ stopColor?: csstype.Property.StopColor | undefined;
1618
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1619
+ stroke?: csstype.Property.Stroke | undefined;
1620
+ strokeColor?: csstype.Property.StrokeColor | undefined;
1621
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1622
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1623
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1624
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1625
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1626
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1627
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1553
1628
  tabSize?: csstype.Property.TabSize<string | number> | undefined;
1554
1629
  tableLayout?: csstype.Property.TableLayout | undefined;
1555
1630
  textAlign?: csstype.Property.TextAlign | undefined;
1556
1631
  textAlignLast?: csstype.Property.TextAlignLast | undefined;
1632
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1633
+ textAutospace?: csstype.Property.TextAutospace | undefined;
1634
+ textBox?: csstype.Property.TextBox | undefined;
1635
+ textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
1636
+ textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
1557
1637
  textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
1558
1638
  textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1559
1639
  textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
@@ -1571,10 +1651,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1571
1651
  textRendering?: csstype.Property.TextRendering | undefined;
1572
1652
  textShadow?: csstype.Property.TextShadow | undefined;
1573
1653
  textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1654
+ textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
1574
1655
  textTransform?: csstype.Property.TextTransform | undefined;
1575
1656
  textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
1576
1657
  textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1577
- textWrap?: csstype.Property.TextWrap | undefined;
1658
+ textWrapMode?: csstype.Property.TextWrapMode | undefined;
1659
+ textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
1578
1660
  timelineScope?: csstype.Property.TimelineScope | undefined;
1579
1661
  top?: csstype.Property.Top<string | number> | undefined;
1580
1662
  touchAction?: csstype.Property.TouchAction | undefined;
@@ -1590,21 +1672,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1590
1672
  translate?: csstype.Property.Translate<string | number> | undefined;
1591
1673
  unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
1592
1674
  userSelect?: csstype.Property.UserSelect | undefined;
1675
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1593
1676
  verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
1594
1677
  viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
1595
1678
  viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
1596
1679
  viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
1680
+ viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
1597
1681
  viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
1598
1682
  visibility?: csstype.Property.Visibility | undefined;
1599
1683
  whiteSpace?: csstype.Property.WhiteSpace | undefined;
1600
1684
  whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
1601
- whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
1602
1685
  widows?: csstype.Property.Widows | undefined;
1603
1686
  willChange?: csstype.Property.WillChange | undefined;
1604
1687
  wordBreak?: csstype.Property.WordBreak | undefined;
1605
1688
  wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
1606
1689
  wordWrap?: csstype.Property.WordWrap | undefined;
1607
1690
  writingMode?: csstype.Property.WritingMode | undefined;
1691
+ x?: csstype.Property.X<string | number> | undefined;
1692
+ y?: csstype.Property.Y<string | number> | undefined;
1608
1693
  zIndex?: csstype.Property.ZIndex | undefined;
1609
1694
  zoom?: csstype.Property.Zoom | undefined;
1610
1695
  all?: csstype.Property.All | undefined;
@@ -1614,14 +1699,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1614
1699
  backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
1615
1700
  border?: csstype.Property.Border<string | number> | undefined;
1616
1701
  borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
1702
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
1617
1703
  borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
1618
1704
  borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
1705
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
1706
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
1619
1707
  borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
1620
1708
  borderColor?: csstype.Property.BorderColor | undefined;
1621
1709
  borderImage?: csstype.Property.BorderImage | undefined;
1622
1710
  borderInline?: csstype.Property.BorderInline<string | number> | undefined;
1711
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
1623
1712
  borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
1624
1713
  borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
1714
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
1715
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
1625
1716
  borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
1626
1717
  borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1627
1718
  borderRight?: csstype.Property.BorderRight<string | number> | undefined;
@@ -1663,6 +1754,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1663
1754
  placeContent?: csstype.Property.PlaceContent | undefined;
1664
1755
  placeItems?: csstype.Property.PlaceItems | undefined;
1665
1756
  placeSelf?: csstype.Property.PlaceSelf | undefined;
1757
+ positionTry?: csstype.Property.PositionTry | undefined;
1666
1758
  scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1667
1759
  scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
1668
1760
  scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
@@ -1673,6 +1765,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1673
1765
  scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
1674
1766
  textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
1675
1767
  textEmphasis?: csstype.Property.TextEmphasis | undefined;
1768
+ textWrap?: csstype.Property.TextWrap | undefined;
1676
1769
  transition?: csstype.Property.Transition<string & {}> | undefined;
1677
1770
  viewTimeline?: csstype.Property.ViewTimeline | undefined;
1678
1771
  MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
@@ -1684,6 +1777,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1684
1777
  MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1685
1778
  MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1686
1779
  MozAppearance?: csstype.Property.MozAppearance | undefined;
1780
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1687
1781
  MozBinding?: csstype.Property.MozBinding | undefined;
1688
1782
  MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
1689
1783
  MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
@@ -1695,8 +1789,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1695
1789
  MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1696
1790
  MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
1697
1791
  MozBoxSizing?: csstype.Property.BoxSizing | undefined;
1698
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
1699
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
1700
1792
  MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1701
1793
  MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1702
1794
  MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
@@ -1705,7 +1797,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1705
1797
  MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1706
1798
  MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1707
1799
  MozHyphens?: csstype.Property.Hyphens | undefined;
1708
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
1709
1800
  MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1710
1801
  MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1711
1802
  MozOrient?: csstype.Property.MozOrient | undefined;
@@ -1716,11 +1807,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1716
1807
  MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
1717
1808
  MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1718
1809
  MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1810
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1811
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1719
1812
  MozStackSizing?: csstype.Property.MozStackSizing | undefined;
1720
1813
  MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
1721
1814
  MozTextBlink?: csstype.Property.MozTextBlink | undefined;
1722
1815
  MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1723
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1816
+ MozTransform?: csstype.Property.Transform | undefined;
1817
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1818
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1724
1819
  MozUserModify?: csstype.Property.MozUserModify | undefined;
1725
1820
  MozUserSelect?: csstype.Property.UserSelect | undefined;
1726
1821
  MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
@@ -1839,6 +1934,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1839
1934
  WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
1840
1935
  WebkitLineBreak?: csstype.Property.LineBreak | undefined;
1841
1936
  WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
1937
+ WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
1938
+ WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
1842
1939
  WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1843
1940
  WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1844
1941
  WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
@@ -1893,13 +1990,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1893
1990
  WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1894
1991
  WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1895
1992
  WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
1896
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
1993
+ WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
1897
1994
  WebkitWritingMode?: csstype.Property.WritingMode | undefined;
1898
1995
  MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
1899
1996
  MozBorderImage?: csstype.Property.BorderImage | undefined;
1900
1997
  MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1901
1998
  MozColumns?: csstype.Property.Columns<string | number> | undefined;
1902
1999
  MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
2000
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1903
2001
  msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
1904
2002
  msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
1905
2003
  msFlex?: csstype.Property.Flex<string | number> | undefined;
@@ -1920,7 +2018,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1920
2018
  WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
1921
2019
  WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
1922
2020
  WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
1923
- azimuth?: csstype.Property.Azimuth | undefined;
1924
2021
  boxAlign?: csstype.Property.BoxAlign | undefined;
1925
2022
  boxDirection?: csstype.Property.BoxDirection | undefined;
1926
2023
  boxFlex?: csstype.Property.BoxFlex | undefined;
@@ -1930,16 +2027,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1930
2027
  boxOrient?: csstype.Property.BoxOrient | undefined;
1931
2028
  boxPack?: csstype.Property.BoxPack | undefined;
1932
2029
  clip?: csstype.Property.Clip | undefined;
2030
+ fontStretch?: csstype.Property.FontStretch | undefined;
1933
2031
  gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
1934
2032
  gridGap?: csstype.Property.GridGap<string | number> | undefined;
1935
2033
  gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
1936
2034
  imeMode?: csstype.Property.ImeMode | undefined;
2035
+ insetArea?: csstype.Property.PositionArea | undefined;
1937
2036
  offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1938
2037
  offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1939
2038
  offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1940
2039
  offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
1941
2040
  offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1942
2041
  offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2042
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2043
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2044
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2045
+ positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
1943
2046
  scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
1944
2047
  scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
1945
2048
  scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
@@ -1957,9 +2060,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1957
2060
  KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
1958
2061
  KhtmlOpacity?: csstype.Property.Opacity | undefined;
1959
2062
  KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
1960
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1961
2063
  MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1962
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
1963
2064
  MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1964
2065
  MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1965
2066
  MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
@@ -1974,6 +2075,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1974
2075
  MozBoxOrient?: csstype.Property.BoxOrient | undefined;
1975
2076
  MozBoxPack?: csstype.Property.BoxPack | undefined;
1976
2077
  MozBoxShadow?: csstype.Property.BoxShadow | undefined;
2078
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
2079
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
1977
2080
  MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
1978
2081
  MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
1979
2082
  MozOpacity?: csstype.Property.Opacity | undefined;
@@ -1981,20 +2084,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
1981
2084
  MozOutlineColor?: csstype.Property.OutlineColor | undefined;
1982
2085
  MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
1983
2086
  MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1984
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1985
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1986
2087
  MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
1987
2088
  MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1988
2089
  MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1989
2090
  MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1990
- MozTransform?: csstype.Property.Transform | undefined;
1991
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1992
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1993
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1994
2091
  MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1995
2092
  MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1996
2093
  MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1997
2094
  MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2095
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1998
2096
  MozUserInput?: csstype.Property.MozUserInput | undefined;
1999
2097
  msImeMode?: csstype.Property.ImeMode | undefined;
2000
2098
  OAnimation?: csstype.Property.Animation<string & {}> | undefined;
@@ -2027,36 +2125,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
2027
2125
  WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2028
2126
  WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
2029
2127
  WebkitBoxPack?: csstype.Property.BoxPack | undefined;
2030
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2031
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2032
- clipRule?: csstype.Property.ClipRule | undefined;
2033
2128
  colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
2034
2129
  colorRendering?: csstype.Property.ColorRendering | undefined;
2035
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2036
- fill?: csstype.Property.Fill | undefined;
2037
- fillOpacity?: csstype.Property.FillOpacity | undefined;
2038
- fillRule?: csstype.Property.FillRule | undefined;
2039
- floodColor?: csstype.Property.FloodColor | undefined;
2040
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
2041
2130
  glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
2042
- lightingColor?: csstype.Property.LightingColor | undefined;
2043
- marker?: csstype.Property.Marker | undefined;
2044
- markerEnd?: csstype.Property.MarkerEnd | undefined;
2045
- markerMid?: csstype.Property.MarkerMid | undefined;
2046
- markerStart?: csstype.Property.MarkerStart | undefined;
2047
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
2048
- stopColor?: csstype.Property.StopColor | undefined;
2049
- stopOpacity?: csstype.Property.StopOpacity | undefined;
2050
- stroke?: csstype.Property.Stroke | undefined;
2051
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2052
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2053
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2054
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2055
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2056
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2057
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2058
- textAnchor?: csstype.Property.TextAnchor | undefined;
2059
- vectorEffect?: csstype.Property.VectorEffect | undefined;
2060
2131
  };
2061
2132
  }, HTMLElement>;
2062
2133
  context: unknown;
@@ -2118,6 +2189,9 @@ declare const StormcloudPlayer: {
2118
2189
  alignItems?: csstype.Property.AlignItems | undefined;
2119
2190
  alignSelf?: csstype.Property.AlignSelf | undefined;
2120
2191
  alignTracks?: csstype.Property.AlignTracks | undefined;
2192
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2193
+ anchorName?: csstype.Property.AnchorName | undefined;
2194
+ anchorScope?: csstype.Property.AnchorScope | undefined;
2121
2195
  animationComposition?: csstype.Property.AnimationComposition | undefined;
2122
2196
  animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2123
2197
  animationDirection?: csstype.Property.AnimationDirection | undefined;
@@ -2144,17 +2218,14 @@ declare const StormcloudPlayer: {
2144
2218
  backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2145
2219
  backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2146
2220
  backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2147
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
2221
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2148
2222
  blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2149
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2150
2223
  borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2151
2224
  borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2152
2225
  borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2153
2226
  borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2154
2227
  borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2155
2228
  borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2156
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2157
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2158
2229
  borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2159
2230
  borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2160
2231
  borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
@@ -2168,15 +2239,12 @@ declare const StormcloudPlayer: {
2168
2239
  borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2169
2240
  borderImageSource?: csstype.Property.BorderImageSource | undefined;
2170
2241
  borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2171
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2172
2242
  borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2173
2243
  borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2174
2244
  borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2175
2245
  borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2176
2246
  borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2177
2247
  borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2178
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2179
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2180
2248
  borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2181
2249
  borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2182
2250
  borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
@@ -2203,8 +2271,10 @@ declare const StormcloudPlayer: {
2203
2271
  caretShape?: csstype.Property.CaretShape | undefined;
2204
2272
  clear?: csstype.Property.Clear | undefined;
2205
2273
  clipPath?: csstype.Property.ClipPath | undefined;
2274
+ clipRule?: csstype.Property.ClipRule | undefined;
2206
2275
  color?: csstype.Property.Color | undefined;
2207
2276
  colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2277
+ colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
2208
2278
  colorScheme?: csstype.Property.ColorScheme | undefined;
2209
2279
  columnCount?: csstype.Property.ColumnCount | undefined;
2210
2280
  columnFill?: csstype.Property.ColumnFill | undefined;
@@ -2227,9 +2297,17 @@ declare const StormcloudPlayer: {
2227
2297
  counterReset?: csstype.Property.CounterReset | undefined;
2228
2298
  counterSet?: csstype.Property.CounterSet | undefined;
2229
2299
  cursor?: csstype.Property.Cursor | undefined;
2300
+ cx?: csstype.Property.Cx<string | number> | undefined;
2301
+ cy?: csstype.Property.Cy<string | number> | undefined;
2302
+ d?: csstype.Property.D | undefined;
2230
2303
  direction?: csstype.Property.Direction | undefined;
2231
2304
  display?: csstype.Property.Display | undefined;
2305
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2232
2306
  emptyCells?: csstype.Property.EmptyCells | undefined;
2307
+ fieldSizing?: csstype.Property.FieldSizing | undefined;
2308
+ fill?: csstype.Property.Fill | undefined;
2309
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
2310
+ fillRule?: csstype.Property.FillRule | undefined;
2233
2311
  filter?: csstype.Property.Filter | undefined;
2234
2312
  flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2235
2313
  flexDirection?: csstype.Property.FlexDirection | undefined;
@@ -2237,6 +2315,8 @@ declare const StormcloudPlayer: {
2237
2315
  flexShrink?: csstype.Property.FlexShrink | undefined;
2238
2316
  flexWrap?: csstype.Property.FlexWrap | undefined;
2239
2317
  float?: csstype.Property.Float | undefined;
2318
+ floodColor?: csstype.Property.FloodColor | undefined;
2319
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
2240
2320
  fontFamily?: csstype.Property.FontFamily | undefined;
2241
2321
  fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2242
2322
  fontKerning?: csstype.Property.FontKerning | undefined;
@@ -2246,7 +2326,6 @@ declare const StormcloudPlayer: {
2246
2326
  fontSize?: csstype.Property.FontSize<string | number> | undefined;
2247
2327
  fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2248
2328
  fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2249
- fontStretch?: csstype.Property.FontStretch | undefined;
2250
2329
  fontStyle?: csstype.Property.FontStyle | undefined;
2251
2330
  fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2252
2331
  fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
@@ -2263,6 +2342,7 @@ declare const StormcloudPlayer: {
2263
2342
  fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
2264
2343
  fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
2265
2344
  fontWeight?: csstype.Property.FontWeight | undefined;
2345
+ fontWidth?: csstype.Property.FontWidth | undefined;
2266
2346
  forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
2267
2347
  gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
2268
2348
  gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
@@ -2282,12 +2362,13 @@ declare const StormcloudPlayer: {
2282
2362
  imageRendering?: csstype.Property.ImageRendering | undefined;
2283
2363
  imageResolution?: csstype.Property.ImageResolution | undefined;
2284
2364
  initialLetter?: csstype.Property.InitialLetter | undefined;
2365
+ initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
2285
2366
  inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
2286
- inputSecurity?: csstype.Property.InputSecurity | undefined;
2287
2367
  insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2288
2368
  insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2289
2369
  insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2290
2370
  insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2371
+ interpolateSize?: csstype.Property.InterpolateSize | undefined;
2291
2372
  isolation?: csstype.Property.Isolation | undefined;
2292
2373
  justifyContent?: csstype.Property.JustifyContent | undefined;
2293
2374
  justifyItems?: csstype.Property.JustifyItems | undefined;
@@ -2295,6 +2376,7 @@ declare const StormcloudPlayer: {
2295
2376
  justifyTracks?: csstype.Property.JustifyTracks | undefined;
2296
2377
  left?: csstype.Property.Left<string | number> | undefined;
2297
2378
  letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
2379
+ lightingColor?: csstype.Property.LightingColor | undefined;
2298
2380
  lineBreak?: csstype.Property.LineBreak | undefined;
2299
2381
  lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
2300
2382
  lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
@@ -2310,6 +2392,10 @@ declare const StormcloudPlayer: {
2310
2392
  marginRight?: csstype.Property.MarginRight<string | number> | undefined;
2311
2393
  marginTop?: csstype.Property.MarginTop<string | number> | undefined;
2312
2394
  marginTrim?: csstype.Property.MarginTrim | undefined;
2395
+ marker?: csstype.Property.Marker | undefined;
2396
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
2397
+ markerMid?: csstype.Property.MarkerMid | undefined;
2398
+ markerStart?: csstype.Property.MarkerStart | undefined;
2313
2399
  maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
2314
2400
  maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2315
2401
  maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
@@ -2344,6 +2430,7 @@ declare const StormcloudPlayer: {
2344
2430
  motionRotation?: csstype.Property.OffsetRotate | undefined;
2345
2431
  objectFit?: csstype.Property.ObjectFit | undefined;
2346
2432
  objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2433
+ objectViewBox?: csstype.Property.ObjectViewBox | undefined;
2347
2434
  offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
2348
2435
  offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2349
2436
  offsetPath?: csstype.Property.OffsetPath | undefined;
@@ -2379,25 +2466,32 @@ declare const StormcloudPlayer: {
2379
2466
  paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
2380
2467
  paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
2381
2468
  page?: csstype.Property.Page | undefined;
2382
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2383
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2384
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2385
2469
  paintOrder?: csstype.Property.PaintOrder | undefined;
2386
2470
  perspective?: csstype.Property.Perspective<string | number> | undefined;
2387
2471
  perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2388
2472
  pointerEvents?: csstype.Property.PointerEvents | undefined;
2389
2473
  position?: csstype.Property.Position | undefined;
2474
+ positionAnchor?: csstype.Property.PositionAnchor | undefined;
2475
+ positionArea?: csstype.Property.PositionArea | undefined;
2476
+ positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
2477
+ positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
2478
+ positionVisibility?: csstype.Property.PositionVisibility | undefined;
2390
2479
  printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2391
2480
  quotes?: csstype.Property.Quotes | undefined;
2481
+ r?: csstype.Property.R<string | number> | undefined;
2392
2482
  resize?: csstype.Property.Resize | undefined;
2393
2483
  right?: csstype.Property.Right<string | number> | undefined;
2394
2484
  rotate?: csstype.Property.Rotate | undefined;
2395
2485
  rowGap?: csstype.Property.RowGap<string | number> | undefined;
2396
2486
  rubyAlign?: csstype.Property.RubyAlign | undefined;
2397
2487
  rubyMerge?: csstype.Property.RubyMerge | undefined;
2488
+ rubyOverhang?: csstype.Property.RubyOverhang | undefined;
2398
2489
  rubyPosition?: csstype.Property.RubyPosition | undefined;
2490
+ rx?: csstype.Property.Rx<string | number> | undefined;
2491
+ ry?: csstype.Property.Ry<string | number> | undefined;
2399
2492
  scale?: csstype.Property.Scale | undefined;
2400
2493
  scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
2494
+ scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
2401
2495
  scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
2402
2496
  scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
2403
2497
  scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
@@ -2429,10 +2523,28 @@ declare const StormcloudPlayer: {
2429
2523
  shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
2430
2524
  shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2431
2525
  shapeOutside?: csstype.Property.ShapeOutside | undefined;
2526
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
2527
+ speakAs?: csstype.Property.SpeakAs | undefined;
2528
+ stopColor?: csstype.Property.StopColor | undefined;
2529
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
2530
+ stroke?: csstype.Property.Stroke | undefined;
2531
+ strokeColor?: csstype.Property.StrokeColor | undefined;
2532
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2533
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2534
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2535
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2536
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2537
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2538
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2432
2539
  tabSize?: csstype.Property.TabSize<string | number> | undefined;
2433
2540
  tableLayout?: csstype.Property.TableLayout | undefined;
2434
2541
  textAlign?: csstype.Property.TextAlign | undefined;
2435
2542
  textAlignLast?: csstype.Property.TextAlignLast | undefined;
2543
+ textAnchor?: csstype.Property.TextAnchor | undefined;
2544
+ textAutospace?: csstype.Property.TextAutospace | undefined;
2545
+ textBox?: csstype.Property.TextBox | undefined;
2546
+ textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
2547
+ textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
2436
2548
  textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
2437
2549
  textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2438
2550
  textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
@@ -2450,10 +2562,12 @@ declare const StormcloudPlayer: {
2450
2562
  textRendering?: csstype.Property.TextRendering | undefined;
2451
2563
  textShadow?: csstype.Property.TextShadow | undefined;
2452
2564
  textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2565
+ textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
2453
2566
  textTransform?: csstype.Property.TextTransform | undefined;
2454
2567
  textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
2455
2568
  textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2456
- textWrap?: csstype.Property.TextWrap | undefined;
2569
+ textWrapMode?: csstype.Property.TextWrapMode | undefined;
2570
+ textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
2457
2571
  timelineScope?: csstype.Property.TimelineScope | undefined;
2458
2572
  top?: csstype.Property.Top<string | number> | undefined;
2459
2573
  touchAction?: csstype.Property.TouchAction | undefined;
@@ -2469,21 +2583,24 @@ declare const StormcloudPlayer: {
2469
2583
  translate?: csstype.Property.Translate<string | number> | undefined;
2470
2584
  unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
2471
2585
  userSelect?: csstype.Property.UserSelect | undefined;
2586
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
2472
2587
  verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
2473
2588
  viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
2474
2589
  viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
2475
2590
  viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
2591
+ viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
2476
2592
  viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
2477
2593
  visibility?: csstype.Property.Visibility | undefined;
2478
2594
  whiteSpace?: csstype.Property.WhiteSpace | undefined;
2479
2595
  whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
2480
- whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
2481
2596
  widows?: csstype.Property.Widows | undefined;
2482
2597
  willChange?: csstype.Property.WillChange | undefined;
2483
2598
  wordBreak?: csstype.Property.WordBreak | undefined;
2484
2599
  wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
2485
2600
  wordWrap?: csstype.Property.WordWrap | undefined;
2486
2601
  writingMode?: csstype.Property.WritingMode | undefined;
2602
+ x?: csstype.Property.X<string | number> | undefined;
2603
+ y?: csstype.Property.Y<string | number> | undefined;
2487
2604
  zIndex?: csstype.Property.ZIndex | undefined;
2488
2605
  zoom?: csstype.Property.Zoom | undefined;
2489
2606
  all?: csstype.Property.All | undefined;
@@ -2493,14 +2610,20 @@ declare const StormcloudPlayer: {
2493
2610
  backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
2494
2611
  border?: csstype.Property.Border<string | number> | undefined;
2495
2612
  borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
2613
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2496
2614
  borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
2497
2615
  borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
2616
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2617
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2498
2618
  borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
2499
2619
  borderColor?: csstype.Property.BorderColor | undefined;
2500
2620
  borderImage?: csstype.Property.BorderImage | undefined;
2501
2621
  borderInline?: csstype.Property.BorderInline<string | number> | undefined;
2622
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2502
2623
  borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
2503
2624
  borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
2625
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2626
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2504
2627
  borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
2505
2628
  borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2506
2629
  borderRight?: csstype.Property.BorderRight<string | number> | undefined;
@@ -2542,6 +2665,7 @@ declare const StormcloudPlayer: {
2542
2665
  placeContent?: csstype.Property.PlaceContent | undefined;
2543
2666
  placeItems?: csstype.Property.PlaceItems | undefined;
2544
2667
  placeSelf?: csstype.Property.PlaceSelf | undefined;
2668
+ positionTry?: csstype.Property.PositionTry | undefined;
2545
2669
  scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2546
2670
  scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
2547
2671
  scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
@@ -2552,6 +2676,7 @@ declare const StormcloudPlayer: {
2552
2676
  scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
2553
2677
  textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
2554
2678
  textEmphasis?: csstype.Property.TextEmphasis | undefined;
2679
+ textWrap?: csstype.Property.TextWrap | undefined;
2555
2680
  transition?: csstype.Property.Transition<string & {}> | undefined;
2556
2681
  viewTimeline?: csstype.Property.ViewTimeline | undefined;
2557
2682
  MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
@@ -2563,6 +2688,7 @@ declare const StormcloudPlayer: {
2563
2688
  MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2564
2689
  MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2565
2690
  MozAppearance?: csstype.Property.MozAppearance | undefined;
2691
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2566
2692
  MozBinding?: csstype.Property.MozBinding | undefined;
2567
2693
  MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
2568
2694
  MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
@@ -2574,8 +2700,6 @@ declare const StormcloudPlayer: {
2574
2700
  MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2575
2701
  MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
2576
2702
  MozBoxSizing?: csstype.Property.BoxSizing | undefined;
2577
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
2578
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
2579
2703
  MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2580
2704
  MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2581
2705
  MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
@@ -2584,7 +2708,6 @@ declare const StormcloudPlayer: {
2584
2708
  MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2585
2709
  MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2586
2710
  MozHyphens?: csstype.Property.Hyphens | undefined;
2587
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
2588
2711
  MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2589
2712
  MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2590
2713
  MozOrient?: csstype.Property.MozOrient | undefined;
@@ -2595,11 +2718,15 @@ declare const StormcloudPlayer: {
2595
2718
  MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
2596
2719
  MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2597
2720
  MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2721
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
2722
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2598
2723
  MozStackSizing?: csstype.Property.MozStackSizing | undefined;
2599
2724
  MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
2600
2725
  MozTextBlink?: csstype.Property.MozTextBlink | undefined;
2601
2726
  MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2602
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
2727
+ MozTransform?: csstype.Property.Transform | undefined;
2728
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2729
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
2603
2730
  MozUserModify?: csstype.Property.MozUserModify | undefined;
2604
2731
  MozUserSelect?: csstype.Property.UserSelect | undefined;
2605
2732
  MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
@@ -2718,6 +2845,8 @@ declare const StormcloudPlayer: {
2718
2845
  WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
2719
2846
  WebkitLineBreak?: csstype.Property.LineBreak | undefined;
2720
2847
  WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
2848
+ WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
2849
+ WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
2721
2850
  WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2722
2851
  WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2723
2852
  WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
@@ -2772,13 +2901,14 @@ declare const StormcloudPlayer: {
2772
2901
  WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2773
2902
  WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2774
2903
  WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
2775
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
2904
+ WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
2776
2905
  WebkitWritingMode?: csstype.Property.WritingMode | undefined;
2777
2906
  MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
2778
2907
  MozBorderImage?: csstype.Property.BorderImage | undefined;
2779
2908
  MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2780
2909
  MozColumns?: csstype.Property.Columns<string | number> | undefined;
2781
2910
  MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
2911
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
2782
2912
  msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
2783
2913
  msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
2784
2914
  msFlex?: csstype.Property.Flex<string | number> | undefined;
@@ -2799,7 +2929,6 @@ declare const StormcloudPlayer: {
2799
2929
  WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
2800
2930
  WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
2801
2931
  WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
2802
- azimuth?: csstype.Property.Azimuth | undefined;
2803
2932
  boxAlign?: csstype.Property.BoxAlign | undefined;
2804
2933
  boxDirection?: csstype.Property.BoxDirection | undefined;
2805
2934
  boxFlex?: csstype.Property.BoxFlex | undefined;
@@ -2809,16 +2938,22 @@ declare const StormcloudPlayer: {
2809
2938
  boxOrient?: csstype.Property.BoxOrient | undefined;
2810
2939
  boxPack?: csstype.Property.BoxPack | undefined;
2811
2940
  clip?: csstype.Property.Clip | undefined;
2941
+ fontStretch?: csstype.Property.FontStretch | undefined;
2812
2942
  gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
2813
2943
  gridGap?: csstype.Property.GridGap<string | number> | undefined;
2814
2944
  gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
2815
2945
  imeMode?: csstype.Property.ImeMode | undefined;
2946
+ insetArea?: csstype.Property.PositionArea | undefined;
2816
2947
  offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2817
2948
  offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2818
2949
  offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2819
2950
  offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
2820
2951
  offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2821
2952
  offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2953
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2954
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2955
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2956
+ positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
2822
2957
  scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
2823
2958
  scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
2824
2959
  scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
@@ -2836,9 +2971,7 @@ declare const StormcloudPlayer: {
2836
2971
  KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
2837
2972
  KhtmlOpacity?: csstype.Property.Opacity | undefined;
2838
2973
  KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
2839
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2840
2974
  MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2841
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
2842
2975
  MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2843
2976
  MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2844
2977
  MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
@@ -2853,6 +2986,8 @@ declare const StormcloudPlayer: {
2853
2986
  MozBoxOrient?: csstype.Property.BoxOrient | undefined;
2854
2987
  MozBoxPack?: csstype.Property.BoxPack | undefined;
2855
2988
  MozBoxShadow?: csstype.Property.BoxShadow | undefined;
2989
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
2990
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
2856
2991
  MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
2857
2992
  MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
2858
2993
  MozOpacity?: csstype.Property.Opacity | undefined;
@@ -2860,20 +2995,15 @@ declare const StormcloudPlayer: {
2860
2995
  MozOutlineColor?: csstype.Property.OutlineColor | undefined;
2861
2996
  MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
2862
2997
  MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2863
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
2864
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2865
2998
  MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
2866
2999
  MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2867
3000
  MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2868
3001
  MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2869
- MozTransform?: csstype.Property.Transform | undefined;
2870
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2871
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
2872
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
2873
3002
  MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2874
3003
  MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2875
3004
  MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2876
3005
  MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3006
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
2877
3007
  MozUserInput?: csstype.Property.MozUserInput | undefined;
2878
3008
  msImeMode?: csstype.Property.ImeMode | undefined;
2879
3009
  OAnimation?: csstype.Property.Animation<string & {}> | undefined;
@@ -2906,36 +3036,9 @@ declare const StormcloudPlayer: {
2906
3036
  WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2907
3037
  WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
2908
3038
  WebkitBoxPack?: csstype.Property.BoxPack | undefined;
2909
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2910
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2911
- clipRule?: csstype.Property.ClipRule | undefined;
2912
3039
  colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
2913
3040
  colorRendering?: csstype.Property.ColorRendering | undefined;
2914
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2915
- fill?: csstype.Property.Fill | undefined;
2916
- fillOpacity?: csstype.Property.FillOpacity | undefined;
2917
- fillRule?: csstype.Property.FillRule | undefined;
2918
- floodColor?: csstype.Property.FloodColor | undefined;
2919
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
2920
3041
  glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
2921
- lightingColor?: csstype.Property.LightingColor | undefined;
2922
- marker?: csstype.Property.Marker | undefined;
2923
- markerEnd?: csstype.Property.MarkerEnd | undefined;
2924
- markerMid?: csstype.Property.MarkerMid | undefined;
2925
- markerStart?: csstype.Property.MarkerStart | undefined;
2926
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
2927
- stopColor?: csstype.Property.StopColor | undefined;
2928
- stopOpacity?: csstype.Property.StopOpacity | undefined;
2929
- stroke?: csstype.Property.Stroke | undefined;
2930
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2931
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2932
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2933
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2934
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2935
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2936
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2937
- textAnchor?: csstype.Property.TextAnchor | undefined;
2938
- vectorEffect?: csstype.Property.VectorEffect | undefined;
2939
3042
  };
2940
3043
  }, HTMLElement>;
2941
3044
  context: unknown;
@@ -2985,6 +3088,9 @@ declare const StormcloudPlayer: {
2985
3088
  alignItems?: csstype.Property.AlignItems | undefined;
2986
3089
  alignSelf?: csstype.Property.AlignSelf | undefined;
2987
3090
  alignTracks?: csstype.Property.AlignTracks | undefined;
3091
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
3092
+ anchorName?: csstype.Property.AnchorName | undefined;
3093
+ anchorScope?: csstype.Property.AnchorScope | undefined;
2988
3094
  animationComposition?: csstype.Property.AnimationComposition | undefined;
2989
3095
  animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2990
3096
  animationDirection?: csstype.Property.AnimationDirection | undefined;
@@ -3011,17 +3117,14 @@ declare const StormcloudPlayer: {
3011
3117
  backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
3012
3118
  backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
3013
3119
  backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3014
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
3120
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
3015
3121
  blockSize?: csstype.Property.BlockSize<string | number> | undefined;
3016
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
3017
3122
  borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
3018
3123
  borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
3019
3124
  borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
3020
3125
  borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
3021
3126
  borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
3022
3127
  borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
3023
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
3024
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
3025
3128
  borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
3026
3129
  borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3027
3130
  borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
@@ -3035,15 +3138,12 @@ declare const StormcloudPlayer: {
3035
3138
  borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
3036
3139
  borderImageSource?: csstype.Property.BorderImageSource | undefined;
3037
3140
  borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
3038
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
3039
3141
  borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
3040
3142
  borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
3041
3143
  borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
3042
3144
  borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
3043
3145
  borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3044
3146
  borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
3045
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
3046
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
3047
3147
  borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
3048
3148
  borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
3049
3149
  borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
@@ -3070,8 +3170,10 @@ declare const StormcloudPlayer: {
3070
3170
  caretShape?: csstype.Property.CaretShape | undefined;
3071
3171
  clear?: csstype.Property.Clear | undefined;
3072
3172
  clipPath?: csstype.Property.ClipPath | undefined;
3173
+ clipRule?: csstype.Property.ClipRule | undefined;
3073
3174
  color?: csstype.Property.Color | undefined;
3074
3175
  colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3176
+ colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
3075
3177
  colorScheme?: csstype.Property.ColorScheme | undefined;
3076
3178
  columnCount?: csstype.Property.ColumnCount | undefined;
3077
3179
  columnFill?: csstype.Property.ColumnFill | undefined;
@@ -3094,9 +3196,17 @@ declare const StormcloudPlayer: {
3094
3196
  counterReset?: csstype.Property.CounterReset | undefined;
3095
3197
  counterSet?: csstype.Property.CounterSet | undefined;
3096
3198
  cursor?: csstype.Property.Cursor | undefined;
3199
+ cx?: csstype.Property.Cx<string | number> | undefined;
3200
+ cy?: csstype.Property.Cy<string | number> | undefined;
3201
+ d?: csstype.Property.D | undefined;
3097
3202
  direction?: csstype.Property.Direction | undefined;
3098
3203
  display?: csstype.Property.Display | undefined;
3204
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
3099
3205
  emptyCells?: csstype.Property.EmptyCells | undefined;
3206
+ fieldSizing?: csstype.Property.FieldSizing | undefined;
3207
+ fill?: csstype.Property.Fill | undefined;
3208
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
3209
+ fillRule?: csstype.Property.FillRule | undefined;
3100
3210
  filter?: csstype.Property.Filter | undefined;
3101
3211
  flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
3102
3212
  flexDirection?: csstype.Property.FlexDirection | undefined;
@@ -3104,6 +3214,8 @@ declare const StormcloudPlayer: {
3104
3214
  flexShrink?: csstype.Property.FlexShrink | undefined;
3105
3215
  flexWrap?: csstype.Property.FlexWrap | undefined;
3106
3216
  float?: csstype.Property.Float | undefined;
3217
+ floodColor?: csstype.Property.FloodColor | undefined;
3218
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
3107
3219
  fontFamily?: csstype.Property.FontFamily | undefined;
3108
3220
  fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3109
3221
  fontKerning?: csstype.Property.FontKerning | undefined;
@@ -3113,7 +3225,6 @@ declare const StormcloudPlayer: {
3113
3225
  fontSize?: csstype.Property.FontSize<string | number> | undefined;
3114
3226
  fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
3115
3227
  fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
3116
- fontStretch?: csstype.Property.FontStretch | undefined;
3117
3228
  fontStyle?: csstype.Property.FontStyle | undefined;
3118
3229
  fontSynthesis?: csstype.Property.FontSynthesis | undefined;
3119
3230
  fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
@@ -3130,6 +3241,7 @@ declare const StormcloudPlayer: {
3130
3241
  fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
3131
3242
  fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
3132
3243
  fontWeight?: csstype.Property.FontWeight | undefined;
3244
+ fontWidth?: csstype.Property.FontWidth | undefined;
3133
3245
  forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
3134
3246
  gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
3135
3247
  gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
@@ -3149,12 +3261,13 @@ declare const StormcloudPlayer: {
3149
3261
  imageRendering?: csstype.Property.ImageRendering | undefined;
3150
3262
  imageResolution?: csstype.Property.ImageResolution | undefined;
3151
3263
  initialLetter?: csstype.Property.InitialLetter | undefined;
3264
+ initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
3152
3265
  inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
3153
- inputSecurity?: csstype.Property.InputSecurity | undefined;
3154
3266
  insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3155
3267
  insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3156
3268
  insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3157
3269
  insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3270
+ interpolateSize?: csstype.Property.InterpolateSize | undefined;
3158
3271
  isolation?: csstype.Property.Isolation | undefined;
3159
3272
  justifyContent?: csstype.Property.JustifyContent | undefined;
3160
3273
  justifyItems?: csstype.Property.JustifyItems | undefined;
@@ -3162,6 +3275,7 @@ declare const StormcloudPlayer: {
3162
3275
  justifyTracks?: csstype.Property.JustifyTracks | undefined;
3163
3276
  left?: csstype.Property.Left<string | number> | undefined;
3164
3277
  letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
3278
+ lightingColor?: csstype.Property.LightingColor | undefined;
3165
3279
  lineBreak?: csstype.Property.LineBreak | undefined;
3166
3280
  lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
3167
3281
  lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
@@ -3177,6 +3291,10 @@ declare const StormcloudPlayer: {
3177
3291
  marginRight?: csstype.Property.MarginRight<string | number> | undefined;
3178
3292
  marginTop?: csstype.Property.MarginTop<string | number> | undefined;
3179
3293
  marginTrim?: csstype.Property.MarginTrim | undefined;
3294
+ marker?: csstype.Property.Marker | undefined;
3295
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
3296
+ markerMid?: csstype.Property.MarkerMid | undefined;
3297
+ markerStart?: csstype.Property.MarkerStart | undefined;
3180
3298
  maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
3181
3299
  maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3182
3300
  maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
@@ -3211,6 +3329,7 @@ declare const StormcloudPlayer: {
3211
3329
  motionRotation?: csstype.Property.OffsetRotate | undefined;
3212
3330
  objectFit?: csstype.Property.ObjectFit | undefined;
3213
3331
  objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3332
+ objectViewBox?: csstype.Property.ObjectViewBox | undefined;
3214
3333
  offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
3215
3334
  offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3216
3335
  offsetPath?: csstype.Property.OffsetPath | undefined;
@@ -3246,25 +3365,32 @@ declare const StormcloudPlayer: {
3246
3365
  paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
3247
3366
  paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
3248
3367
  page?: csstype.Property.Page | undefined;
3249
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
3250
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
3251
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
3252
3368
  paintOrder?: csstype.Property.PaintOrder | undefined;
3253
3369
  perspective?: csstype.Property.Perspective<string | number> | undefined;
3254
3370
  perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3255
3371
  pointerEvents?: csstype.Property.PointerEvents | undefined;
3256
3372
  position?: csstype.Property.Position | undefined;
3373
+ positionAnchor?: csstype.Property.PositionAnchor | undefined;
3374
+ positionArea?: csstype.Property.PositionArea | undefined;
3375
+ positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
3376
+ positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
3377
+ positionVisibility?: csstype.Property.PositionVisibility | undefined;
3257
3378
  printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3258
3379
  quotes?: csstype.Property.Quotes | undefined;
3380
+ r?: csstype.Property.R<string | number> | undefined;
3259
3381
  resize?: csstype.Property.Resize | undefined;
3260
3382
  right?: csstype.Property.Right<string | number> | undefined;
3261
3383
  rotate?: csstype.Property.Rotate | undefined;
3262
3384
  rowGap?: csstype.Property.RowGap<string | number> | undefined;
3263
3385
  rubyAlign?: csstype.Property.RubyAlign | undefined;
3264
3386
  rubyMerge?: csstype.Property.RubyMerge | undefined;
3387
+ rubyOverhang?: csstype.Property.RubyOverhang | undefined;
3265
3388
  rubyPosition?: csstype.Property.RubyPosition | undefined;
3389
+ rx?: csstype.Property.Rx<string | number> | undefined;
3390
+ ry?: csstype.Property.Ry<string | number> | undefined;
3266
3391
  scale?: csstype.Property.Scale | undefined;
3267
3392
  scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
3393
+ scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
3268
3394
  scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
3269
3395
  scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
3270
3396
  scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
@@ -3296,10 +3422,28 @@ declare const StormcloudPlayer: {
3296
3422
  shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
3297
3423
  shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3298
3424
  shapeOutside?: csstype.Property.ShapeOutside | undefined;
3425
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
3426
+ speakAs?: csstype.Property.SpeakAs | undefined;
3427
+ stopColor?: csstype.Property.StopColor | undefined;
3428
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
3429
+ stroke?: csstype.Property.Stroke | undefined;
3430
+ strokeColor?: csstype.Property.StrokeColor | undefined;
3431
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
3432
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
3433
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
3434
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
3435
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
3436
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
3437
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
3299
3438
  tabSize?: csstype.Property.TabSize<string | number> | undefined;
3300
3439
  tableLayout?: csstype.Property.TableLayout | undefined;
3301
3440
  textAlign?: csstype.Property.TextAlign | undefined;
3302
3441
  textAlignLast?: csstype.Property.TextAlignLast | undefined;
3442
+ textAnchor?: csstype.Property.TextAnchor | undefined;
3443
+ textAutospace?: csstype.Property.TextAutospace | undefined;
3444
+ textBox?: csstype.Property.TextBox | undefined;
3445
+ textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
3446
+ textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
3303
3447
  textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
3304
3448
  textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3305
3449
  textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
@@ -3317,10 +3461,12 @@ declare const StormcloudPlayer: {
3317
3461
  textRendering?: csstype.Property.TextRendering | undefined;
3318
3462
  textShadow?: csstype.Property.TextShadow | undefined;
3319
3463
  textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3464
+ textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
3320
3465
  textTransform?: csstype.Property.TextTransform | undefined;
3321
3466
  textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
3322
3467
  textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3323
- textWrap?: csstype.Property.TextWrap | undefined;
3468
+ textWrapMode?: csstype.Property.TextWrapMode | undefined;
3469
+ textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
3324
3470
  timelineScope?: csstype.Property.TimelineScope | undefined;
3325
3471
  top?: csstype.Property.Top<string | number> | undefined;
3326
3472
  touchAction?: csstype.Property.TouchAction | undefined;
@@ -3336,21 +3482,24 @@ declare const StormcloudPlayer: {
3336
3482
  translate?: csstype.Property.Translate<string | number> | undefined;
3337
3483
  unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
3338
3484
  userSelect?: csstype.Property.UserSelect | undefined;
3485
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
3339
3486
  verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
3340
3487
  viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
3341
3488
  viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
3342
3489
  viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
3490
+ viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
3343
3491
  viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
3344
3492
  visibility?: csstype.Property.Visibility | undefined;
3345
3493
  whiteSpace?: csstype.Property.WhiteSpace | undefined;
3346
3494
  whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
3347
- whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
3348
3495
  widows?: csstype.Property.Widows | undefined;
3349
3496
  willChange?: csstype.Property.WillChange | undefined;
3350
3497
  wordBreak?: csstype.Property.WordBreak | undefined;
3351
3498
  wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
3352
3499
  wordWrap?: csstype.Property.WordWrap | undefined;
3353
3500
  writingMode?: csstype.Property.WritingMode | undefined;
3501
+ x?: csstype.Property.X<string | number> | undefined;
3502
+ y?: csstype.Property.Y<string | number> | undefined;
3354
3503
  zIndex?: csstype.Property.ZIndex | undefined;
3355
3504
  zoom?: csstype.Property.Zoom | undefined;
3356
3505
  all?: csstype.Property.All | undefined;
@@ -3360,14 +3509,20 @@ declare const StormcloudPlayer: {
3360
3509
  backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
3361
3510
  border?: csstype.Property.Border<string | number> | undefined;
3362
3511
  borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
3512
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
3363
3513
  borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
3364
3514
  borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
3515
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
3516
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
3365
3517
  borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
3366
3518
  borderColor?: csstype.Property.BorderColor | undefined;
3367
3519
  borderImage?: csstype.Property.BorderImage | undefined;
3368
3520
  borderInline?: csstype.Property.BorderInline<string | number> | undefined;
3521
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
3369
3522
  borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
3370
3523
  borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
3524
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
3525
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
3371
3526
  borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
3372
3527
  borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3373
3528
  borderRight?: csstype.Property.BorderRight<string | number> | undefined;
@@ -3409,6 +3564,7 @@ declare const StormcloudPlayer: {
3409
3564
  placeContent?: csstype.Property.PlaceContent | undefined;
3410
3565
  placeItems?: csstype.Property.PlaceItems | undefined;
3411
3566
  placeSelf?: csstype.Property.PlaceSelf | undefined;
3567
+ positionTry?: csstype.Property.PositionTry | undefined;
3412
3568
  scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3413
3569
  scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
3414
3570
  scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
@@ -3419,6 +3575,7 @@ declare const StormcloudPlayer: {
3419
3575
  scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
3420
3576
  textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
3421
3577
  textEmphasis?: csstype.Property.TextEmphasis | undefined;
3578
+ textWrap?: csstype.Property.TextWrap | undefined;
3422
3579
  transition?: csstype.Property.Transition<string & {}> | undefined;
3423
3580
  viewTimeline?: csstype.Property.ViewTimeline | undefined;
3424
3581
  MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
@@ -3430,6 +3587,7 @@ declare const StormcloudPlayer: {
3430
3587
  MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3431
3588
  MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3432
3589
  MozAppearance?: csstype.Property.MozAppearance | undefined;
3590
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3433
3591
  MozBinding?: csstype.Property.MozBinding | undefined;
3434
3592
  MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
3435
3593
  MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
@@ -3441,8 +3599,6 @@ declare const StormcloudPlayer: {
3441
3599
  MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3442
3600
  MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
3443
3601
  MozBoxSizing?: csstype.Property.BoxSizing | undefined;
3444
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
3445
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
3446
3602
  MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3447
3603
  MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3448
3604
  MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
@@ -3451,7 +3607,6 @@ declare const StormcloudPlayer: {
3451
3607
  MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3452
3608
  MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
3453
3609
  MozHyphens?: csstype.Property.Hyphens | undefined;
3454
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
3455
3610
  MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3456
3611
  MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3457
3612
  MozOrient?: csstype.Property.MozOrient | undefined;
@@ -3462,11 +3617,15 @@ declare const StormcloudPlayer: {
3462
3617
  MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
3463
3618
  MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3464
3619
  MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3620
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
3621
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3465
3622
  MozStackSizing?: csstype.Property.MozStackSizing | undefined;
3466
3623
  MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
3467
3624
  MozTextBlink?: csstype.Property.MozTextBlink | undefined;
3468
3625
  MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3469
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
3626
+ MozTransform?: csstype.Property.Transform | undefined;
3627
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3628
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
3470
3629
  MozUserModify?: csstype.Property.MozUserModify | undefined;
3471
3630
  MozUserSelect?: csstype.Property.UserSelect | undefined;
3472
3631
  MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
@@ -3585,6 +3744,8 @@ declare const StormcloudPlayer: {
3585
3744
  WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
3586
3745
  WebkitLineBreak?: csstype.Property.LineBreak | undefined;
3587
3746
  WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
3747
+ WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
3748
+ WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
3588
3749
  WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3589
3750
  WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3590
3751
  WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
@@ -3639,13 +3800,14 @@ declare const StormcloudPlayer: {
3639
3800
  WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3640
3801
  WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3641
3802
  WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
3642
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
3803
+ WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
3643
3804
  WebkitWritingMode?: csstype.Property.WritingMode | undefined;
3644
3805
  MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
3645
3806
  MozBorderImage?: csstype.Property.BorderImage | undefined;
3646
3807
  MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3647
3808
  MozColumns?: csstype.Property.Columns<string | number> | undefined;
3648
3809
  MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
3810
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
3649
3811
  msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
3650
3812
  msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
3651
3813
  msFlex?: csstype.Property.Flex<string | number> | undefined;
@@ -3666,7 +3828,6 @@ declare const StormcloudPlayer: {
3666
3828
  WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
3667
3829
  WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
3668
3830
  WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
3669
- azimuth?: csstype.Property.Azimuth | undefined;
3670
3831
  boxAlign?: csstype.Property.BoxAlign | undefined;
3671
3832
  boxDirection?: csstype.Property.BoxDirection | undefined;
3672
3833
  boxFlex?: csstype.Property.BoxFlex | undefined;
@@ -3676,16 +3837,22 @@ declare const StormcloudPlayer: {
3676
3837
  boxOrient?: csstype.Property.BoxOrient | undefined;
3677
3838
  boxPack?: csstype.Property.BoxPack | undefined;
3678
3839
  clip?: csstype.Property.Clip | undefined;
3840
+ fontStretch?: csstype.Property.FontStretch | undefined;
3679
3841
  gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
3680
3842
  gridGap?: csstype.Property.GridGap<string | number> | undefined;
3681
3843
  gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
3682
3844
  imeMode?: csstype.Property.ImeMode | undefined;
3845
+ insetArea?: csstype.Property.PositionArea | undefined;
3683
3846
  offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3684
3847
  offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3685
3848
  offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3686
3849
  offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
3687
3850
  offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3688
3851
  offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3852
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
3853
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
3854
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
3855
+ positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
3689
3856
  scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
3690
3857
  scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
3691
3858
  scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
@@ -3703,9 +3870,7 @@ declare const StormcloudPlayer: {
3703
3870
  KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
3704
3871
  KhtmlOpacity?: csstype.Property.Opacity | undefined;
3705
3872
  KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
3706
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3707
3873
  MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3708
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
3709
3874
  MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3710
3875
  MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3711
3876
  MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
@@ -3720,6 +3885,8 @@ declare const StormcloudPlayer: {
3720
3885
  MozBoxOrient?: csstype.Property.BoxOrient | undefined;
3721
3886
  MozBoxPack?: csstype.Property.BoxPack | undefined;
3722
3887
  MozBoxShadow?: csstype.Property.BoxShadow | undefined;
3888
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
3889
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
3723
3890
  MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
3724
3891
  MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
3725
3892
  MozOpacity?: csstype.Property.Opacity | undefined;
@@ -3727,20 +3894,15 @@ declare const StormcloudPlayer: {
3727
3894
  MozOutlineColor?: csstype.Property.OutlineColor | undefined;
3728
3895
  MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
3729
3896
  MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3730
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
3731
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3732
3897
  MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
3733
3898
  MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3734
3899
  MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3735
3900
  MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3736
- MozTransform?: csstype.Property.Transform | undefined;
3737
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3738
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
3739
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
3740
3901
  MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3741
3902
  MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3742
3903
  MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3743
3904
  MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3905
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
3744
3906
  MozUserInput?: csstype.Property.MozUserInput | undefined;
3745
3907
  msImeMode?: csstype.Property.ImeMode | undefined;
3746
3908
  OAnimation?: csstype.Property.Animation<string & {}> | undefined;
@@ -3773,36 +3935,9 @@ declare const StormcloudPlayer: {
3773
3935
  WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3774
3936
  WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
3775
3937
  WebkitBoxPack?: csstype.Property.BoxPack | undefined;
3776
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
3777
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
3778
- clipRule?: csstype.Property.ClipRule | undefined;
3779
3938
  colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
3780
3939
  colorRendering?: csstype.Property.ColorRendering | undefined;
3781
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
3782
- fill?: csstype.Property.Fill | undefined;
3783
- fillOpacity?: csstype.Property.FillOpacity | undefined;
3784
- fillRule?: csstype.Property.FillRule | undefined;
3785
- floodColor?: csstype.Property.FloodColor | undefined;
3786
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
3787
3940
  glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
3788
- lightingColor?: csstype.Property.LightingColor | undefined;
3789
- marker?: csstype.Property.Marker | undefined;
3790
- markerEnd?: csstype.Property.MarkerEnd | undefined;
3791
- markerMid?: csstype.Property.MarkerMid | undefined;
3792
- markerStart?: csstype.Property.MarkerStart | undefined;
3793
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
3794
- stopColor?: csstype.Property.StopColor | undefined;
3795
- stopOpacity?: csstype.Property.StopOpacity | undefined;
3796
- stroke?: csstype.Property.Stroke | undefined;
3797
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
3798
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
3799
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
3800
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
3801
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
3802
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
3803
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
3804
- textAnchor?: csstype.Property.TextAnchor | undefined;
3805
- vectorEffect?: csstype.Property.VectorEffect | undefined;
3806
3941
  };
3807
3942
  }, HTMLElement>;
3808
3943
  context: unknown;