stormcloud-video-player 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stormcloud-vp.min.js +1 -1
- package/lib/index.cjs +370 -447
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +355 -267
- package/lib/index.d.ts +355 -267
- package/lib/index.js +329 -406
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +96 -178
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +1 -1
- package/lib/players/FilePlayer.cjs +99 -116
- package/lib/players/FilePlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.cjs +148 -230
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.d.cts +1 -1
- package/lib/players/index.cjs +227 -309
- package/lib/players/index.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.cjs +17 -9
- package/lib/sdk/hlsAdPlayer.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.d.cts +1 -1
- package/lib/sdk/ima.cjs +28 -20
- package/lib/sdk/ima.cjs.map +1 -1
- package/lib/sdk/ima.d.cts +1 -1
- package/lib/sdk/prebid.cjs +27 -85
- package/lib/sdk/prebid.cjs.map +1 -1
- package/lib/sdk/prebid.d.cts +6 -3
- package/lib/sdk/prebidController.cjs +35 -108
- package/lib/sdk/prebidController.cjs.map +1 -1
- package/lib/sdk/prebidController.d.cts +3 -2
- package/lib/sdk/vastParser.cjs +19 -11
- package/lib/sdk/vastParser.cjs.map +1 -1
- package/lib/{types-g2d4Akez.d.cts → types-CRi_KrjM.d.cts} +1 -45
- package/lib/ui/StormcloudVideoPlayer.cjs +190 -267
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.d.cts +1 -1
- package/lib/utils/browserCompat.cjs +11 -11
- package/lib/utils/browserCompat.cjs.map +1 -1
- package/lib/utils/polyfills.cjs +13 -13
- package/lib/utils/polyfills.cjs.map +1 -1
- package/lib/utils/tracking.cjs +19 -11
- package/lib/utils/tracking.cjs.map +1 -1
- package/lib/utils/tracking.d.cts +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -36,7 +36,6 @@ interface StormcloudVideoPlayerConfig {
|
|
|
36
36
|
vastTagUrl?: string;
|
|
37
37
|
vastMode?: 'adstorm' | 'default';
|
|
38
38
|
minSegmentsBeforePlay?: number;
|
|
39
|
-
prebid?: PrebidConfig;
|
|
40
39
|
}
|
|
41
40
|
interface ImaController {
|
|
42
41
|
initialize: () => void;
|
|
@@ -102,49 +101,6 @@ interface HeartbeatData {
|
|
|
102
101
|
browserId: string;
|
|
103
102
|
timestamp: string;
|
|
104
103
|
}
|
|
105
|
-
interface PrebidServerImpVideo {
|
|
106
|
-
w?: number;
|
|
107
|
-
h?: number;
|
|
108
|
-
mimes?: string[];
|
|
109
|
-
placement?: number;
|
|
110
|
-
protocols?: number[];
|
|
111
|
-
minduration?: number;
|
|
112
|
-
maxduration?: number;
|
|
113
|
-
linearity?: number;
|
|
114
|
-
skip?: number;
|
|
115
|
-
playbackmethod?: number[];
|
|
116
|
-
api?: number[];
|
|
117
|
-
}
|
|
118
|
-
interface PrebidServerImp {
|
|
119
|
-
id: string;
|
|
120
|
-
instl?: number;
|
|
121
|
-
video?: PrebidServerImpVideo;
|
|
122
|
-
banner?: {
|
|
123
|
-
w?: number;
|
|
124
|
-
h?: number;
|
|
125
|
-
format?: Array<{
|
|
126
|
-
w: number;
|
|
127
|
-
h: number;
|
|
128
|
-
}>;
|
|
129
|
-
};
|
|
130
|
-
ext?: Record<string, any>;
|
|
131
|
-
}
|
|
132
|
-
interface PrebidServerRequest {
|
|
133
|
-
id: string;
|
|
134
|
-
site?: Record<string, any>;
|
|
135
|
-
device?: Record<string, any>;
|
|
136
|
-
imp: PrebidServerImp[];
|
|
137
|
-
tmax?: number;
|
|
138
|
-
ext?: Record<string, any>;
|
|
139
|
-
}
|
|
140
|
-
interface PrebidConfig {
|
|
141
|
-
enabled?: boolean;
|
|
142
|
-
serverUrl?: string;
|
|
143
|
-
ortbRequest: PrebidServerRequest;
|
|
144
|
-
timeout?: number;
|
|
145
|
-
debug?: boolean;
|
|
146
|
-
cpmFloor?: number;
|
|
147
|
-
}
|
|
148
104
|
interface PrebidBidResponse {
|
|
149
105
|
bidder: string;
|
|
150
106
|
cpm: number;
|
|
@@ -416,6 +372,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
416
372
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
417
373
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
418
374
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
375
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
376
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
377
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
419
378
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
420
379
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
421
380
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -442,17 +401,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
442
401
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
443
402
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
444
403
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
445
|
-
|
|
404
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
446
405
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
447
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
448
406
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
449
407
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
450
408
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
451
409
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
452
410
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
453
411
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
454
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
455
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
456
412
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
457
413
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
458
414
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -466,15 +422,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
466
422
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
467
423
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
468
424
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
469
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
470
425
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
471
426
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
472
427
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
473
428
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
474
429
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
475
430
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
476
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
477
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
478
431
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
479
432
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
480
433
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -501,8 +454,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
501
454
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
502
455
|
clear?: csstype.Property.Clear | undefined;
|
|
503
456
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
457
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
504
458
|
color?: csstype.Property.Color | undefined;
|
|
505
459
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
460
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
506
461
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
507
462
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
508
463
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -525,9 +480,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
525
480
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
526
481
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
527
482
|
cursor?: csstype.Property.Cursor | undefined;
|
|
483
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
484
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
485
|
+
d?: csstype.Property.D | undefined;
|
|
528
486
|
direction?: csstype.Property.Direction | undefined;
|
|
529
487
|
display?: csstype.Property.Display | undefined;
|
|
488
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
530
489
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
490
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
491
|
+
fill?: csstype.Property.Fill | undefined;
|
|
492
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
493
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
531
494
|
filter?: csstype.Property.Filter | undefined;
|
|
532
495
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
533
496
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -535,6 +498,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
535
498
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
536
499
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
537
500
|
float?: csstype.Property.Float | undefined;
|
|
501
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
502
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
538
503
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
539
504
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
540
505
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -544,7 +509,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
544
509
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
545
510
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
546
511
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
547
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
548
512
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
549
513
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
550
514
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -561,6 +525,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
561
525
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
562
526
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
563
527
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
528
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
564
529
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
565
530
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
566
531
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -580,12 +545,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
580
545
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
581
546
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
582
547
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
548
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
583
549
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
584
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
585
550
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
586
551
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
587
552
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
588
553
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
554
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
589
555
|
isolation?: csstype.Property.Isolation | undefined;
|
|
590
556
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
591
557
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -593,6 +559,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
593
559
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
594
560
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
595
561
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
562
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
596
563
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
597
564
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
598
565
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -608,6 +575,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
608
575
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
609
576
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
610
577
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
578
|
+
marker?: csstype.Property.Marker | undefined;
|
|
579
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
580
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
581
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
611
582
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
612
583
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
613
584
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -642,6 +613,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
642
613
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
643
614
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
644
615
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
616
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
645
617
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
646
618
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
647
619
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -677,25 +649,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
677
649
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
678
650
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
679
651
|
page?: csstype.Property.Page | undefined;
|
|
680
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
681
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
682
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
683
652
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
684
653
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
685
654
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
686
655
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
687
656
|
position?: csstype.Property.Position | undefined;
|
|
657
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
658
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
659
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
660
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
661
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
688
662
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
689
663
|
quotes?: csstype.Property.Quotes | undefined;
|
|
664
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
690
665
|
resize?: csstype.Property.Resize | undefined;
|
|
691
666
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
692
667
|
rotate?: csstype.Property.Rotate | undefined;
|
|
693
668
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
694
669
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
695
670
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
671
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
696
672
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
673
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
674
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
697
675
|
scale?: csstype.Property.Scale | undefined;
|
|
698
676
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
677
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
699
678
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
700
679
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
701
680
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -727,10 +706,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
727
706
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
728
707
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
729
708
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
709
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
710
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
711
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
712
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
713
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
714
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
715
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
716
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
717
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
718
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
719
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
720
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
721
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
730
722
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
731
723
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
732
724
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
733
725
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
726
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
727
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
728
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
729
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
730
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
734
731
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
735
732
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
736
733
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -748,10 +745,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
748
745
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
749
746
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
750
747
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
748
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
751
749
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
752
750
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
753
751
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
754
|
-
|
|
752
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
753
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
755
754
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
756
755
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
757
756
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -767,21 +766,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
767
766
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
768
767
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
769
768
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
769
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
770
770
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
771
771
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
772
772
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
773
773
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
774
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
774
775
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
775
776
|
visibility?: csstype.Property.Visibility | undefined;
|
|
776
777
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
777
778
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
778
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
779
779
|
widows?: csstype.Property.Widows | undefined;
|
|
780
780
|
willChange?: csstype.Property.WillChange | undefined;
|
|
781
781
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
782
782
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
783
783
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
784
784
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
785
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
786
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
785
787
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
786
788
|
zoom?: csstype.Property.Zoom | undefined;
|
|
787
789
|
all?: csstype.Property.All | undefined;
|
|
@@ -791,14 +793,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
791
793
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
792
794
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
793
795
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
796
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
794
797
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
795
798
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
799
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
800
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
796
801
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
797
802
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
798
803
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
799
804
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
805
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
800
806
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
801
807
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
808
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
809
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
802
810
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
803
811
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
804
812
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -840,6 +848,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
840
848
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
841
849
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
842
850
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
851
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
843
852
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
844
853
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
845
854
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -850,6 +859,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
850
859
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
851
860
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
852
861
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
862
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
853
863
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
854
864
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
855
865
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -861,6 +871,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
861
871
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
862
872
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
863
873
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
874
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
864
875
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
865
876
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
866
877
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -872,8 +883,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
872
883
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
873
884
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
874
885
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
875
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
876
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
877
886
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
878
887
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
879
888
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -882,7 +891,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
882
891
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
883
892
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
884
893
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
885
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
886
894
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
887
895
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
888
896
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -893,11 +901,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
893
901
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
894
902
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
895
903
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
904
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
905
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
896
906
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
897
907
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
898
908
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
899
909
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
900
|
-
|
|
910
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
911
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
912
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
901
913
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
902
914
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
903
915
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -1016,6 +1028,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1016
1028
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1017
1029
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1018
1030
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1031
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1032
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1019
1033
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1020
1034
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1021
1035
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1070,13 +1084,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1070
1084
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1071
1085
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1072
1086
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1073
|
-
WebkitUserSelect?: csstype.Property.
|
|
1087
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1074
1088
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1075
1089
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1076
1090
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1077
1091
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1078
1092
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1079
1093
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
1094
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1080
1095
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1081
1096
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1082
1097
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1097,7 +1112,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1097
1112
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1098
1113
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1099
1114
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1100
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1101
1115
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1102
1116
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1103
1117
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1107,16 +1121,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1107
1121
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1108
1122
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1109
1123
|
clip?: csstype.Property.Clip | undefined;
|
|
1124
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1110
1125
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1111
1126
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1112
1127
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1113
1128
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
1129
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1114
1130
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1115
1131
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1116
1132
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1117
1133
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1118
1134
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1119
1135
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1136
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1137
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1138
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1139
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1120
1140
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1121
1141
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1122
1142
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -1134,9 +1154,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1134
1154
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1135
1155
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
1136
1156
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1137
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1138
1157
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
1139
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
1140
1158
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
1141
1159
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1142
1160
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -1151,6 +1169,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1151
1169
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1152
1170
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1153
1171
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
1172
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1173
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1154
1174
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
1155
1175
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
1156
1176
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -1158,20 +1178,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1158
1178
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
1159
1179
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
1160
1180
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
1161
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1162
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1163
1181
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1164
1182
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1165
1183
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
1166
1184
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
1167
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
1168
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1169
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1170
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1171
1185
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
1172
1186
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
1173
1187
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1174
1188
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1189
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
1175
1190
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
1176
1191
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
1177
1192
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -1204,36 +1219,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1204
1219
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
1205
1220
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1206
1221
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
1207
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
1208
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
1209
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
1210
1222
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
1211
1223
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
1212
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
1213
|
-
fill?: csstype.Property.Fill | undefined;
|
|
1214
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
1215
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
1216
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
1217
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
1218
1224
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
1219
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
1220
|
-
marker?: csstype.Property.Marker | undefined;
|
|
1221
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
1222
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
1223
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
1224
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
1225
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
1226
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
1227
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
1228
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
1229
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
1230
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
1231
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
1232
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
1233
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
1234
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
1235
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
1236
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
1237
1225
|
};
|
|
1238
1226
|
}, HTMLElement>;
|
|
1239
1227
|
context: unknown;
|
|
@@ -1283,6 +1271,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1283
1271
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
1284
1272
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
1285
1273
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
1274
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
1275
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
1276
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
1286
1277
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
1287
1278
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
1288
1279
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -1309,17 +1300,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1309
1300
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
1310
1301
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
1311
1302
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
1312
|
-
|
|
1303
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
1313
1304
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1314
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1315
1305
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
1316
1306
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
1317
1307
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
1318
1308
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
1319
1309
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
1320
1310
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
1321
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1322
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1323
1311
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
1324
1312
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1325
1313
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -1333,15 +1321,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1333
1321
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
1334
1322
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
1335
1323
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
1336
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1337
1324
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
1338
1325
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
1339
1326
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1340
1327
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
1341
1328
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1342
1329
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
1343
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1344
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1345
1330
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
1346
1331
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
1347
1332
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -1368,8 +1353,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1368
1353
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
1369
1354
|
clear?: csstype.Property.Clear | undefined;
|
|
1370
1355
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
1356
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
1371
1357
|
color?: csstype.Property.Color | undefined;
|
|
1372
1358
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1359
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
1373
1360
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
1374
1361
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
1375
1362
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -1392,9 +1379,17 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1392
1379
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
1393
1380
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
1394
1381
|
cursor?: csstype.Property.Cursor | undefined;
|
|
1382
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
1383
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
1384
|
+
d?: csstype.Property.D | undefined;
|
|
1395
1385
|
direction?: csstype.Property.Direction | undefined;
|
|
1396
1386
|
display?: csstype.Property.Display | undefined;
|
|
1387
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
1397
1388
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
1389
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
1390
|
+
fill?: csstype.Property.Fill | undefined;
|
|
1391
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
1392
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
1398
1393
|
filter?: csstype.Property.Filter | undefined;
|
|
1399
1394
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
1400
1395
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -1402,6 +1397,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1402
1397
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
1403
1398
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
1404
1399
|
float?: csstype.Property.Float | undefined;
|
|
1400
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
1401
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
1405
1402
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
1406
1403
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1407
1404
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -1411,7 +1408,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1411
1408
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
1412
1409
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
1413
1410
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
1414
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1415
1411
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
1416
1412
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
1417
1413
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -1428,6 +1424,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1428
1424
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
1429
1425
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
1430
1426
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
1427
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
1431
1428
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
1432
1429
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
1433
1430
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -1447,12 +1444,13 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1447
1444
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
1448
1445
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
1449
1446
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
1447
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
1450
1448
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1451
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
1452
1449
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1453
1450
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1454
1451
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1455
1452
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
1453
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
1456
1454
|
isolation?: csstype.Property.Isolation | undefined;
|
|
1457
1455
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1458
1456
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -1460,6 +1458,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1460
1458
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
1461
1459
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
1462
1460
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
1461
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
1463
1462
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
1464
1463
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
1465
1464
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1475,6 +1474,10 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1475
1474
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
1476
1475
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
1477
1476
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
1477
|
+
marker?: csstype.Property.Marker | undefined;
|
|
1478
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
1479
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
1480
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
1478
1481
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
1479
1482
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
1480
1483
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -1509,6 +1512,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1509
1512
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
1510
1513
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
1511
1514
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
1515
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
1512
1516
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
1513
1517
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
1514
1518
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -1544,25 +1548,32 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1544
1548
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
1545
1549
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
1546
1550
|
page?: csstype.Property.Page | undefined;
|
|
1547
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
1548
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
1549
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
1550
1551
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
1551
1552
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1552
1553
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1553
1554
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
1554
1555
|
position?: csstype.Property.Position | undefined;
|
|
1556
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
1557
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
1558
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1559
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
1560
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
1555
1561
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
1556
1562
|
quotes?: csstype.Property.Quotes | undefined;
|
|
1563
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
1557
1564
|
resize?: csstype.Property.Resize | undefined;
|
|
1558
1565
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
1559
1566
|
rotate?: csstype.Property.Rotate | undefined;
|
|
1560
1567
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
1561
1568
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
1562
1569
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
1570
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
1563
1571
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
1572
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
1573
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
1564
1574
|
scale?: csstype.Property.Scale | undefined;
|
|
1565
1575
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
1576
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
1566
1577
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1567
1578
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1568
1579
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1594,10 +1605,28 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1594
1605
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
1595
1606
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
1596
1607
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
1608
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
1609
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
1610
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
1611
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
1612
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
1613
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
1614
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
1615
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
1616
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
1617
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
1618
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
1619
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
1620
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
1597
1621
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1598
1622
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
1599
1623
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
1600
1624
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
1625
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
1626
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
1627
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
1628
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
1629
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
1601
1630
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
1602
1631
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
1603
1632
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -1615,10 +1644,12 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1615
1644
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
1616
1645
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
1617
1646
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1647
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
1618
1648
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
1619
1649
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
1620
1650
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
1621
|
-
|
|
1651
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
1652
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
1622
1653
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
1623
1654
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
1624
1655
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -1634,21 +1665,24 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1634
1665
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
1635
1666
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
1636
1667
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
1668
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
1637
1669
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
1638
1670
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
1639
1671
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
1640
1672
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
1673
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
1641
1674
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
1642
1675
|
visibility?: csstype.Property.Visibility | undefined;
|
|
1643
1676
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
1644
1677
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
1645
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
1646
1678
|
widows?: csstype.Property.Widows | undefined;
|
|
1647
1679
|
willChange?: csstype.Property.WillChange | undefined;
|
|
1648
1680
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
1649
1681
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
1650
1682
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
1651
1683
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
1684
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
1685
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
1652
1686
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
1653
1687
|
zoom?: csstype.Property.Zoom | undefined;
|
|
1654
1688
|
all?: csstype.Property.All | undefined;
|
|
@@ -1658,14 +1692,20 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1658
1692
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
1659
1693
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
1660
1694
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
1695
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
1661
1696
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
1662
1697
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
1698
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
1699
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
1663
1700
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
1664
1701
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
1665
1702
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
1666
1703
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
1704
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
1667
1705
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
1668
1706
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
1707
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
1708
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
1669
1709
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
1670
1710
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
1671
1711
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -1707,6 +1747,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1707
1747
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
1708
1748
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
1709
1749
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
1750
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
1710
1751
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
1711
1752
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
1712
1753
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1717,6 +1758,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1717
1758
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
1718
1759
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
1719
1760
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1761
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
1720
1762
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1721
1763
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
1722
1764
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -1728,6 +1770,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1728
1770
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
1729
1771
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
1730
1772
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
1773
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
1731
1774
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
1732
1775
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
1733
1776
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -1739,8 +1782,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1739
1782
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
1740
1783
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
1741
1784
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
1742
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
1743
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
1744
1785
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
1745
1786
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
1746
1787
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1749,7 +1790,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1749
1790
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
1750
1791
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
1751
1792
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
1752
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
1753
1793
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1754
1794
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1755
1795
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -1760,11 +1800,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1760
1800
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1761
1801
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
1762
1802
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
1803
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
1804
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
1763
1805
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
1764
1806
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
1765
1807
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
1766
1808
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
1767
|
-
|
|
1809
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
1810
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
1811
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
1768
1812
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
1769
1813
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
1770
1814
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -1883,6 +1927,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1883
1927
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
1884
1928
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
1885
1929
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
1930
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
1931
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
1886
1932
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
1887
1933
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
1888
1934
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -1937,13 +1983,14 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1937
1983
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
1938
1984
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
1939
1985
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
1940
|
-
WebkitUserSelect?: csstype.Property.
|
|
1986
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
1941
1987
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
1942
1988
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
1943
1989
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
1944
1990
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
1945
1991
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
1946
1992
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
1993
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1947
1994
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
1948
1995
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
1949
1996
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -1964,7 +2011,6 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1964
2011
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
1965
2012
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
1966
2013
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
1967
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
1968
2014
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
1969
2015
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
1970
2016
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -1974,16 +2020,22 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
1974
2020
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
1975
2021
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
1976
2022
|
clip?: csstype.Property.Clip | undefined;
|
|
2023
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
1977
2024
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
1978
2025
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
1979
2026
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
1980
2027
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2028
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
1981
2029
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
1982
2030
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
1983
2031
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
1984
2032
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
1985
2033
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
1986
2034
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2035
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2036
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2037
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2038
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
1987
2039
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1988
2040
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
1989
2041
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -2001,9 +2053,7 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2001
2053
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2002
2054
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
2003
2055
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2004
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2005
2056
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
2006
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
2007
2057
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
2008
2058
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2009
2059
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -2018,6 +2068,8 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2018
2068
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2019
2069
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2020
2070
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2071
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2072
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2021
2073
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
2022
2074
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
2023
2075
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -2025,20 +2077,15 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2025
2077
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
2026
2078
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
2027
2079
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
2028
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2029
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2030
2080
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2031
2081
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2032
2082
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
2033
2083
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
2034
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
2035
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2036
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2037
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2038
2084
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
2039
2085
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
2040
2086
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2041
2087
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2088
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
2042
2089
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
2043
2090
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
2044
2091
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2071,36 +2118,9 @@ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: Pl
|
|
|
2071
2118
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2072
2119
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2073
2120
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2074
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2075
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2076
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2077
2121
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2078
2122
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
2079
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2080
|
-
fill?: csstype.Property.Fill | undefined;
|
|
2081
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2082
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
2083
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2084
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2085
2123
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
2086
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2087
|
-
marker?: csstype.Property.Marker | undefined;
|
|
2088
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2089
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2090
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2091
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2092
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
2093
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2094
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
2095
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2096
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2097
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2098
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2099
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2100
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2101
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2102
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2103
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2104
2124
|
};
|
|
2105
2125
|
}, HTMLElement>;
|
|
2106
2126
|
context: unknown;
|
|
@@ -2162,6 +2182,9 @@ declare const StormcloudPlayer: {
|
|
|
2162
2182
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
2163
2183
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
2164
2184
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
2185
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2186
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
2187
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
2165
2188
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
2166
2189
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
2167
2190
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -2188,17 +2211,14 @@ declare const StormcloudPlayer: {
|
|
|
2188
2211
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
2189
2212
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
2190
2213
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2191
|
-
|
|
2214
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2192
2215
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2193
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2194
2216
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
2195
2217
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
2196
2218
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2197
2219
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
2198
2220
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
2199
2221
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
2200
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2201
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2202
2222
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
2203
2223
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2204
2224
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -2212,15 +2232,12 @@ declare const StormcloudPlayer: {
|
|
|
2212
2232
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
2213
2233
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
2214
2234
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
2215
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2216
2235
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
2217
2236
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
2218
2237
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
2219
2238
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
2220
2239
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2221
2240
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
2222
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2223
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2224
2241
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
2225
2242
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
2226
2243
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -2247,8 +2264,10 @@ declare const StormcloudPlayer: {
|
|
|
2247
2264
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
2248
2265
|
clear?: csstype.Property.Clear | undefined;
|
|
2249
2266
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
2267
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2250
2268
|
color?: csstype.Property.Color | undefined;
|
|
2251
2269
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2270
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
2252
2271
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
2253
2272
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
2254
2273
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -2271,9 +2290,17 @@ declare const StormcloudPlayer: {
|
|
|
2271
2290
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
2272
2291
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
2273
2292
|
cursor?: csstype.Property.Cursor | undefined;
|
|
2293
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
2294
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
2295
|
+
d?: csstype.Property.D | undefined;
|
|
2274
2296
|
direction?: csstype.Property.Direction | undefined;
|
|
2275
2297
|
display?: csstype.Property.Display | undefined;
|
|
2298
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2276
2299
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
2300
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
2301
|
+
fill?: csstype.Property.Fill | undefined;
|
|
2302
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2303
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
2277
2304
|
filter?: csstype.Property.Filter | undefined;
|
|
2278
2305
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2279
2306
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -2281,6 +2308,8 @@ declare const StormcloudPlayer: {
|
|
|
2281
2308
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
2282
2309
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
2283
2310
|
float?: csstype.Property.Float | undefined;
|
|
2311
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2312
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2284
2313
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
2285
2314
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2286
2315
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -2290,7 +2319,6 @@ declare const StormcloudPlayer: {
|
|
|
2290
2319
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
2291
2320
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
2292
2321
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
2293
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2294
2322
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
2295
2323
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
2296
2324
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -2307,6 +2335,7 @@ declare const StormcloudPlayer: {
|
|
|
2307
2335
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
2308
2336
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
2309
2337
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
2338
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
2310
2339
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
2311
2340
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2312
2341
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -2326,12 +2355,13 @@ declare const StormcloudPlayer: {
|
|
|
2326
2355
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
2327
2356
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
2328
2357
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
2358
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
2329
2359
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2330
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
2331
2360
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2332
2361
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2333
2362
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2334
2363
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2364
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
2335
2365
|
isolation?: csstype.Property.Isolation | undefined;
|
|
2336
2366
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2337
2367
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -2339,6 +2369,7 @@ declare const StormcloudPlayer: {
|
|
|
2339
2369
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
2340
2370
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
2341
2371
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
2372
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2342
2373
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
2343
2374
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
2344
2375
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -2354,6 +2385,10 @@ declare const StormcloudPlayer: {
|
|
|
2354
2385
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
2355
2386
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
2356
2387
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
2388
|
+
marker?: csstype.Property.Marker | undefined;
|
|
2389
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2390
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2391
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2357
2392
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
2358
2393
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
2359
2394
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -2388,6 +2423,7 @@ declare const StormcloudPlayer: {
|
|
|
2388
2423
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
2389
2424
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
2390
2425
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
2426
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
2391
2427
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
2392
2428
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
2393
2429
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -2423,25 +2459,32 @@ declare const StormcloudPlayer: {
|
|
|
2423
2459
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
2424
2460
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
2425
2461
|
page?: csstype.Property.Page | undefined;
|
|
2426
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2427
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2428
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2429
2462
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
2430
2463
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2431
2464
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2432
2465
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
2433
2466
|
position?: csstype.Property.Position | undefined;
|
|
2467
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
2468
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
2469
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2470
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
2471
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
2434
2472
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
2435
2473
|
quotes?: csstype.Property.Quotes | undefined;
|
|
2474
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
2436
2475
|
resize?: csstype.Property.Resize | undefined;
|
|
2437
2476
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
2438
2477
|
rotate?: csstype.Property.Rotate | undefined;
|
|
2439
2478
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
2440
2479
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
2441
2480
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
2481
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
2442
2482
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
2483
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
2484
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
2443
2485
|
scale?: csstype.Property.Scale | undefined;
|
|
2444
2486
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
2487
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
2445
2488
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
2446
2489
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
2447
2490
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -2473,10 +2516,28 @@ declare const StormcloudPlayer: {
|
|
|
2473
2516
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
2474
2517
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
2475
2518
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
2519
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2520
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
2521
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
2522
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2523
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
2524
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
2525
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2526
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2527
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2528
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2529
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2530
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2531
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2476
2532
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2477
2533
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
2478
2534
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
2479
2535
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2536
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2537
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
2538
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
2539
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
2540
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
2480
2541
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
2481
2542
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2482
2543
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -2494,10 +2555,12 @@ declare const StormcloudPlayer: {
|
|
|
2494
2555
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
2495
2556
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
2496
2557
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2558
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
2497
2559
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
2498
2560
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
2499
2561
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
2500
|
-
|
|
2562
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
2563
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
2501
2564
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
2502
2565
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
2503
2566
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -2513,21 +2576,24 @@ declare const StormcloudPlayer: {
|
|
|
2513
2576
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
2514
2577
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
2515
2578
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
2579
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2516
2580
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
2517
2581
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
2518
2582
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
2519
2583
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
2584
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
2520
2585
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
2521
2586
|
visibility?: csstype.Property.Visibility | undefined;
|
|
2522
2587
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
2523
2588
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
2524
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
2525
2589
|
widows?: csstype.Property.Widows | undefined;
|
|
2526
2590
|
willChange?: csstype.Property.WillChange | undefined;
|
|
2527
2591
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
2528
2592
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
2529
2593
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
2530
2594
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
2595
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
2596
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
2531
2597
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
2532
2598
|
zoom?: csstype.Property.Zoom | undefined;
|
|
2533
2599
|
all?: csstype.Property.All | undefined;
|
|
@@ -2537,14 +2603,20 @@ declare const StormcloudPlayer: {
|
|
|
2537
2603
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
2538
2604
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
2539
2605
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
2606
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
2540
2607
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
2541
2608
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
2609
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
2610
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
2542
2611
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
2543
2612
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
2544
2613
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
2545
2614
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
2615
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
2546
2616
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
2547
2617
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
2618
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
2619
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
2548
2620
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
2549
2621
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
2550
2622
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -2586,6 +2658,7 @@ declare const StormcloudPlayer: {
|
|
|
2586
2658
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
2587
2659
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
2588
2660
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
2661
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
2589
2662
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
2590
2663
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
2591
2664
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -2596,6 +2669,7 @@ declare const StormcloudPlayer: {
|
|
|
2596
2669
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
2597
2670
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
2598
2671
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2672
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
2599
2673
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2600
2674
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
2601
2675
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -2607,6 +2681,7 @@ declare const StormcloudPlayer: {
|
|
|
2607
2681
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
2608
2682
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
2609
2683
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
2684
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2610
2685
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
2611
2686
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
2612
2687
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -2618,8 +2693,6 @@ declare const StormcloudPlayer: {
|
|
|
2618
2693
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
2619
2694
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
2620
2695
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
2621
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2622
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2623
2696
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
2624
2697
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
2625
2698
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2628,7 +2701,6 @@ declare const StormcloudPlayer: {
|
|
|
2628
2701
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
2629
2702
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
2630
2703
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
2631
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
2632
2704
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2633
2705
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2634
2706
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -2639,11 +2711,15 @@ declare const StormcloudPlayer: {
|
|
|
2639
2711
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2640
2712
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
2641
2713
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
2714
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2715
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2642
2716
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
2643
2717
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
2644
2718
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
2645
2719
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
2646
|
-
|
|
2720
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
2721
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2722
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2647
2723
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
2648
2724
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2649
2725
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -2762,6 +2838,8 @@ declare const StormcloudPlayer: {
|
|
|
2762
2838
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
2763
2839
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2764
2840
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
2841
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
2842
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
2765
2843
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
2766
2844
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
2767
2845
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -2816,13 +2894,14 @@ declare const StormcloudPlayer: {
|
|
|
2816
2894
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2817
2895
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2818
2896
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
2819
|
-
WebkitUserSelect?: csstype.Property.
|
|
2897
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
2820
2898
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
2821
2899
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
2822
2900
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
2823
2901
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
2824
2902
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
2825
2903
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
2904
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2826
2905
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
2827
2906
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
2828
2907
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -2843,7 +2922,6 @@ declare const StormcloudPlayer: {
|
|
|
2843
2922
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
2844
2923
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
2845
2924
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2846
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
2847
2925
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
2848
2926
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
2849
2927
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -2853,16 +2931,22 @@ declare const StormcloudPlayer: {
|
|
|
2853
2931
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2854
2932
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
2855
2933
|
clip?: csstype.Property.Clip | undefined;
|
|
2934
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
2856
2935
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
2857
2936
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
2858
2937
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
2859
2938
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
2939
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
2860
2940
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
2861
2941
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
2862
2942
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
2863
2943
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
2864
2944
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
2865
2945
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
2946
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
2947
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
2948
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
2949
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
2866
2950
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
2867
2951
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
2868
2952
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -2880,9 +2964,7 @@ declare const StormcloudPlayer: {
|
|
|
2880
2964
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
2881
2965
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
2882
2966
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
2883
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
2884
2967
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
2885
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
2886
2968
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
2887
2969
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
2888
2970
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -2897,6 +2979,8 @@ declare const StormcloudPlayer: {
|
|
|
2897
2979
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2898
2980
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2899
2981
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
2982
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
2983
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
2900
2984
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
2901
2985
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
2902
2986
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -2904,20 +2988,15 @@ declare const StormcloudPlayer: {
|
|
|
2904
2988
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
2905
2989
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
2906
2990
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
2907
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
2908
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
2909
2991
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
2910
2992
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
2911
2993
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
2912
2994
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
2913
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
2914
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
2915
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
2916
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
2917
2995
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
2918
2996
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
2919
2997
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
2920
2998
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
2999
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
2921
3000
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
2922
3001
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
2923
3002
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -2950,36 +3029,9 @@ declare const StormcloudPlayer: {
|
|
|
2950
3029
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
2951
3030
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
2952
3031
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
2953
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
2954
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
2955
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
2956
3032
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
2957
3033
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
2958
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
2959
|
-
fill?: csstype.Property.Fill | undefined;
|
|
2960
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
2961
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
2962
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
2963
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
2964
3034
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
2965
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
2966
|
-
marker?: csstype.Property.Marker | undefined;
|
|
2967
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
2968
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
2969
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
2970
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
2971
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
2972
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
2973
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
2974
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
2975
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
2976
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
2977
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
2978
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
2979
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
2980
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
2981
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
2982
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
2983
3035
|
};
|
|
2984
3036
|
}, HTMLElement>;
|
|
2985
3037
|
context: unknown;
|
|
@@ -3029,6 +3081,9 @@ declare const StormcloudPlayer: {
|
|
|
3029
3081
|
alignItems?: csstype.Property.AlignItems | undefined;
|
|
3030
3082
|
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
3031
3083
|
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
3084
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
3085
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
3086
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
3032
3087
|
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
3033
3088
|
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
3034
3089
|
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
@@ -3055,17 +3110,14 @@ declare const StormcloudPlayer: {
|
|
|
3055
3110
|
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
3056
3111
|
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
3057
3112
|
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
3058
|
-
|
|
3113
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
3059
3114
|
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
3060
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
3061
3115
|
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
3062
3116
|
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
3063
3117
|
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
3064
3118
|
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
3065
3119
|
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
3066
3120
|
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
3067
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3068
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3069
3121
|
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
3070
3122
|
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
3071
3123
|
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -3079,15 +3131,12 @@ declare const StormcloudPlayer: {
|
|
|
3079
3131
|
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
3080
3132
|
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
3081
3133
|
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
3082
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3083
3134
|
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
3084
3135
|
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
3085
3136
|
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
3086
3137
|
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
3087
3138
|
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3088
3139
|
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
3089
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3090
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3091
3140
|
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
3092
3141
|
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
3093
3142
|
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -3114,8 +3163,10 @@ declare const StormcloudPlayer: {
|
|
|
3114
3163
|
caretShape?: csstype.Property.CaretShape | undefined;
|
|
3115
3164
|
clear?: csstype.Property.Clear | undefined;
|
|
3116
3165
|
clipPath?: csstype.Property.ClipPath | undefined;
|
|
3166
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
3117
3167
|
color?: csstype.Property.Color | undefined;
|
|
3118
3168
|
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3169
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
3119
3170
|
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
3120
3171
|
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
3121
3172
|
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
@@ -3138,9 +3189,17 @@ declare const StormcloudPlayer: {
|
|
|
3138
3189
|
counterReset?: csstype.Property.CounterReset | undefined;
|
|
3139
3190
|
counterSet?: csstype.Property.CounterSet | undefined;
|
|
3140
3191
|
cursor?: csstype.Property.Cursor | undefined;
|
|
3192
|
+
cx?: csstype.Property.Cx<string | number> | undefined;
|
|
3193
|
+
cy?: csstype.Property.Cy<string | number> | undefined;
|
|
3194
|
+
d?: csstype.Property.D | undefined;
|
|
3141
3195
|
direction?: csstype.Property.Direction | undefined;
|
|
3142
3196
|
display?: csstype.Property.Display | undefined;
|
|
3197
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
3143
3198
|
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
3199
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
3200
|
+
fill?: csstype.Property.Fill | undefined;
|
|
3201
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
3202
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
3144
3203
|
filter?: csstype.Property.Filter | undefined;
|
|
3145
3204
|
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3146
3205
|
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
@@ -3148,6 +3207,8 @@ declare const StormcloudPlayer: {
|
|
|
3148
3207
|
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
3149
3208
|
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
3150
3209
|
float?: csstype.Property.Float | undefined;
|
|
3210
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
3211
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
3151
3212
|
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
3152
3213
|
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3153
3214
|
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
@@ -3157,7 +3218,6 @@ declare const StormcloudPlayer: {
|
|
|
3157
3218
|
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
3158
3219
|
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
3159
3220
|
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
3160
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3161
3221
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
3162
3222
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
3163
3223
|
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
@@ -3174,6 +3234,7 @@ declare const StormcloudPlayer: {
|
|
|
3174
3234
|
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
3175
3235
|
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
3176
3236
|
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
3237
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
3177
3238
|
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
3178
3239
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3179
3240
|
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
@@ -3193,12 +3254,13 @@ declare const StormcloudPlayer: {
|
|
|
3193
3254
|
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
3194
3255
|
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
3195
3256
|
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
3257
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
3196
3258
|
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3197
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
3198
3259
|
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3199
3260
|
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3200
3261
|
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3201
3262
|
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3263
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
3202
3264
|
isolation?: csstype.Property.Isolation | undefined;
|
|
3203
3265
|
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3204
3266
|
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
@@ -3206,6 +3268,7 @@ declare const StormcloudPlayer: {
|
|
|
3206
3268
|
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
3207
3269
|
left?: csstype.Property.Left<string | number> | undefined;
|
|
3208
3270
|
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
3271
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
3209
3272
|
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
3210
3273
|
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
3211
3274
|
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
@@ -3221,6 +3284,10 @@ declare const StormcloudPlayer: {
|
|
|
3221
3284
|
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
3222
3285
|
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
3223
3286
|
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
3287
|
+
marker?: csstype.Property.Marker | undefined;
|
|
3288
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
3289
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
3290
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
3224
3291
|
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
3225
3292
|
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
3226
3293
|
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
@@ -3255,6 +3322,7 @@ declare const StormcloudPlayer: {
|
|
|
3255
3322
|
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
3256
3323
|
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
3257
3324
|
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
3325
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
3258
3326
|
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
3259
3327
|
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
3260
3328
|
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
@@ -3290,25 +3358,32 @@ declare const StormcloudPlayer: {
|
|
|
3290
3358
|
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
3291
3359
|
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
3292
3360
|
page?: csstype.Property.Page | undefined;
|
|
3293
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3294
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3295
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3296
3361
|
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
3297
3362
|
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3298
3363
|
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3299
3364
|
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
3300
3365
|
position?: csstype.Property.Position | undefined;
|
|
3366
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
3367
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
3368
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3369
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
3370
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
3301
3371
|
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
3302
3372
|
quotes?: csstype.Property.Quotes | undefined;
|
|
3373
|
+
r?: csstype.Property.R<string | number> | undefined;
|
|
3303
3374
|
resize?: csstype.Property.Resize | undefined;
|
|
3304
3375
|
right?: csstype.Property.Right<string | number> | undefined;
|
|
3305
3376
|
rotate?: csstype.Property.Rotate | undefined;
|
|
3306
3377
|
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
3307
3378
|
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
3308
3379
|
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
3380
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
3309
3381
|
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
3382
|
+
rx?: csstype.Property.Rx<string | number> | undefined;
|
|
3383
|
+
ry?: csstype.Property.Ry<string | number> | undefined;
|
|
3310
3384
|
scale?: csstype.Property.Scale | undefined;
|
|
3311
3385
|
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
3386
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
3312
3387
|
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
3313
3388
|
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
3314
3389
|
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -3340,10 +3415,28 @@ declare const StormcloudPlayer: {
|
|
|
3340
3415
|
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
3341
3416
|
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
3342
3417
|
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
3418
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
3419
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
3420
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
3421
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
3422
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
3423
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
3424
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
3425
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
3426
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
3427
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
3428
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
3429
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
3430
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
3343
3431
|
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3344
3432
|
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
3345
3433
|
textAlign?: csstype.Property.TextAlign | undefined;
|
|
3346
3434
|
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3435
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
3436
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
3437
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
3438
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
3439
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
3347
3440
|
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
3348
3441
|
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3349
3442
|
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
@@ -3361,10 +3454,12 @@ declare const StormcloudPlayer: {
|
|
|
3361
3454
|
textRendering?: csstype.Property.TextRendering | undefined;
|
|
3362
3455
|
textShadow?: csstype.Property.TextShadow | undefined;
|
|
3363
3456
|
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3457
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
3364
3458
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
3365
3459
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
3366
3460
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
3367
|
-
|
|
3461
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
3462
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
3368
3463
|
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
3369
3464
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
3370
3465
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
@@ -3380,21 +3475,24 @@ declare const StormcloudPlayer: {
|
|
|
3380
3475
|
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
3381
3476
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
3382
3477
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
3478
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
3383
3479
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
3384
3480
|
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
3385
3481
|
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
3386
3482
|
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
3483
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
3387
3484
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
3388
3485
|
visibility?: csstype.Property.Visibility | undefined;
|
|
3389
3486
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
3390
3487
|
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
3391
|
-
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
3392
3488
|
widows?: csstype.Property.Widows | undefined;
|
|
3393
3489
|
willChange?: csstype.Property.WillChange | undefined;
|
|
3394
3490
|
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
3395
3491
|
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
3396
3492
|
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
3397
3493
|
writingMode?: csstype.Property.WritingMode | undefined;
|
|
3494
|
+
x?: csstype.Property.X<string | number> | undefined;
|
|
3495
|
+
y?: csstype.Property.Y<string | number> | undefined;
|
|
3398
3496
|
zIndex?: csstype.Property.ZIndex | undefined;
|
|
3399
3497
|
zoom?: csstype.Property.Zoom | undefined;
|
|
3400
3498
|
all?: csstype.Property.All | undefined;
|
|
@@ -3404,14 +3502,20 @@ declare const StormcloudPlayer: {
|
|
|
3404
3502
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
3405
3503
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
3406
3504
|
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
3505
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
3407
3506
|
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
3408
3507
|
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
3508
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
3509
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
3409
3510
|
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
3410
3511
|
borderColor?: csstype.Property.BorderColor | undefined;
|
|
3411
3512
|
borderImage?: csstype.Property.BorderImage | undefined;
|
|
3412
3513
|
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
3514
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
3413
3515
|
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
3414
3516
|
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
3517
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
3518
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
3415
3519
|
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
3416
3520
|
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
3417
3521
|
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
@@ -3453,6 +3557,7 @@ declare const StormcloudPlayer: {
|
|
|
3453
3557
|
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
3454
3558
|
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
3455
3559
|
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
3560
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
3456
3561
|
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
3457
3562
|
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
3458
3563
|
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -3463,6 +3568,7 @@ declare const StormcloudPlayer: {
|
|
|
3463
3568
|
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
3464
3569
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
3465
3570
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3571
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
3466
3572
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3467
3573
|
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
3468
3574
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -3474,6 +3580,7 @@ declare const StormcloudPlayer: {
|
|
|
3474
3580
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
3475
3581
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
3476
3582
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
3583
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3477
3584
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
3478
3585
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
3479
3586
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -3485,8 +3592,6 @@ declare const StormcloudPlayer: {
|
|
|
3485
3592
|
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
3486
3593
|
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
3487
3594
|
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
3488
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3489
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3490
3595
|
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
3491
3596
|
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
3492
3597
|
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -3495,7 +3600,6 @@ declare const StormcloudPlayer: {
|
|
|
3495
3600
|
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
3496
3601
|
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
3497
3602
|
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
3498
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
3499
3603
|
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3500
3604
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3501
3605
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
@@ -3506,11 +3610,15 @@ declare const StormcloudPlayer: {
|
|
|
3506
3610
|
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
3507
3611
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
3508
3612
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
3613
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3614
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3509
3615
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
3510
3616
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
3511
3617
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
3512
3618
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
3513
|
-
|
|
3619
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
3620
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
3621
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
3514
3622
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
3515
3623
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3516
3624
|
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
@@ -3629,6 +3737,8 @@ declare const StormcloudPlayer: {
|
|
|
3629
3737
|
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
3630
3738
|
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3631
3739
|
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
3740
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
|
|
3741
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
|
|
3632
3742
|
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
3633
3743
|
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
3634
3744
|
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
@@ -3683,13 +3793,14 @@ declare const StormcloudPlayer: {
|
|
|
3683
3793
|
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3684
3794
|
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3685
3795
|
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
3686
|
-
WebkitUserSelect?: csstype.Property.
|
|
3796
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
3687
3797
|
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
3688
3798
|
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
3689
3799
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
3690
3800
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
3691
3801
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
3692
3802
|
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
3803
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3693
3804
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
3694
3805
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
3695
3806
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -3710,7 +3821,6 @@ declare const StormcloudPlayer: {
|
|
|
3710
3821
|
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
3711
3822
|
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
3712
3823
|
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3713
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
3714
3824
|
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
3715
3825
|
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
3716
3826
|
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
@@ -3720,16 +3830,22 @@ declare const StormcloudPlayer: {
|
|
|
3720
3830
|
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3721
3831
|
boxPack?: csstype.Property.BoxPack | undefined;
|
|
3722
3832
|
clip?: csstype.Property.Clip | undefined;
|
|
3833
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
3723
3834
|
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
3724
3835
|
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
3725
3836
|
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
3726
3837
|
imeMode?: csstype.Property.ImeMode | undefined;
|
|
3838
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
3727
3839
|
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
3728
3840
|
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
3729
3841
|
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
3730
3842
|
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
3731
3843
|
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
3732
3844
|
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
3845
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
3846
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
3847
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
3848
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
3733
3849
|
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
3734
3850
|
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
3735
3851
|
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
@@ -3747,9 +3863,7 @@ declare const StormcloudPlayer: {
|
|
|
3747
3863
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
3748
3864
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
3749
3865
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
3750
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
3751
3866
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
3752
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
3753
3867
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
3754
3868
|
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
3755
3869
|
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
@@ -3764,6 +3878,8 @@ declare const StormcloudPlayer: {
|
|
|
3764
3878
|
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3765
3879
|
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
3766
3880
|
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
3881
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
3882
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
3767
3883
|
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
3768
3884
|
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
3769
3885
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
@@ -3771,20 +3887,15 @@ declare const StormcloudPlayer: {
|
|
|
3771
3887
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
3772
3888
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
3773
3889
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
3774
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
3775
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
3776
3890
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
3777
3891
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
3778
3892
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
3779
3893
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
3780
|
-
MozTransform?: csstype.Property.Transform | undefined;
|
|
3781
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
3782
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
3783
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
3784
3894
|
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
3785
3895
|
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
3786
3896
|
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
3787
3897
|
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
3898
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
3788
3899
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
3789
3900
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
3790
3901
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -3817,36 +3928,9 @@ declare const StormcloudPlayer: {
|
|
|
3817
3928
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
3818
3929
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
3819
3930
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
3820
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
3821
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
3822
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
3823
3931
|
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
3824
3932
|
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
3825
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
3826
|
-
fill?: csstype.Property.Fill | undefined;
|
|
3827
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
3828
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
3829
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
3830
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
3831
3933
|
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
3832
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
3833
|
-
marker?: csstype.Property.Marker | undefined;
|
|
3834
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
3835
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
3836
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
3837
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
3838
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
3839
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
3840
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
3841
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
3842
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
3843
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
3844
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
3845
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
3846
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
3847
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
3848
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
3849
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
3850
3934
|
};
|
|
3851
3935
|
}, HTMLElement>;
|
|
3852
3936
|
context: unknown;
|
|
@@ -3963,13 +4047,17 @@ declare function createHlsAdPlayer(contentVideo: HTMLVideoElement, options?: {
|
|
|
3963
4047
|
mainHlsInstance?: Hls;
|
|
3964
4048
|
}): ImaController;
|
|
3965
4049
|
|
|
3966
|
-
|
|
4050
|
+
interface PrebidManagerOptions {
|
|
4051
|
+
debug?: boolean;
|
|
4052
|
+
}
|
|
4053
|
+
declare function createPrebidManager(options?: PrebidManagerOptions): PrebidManager;
|
|
3967
4054
|
|
|
3968
4055
|
interface PrebidControllerOptions {
|
|
3969
4056
|
continueLiveStreamDuringAds?: boolean;
|
|
3970
4057
|
licenseKey?: string;
|
|
3971
4058
|
mainHlsInstance?: Hls;
|
|
4059
|
+
debug?: boolean;
|
|
3972
4060
|
}
|
|
3973
|
-
declare function createPrebidController(contentVideo: HTMLVideoElement,
|
|
4061
|
+
declare function createPrebidController(contentVideo: HTMLVideoElement, options?: PrebidControllerOptions): ImaController;
|
|
3974
4062
|
|
|
3975
|
-
export { type AdBreak, type AdSchedule, type BaseStormcloudPlayerProps, type BrowserInfo, type ClientInfo, type HeartbeatData, IS_BROWSER, IS_GLOBAL, IS_IOS, IS_SAFARI, type ImaController, type ImaControllerOptions, type LateJoinPolicy, type OnProgressProps, type PrebidBidResponse, type
|
|
4063
|
+
export { type AdBreak, type AdSchedule, type BaseStormcloudPlayerProps, type BrowserInfo, type ClientInfo, type HeartbeatData, IS_BROWSER, IS_GLOBAL, IS_IOS, IS_SAFARI, type ImaController, type ImaControllerOptions, type LateJoinPolicy, type OnProgressProps, type PrebidBidResponse, type PrebidControllerOptions, type PrebidManager, type PrebidManagerOptions, SUPPORTS_DASH, SUPPORTS_HLS, StormcloudPlayer, StormcloudVideoPlayer, StormcloudVideoPlayerComponent, type StormcloudVideoPlayerConfig, type StormcloudVideoPlayerProps, type TrackingData, canPlay, createHlsAdPlayer, createImaController, createPrebidController, createPrebidManager, createStormcloudPlayer, StormcloudVideoPlayerComponent as default, detectBrowser, getBrowserConfigOverrides, getBrowserID, getClientInfo, getRecommendedAdPlayer, initializePolyfills, isMediaStream, lazy, logBrowserInfo, merge, omit, parseQuery, players, randomString, sendHeartbeat, sendInitialTracking, supportsFeature, supportsGoogleIMA, supportsModernJS, supportsWebKitPresentationMode };
|