@omnia/fx 8.0.456-dev → 8.0.457-dev
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/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/ComponentEditorStore.d.ts +5 -8
- package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/HeaderEditorStore.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStyleEditorStore.d.ts +1 -8
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +13 -10
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderStyleEditor.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderPickerStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderStyleEditorStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintViewer.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputStylePicker.d.ts +10 -6
- package/internal-do-not-import-from-here/ux/aurora/components/input/store/InputStylePickerStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/aurora/shared-mobile/ThemeProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shared-mobile/stylex/Typings.d.ts +513 -513
- package/internal-do-not-import-from-here/ux/shared-mobile/stylex/index.d.ts +67 -65
- package/internal-do-not-import-from-here/wctypings.d.ts +14 -4
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintsViewer.d.ts +0 -26
@@ -1,8 +1,8 @@
|
|
1
|
-
type CSSCursor = "auto" | "default" | "none" | "context-menu" | "help" | "inherit" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "e-resize" | "n-resize" | "ne-resize" | "nw-resize" | "s-resize" | "se-resize" | "sw-resize" | "w-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "col-resize" | "row-resize" | "all-scroll" | "zoom-in" | "zoom-out" | "grab" | "grabbing" | "-webkit-grab" | "-webkit-grabbing";
|
2
|
-
type alignContent = "center" | "start" | "end" | "flex-start" | "flex-end" | "normal" | "baseline" | "first baseline" | "last baseline" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center" |
|
3
|
-
type alignItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" |
|
4
|
-
type alignSelf = "auto" | "normal" | "center" | "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "baseline" | "first baseline" | "last baseline" | "stretch" | "safe center" | "unsafe center" |
|
5
|
-
type
|
1
|
+
export type CSSCursor = "auto" | "default" | "none" | "context-menu" | "help" | "inherit" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "e-resize" | "n-resize" | "ne-resize" | "nw-resize" | "s-resize" | "se-resize" | "sw-resize" | "w-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "col-resize" | "row-resize" | "all-scroll" | "zoom-in" | "zoom-out" | "grab" | "grabbing" | "-webkit-grab" | "-webkit-grabbing";
|
2
|
+
type alignContent = "center" | "start" | "end" | "flex-start" | "flex-end" | "normal" | "baseline" | "first baseline" | "last baseline" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center" | All;
|
3
|
+
type alignItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" | All;
|
4
|
+
type alignSelf = "auto" | "normal" | "center" | "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "baseline" | "first baseline" | "last baseline" | "stretch" | "safe center" | "unsafe center" | All;
|
5
|
+
export type All = null | "initial" | "inherit" | "unset";
|
6
6
|
type animationDelay = time;
|
7
7
|
type animationDirection = singleAnimationDirection;
|
8
8
|
type animationDuration = time;
|
@@ -112,8 +112,8 @@ type flex = "none" | string | number;
|
|
112
112
|
type flexBasis = "content" | number | string | "inherit";
|
113
113
|
type flexDirection = "row" | "row-reverse" | "column" | "column-reverse" | "inherit";
|
114
114
|
type flexFlow = flexDirection | flexWrap;
|
115
|
-
type flexGrow =
|
116
|
-
type flexShrink =
|
115
|
+
type flexGrow = All | number | string;
|
116
|
+
type flexShrink = All | number | string;
|
117
117
|
type flexWrap = "nowrap" | "wrap" | "wrap-reverse" | "inherit";
|
118
118
|
type float = "left" | "right" | "none" | "start" | "end" | "inline-start" | "inline-end" | "inherit";
|
119
119
|
type fontFamily = string;
|
@@ -132,7 +132,7 @@ type fontVariantEastAsian = "normal" | string;
|
|
132
132
|
type fontVariantLigatures = "normal" | "none" | string;
|
133
133
|
type fontVariantNumeric = "normal" | string;
|
134
134
|
type fontVariantPosition = "normal" | "sub" | "super";
|
135
|
-
type
|
135
|
+
export type FontWeight = "inherit" | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | string | number;
|
136
136
|
type gap = number | string;
|
137
137
|
type grid = gridTemplate | string;
|
138
138
|
type gridArea = gridLine | string;
|
@@ -162,7 +162,7 @@ type initialLetterAlign = string;
|
|
162
162
|
type inlineSize = width;
|
163
163
|
type isolation = "auto" | "isolate";
|
164
164
|
type justifyContent = "center" | "start" | "end" | "flex-start" | "flex-end" | "left" | "right" | "normal" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center" | "inherit";
|
165
|
-
type justifyItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" | "legacy right" | "legacy left" | "legacy center" |
|
165
|
+
type justifyItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" | "legacy right" | "legacy left" | "legacy center" | All;
|
166
166
|
type justifySelf = "auto" | "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center";
|
167
167
|
type letterSpacing = "normal" | lengthPercentage;
|
168
168
|
type lineBreak = "auto" | "loose" | "normal" | "strict";
|
@@ -204,7 +204,7 @@ type motionOffset = lengthPercentage;
|
|
204
204
|
type motionPath = string | geometryBox | "none";
|
205
205
|
type motionRotation = string | number;
|
206
206
|
type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
|
207
|
-
type
|
207
|
+
export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
|
208
208
|
type objectPosition = string;
|
209
209
|
type opacity = number | string;
|
210
210
|
type order = number | string;
|
@@ -234,7 +234,7 @@ type pageBreakBefore = "auto" | "always" | "avoid" | "left" | "right";
|
|
234
234
|
type pageBreakInside = "auto" | "avoid";
|
235
235
|
type perspective = "none" | number;
|
236
236
|
type perspectiveOrigin = string;
|
237
|
-
type
|
237
|
+
export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
|
238
238
|
type position = "static" | "relative" | "absolute" | "sticky" | "fixed";
|
239
239
|
type quotes = string | "none";
|
240
240
|
type resize = "none" | "both" | "horizontal" | "vertical";
|
@@ -250,10 +250,10 @@ type shapeMargin = lengthPercentage;
|
|
250
250
|
type shapeOutside = "none" | shapeBox | string;
|
251
251
|
type tabSize = number | string;
|
252
252
|
type tableLayout = "auto" | "fixed";
|
253
|
-
type
|
253
|
+
export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent" | "inherit";
|
254
254
|
type textAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify" | "inherit";
|
255
255
|
type textCombineUpright = "none" | "all" | string;
|
256
|
-
type
|
256
|
+
export type TextDecoration = textDecorationLine | textDecorationStyle | textDecorationColor;
|
257
257
|
type textDecorationColor = color;
|
258
258
|
type textDecorationLine = "none" | string;
|
259
259
|
type textDecorationSkip = "none" | string;
|
@@ -282,7 +282,7 @@ type transitionProperty = "none" | singleTransitionProperty;
|
|
282
282
|
type transitionTimingFunction = singleTransitionTimingFunction;
|
283
283
|
type unicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
|
284
284
|
type userSelect = "auto" | "text" | "none" | "contain" | "all";
|
285
|
-
type
|
285
|
+
export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | string | number;
|
286
286
|
type visibility = "visible" | "hidden" | "collapse";
|
287
287
|
type whiteSpace = "normal" | "pre" | "nowrap" | "pre-wrap" | "pre-line" | "initial" | "inherit";
|
288
288
|
type widows = number | string;
|
@@ -385,510 +385,510 @@ export type SupportedVendorSpecificCSSProperties = Readonly<{
|
|
385
385
|
WebkitTapHighlightColor?: null | color;
|
386
386
|
}>;
|
387
387
|
export type CSSProperties = Readonly<{
|
388
|
-
theme?:
|
389
|
-
MozOsxFontSmoothing?:
|
390
|
-
WebkitAppearance?:
|
391
|
-
WebkitFontSmoothing?:
|
392
|
-
WebkitTapHighlightColor?:
|
393
|
-
WebkitMaskImage?:
|
394
|
-
WebkitTextFillColor?:
|
395
|
-
textFillColor?:
|
396
|
-
WebkitTextStrokeWidth?:
|
397
|
-
WebkitTextStrokeColor?:
|
388
|
+
theme?: All | string;
|
389
|
+
MozOsxFontSmoothing?: All | "grayscale";
|
390
|
+
WebkitAppearance?: All | appearance;
|
391
|
+
WebkitFontSmoothing?: All | "antialiased";
|
392
|
+
WebkitTapHighlightColor?: All | color;
|
393
|
+
WebkitMaskImage?: All | maskImage;
|
394
|
+
WebkitTextFillColor?: All | color;
|
395
|
+
textFillColor?: All | color;
|
396
|
+
WebkitTextStrokeWidth?: All | number | string;
|
397
|
+
WebkitTextStrokeColor?: All | color;
|
398
398
|
WebkitBackgroundClip?: null | "border-box" | "padding-box" | "content-box" | "text";
|
399
399
|
WebkitBoxOrient?: null | "vertical" | "horizontal" | "inline-axis" | "block-axis";
|
400
|
-
WebkitLineClamp?:
|
401
|
-
accentColor?:
|
402
|
-
aspectRatio?:
|
403
|
-
placeContent?:
|
404
|
-
alignContent?:
|
405
|
-
justifyContent?:
|
406
|
-
placeItems?:
|
407
|
-
placeSelf?:
|
408
|
-
alignItems?:
|
409
|
-
justifyItems?:
|
410
|
-
alignSelf?:
|
411
|
-
justifySelf?:
|
412
|
-
alignmentBaseline?:
|
413
|
-
alignTracks?:
|
414
|
-
justifyTracks?:
|
415
|
-
masonryAutoFlow?:
|
416
|
-
animation?:
|
417
|
-
animationComposition?:
|
418
|
-
animationDelay?:
|
419
|
-
animationDirection?:
|
420
|
-
animationDuration?:
|
421
|
-
animationFillMode?:
|
422
|
-
animationIterationCount?:
|
423
|
-
animationName?:
|
424
|
-
animationPlayState?:
|
425
|
-
animationTimingFunction?:
|
426
|
-
animationTimeline?:
|
427
|
-
animationRange?:
|
428
|
-
animationRangeStart?:
|
429
|
-
animationRangeEnd?:
|
430
|
-
appearance?:
|
431
|
-
azimuth?:
|
432
|
-
backdropFilter?:
|
433
|
-
backfaceVisibility?:
|
434
|
-
background?:
|
435
|
-
backgroundAttachment?:
|
436
|
-
backgroundBlendMode?:
|
437
|
-
backgroundClip?:
|
438
|
-
backgroundColor?:
|
439
|
-
backgroundImage?:
|
440
|
-
backgroundOrigin?:
|
441
|
-
backgroundPosition?:
|
442
|
-
backgroundPositionX?:
|
443
|
-
backgroundPositionY?:
|
444
|
-
backgroundRepeat?:
|
445
|
-
backgroundSize?:
|
446
|
-
baselineShift?:
|
447
|
-
behavior?:
|
448
|
-
blockSize?:
|
449
|
-
border?:
|
450
|
-
borderBlock?:
|
451
|
-
borderBlockColor?:
|
452
|
-
borderBlockStyle?:
|
453
|
-
borderBlockWidth?:
|
454
|
-
borderBlockEnd?:
|
455
|
-
borderBlockEndColor?:
|
456
|
-
borderBlockEndStyle?:
|
457
|
-
borderBlockEndWidth?:
|
458
|
-
borderBlockStart?:
|
459
|
-
borderBlockStartColor?:
|
460
|
-
borderBlockStartStyle?:
|
461
|
-
borderBlockStartWidth?:
|
462
|
-
borderBottom?:
|
463
|
-
borderBottomColor?:
|
464
|
-
borderBottomStyle?:
|
465
|
-
borderBottomWidth?:
|
466
|
-
borderCollapse?:
|
467
|
-
borderColor?:
|
468
|
-
borderImage?:
|
469
|
-
borderImageOutset?:
|
470
|
-
borderImageRepeat?:
|
471
|
-
borderImageSlice?:
|
472
|
-
borderImageSource?:
|
473
|
-
borderImageWidth?:
|
474
|
-
borderInline?:
|
475
|
-
borderInlineColor?:
|
476
|
-
borderInlineStyle?:
|
477
|
-
borderInlineWidth?:
|
478
|
-
borderInlineEnd?:
|
479
|
-
borderInlineEndColor?:
|
480
|
-
borderInlineEndStyle?:
|
481
|
-
borderInlineEndWidth?:
|
482
|
-
borderInlineStart?:
|
483
|
-
borderInlineStartColor?:
|
484
|
-
borderInlineStartStyle?:
|
485
|
-
borderInlineStartWidth?:
|
486
|
-
borderLeft?:
|
487
|
-
borderLeftColor?:
|
488
|
-
borderLeftStyle?:
|
489
|
-
borderLeftWidth?:
|
490
|
-
borderRight?:
|
491
|
-
borderRightColor?:
|
492
|
-
borderRightStyle?:
|
493
|
-
borderRightWidth?:
|
494
|
-
borderSpacing?:
|
495
|
-
borderStyle?:
|
496
|
-
borderTop?:
|
497
|
-
borderTopColor?:
|
498
|
-
borderRadius?:
|
499
|
-
borderEndStartRadius?:
|
500
|
-
borderStartStartRadius?:
|
501
|
-
borderStartEndRadius?:
|
502
|
-
borderEndEndRadius?:
|
503
|
-
borderTopLeftRadius?:
|
504
|
-
borderTopRightRadius?:
|
505
|
-
borderBottomLeftRadius?:
|
506
|
-
borderBottomRightRadius?:
|
507
|
-
borderTopStyle?:
|
508
|
-
borderTopWidth?:
|
509
|
-
borderWidth?:
|
510
|
-
bottom?:
|
511
|
-
boxAlign?:
|
512
|
-
boxDecorationBreak?:
|
513
|
-
boxDirection?:
|
514
|
-
boxFlex?:
|
515
|
-
boxFlexGroup?:
|
516
|
-
boxLines?:
|
517
|
-
boxOrdinalGroup?:
|
518
|
-
boxOrient?:
|
519
|
-
boxShadow?:
|
520
|
-
boxSizing?:
|
521
|
-
boxSuppress?:
|
522
|
-
breakAfter?:
|
523
|
-
breakBefore?:
|
524
|
-
breakInside?:
|
525
|
-
captionSide?:
|
526
|
-
caret?:
|
527
|
-
caretColor?:
|
528
|
-
caretShape?:
|
529
|
-
clear?:
|
530
|
-
clip?:
|
531
|
-
clipPath?:
|
532
|
-
clipRule?:
|
533
|
-
color?:
|
400
|
+
WebkitLineClamp?: All | number | string;
|
401
|
+
accentColor?: All | color;
|
402
|
+
aspectRatio?: All | number | string;
|
403
|
+
placeContent?: All | string;
|
404
|
+
alignContent?: All | alignContent;
|
405
|
+
justifyContent?: All | justifyContent;
|
406
|
+
placeItems?: All | string;
|
407
|
+
placeSelf?: All | string;
|
408
|
+
alignItems?: All | alignItems;
|
409
|
+
justifyItems?: All | justifyItems;
|
410
|
+
alignSelf?: All | alignSelf;
|
411
|
+
justifySelf?: All | justifySelf;
|
412
|
+
alignmentBaseline?: All | alignmentBaseline;
|
413
|
+
alignTracks?: All | string;
|
414
|
+
justifyTracks?: All | string;
|
415
|
+
masonryAutoFlow?: All | string;
|
416
|
+
animation?: All | string;
|
417
|
+
animationComposition?: All | string;
|
418
|
+
animationDelay?: All | OptionalArray<animationDelay>;
|
419
|
+
animationDirection?: All | OptionalArray<animationDirection>;
|
420
|
+
animationDuration?: All | OptionalArray<animationDuration>;
|
421
|
+
animationFillMode?: All | OptionalArray<animationFillMode>;
|
422
|
+
animationIterationCount?: All | OptionalArray<animationIterationCount>;
|
423
|
+
animationName?: All | OptionalArray<animationName>;
|
424
|
+
animationPlayState?: All | OptionalArray<animationPlayState>;
|
425
|
+
animationTimingFunction?: All | OptionalArray<animationTimingFunction>;
|
426
|
+
animationTimeline?: All | string;
|
427
|
+
animationRange?: All | string;
|
428
|
+
animationRangeStart?: All | string;
|
429
|
+
animationRangeEnd?: All | string;
|
430
|
+
appearance?: All | appearance;
|
431
|
+
azimuth?: All | string;
|
432
|
+
backdropFilter?: All | backdropFilter;
|
433
|
+
backfaceVisibility?: All | backfaceVisibility;
|
434
|
+
background?: All | string;
|
435
|
+
backgroundAttachment?: All | OptionalArray<backgroundAttachment>;
|
436
|
+
backgroundBlendMode?: All | OptionalArray<backgroundBlendMode>;
|
437
|
+
backgroundClip?: All | OptionalArray<backgroundClip>;
|
438
|
+
backgroundColor?: All | backgroundColor;
|
439
|
+
backgroundImage?: All | OptionalArray<backgroundImage>;
|
440
|
+
backgroundOrigin?: All | OptionalArray<backgroundOrigin>;
|
441
|
+
backgroundPosition?: All | OptionalArray<backgroundPosition>;
|
442
|
+
backgroundPositionX?: All | OptionalArray<backgroundPositionX>;
|
443
|
+
backgroundPositionY?: All | OptionalArray<backgroundPositionY>;
|
444
|
+
backgroundRepeat?: All | OptionalArray<backgroundRepeat>;
|
445
|
+
backgroundSize?: All | OptionalArray<backgroundSize>;
|
446
|
+
baselineShift?: All | baselineShift;
|
447
|
+
behavior?: All | behavior;
|
448
|
+
blockSize?: All | blockSize;
|
449
|
+
border?: All | border;
|
450
|
+
borderBlock?: All | borderBlockEnd;
|
451
|
+
borderBlockColor?: All | borderBlockEndColor;
|
452
|
+
borderBlockStyle?: All | borderBlockEndStyle;
|
453
|
+
borderBlockWidth?: All | borderBlockEndWidth;
|
454
|
+
borderBlockEnd?: All | borderBlockEnd;
|
455
|
+
borderBlockEndColor?: All | borderBlockEndColor;
|
456
|
+
borderBlockEndStyle?: All | borderBlockEndStyle;
|
457
|
+
borderBlockEndWidth?: All | borderBlockEndWidth;
|
458
|
+
borderBlockStart?: All | borderBlockStart;
|
459
|
+
borderBlockStartColor?: All | borderBlockStartColor;
|
460
|
+
borderBlockStartStyle?: All | borderBlockStartStyle;
|
461
|
+
borderBlockStartWidth?: All | borderBlockStartWidth;
|
462
|
+
borderBottom?: All | border;
|
463
|
+
borderBottomColor?: All | color;
|
464
|
+
borderBottomStyle?: All | borderBottomStyle;
|
465
|
+
borderBottomWidth?: All | borderBottomWidth;
|
466
|
+
borderCollapse?: All | borderCollapse;
|
467
|
+
borderColor?: All | borderColor;
|
468
|
+
borderImage?: All | borderImage;
|
469
|
+
borderImageOutset?: All | borderImageOutset;
|
470
|
+
borderImageRepeat?: All | borderImageRepeat;
|
471
|
+
borderImageSlice?: All | borderImageSlice;
|
472
|
+
borderImageSource?: All | borderImageSource;
|
473
|
+
borderImageWidth?: All | borderImageWidth;
|
474
|
+
borderInline?: All | borderInlineEnd;
|
475
|
+
borderInlineColor?: All | borderInlineEndColor;
|
476
|
+
borderInlineStyle?: All | borderInlineEndStyle;
|
477
|
+
borderInlineWidth?: All | borderInlineEndWidth;
|
478
|
+
borderInlineEnd?: All | borderInlineEnd;
|
479
|
+
borderInlineEndColor?: All | borderInlineEndColor;
|
480
|
+
borderInlineEndStyle?: All | borderInlineEndStyle;
|
481
|
+
borderInlineEndWidth?: All | borderInlineEndWidth;
|
482
|
+
borderInlineStart?: All | borderInlineStart;
|
483
|
+
borderInlineStartColor?: All | borderInlineStartColor;
|
484
|
+
borderInlineStartStyle?: All | borderInlineStartStyle;
|
485
|
+
borderInlineStartWidth?: All | borderInlineStartWidth;
|
486
|
+
borderLeft?: All | border;
|
487
|
+
borderLeftColor?: All | borderLeftColor;
|
488
|
+
borderLeftStyle?: All | borderLeftStyle;
|
489
|
+
borderLeftWidth?: All | borderLeftWidth;
|
490
|
+
borderRight?: All | border;
|
491
|
+
borderRightColor?: All | borderRightColor;
|
492
|
+
borderRightStyle?: All | borderRightStyle;
|
493
|
+
borderRightWidth?: All | borderRightWidth;
|
494
|
+
borderSpacing?: All | borderSpacing;
|
495
|
+
borderStyle?: All | borderStyle;
|
496
|
+
borderTop?: All | border;
|
497
|
+
borderTopColor?: All | color;
|
498
|
+
borderRadius?: All | borderRadius;
|
499
|
+
borderEndStartRadius?: All | borderBottomLeftRadius;
|
500
|
+
borderStartStartRadius?: All | borderTopLeftRadius;
|
501
|
+
borderStartEndRadius?: All | borderTopRightRadius;
|
502
|
+
borderEndEndRadius?: All | borderBottomRightRadius;
|
503
|
+
borderTopLeftRadius?: All | borderTopLeftRadius;
|
504
|
+
borderTopRightRadius?: All | borderTopRightRadius;
|
505
|
+
borderBottomLeftRadius?: All | borderBottomLeftRadius;
|
506
|
+
borderBottomRightRadius?: All | borderBottomRightRadius;
|
507
|
+
borderTopStyle?: All | borderTopStyle;
|
508
|
+
borderTopWidth?: All | borderTopWidth;
|
509
|
+
borderWidth?: All | borderWidth;
|
510
|
+
bottom?: All | number | string;
|
511
|
+
boxAlign?: All | boxAlign;
|
512
|
+
boxDecorationBreak?: All | boxDecorationBreak;
|
513
|
+
boxDirection?: All | boxDirection;
|
514
|
+
boxFlex?: All | boxFlex;
|
515
|
+
boxFlexGroup?: All | boxFlexGroup;
|
516
|
+
boxLines?: All | boxLines;
|
517
|
+
boxOrdinalGroup?: All | boxOrdinalGroup;
|
518
|
+
boxOrient?: All | boxOrient;
|
519
|
+
boxShadow?: All | OptionalArray<boxShadow>;
|
520
|
+
boxSizing?: All | boxSizing;
|
521
|
+
boxSuppress?: All | boxSuppress;
|
522
|
+
breakAfter?: All | breakAfter;
|
523
|
+
breakBefore?: All | breakBefore;
|
524
|
+
breakInside?: All | breakInside;
|
525
|
+
captionSide?: All | captionSide;
|
526
|
+
caret?: All | string;
|
527
|
+
caretColor?: All | color;
|
528
|
+
caretShape?: All | string;
|
529
|
+
clear?: All | clear;
|
530
|
+
clip?: All | clip;
|
531
|
+
clipPath?: All | clipPath;
|
532
|
+
clipRule?: All | clipRule;
|
533
|
+
color?: All | color;
|
534
534
|
colorScheme?: null | "normal" | "light" | "dark" | "light dark" | "only light" | "only dark";
|
535
|
-
forcedColorAdjust?:
|
536
|
-
printColorAdjust?:
|
537
|
-
columns?:
|
538
|
-
columnCount?:
|
539
|
-
columnWidth?:
|
540
|
-
columnRule?:
|
541
|
-
columnRuleColor?:
|
542
|
-
columnRuleStyle?:
|
543
|
-
columnRuleWidth?:
|
544
|
-
columnFill?:
|
545
|
-
columnGap?:
|
546
|
-
columnSpan?:
|
547
|
-
contain?:
|
548
|
-
containIntrinsicSize?:
|
549
|
-
containIntrinsicBlockSize?:
|
550
|
-
containIntrinsicInlineSize?:
|
551
|
-
containIntrinsicHeightSize?:
|
552
|
-
containIntrinsicWidthSize?:
|
553
|
-
container?:
|
554
|
-
containerName?:
|
555
|
-
containerType?:
|
556
|
-
contentVisibility?:
|
557
|
-
content?:
|
558
|
-
counterIncrement?:
|
559
|
-
counterReset?:
|
560
|
-
counterSet?:
|
561
|
-
cue?:
|
562
|
-
cueAfter?:
|
563
|
-
cueBefore?:
|
564
|
-
cursor?:
|
565
|
-
direction?:
|
566
|
-
display?:
|
567
|
-
displayInside?:
|
568
|
-
displayList?:
|
569
|
-
displayOutside?:
|
570
|
-
dominantBaseline?:
|
571
|
-
emptyCells?:
|
572
|
-
end?:
|
573
|
-
fill?:
|
574
|
-
fillOpacity?:
|
575
|
-
fillRule?:
|
576
|
-
filter?:
|
577
|
-
flex?:
|
578
|
-
flexBasis?:
|
579
|
-
flexDirection?:
|
580
|
-
flexFlow?:
|
581
|
-
flexGrow?:
|
582
|
-
flexShrink?:
|
583
|
-
flexWrap?:
|
584
|
-
float?:
|
585
|
-
font?:
|
586
|
-
fontFamily?:
|
587
|
-
fontFeatureSettings?:
|
588
|
-
fontKerning?:
|
589
|
-
fontLanguageOverride?:
|
590
|
-
fontSize?:
|
591
|
-
fontSizeAdjust?:
|
592
|
-
fontStretch?:
|
593
|
-
fontStyle?:
|
594
|
-
fontSynthesis?:
|
595
|
-
fontSynthesisWeight?:
|
596
|
-
fontSynthesisStyle?:
|
597
|
-
fontSynthesisSmallCaps?:
|
598
|
-
fontSynthesisPosition?:
|
599
|
-
fontVariant?:
|
600
|
-
fontVariantAlternates?:
|
601
|
-
fontVariantCaps?:
|
602
|
-
fontVariantEastAsian?:
|
603
|
-
fontVariantLigatures?:
|
604
|
-
fontVariantNumeric?:
|
605
|
-
fontVariantPosition?:
|
606
|
-
fontWeight?:
|
607
|
-
fontOpticalSizing?:
|
608
|
-
fontPalette?:
|
609
|
-
fontVariationSettings?:
|
610
|
-
gap?:
|
611
|
-
glyphOrientationHorizontal?:
|
612
|
-
glyphOrientationVertical?:
|
613
|
-
grid?:
|
614
|
-
gridArea?:
|
615
|
-
gridAutoColumns?:
|
616
|
-
gridAutoFlow?:
|
617
|
-
gridAutoRows?:
|
618
|
-
gridColumn?:
|
619
|
-
gridColumnEnd?:
|
620
|
-
gridColumnGap?:
|
621
|
-
gridColumnStart?:
|
622
|
-
gridGap?:
|
623
|
-
gridRow?:
|
624
|
-
gridRowEnd?:
|
625
|
-
gridRowGap?:
|
626
|
-
gridRowStart?:
|
627
|
-
gridTemplate?:
|
628
|
-
gridTemplateAreas?:
|
629
|
-
gridTemplateColumns?:
|
630
|
-
gridTemplateRows?:
|
631
|
-
hangingPunctuation?:
|
632
|
-
hyphenateCharacter?:
|
633
|
-
hyphenateLimitChars?:
|
634
|
-
hyphens?:
|
635
|
-
height?:
|
636
|
-
imageOrientation?:
|
637
|
-
imageRendering?:
|
638
|
-
imageResolution?:
|
639
|
-
imeMode?:
|
640
|
-
initialLetter?:
|
641
|
-
initialLetterAlign?:
|
642
|
-
inlineSize?:
|
643
|
-
inset?:
|
644
|
-
insetBlock?:
|
645
|
-
insetBlockEnd?:
|
646
|
-
insetBlockStart?:
|
647
|
-
insetInline?:
|
648
|
-
insetInlineEnd?:
|
649
|
-
insetInlineStart?:
|
650
|
-
isolation?:
|
651
|
-
kerning?:
|
652
|
-
left?:
|
653
|
-
letterSpacing?:
|
654
|
-
lineBreak?:
|
655
|
-
lineHeight?:
|
656
|
-
lineHeightStep?:
|
657
|
-
listStyle?:
|
658
|
-
listStyleImage?:
|
659
|
-
listStylePosition?:
|
660
|
-
listStyleType?:
|
661
|
-
margin?:
|
662
|
-
marginBlock?:
|
663
|
-
marginBlockEnd?:
|
664
|
-
marginBlockStart?:
|
665
|
-
marginBottom?:
|
666
|
-
marginInline?:
|
667
|
-
marginInlineEnd?:
|
668
|
-
marginInlineStart?:
|
669
|
-
marginLeft?:
|
670
|
-
marginRight?:
|
671
|
-
marginTop?:
|
535
|
+
forcedColorAdjust?: All | "auto" | "none";
|
536
|
+
printColorAdjust?: All | "economy" | "exact";
|
537
|
+
columns?: All | columns;
|
538
|
+
columnCount?: All | columnCount;
|
539
|
+
columnWidth?: All | columnWidth;
|
540
|
+
columnRule?: All | columnRule;
|
541
|
+
columnRuleColor?: All | columnRuleColor;
|
542
|
+
columnRuleStyle?: All | columnRuleStyle;
|
543
|
+
columnRuleWidth?: All | columnRuleWidth;
|
544
|
+
columnFill?: All | columnFill;
|
545
|
+
columnGap?: All | columnGap;
|
546
|
+
columnSpan?: All | columnSpan;
|
547
|
+
contain?: All | contain;
|
548
|
+
containIntrinsicSize?: All | number | string;
|
549
|
+
containIntrinsicBlockSize?: All | number | string;
|
550
|
+
containIntrinsicInlineSize?: All | number | string;
|
551
|
+
containIntrinsicHeightSize?: All | number | string;
|
552
|
+
containIntrinsicWidthSize?: All | number | string;
|
553
|
+
container?: All | string;
|
554
|
+
containerName?: All | string;
|
555
|
+
containerType?: All | "size" | "inline-size" | "normal";
|
556
|
+
contentVisibility?: All | "visible" | "hidden" | "auto";
|
557
|
+
content?: All | content;
|
558
|
+
counterIncrement?: All | counterIncrement;
|
559
|
+
counterReset?: All | counterReset;
|
560
|
+
counterSet?: All | string | number;
|
561
|
+
cue?: All | cue;
|
562
|
+
cueAfter?: All | cueAfter;
|
563
|
+
cueBefore?: All | cueBefore;
|
564
|
+
cursor?: All | OptionalArray<cursor>;
|
565
|
+
direction?: All | direction;
|
566
|
+
display?: All | display;
|
567
|
+
displayInside?: All | displayInside;
|
568
|
+
displayList?: All | displayList;
|
569
|
+
displayOutside?: All | displayOutside;
|
570
|
+
dominantBaseline?: All | dominantBaseline;
|
571
|
+
emptyCells?: All | emptyCells;
|
572
|
+
end?: All | number | string;
|
573
|
+
fill?: All | fill;
|
574
|
+
fillOpacity?: All | fillOpacity;
|
575
|
+
fillRule?: All | fillRule;
|
576
|
+
filter?: All | filter;
|
577
|
+
flex?: All | flex;
|
578
|
+
flexBasis?: All | flexBasis;
|
579
|
+
flexDirection?: All | flexDirection;
|
580
|
+
flexFlow?: All | flexFlow;
|
581
|
+
flexGrow?: All | flexGrow;
|
582
|
+
flexShrink?: All | flexShrink;
|
583
|
+
flexWrap?: All | flexWrap;
|
584
|
+
float?: All | float;
|
585
|
+
font?: All | string;
|
586
|
+
fontFamily?: All | fontFamily;
|
587
|
+
fontFeatureSettings?: All | fontFeatureSettings;
|
588
|
+
fontKerning?: All | fontKerning;
|
589
|
+
fontLanguageOverride?: All | fontLanguageOverride;
|
590
|
+
fontSize?: All | fontSize;
|
591
|
+
fontSizeAdjust?: All | fontSizeAdjust;
|
592
|
+
fontStretch?: All | fontStretch;
|
593
|
+
fontStyle?: All | fontStyle;
|
594
|
+
fontSynthesis?: All | fontSynthesis;
|
595
|
+
fontSynthesisWeight?: All | "auto" | "none";
|
596
|
+
fontSynthesisStyle?: All | "auto" | "none";
|
597
|
+
fontSynthesisSmallCaps?: All | "auto" | "none";
|
598
|
+
fontSynthesisPosition?: All | "auto" | "none";
|
599
|
+
fontVariant?: All | fontVariant;
|
600
|
+
fontVariantAlternates?: All | fontVariantAlternates;
|
601
|
+
fontVariantCaps?: All | fontVariantCaps;
|
602
|
+
fontVariantEastAsian?: All | fontVariantEastAsian;
|
603
|
+
fontVariantLigatures?: All | fontVariantLigatures;
|
604
|
+
fontVariantNumeric?: All | fontVariantNumeric;
|
605
|
+
fontVariantPosition?: All | fontVariantPosition;
|
606
|
+
fontWeight?: All | FontWeight;
|
607
|
+
fontOpticalSizing?: All | "auto" | "none";
|
608
|
+
fontPalette?: All | "light" | "dark" | string;
|
609
|
+
fontVariationSettings?: All | string;
|
610
|
+
gap?: All | gap;
|
611
|
+
glyphOrientationHorizontal?: All | glyphOrientationHorizontal;
|
612
|
+
glyphOrientationVertical?: All | glyphOrientationVertical;
|
613
|
+
grid?: All | grid;
|
614
|
+
gridArea?: All | gridArea;
|
615
|
+
gridAutoColumns?: All | gridAutoColumns;
|
616
|
+
gridAutoFlow?: All | gridAutoFlow;
|
617
|
+
gridAutoRows?: All | gridAutoRows;
|
618
|
+
gridColumn?: All | gridColumn;
|
619
|
+
gridColumnEnd?: All | gridColumnEnd;
|
620
|
+
gridColumnGap?: All | gridColumnGap;
|
621
|
+
gridColumnStart?: All | gridColumnStart;
|
622
|
+
gridGap?: All | gridGap;
|
623
|
+
gridRow?: All | gridRow;
|
624
|
+
gridRowEnd?: All | gridRowEnd;
|
625
|
+
gridRowGap?: All | gridRowGap;
|
626
|
+
gridRowStart?: All | gridRowStart;
|
627
|
+
gridTemplate?: All | gridTemplate;
|
628
|
+
gridTemplateAreas?: All | gridTemplateAreas;
|
629
|
+
gridTemplateColumns?: All | gridTemplateColumns;
|
630
|
+
gridTemplateRows?: All | gridTemplateRows;
|
631
|
+
hangingPunctuation?: All | string;
|
632
|
+
hyphenateCharacter?: All | string;
|
633
|
+
hyphenateLimitChars?: All | string | number;
|
634
|
+
hyphens?: All | hyphens;
|
635
|
+
height?: All | number | string;
|
636
|
+
imageOrientation?: All | imageOrientation;
|
637
|
+
imageRendering?: All | imageRendering;
|
638
|
+
imageResolution?: All | imageResolution;
|
639
|
+
imeMode?: All | imeMode;
|
640
|
+
initialLetter?: All | initialLetter;
|
641
|
+
initialLetterAlign?: All | initialLetterAlign;
|
642
|
+
inlineSize?: All | inlineSize;
|
643
|
+
inset?: All | number | string;
|
644
|
+
insetBlock?: All | number | string;
|
645
|
+
insetBlockEnd?: All | number | string;
|
646
|
+
insetBlockStart?: All | number | string;
|
647
|
+
insetInline?: All | number | string;
|
648
|
+
insetInlineEnd?: All | number | string;
|
649
|
+
insetInlineStart?: All | number | string;
|
650
|
+
isolation?: All | isolation;
|
651
|
+
kerning?: All | kerning;
|
652
|
+
left?: All | number | string;
|
653
|
+
letterSpacing?: All | letterSpacing;
|
654
|
+
lineBreak?: All | lineBreak;
|
655
|
+
lineHeight?: All | lineHeight;
|
656
|
+
lineHeightStep?: All | number | string;
|
657
|
+
listStyle?: All | listStyle;
|
658
|
+
listStyleImage?: All | listStyleImage;
|
659
|
+
listStylePosition?: All | listStylePosition;
|
660
|
+
listStyleType?: All | listStyleType;
|
661
|
+
margin?: All | margin;
|
662
|
+
marginBlock?: All | marginBlockEnd;
|
663
|
+
marginBlockEnd?: All | marginBlockEnd;
|
664
|
+
marginBlockStart?: All | marginBlockStart;
|
665
|
+
marginBottom?: All | marginBottom;
|
666
|
+
marginInline?: All | marginInlineEnd;
|
667
|
+
marginInlineEnd?: All | marginInlineEnd;
|
668
|
+
marginInlineStart?: All | marginInlineStart;
|
669
|
+
marginLeft?: All | marginLeft;
|
670
|
+
marginRight?: All | marginRight;
|
671
|
+
marginTop?: All | marginTop;
|
672
672
|
marginTrim?: null | "none" | "block" | "block-start" | "block-end" | "inline" | "inline-start" | "inline-end";
|
673
|
-
marker?:
|
674
|
-
markerEnd?:
|
675
|
-
markerMid?:
|
676
|
-
markerOffset?:
|
677
|
-
markerStart?:
|
678
|
-
mask?:
|
679
|
-
maskClip?:
|
680
|
-
maskComposite?:
|
681
|
-
maskImage?:
|
682
|
-
maskMode?:
|
683
|
-
maskOrigin?:
|
684
|
-
maskPosition?:
|
685
|
-
maskRepeat?:
|
686
|
-
maskSize?:
|
687
|
-
maskType?:
|
688
|
-
maskBorder?:
|
689
|
-
maskBorderMode?:
|
690
|
-
maskBorderOutset?:
|
691
|
-
maskBorderRepeat?:
|
692
|
-
maskBorderSlice?:
|
693
|
-
maskBorderSource?:
|
694
|
-
maskBorderWidth?:
|
695
|
-
maxBlockSize?:
|
696
|
-
maxHeight?:
|
697
|
-
maxInlineSize?:
|
698
|
-
maxWidth?:
|
699
|
-
minBlockSize?:
|
700
|
-
minHeight?:
|
701
|
-
minInlineSize?:
|
702
|
-
minWidth?:
|
703
|
-
mixBlendMode?:
|
704
|
-
motion?:
|
705
|
-
motionOffset?:
|
706
|
-
motionPath?:
|
707
|
-
motionRotation?:
|
708
|
-
MsOverflowStyle?:
|
709
|
-
objectFit?:
|
710
|
-
objectPosition?:
|
711
|
-
offset?:
|
712
|
-
offsetAnchor?:
|
713
|
-
offsetDistance?:
|
714
|
-
offsetPath?:
|
715
|
-
offsetPosition?:
|
716
|
-
offsetRotate?:
|
717
|
-
opacity?:
|
718
|
-
order?:
|
719
|
-
orphans?:
|
720
|
-
outline?:
|
721
|
-
outlineColor?:
|
722
|
-
outlineOffset?:
|
723
|
-
outlineStyle?:
|
724
|
-
outlineWidth?:
|
725
|
-
overflow?:
|
726
|
-
overflowBlock?:
|
727
|
-
overflowBlockX?:
|
728
|
-
overflowX?:
|
729
|
-
overflowY?:
|
730
|
-
overflowAnchor?:
|
731
|
-
overflowClipMargin?:
|
732
|
-
overflowWrap?:
|
733
|
-
overscrollBehavior?:
|
734
|
-
overscrollBehaviorBlock?:
|
735
|
-
overscrollBehaviorY?:
|
736
|
-
overscrollBehaviorInline?:
|
737
|
-
overscrollBehaviorX?:
|
738
|
-
padding?:
|
739
|
-
paddingBlock?:
|
740
|
-
paddingBlockEnd?:
|
741
|
-
paddingBlockStart?:
|
742
|
-
paddingInline?:
|
743
|
-
paddingInlineEnd?:
|
744
|
-
paddingInlineStart?:
|
745
|
-
paddingBottom?:
|
746
|
-
paddingLeft?:
|
747
|
-
paddingRight?:
|
748
|
-
paddingTop?:
|
749
|
-
page?:
|
750
|
-
pageBreakAfter?:
|
751
|
-
pageBreakBefore?:
|
752
|
-
pageBreakInside?:
|
673
|
+
marker?: All | marker;
|
674
|
+
markerEnd?: All | markerEnd;
|
675
|
+
markerMid?: All | markerMid;
|
676
|
+
markerOffset?: All | markerOffset;
|
677
|
+
markerStart?: All | markerStart;
|
678
|
+
mask?: All | mask;
|
679
|
+
maskClip?: All | maskClip;
|
680
|
+
maskComposite?: All | maskComposite;
|
681
|
+
maskImage?: All | maskImage;
|
682
|
+
maskMode?: All | maskMode;
|
683
|
+
maskOrigin?: All | maskOrigin;
|
684
|
+
maskPosition?: All | maskPosition;
|
685
|
+
maskRepeat?: All | maskRepeat;
|
686
|
+
maskSize?: All | maskSize;
|
687
|
+
maskType?: All | maskType;
|
688
|
+
maskBorder?: All | string;
|
689
|
+
maskBorderMode?: All | "alpha" | "luminance";
|
690
|
+
maskBorderOutset?: All | string | number;
|
691
|
+
maskBorderRepeat?: All | "stretch" | "repeat" | "round" | "space";
|
692
|
+
maskBorderSlice?: All | string | number;
|
693
|
+
maskBorderSource?: All | string;
|
694
|
+
maskBorderWidth?: All | string | number;
|
695
|
+
maxBlockSize?: All | maxBlockSize;
|
696
|
+
maxHeight?: All | maxHeight;
|
697
|
+
maxInlineSize?: All | maxInlineSize;
|
698
|
+
maxWidth?: All | maxWidth;
|
699
|
+
minBlockSize?: All | minBlockSize;
|
700
|
+
minHeight?: All | minHeight;
|
701
|
+
minInlineSize?: All | minInlineSize;
|
702
|
+
minWidth?: All | minWidth;
|
703
|
+
mixBlendMode?: All | mixBlendMode;
|
704
|
+
motion?: All | motion;
|
705
|
+
motionOffset?: All | motionOffset;
|
706
|
+
motionPath?: All | motionPath;
|
707
|
+
motionRotation?: All | motionRotation;
|
708
|
+
MsOverflowStyle?: All | MsOverflowStyle;
|
709
|
+
objectFit?: All | ObjectFit;
|
710
|
+
objectPosition?: All | objectPosition;
|
711
|
+
offset?: All | string;
|
712
|
+
offsetAnchor?: All | string;
|
713
|
+
offsetDistance?: All | string | number;
|
714
|
+
offsetPath?: All | string;
|
715
|
+
offsetPosition?: All | string;
|
716
|
+
offsetRotate?: All | string;
|
717
|
+
opacity?: All | opacity;
|
718
|
+
order?: All | order;
|
719
|
+
orphans?: All | orphans;
|
720
|
+
outline?: All | outline;
|
721
|
+
outlineColor?: All | outlineColor;
|
722
|
+
outlineOffset?: All | outlineOffset;
|
723
|
+
outlineStyle?: All | outlineStyle;
|
724
|
+
outlineWidth?: All | outlineWidth;
|
725
|
+
overflow?: All | overflow;
|
726
|
+
overflowBlock?: All | overflowY;
|
727
|
+
overflowBlockX?: All | overflowX;
|
728
|
+
overflowX?: All | overflowX;
|
729
|
+
overflowY?: All | overflowY;
|
730
|
+
overflowAnchor?: All | overflowAnchor;
|
731
|
+
overflowClipMargin?: All | string;
|
732
|
+
overflowWrap?: All | overflowWrap;
|
733
|
+
overscrollBehavior?: All | overscrollBehavior;
|
734
|
+
overscrollBehaviorBlock?: All | overscrollBehaviorY;
|
735
|
+
overscrollBehaviorY?: All | overscrollBehaviorY;
|
736
|
+
overscrollBehaviorInline?: All | overscrollBehaviorX;
|
737
|
+
overscrollBehaviorX?: All | overscrollBehaviorX;
|
738
|
+
padding?: All | padding;
|
739
|
+
paddingBlock?: All | paddingBlockEnd;
|
740
|
+
paddingBlockEnd?: All | paddingBlockEnd;
|
741
|
+
paddingBlockStart?: All | paddingBlockStart;
|
742
|
+
paddingInline?: All | paddingBlockEnd;
|
743
|
+
paddingInlineEnd?: All | paddingBlockEnd;
|
744
|
+
paddingInlineStart?: All | paddingBlockStart;
|
745
|
+
paddingBottom?: All | paddingBottom;
|
746
|
+
paddingLeft?: All | paddingLeft;
|
747
|
+
paddingRight?: All | paddingRight;
|
748
|
+
paddingTop?: All | paddingTop;
|
749
|
+
page?: All | string;
|
750
|
+
pageBreakAfter?: All | pageBreakAfter;
|
751
|
+
pageBreakBefore?: All | pageBreakBefore;
|
752
|
+
pageBreakInside?: All | pageBreakInside;
|
753
753
|
paintOrder?: null | "normal" | "stroke" | "fill" | "markers" | "stroke fill" | "stroke markers" | "fill markers" | "stroke fill markers";
|
754
|
-
pause?:
|
755
|
-
pauseAfter?:
|
756
|
-
pauseBefore?:
|
757
|
-
perspective?:
|
758
|
-
perspectiveOrigin?:
|
759
|
-
pointerEvents?:
|
760
|
-
position?:
|
761
|
-
quotes?:
|
762
|
-
resize?:
|
763
|
-
rest?:
|
764
|
-
restAfter?:
|
765
|
-
restBefore?:
|
766
|
-
right?:
|
767
|
-
rowGap?:
|
768
|
-
rubyAlign?:
|
769
|
-
rubyMerge?:
|
770
|
-
rubyPosition?:
|
771
|
-
mathDepth?:
|
772
|
-
mathShift?:
|
773
|
-
mathStyle?:
|
774
|
-
scrollBehavior?:
|
775
|
-
scrollMargin?:
|
776
|
-
scrollMarginTop?:
|
777
|
-
scrollMarginRight?:
|
778
|
-
scrollMarginBottom?:
|
779
|
-
scrollMarginLeft?:
|
780
|
-
scrollMarginBlock?:
|
781
|
-
scrollMarginBlockEnd?:
|
782
|
-
scrollMarginBlockStart?:
|
783
|
-
scrollMarginInline?:
|
784
|
-
scrollMarginInlineEnd?:
|
785
|
-
scrollMarginInlineStart?:
|
786
|
-
scrollPadding?:
|
787
|
-
scrollPaddingTop?:
|
788
|
-
scrollPaddingRight?:
|
789
|
-
scrollPaddingBottom?:
|
790
|
-
scrollPaddingLeft?:
|
791
|
-
scrollPaddingBlock?:
|
792
|
-
scrollPaddingBlockEnd?:
|
793
|
-
scrollPaddingBlockStart?:
|
794
|
-
scrollPaddingInline?:
|
795
|
-
scrollPaddingInlineEnd?:
|
796
|
-
scrollPaddingInlineStart?:
|
797
|
-
scrollSnapAlign?:
|
798
|
-
scrollSnapStop?:
|
799
|
-
scrollSnapType?:
|
800
|
-
scrollTimeline?:
|
801
|
-
scrollTimelineAxis?:
|
802
|
-
scrollTimelineName?:
|
803
|
-
scrollbarColor?:
|
804
|
-
scrollbarGutter?:
|
805
|
-
scrollbarWidth?:
|
806
|
-
shapeImageThreshold?:
|
807
|
-
shapeMargin?:
|
808
|
-
shapeOutside?:
|
809
|
-
shapeRendering?:
|
810
|
-
speak?:
|
811
|
-
speakAs?:
|
812
|
-
src?:
|
813
|
-
start?:
|
814
|
-
stroke?:
|
815
|
-
strokeDasharray?:
|
816
|
-
strokeDashoffset?:
|
817
|
-
strokeLinecap?:
|
818
|
-
strokeLinejoin?:
|
819
|
-
strokeMiterlimit?:
|
820
|
-
strokeOpacity?:
|
821
|
-
strokeWidth?:
|
822
|
-
tabSize?:
|
823
|
-
tableLayout?:
|
824
|
-
textAlign?:
|
825
|
-
textAlignLast?:
|
826
|
-
textAnchor?:
|
827
|
-
textCombineUpright?:
|
828
|
-
textDecoration?:
|
829
|
-
textDecorationColor?:
|
830
|
-
textDecorationLine?:
|
831
|
-
textDecorationSkip?:
|
832
|
-
textDecorationSkipInk?:
|
833
|
-
textDecorationStyle?:
|
834
|
-
textDecorationThickness?:
|
835
|
-
textEmphasis?:
|
836
|
-
textEmphasisColor?:
|
837
|
-
textEmphasisPosition?:
|
838
|
-
textEmphasisStyle?:
|
839
|
-
textIndent?:
|
754
|
+
pause?: All | pause;
|
755
|
+
pauseAfter?: All | pauseAfter;
|
756
|
+
pauseBefore?: All | pauseBefore;
|
757
|
+
perspective?: All | perspective;
|
758
|
+
perspectiveOrigin?: All | perspectiveOrigin;
|
759
|
+
pointerEvents?: All | PointerEvents;
|
760
|
+
position?: All | position;
|
761
|
+
quotes?: All | quotes;
|
762
|
+
resize?: All | resize;
|
763
|
+
rest?: All | rest;
|
764
|
+
restAfter?: All | restAfter;
|
765
|
+
restBefore?: All | restBefore;
|
766
|
+
right?: All | number | string;
|
767
|
+
rowGap?: All | rowGap;
|
768
|
+
rubyAlign?: All | rubyAlign;
|
769
|
+
rubyMerge?: All | rubyMerge;
|
770
|
+
rubyPosition?: All | rubyPosition;
|
771
|
+
mathDepth?: All | number | string;
|
772
|
+
mathShift?: All | "normal" | "compact";
|
773
|
+
mathStyle?: All | "normal" | "compact";
|
774
|
+
scrollBehavior?: All | scrollBehavior;
|
775
|
+
scrollMargin?: All | number | string;
|
776
|
+
scrollMarginTop?: All | number | string;
|
777
|
+
scrollMarginRight?: All | number | string;
|
778
|
+
scrollMarginBottom?: All | number | string;
|
779
|
+
scrollMarginLeft?: All | number | string;
|
780
|
+
scrollMarginBlock?: All | number | string;
|
781
|
+
scrollMarginBlockEnd?: All | number | string;
|
782
|
+
scrollMarginBlockStart?: All | number | string;
|
783
|
+
scrollMarginInline?: All | number | string;
|
784
|
+
scrollMarginInlineEnd?: All | number | string;
|
785
|
+
scrollMarginInlineStart?: All | number | string;
|
786
|
+
scrollPadding?: All | number | string;
|
787
|
+
scrollPaddingTop?: All | number | string;
|
788
|
+
scrollPaddingRight?: All | number | string;
|
789
|
+
scrollPaddingBottom?: All | number | string;
|
790
|
+
scrollPaddingLeft?: All | number | string;
|
791
|
+
scrollPaddingBlock?: All | number | string;
|
792
|
+
scrollPaddingBlockEnd?: All | number | string;
|
793
|
+
scrollPaddingBlockStart?: All | number | string;
|
794
|
+
scrollPaddingInline?: All | number | string;
|
795
|
+
scrollPaddingInlineEnd?: All | number | string;
|
796
|
+
scrollPaddingInlineStart?: All | number | string;
|
797
|
+
scrollSnapAlign?: All | scrollSnapAlign;
|
798
|
+
scrollSnapStop?: All | "normal" | "always";
|
799
|
+
scrollSnapType?: All | scrollSnapType;
|
800
|
+
scrollTimeline?: All | string;
|
801
|
+
scrollTimelineAxis?: All | "block" | "inline" | "x" | "y";
|
802
|
+
scrollTimelineName?: All | string;
|
803
|
+
scrollbarColor?: All | color;
|
804
|
+
scrollbarGutter?: All | "auto" | "stable" | "stable both-edges";
|
805
|
+
scrollbarWidth?: All | "auto" | "thin" | "none";
|
806
|
+
shapeImageThreshold?: All | shapeImageThreshold;
|
807
|
+
shapeMargin?: All | shapeMargin;
|
808
|
+
shapeOutside?: All | shapeOutside;
|
809
|
+
shapeRendering?: All | shapeRendering;
|
810
|
+
speak?: All | speak;
|
811
|
+
speakAs?: All | speakAs;
|
812
|
+
src?: All | src;
|
813
|
+
start?: All | number | string;
|
814
|
+
stroke?: All | stroke;
|
815
|
+
strokeDasharray?: All | strokeDasharray;
|
816
|
+
strokeDashoffset?: All | strokeDashoffset;
|
817
|
+
strokeLinecap?: All | strokeLinecap;
|
818
|
+
strokeLinejoin?: All | strokeLinejoin;
|
819
|
+
strokeMiterlimit?: All | strokeMiterlimit;
|
820
|
+
strokeOpacity?: All | strokeOpacity;
|
821
|
+
strokeWidth?: All | strokeWidth;
|
822
|
+
tabSize?: All | tabSize;
|
823
|
+
tableLayout?: All | tableLayout;
|
824
|
+
textAlign?: All | TextAlign;
|
825
|
+
textAlignLast?: All | textAlignLast;
|
826
|
+
textAnchor?: All | textAnchor;
|
827
|
+
textCombineUpright?: All | textCombineUpright;
|
828
|
+
textDecoration?: All | TextDecoration;
|
829
|
+
textDecorationColor?: All | textDecorationColor;
|
830
|
+
textDecorationLine?: All | textDecorationLine;
|
831
|
+
textDecorationSkip?: All | textDecorationSkip;
|
832
|
+
textDecorationSkipInk?: All | "auto" | "none" | "all";
|
833
|
+
textDecorationStyle?: All | textDecorationStyle;
|
834
|
+
textDecorationThickness?: All | number | string;
|
835
|
+
textEmphasis?: All | textEmphasis;
|
836
|
+
textEmphasisColor?: All | textEmphasisColor;
|
837
|
+
textEmphasisPosition?: All | textEmphasisPosition;
|
838
|
+
textEmphasisStyle?: All | textEmphasisStyle;
|
839
|
+
textIndent?: All | textIndent;
|
840
840
|
textJustify?: null | "none" | "auto" | "inter-word" | "inter-character" | "distribute";
|
841
|
-
textOrientation?:
|
842
|
-
textOverflow?:
|
843
|
-
textRendering?:
|
844
|
-
textShadow?:
|
845
|
-
textSizeAdjust?:
|
846
|
-
textTransform?:
|
847
|
-
textUnderlineOffset?:
|
848
|
-
textUnderlinePosition?:
|
849
|
-
textWrap?:
|
850
|
-
timelineScope?:
|
851
|
-
top?:
|
852
|
-
touchAction?:
|
853
|
-
transform?:
|
854
|
-
transformBox?:
|
855
|
-
transformOrigin?:
|
856
|
-
transformStyle?:
|
857
|
-
rotate?:
|
858
|
-
scale?:
|
859
|
-
translate?:
|
860
|
-
transition?:
|
861
|
-
transitionDelay?:
|
862
|
-
transitionDuration?:
|
863
|
-
transitionProperty?:
|
864
|
-
transitionTimingFunction?:
|
865
|
-
unicodeBidi?:
|
866
|
-
unicodeRange?:
|
867
|
-
userSelect?:
|
868
|
-
verticalAlign?:
|
869
|
-
viewTimeline?:
|
870
|
-
viewTimelineAxis?:
|
871
|
-
viewTimelineName?:
|
872
|
-
viewTimelineInset?:
|
873
|
-
viewTransitionName?:
|
874
|
-
visibility?:
|
875
|
-
voiceBalance?:
|
876
|
-
voiceDuration?:
|
877
|
-
voiceFamily?:
|
878
|
-
voicePitch?:
|
879
|
-
voiceRange?:
|
880
|
-
voiceRate?:
|
881
|
-
voiceStress?:
|
882
|
-
voiceVolume?:
|
883
|
-
whiteSpace?:
|
884
|
-
widows?:
|
885
|
-
width?:
|
886
|
-
willChange?:
|
887
|
-
wordBreak?:
|
888
|
-
wordSpacing?:
|
889
|
-
wordWrap?:
|
890
|
-
writingMode?:
|
891
|
-
zIndex?:
|
892
|
-
zoom?:
|
841
|
+
textOrientation?: All | textOrientation;
|
842
|
+
textOverflow?: All | textOverflow;
|
843
|
+
textRendering?: All | textRendering;
|
844
|
+
textShadow?: All | OptionalArray<textShadow>;
|
845
|
+
textSizeAdjust?: All | textSizeAdjust;
|
846
|
+
textTransform?: All | textTransform;
|
847
|
+
textUnderlineOffset?: All | number | string;
|
848
|
+
textUnderlinePosition?: All | textUnderlinePosition;
|
849
|
+
textWrap?: All | "wrap" | "nowrap" | "balance";
|
850
|
+
timelineScope?: All | string;
|
851
|
+
top?: All | top;
|
852
|
+
touchAction?: All | touchAction;
|
853
|
+
transform?: All | transform;
|
854
|
+
transformBox?: All | transformBox;
|
855
|
+
transformOrigin?: All | transformOrigin;
|
856
|
+
transformStyle?: All | transformStyle;
|
857
|
+
rotate?: All | number | string;
|
858
|
+
scale?: All | number | string;
|
859
|
+
translate?: All | number | string;
|
860
|
+
transition?: All | OptionalArray<transition>;
|
861
|
+
transitionDelay?: All | OptionalArray<transitionDelay>;
|
862
|
+
transitionDuration?: All | OptionalArray<transitionDuration>;
|
863
|
+
transitionProperty?: All | OptionalArray<transitionProperty>;
|
864
|
+
transitionTimingFunction?: All | OptionalArray<transitionTimingFunction>;
|
865
|
+
unicodeBidi?: All | unicodeBidi;
|
866
|
+
unicodeRange?: All | unicodeRange;
|
867
|
+
userSelect?: All | userSelect;
|
868
|
+
verticalAlign?: All | VerticalAlign;
|
869
|
+
viewTimeline?: All | string;
|
870
|
+
viewTimelineAxis?: All | "block" | "inline" | "x" | "y";
|
871
|
+
viewTimelineName?: All | string;
|
872
|
+
viewTimelineInset?: All | number | string;
|
873
|
+
viewTransitionName?: All | string;
|
874
|
+
visibility?: All | visibility;
|
875
|
+
voiceBalance?: All | voiceBalance;
|
876
|
+
voiceDuration?: All | voiceDuration;
|
877
|
+
voiceFamily?: All | voiceFamily;
|
878
|
+
voicePitch?: All | voicePitch;
|
879
|
+
voiceRange?: All | voiceRange;
|
880
|
+
voiceRate?: All | voiceRate;
|
881
|
+
voiceStress?: All | voiceStress;
|
882
|
+
voiceVolume?: All | voiceVolume;
|
883
|
+
whiteSpace?: All | whiteSpace;
|
884
|
+
widows?: All | widows;
|
885
|
+
width?: All | width;
|
886
|
+
willChange?: All | willChange;
|
887
|
+
wordBreak?: All | wordBreak;
|
888
|
+
wordSpacing?: All | wordSpacing;
|
889
|
+
wordWrap?: All | wordWrap;
|
890
|
+
writingMode?: All | writingMode;
|
891
|
+
zIndex?: All | zIndex;
|
892
|
+
zoom?: All | "normal" | number | string;
|
893
893
|
}>;
|
894
894
|
export {};
|