@css-hooks/react 3.2.0-next.8 → 4.0.0-next.1
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/README.md +5 -5
- package/cjs/css-property-conflicts.js +6 -0
- package/cjs/index.js +4 -4
- package/esm/css-property-conflicts.js +5 -0
- package/esm/index.js +4 -4
- package/package.json +5 -3
- package/types/css-property-conflicts.d.ts +821 -0
- package/types/index.d.ts +7 -5
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a id="logomark" href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/
|
|
2
|
+
<a id="logomark" href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.1/.github/logomark.svg" height="128" /></a><br/><br/>
|
|
3
3
|
<div id="wordmark">
|
|
4
|
-
<a href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/
|
|
4
|
+
<a href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.1/.github/wordmark-dark.svg" width="256"></a>
|
|
5
5
|
</div>
|
|
6
6
|
</div>
|
|
7
7
|
|
|
8
8
|
<br/>
|
|
9
9
|
|
|
10
10
|
<div align="center" id="badges">
|
|
11
|
-
<a href="https://github.com/css-hooks/css-hooks/tree/
|
|
12
|
-
<a href="https://www.npmjs.com/package/@css-hooks/react/v/
|
|
13
|
-
<a href="https://github.com/css-hooks/css-hooks/blob/
|
|
11
|
+
<a href="https://github.com/css-hooks/css-hooks/tree/v4.0.0-next.1"><img src="https://img.shields.io/badge/tag-v4.0.0--next.1-ffd700" alt="tag v4.0.0-next.1"></a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/@css-hooks/react/v/4.0.0-next.1"><img src="https://img.shields.io/badge/npm-v4.0.0--next.1-ffd700" alt="npm version"></a>
|
|
13
|
+
<a href="https://github.com/css-hooks/css-hooks/blob/v4.0.0-next.1/LICENSE"><img src="https://img.shields.io/badge/license-MIT-ffd700" alt="license"></a>
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
16
|
---
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* CSS Hooks for {@link https://react.dev | React}
|
|
4
4
|
*
|
|
5
5
|
* @packageDocumentation
|
|
6
6
|
*/
|
|
@@ -22,14 +22,14 @@ function _stringifyValue(value, propertyName) {
|
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
24
|
* A {@link @css-hooks/core#CreateHooksFn} configured to use React's
|
|
25
|
-
* `CSSProperties` type and logic for converting CSS values into strings
|
|
25
|
+
* `CSSProperties` type and logic for converting CSS values into strings
|
|
26
26
|
*
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
29
|
exports.createHooks = (0, core_1.buildHooksSystem)(_stringifyValue);
|
|
30
30
|
/**
|
|
31
|
-
* Following code (c) Meta Platforms, Inc. and affiliates.
|
|
32
|
-
*
|
|
31
|
+
* Following code (c) Meta Platforms, Inc. and affiliates. Source modified to
|
|
32
|
+
* account for custom properties.
|
|
33
33
|
*/
|
|
34
34
|
/** @internal */
|
|
35
35
|
exports._unitlessNumbers = new Set([
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* CSS Hooks for {@link https://react.dev | React}
|
|
3
3
|
*
|
|
4
4
|
* @packageDocumentation
|
|
5
5
|
*/
|
|
@@ -18,14 +18,14 @@ export function _stringifyValue(value, propertyName) {
|
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* A {@link @css-hooks/core#CreateHooksFn} configured to use React's
|
|
21
|
-
* `CSSProperties` type and logic for converting CSS values into strings
|
|
21
|
+
* `CSSProperties` type and logic for converting CSS values into strings
|
|
22
22
|
*
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
25
|
export const createHooks = buildHooksSystem(_stringifyValue);
|
|
26
26
|
/**
|
|
27
|
-
* Following code (c) Meta Platforms, Inc. and affiliates.
|
|
28
|
-
*
|
|
27
|
+
* Following code (c) Meta Platforms, Inc. and affiliates. Source modified to
|
|
28
|
+
* account for custom properties.
|
|
29
29
|
*/
|
|
30
30
|
/** @internal */
|
|
31
31
|
export const _unitlessNumbers = new Set([
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@css-hooks/react",
|
|
3
3
|
"description": "CSS Hooks for React",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0-next.1",
|
|
5
5
|
"author": "Nick Saunders",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@css-hooks/core": "
|
|
7
|
+
"@css-hooks/core": "4.0.0-next.1"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@types/react": "^19.0.4"
|
|
10
|
+
"@types/react": "^19.0.4",
|
|
11
|
+
"remeda": "^2.45.0"
|
|
11
12
|
},
|
|
12
13
|
"files": [
|
|
13
14
|
"cjs",
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
39
|
"build": "wireit",
|
|
40
|
+
"codegen": "npm run --silent start -w @scripts/css-property-conflicts -- --casing camel > src/css-property-conflicts.ts",
|
|
39
41
|
"prepublishOnly": "wireit",
|
|
40
42
|
"test": "node --conditions @css-hooks/source --test src/index.test.ts"
|
|
41
43
|
},
|
|
@@ -0,0 +1,821 @@
|
|
|
1
|
+
/** A map of conflicting CSS property names */
|
|
2
|
+
export type CSSPropertyConflicts = {
|
|
3
|
+
accentColor: "all";
|
|
4
|
+
alignContent: "WebkitAlignContent" | "all" | "placeContent";
|
|
5
|
+
alignItems: "WebkitAlignItems" | "all" | "placeItems";
|
|
6
|
+
alignmentBaseline: "all" | "verticalAlign";
|
|
7
|
+
alignSelf: "WebkitAlignSelf" | "all" | "placeSelf";
|
|
8
|
+
all: "WebkitAlignContent" | "WebkitAlignItems" | "WebkitAlignSelf" | "WebkitAnimation" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "WebkitAppearance" | "WebkitBackfaceVisibility" | "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "WebkitBoxAlign" | "WebkitBoxFlex" | "WebkitBoxOrdinalGroup" | "WebkitBoxOrient" | "WebkitBoxPack" | "WebkitBoxShadow" | "WebkitBoxSizing" | "WebkitFilter" | "WebkitFlex" | "WebkitFlexBasis" | "WebkitFlexDirection" | "WebkitFlexFlow" | "WebkitFlexGrow" | "WebkitFlexShrink" | "WebkitFlexWrap" | "WebkitJustifyContent" | "WebkitLineClamp" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskRepeat" | "WebkitMaskSize" | "WebkitOrder" | "WebkitPerspective" | "WebkitPerspectiveOrigin" | "WebkitTextFillColor" | "WebkitTextSizeAdjust" | "WebkitTextStroke" | "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "WebkitTransform" | "WebkitTransformOrigin" | "WebkitTransformStyle" | "WebkitTransition" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "WebkitUserSelect" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignmentBaseline" | "anchorName" | "anchorScope" | "animation" | "animationComposition" | "animationDelay" | "animationDelayEnd" | "animationDelayStart" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationRange" | "animationRangeCenter" | "animationRangeEnd" | "animationRangeStart" | "animationTimeline" | "animationTimingFunction" | "animationTrigger" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "background" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionBlock" | "backgroundPositionInline" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundRepeatBlock" | "backgroundRepeatInline" | "backgroundRepeatX" | "backgroundRepeatY" | "backgroundSize" | "backgroundTbd" | "baselineShift" | "baselineSource" | "blockEllipsis" | "blockSize" | "blockStep" | "blockStepAlign" | "blockStepInsert" | "blockStepRound" | "blockStepSize" | "bookmarkLabel" | "bookmarkLevel" | "bookmarkState" | "border" | "borderBlock" | "borderBlockClip" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndClip" | "borderBlockEndColor" | "borderBlockEndRadius" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartClip" | "borderBlockStartColor" | "borderBlockStartRadius" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderBottomClip" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderBoundary" | "borderClip" | "borderCollapse" | "borderColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImage" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInline" | "borderInlineClip" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndClip" | "borderInlineEndColor" | "borderInlineEndRadius" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartClip" | "borderInlineStartColor" | "borderInlineStartRadius" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderLeftClip" | "borderLeftColor" | "borderLeftRadius" | "borderLeftStyle" | "borderLeftWidth" | "borderLimit" | "borderRadius" | "borderRight" | "borderRightClip" | "borderRightColor" | "borderRightRadius" | "borderRightStyle" | "borderRightWidth" | "borderShape" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTop" | "borderTopClip" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "borderWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxShadowBlur" | "boxShadowColor" | "boxShadowOffset" | "boxShadowPosition" | "boxShadowSpread" | "boxSizing" | "boxSnap" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caret" | "caretAnimation" | "caretColor" | "caretShape" | "clear" | "clip" | "clipPath" | "clipRule" | "color" | "colorAdjust" | "colorInterpolation" | "colorInterpolationFilters" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnHeight" | "columnRule" | "columnRuleBreak" | "columnRuleColor" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetCapStart" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "columnRuleStyle" | "columnRuleVisibilityItems" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "columnWrap" | "columns" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicSize" | "containIntrinsicWidth" | "container" | "containerName" | "containerType" | "content" | "contentVisibility" | "continue" | "copyInto" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape" | "counterIncrement" | "counterReset" | "counterSet" | "cue" | "cueAfter" | "cueBefore" | "cursor" | "cx" | "cy" | "d" | "display" | "dominantBaseline" | "dynamicRangeLimit" | "emptyCells" | "eventTrigger" | "eventTriggerName" | "eventTriggerSource" | "fieldSizing" | "fill" | "fillBreak" | "fillColor" | "fillImage" | "fillOpacity" | "fillOrigin" | "fillPosition" | "fillRepeat" | "fillRule" | "fillSize" | "filter" | "flex" | "flexBasis" | "flexDirection" | "flexFlow" | "flexGrow" | "flexLineCount" | "flexShrink" | "flexWrap" | "float" | "floatDefer" | "floatOffset" | "floatReference" | "floodColor" | "floodOpacity" | "flowFrom" | "flowInto" | "flowTolerance" | "font" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontSynthesisPosition" | "fontSynthesisSmallCaps" | "fontSynthesisStyle" | "fontSynthesisWeight" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "fontWidth" | "footnoteDisplay" | "footnotePolicy" | "forcedColorAdjust" | "frameSizing" | "gap" | "glyphOrientationVertical" | "grid" | "gridArea" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumn" | "gridColumnEnd" | "gridColumnGap" | "gridColumnStart" | "gridGap" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridTemplate" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "height" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphenateLimitLast" | "hyphenateLimitLines" | "hyphenateLimitZone" | "hyphens" | "imageAnimation" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "initialLetterWrap" | "inlineSize" | "inlineSizing" | "inputSecurity" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart" | "interactivity" | "interestDelay" | "interestDelayEnd" | "interestDelayStart" | "interpolateSize" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lightingColor" | "lineBreak" | "lineClamp" | "lineFitEdge" | "lineGrid" | "lineHeight" | "lineHeightStep" | "linePadding" | "lineSnap" | "linkParameters" | "listStyle" | "listStyleImage" | "listStylePosition" | "listStyleType" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginBreak" | "marginInline" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "marker" | "markerEnd" | "markerMid" | "markerSide" | "markerStart" | "mask" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minIntrinsicSizing" | "minWidth" | "mixBlendMode" | "navDown" | "navLeft" | "navRight" | "navUp" | "objectFit" | "objectPosition" | "objectViewBox" | "offset" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "opacity" | "order" | "orphans" | "outline" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowAnchor" | "overflowBlock" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginBottom" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overlay" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "pathLength" | "pause" | "pauseAfter" | "pauseBefore" | "perspective" | "perspectiveOrigin" | "placeContent" | "placeItems" | "placeSelf" | "pointerEvents" | "pointerTimeline" | "pointerTimelineAxis" | "pointerTimelineName" | "position" | "positionAnchor" | "positionArea" | "positionTry" | "positionTryFallbacks" | "positionTryOrder" | "positionVisibility" | "printColorAdjust" | "quotes" | "r" | "readingFlow" | "readingOrder" | "regionFragment" | "resize" | "rest" | "restAfter" | "restBefore" | "right" | "rotate" | "rowGap" | "rowRule" | "rowRuleBreak" | "rowRuleColor" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapEnd" | "rowRuleInsetCapStart" | "rowRuleInsetEnd" | "rowRuleInsetJunction" | "rowRuleInsetJunctionEnd" | "rowRuleInsetJunctionStart" | "rowRuleInsetStart" | "rowRuleStyle" | "rowRuleVisibilityItems" | "rowRuleWidth" | "rubyAlign" | "rubyMerge" | "rubyOverhang" | "rubyPosition" | "rule" | "ruleBreak" | "ruleColor" | "ruleInset" | "ruleInsetCap" | "ruleInsetEnd" | "ruleInsetJunction" | "ruleInsetStart" | "ruleOverlap" | "ruleStyle" | "ruleVisibilityItems" | "ruleWidth" | "rx" | "ry" | "scale" | "scrollAxisLock" | "scrollBehavior" | "scrollInitialTarget" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollMarkerGroup" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapStop" | "scrollSnapType" | "scrollTargetGroup" | "scrollTimeline" | "scrollTimelineAxis" | "scrollTimelineName" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "shapeImageThreshold" | "shapeInside" | "shapeMargin" | "shapeOutside" | "shapePadding" | "shapeRendering" | "sliderOrientation" | "spatialNavigationAction" | "spatialNavigationContain" | "spatialNavigationFunction" | "speak" | "speakAs" | "stopColor" | "stopOpacity" | "stringSet" | "stroke" | "strokeAlign" | "strokeAlignment" | "strokeBreak" | "strokeColor" | "strokeDashCorner" | "strokeDashJustify" | "strokeDashadjust" | "strokeDasharray" | "strokeDashcorner" | "strokeDashoffset" | "strokeImage" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeOrigin" | "strokePosition" | "strokeRepeat" | "strokeSize" | "strokeWidth" | "tabSize" | "tableLayout" | "textAlign" | "textAlignAll" | "textAlignLast" | "textAnchor" | "textAutospace" | "textBox" | "textBoxEdge" | "textBoxTrim" | "textCombineUpright" | "textDecoration" | "textDecorationColor" | "textDecorationInset" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipBox" | "textDecorationSkipInk" | "textDecorationSkipSelf" | "textDecorationSkipSpaces" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasis" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisSkip" | "textEmphasisStyle" | "textFit" | "textGroupAlign" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textSpacing" | "textSpacingTrim" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "textWrap" | "textWrapMode" | "textWrapStyle" | "timelineScope" | "timelineTrigger" | "timelineTriggerActivationRange" | "timelineTriggerActivationRangeEnd" | "timelineTriggerActivationRangeStart" | "timelineTriggerActiveRange" | "timelineTriggerActiveRangeEnd" | "timelineTriggerActiveRangeStart" | "timelineTriggerName" | "timelineTriggerSource" | "top" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transition" | "transitionBehavior" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "triggerScope" | "userSelect" | "vectorEffect" | "verticalAlign" | "viewTimeline" | "viewTimelineAxis" | "viewTimelineInset" | "viewTimelineName" | "viewTransitionClass" | "viewTransitionGroup" | "viewTransitionName" | "viewTransitionScope" | "visibility" | "voiceBalance" | "voiceDuration" | "voiceFamily" | "voicePitch" | "voiceRange" | "voiceRate" | "voiceStress" | "voiceVolume" | "whiteSpace" | "whiteSpaceCollapse" | "whiteSpaceTrim" | "widows" | "width" | "willChange" | "windowDrag" | "wordBreak" | "wordSpaceTransform" | "wordSpacing" | "wordWrap" | "wrapAfter" | "wrapBefore" | "wrapFlow" | "wrapInside" | "wrapThrough" | "writingMode" | "x" | "y" | "zIndex" | "zoom";
|
|
9
|
+
anchorName: "all";
|
|
10
|
+
anchorScope: "all";
|
|
11
|
+
animation: "WebkitAnimation" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "all" | "animationDelay" | "animationDelayEnd" | "animationDelayStart" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationRange" | "animationRangeEnd" | "animationRangeStart" | "animationTimeline" | "animationTimingFunction" | "animationTrigger";
|
|
12
|
+
animationComposition: "all";
|
|
13
|
+
animationDelay: "WebkitAnimation" | "WebkitAnimationDelay" | "all" | "animation" | "animationDelayEnd" | "animationDelayStart";
|
|
14
|
+
animationDelayEnd: "WebkitAnimation" | "WebkitAnimationDelay" | "all" | "animation" | "animationDelay";
|
|
15
|
+
animationDelayStart: "WebkitAnimation" | "WebkitAnimationDelay" | "all" | "animation" | "animationDelay";
|
|
16
|
+
animationDirection: "WebkitAnimation" | "WebkitAnimationDirection" | "all" | "animation";
|
|
17
|
+
animationDuration: "WebkitAnimation" | "WebkitAnimationDuration" | "all" | "animation";
|
|
18
|
+
animationFillMode: "WebkitAnimation" | "WebkitAnimationFillMode" | "all" | "animation";
|
|
19
|
+
animationIterationCount: "WebkitAnimation" | "WebkitAnimationIterationCount" | "all" | "animation";
|
|
20
|
+
animationName: "WebkitAnimation" | "WebkitAnimationName" | "all" | "animation";
|
|
21
|
+
animationPlayState: "WebkitAnimation" | "WebkitAnimationPlayState" | "all" | "animation";
|
|
22
|
+
animationRange: "WebkitAnimation" | "all" | "animation" | "animationRangeEnd" | "animationRangeStart";
|
|
23
|
+
animationRangeCenter: "all";
|
|
24
|
+
animationRangeEnd: "WebkitAnimation" | "all" | "animation" | "animationRange";
|
|
25
|
+
animationRangeStart: "WebkitAnimation" | "all" | "animation" | "animationRange";
|
|
26
|
+
animationTimeline: "WebkitAnimation" | "all" | "animation";
|
|
27
|
+
animationTimingFunction: "WebkitAnimation" | "WebkitAnimationTimingFunction" | "all" | "animation";
|
|
28
|
+
animationTrigger: "WebkitAnimation" | "all" | "animation";
|
|
29
|
+
appearance: "WebkitAppearance" | "all";
|
|
30
|
+
aspectRatio: "all";
|
|
31
|
+
backdropFilter: "all";
|
|
32
|
+
backfaceVisibility: "WebkitBackfaceVisibility" | "all";
|
|
33
|
+
background: "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "all" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundPositionBlock" | "backgroundPositionInline" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize";
|
|
34
|
+
backgroundAttachment: "all" | "background";
|
|
35
|
+
backgroundBlendMode: "all" | "background";
|
|
36
|
+
backgroundClip: "WebkitBackgroundClip" | "all" | "background";
|
|
37
|
+
backgroundColor: "all" | "background";
|
|
38
|
+
backgroundImage: "all" | "background";
|
|
39
|
+
backgroundOrigin: "WebkitBackgroundOrigin" | "all" | "background";
|
|
40
|
+
backgroundPosition: "all" | "background" | "backgroundPositionBlock" | "backgroundPositionInline" | "backgroundPositionX" | "backgroundPositionY";
|
|
41
|
+
backgroundPositionBlock: "all" | "background" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY";
|
|
42
|
+
backgroundPositionInline: "all" | "background" | "backgroundPosition" | "backgroundPositionX" | "backgroundPositionY";
|
|
43
|
+
backgroundPositionX: "all" | "background" | "backgroundPosition" | "backgroundPositionBlock" | "backgroundPositionInline";
|
|
44
|
+
backgroundPositionY: "all" | "background" | "backgroundPosition" | "backgroundPositionBlock" | "backgroundPositionInline";
|
|
45
|
+
backgroundRepeat: "all" | "background";
|
|
46
|
+
backgroundRepeatBlock: "all" | "backgroundRepeatX" | "backgroundRepeatY";
|
|
47
|
+
backgroundRepeatInline: "all" | "backgroundRepeatX" | "backgroundRepeatY";
|
|
48
|
+
backgroundRepeatX: "all" | "backgroundRepeatBlock" | "backgroundRepeatInline";
|
|
49
|
+
backgroundRepeatY: "all" | "backgroundRepeatBlock" | "backgroundRepeatInline";
|
|
50
|
+
backgroundSize: "WebkitBackgroundSize" | "all" | "background";
|
|
51
|
+
backgroundTbd: "all";
|
|
52
|
+
baselineShift: "all" | "verticalAlign";
|
|
53
|
+
baselineSource: "all" | "verticalAlign";
|
|
54
|
+
blockEllipsis: "WebkitLineClamp" | "all" | "lineClamp";
|
|
55
|
+
blockSize: "all" | "height" | "width";
|
|
56
|
+
blockStep: "all" | "blockStepAlign" | "blockStepInsert" | "blockStepRound" | "blockStepSize";
|
|
57
|
+
blockStepAlign: "all" | "blockStep";
|
|
58
|
+
blockStepInsert: "all" | "blockStep";
|
|
59
|
+
blockStepRound: "all" | "blockStep";
|
|
60
|
+
blockStepSize: "all" | "blockStep";
|
|
61
|
+
bookmarkLabel: "all";
|
|
62
|
+
bookmarkLevel: "all";
|
|
63
|
+
bookmarkState: "all";
|
|
64
|
+
border: "all" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderImage" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
65
|
+
borderBlock: "all" | "border" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
66
|
+
borderBlockClip: "all" | "borderBlockEndClip" | "borderBlockStartClip" | "borderBottomClip" | "borderClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
67
|
+
borderBlockColor: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
68
|
+
borderBlockEnd: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
69
|
+
borderBlockEndClip: "all" | "borderBlockClip" | "borderBottomClip" | "borderClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
70
|
+
borderBlockEndColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
71
|
+
borderBlockEndRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
72
|
+
borderBlockEndStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockStyle" | "borderBottom" | "borderBottomStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
73
|
+
borderBlockEndWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockWidth" | "borderBottom" | "borderBottomWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
74
|
+
borderBlockStart: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
75
|
+
borderBlockStartClip: "all" | "borderBlockClip" | "borderBottomClip" | "borderClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
76
|
+
borderBlockStartColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockStart" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
77
|
+
borderBlockStartRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
78
|
+
borderBlockStartStyle: "all" | "border" | "borderBlock" | "borderBlockStart" | "borderBlockStyle" | "borderBottom" | "borderBottomStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
79
|
+
borderBlockStartWidth: "all" | "border" | "borderBlock" | "borderBlockStart" | "borderBlockWidth" | "borderBottom" | "borderBottomWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
80
|
+
borderBlockStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBottom" | "borderBottomStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
81
|
+
borderBlockWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBottom" | "borderBottomWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
82
|
+
borderBottom: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderStyle" | "borderWidth";
|
|
83
|
+
borderBottomClip: "all" | "borderBlockClip" | "borderBlockEndClip" | "borderBlockStartClip" | "borderClip" | "borderInlineClip" | "borderInlineEndClip" | "borderInlineStartClip";
|
|
84
|
+
borderBottomColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderBottom" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor";
|
|
85
|
+
borderBottomLeftRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerStartEnd" | "cornerStartStart";
|
|
86
|
+
borderBottomRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerStartStart";
|
|
87
|
+
borderBottomRightRadius: "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerRight" | "cornerStartEnd" | "cornerStartStart";
|
|
88
|
+
borderBottomStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBlockStyle" | "borderBottom" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderInlineStyle" | "borderStyle";
|
|
89
|
+
borderBottomWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBlockWidth" | "borderBottom" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderInlineWidth" | "borderWidth";
|
|
90
|
+
borderBoundary: "all";
|
|
91
|
+
borderClip: "all" | "borderBlockClip" | "borderBlockEndClip" | "borderBlockStartClip" | "borderBottomClip" | "borderInlineClip" | "borderInlineEndClip" | "borderInlineStartClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
92
|
+
borderCollapse: "all";
|
|
93
|
+
borderColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderBottom" | "borderBottomColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
94
|
+
borderEndEndRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerInlineEnd" | "cornerLeft" | "cornerRight" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
95
|
+
borderEndStartRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndStart" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
96
|
+
borderImage: "all" | "border" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth";
|
|
97
|
+
borderImageOutset: "all" | "border" | "borderImage";
|
|
98
|
+
borderImageRepeat: "all" | "border" | "borderImage";
|
|
99
|
+
borderImageSlice: "all" | "border" | "borderImage";
|
|
100
|
+
borderImageSource: "all" | "border" | "borderImage";
|
|
101
|
+
borderImageWidth: "all" | "border" | "borderImage";
|
|
102
|
+
borderInline: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
103
|
+
borderInlineClip: "all" | "borderBottomClip" | "borderClip" | "borderInlineEndClip" | "borderInlineStartClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
104
|
+
borderInlineColor: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderInline" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
105
|
+
borderInlineEnd: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
106
|
+
borderInlineEndClip: "all" | "borderBottomClip" | "borderClip" | "borderInlineClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
107
|
+
borderInlineEndColor: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
108
|
+
borderInlineEndRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerInlineEnd" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
109
|
+
borderInlineEndStyle: "all" | "border" | "borderBottom" | "borderBottomStyle" | "borderInline" | "borderInlineEnd" | "borderInlineStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
110
|
+
borderInlineEndWidth: "all" | "border" | "borderBottom" | "borderBottomWidth" | "borderInline" | "borderInlineEnd" | "borderInlineWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
111
|
+
borderInlineStart: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderBottomStyle" | "borderBottomWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
112
|
+
borderInlineStartClip: "all" | "borderBottomClip" | "borderClip" | "borderInlineClip" | "borderLeftClip" | "borderRightClip" | "borderTopClip";
|
|
113
|
+
borderInlineStartColor: "all" | "border" | "borderBottom" | "borderBottomColor" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineStart" | "borderLeft" | "borderLeftColor" | "borderRight" | "borderRightColor" | "borderTop" | "borderTopColor";
|
|
114
|
+
borderInlineStartRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndStart" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
115
|
+
borderInlineStartStyle: "all" | "border" | "borderBottom" | "borderBottomStyle" | "borderInline" | "borderInlineStart" | "borderInlineStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
116
|
+
borderInlineStartWidth: "all" | "border" | "borderBottom" | "borderBottomWidth" | "borderInline" | "borderInlineStart" | "borderInlineWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
117
|
+
borderInlineStyle: "all" | "border" | "borderBottom" | "borderBottomStyle" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderStyle" | "borderTop" | "borderTopStyle";
|
|
118
|
+
borderInlineWidth: "all" | "border" | "borderBottom" | "borderBottomWidth" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth" | "borderWidth";
|
|
119
|
+
borderLeft: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderStyle" | "borderWidth";
|
|
120
|
+
borderLeftClip: "all" | "borderBlockClip" | "borderBlockEndClip" | "borderBlockStartClip" | "borderClip" | "borderInlineClip" | "borderInlineEndClip" | "borderInlineStartClip";
|
|
121
|
+
borderLeftColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor" | "borderLeft";
|
|
122
|
+
borderLeftRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft";
|
|
123
|
+
borderLeftStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBlockStyle" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderInlineStyle" | "borderLeft" | "borderStyle";
|
|
124
|
+
borderLeftWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBlockWidth" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderInlineWidth" | "borderLeft" | "borderWidth";
|
|
125
|
+
borderLimit: "all";
|
|
126
|
+
borderRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
127
|
+
borderRight: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStyle" | "borderWidth";
|
|
128
|
+
borderRightClip: "all" | "borderBlockClip" | "borderBlockEndClip" | "borderBlockStartClip" | "borderClip" | "borderInlineClip" | "borderInlineEndClip" | "borderInlineStartClip";
|
|
129
|
+
borderRightColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor" | "borderRight";
|
|
130
|
+
borderRightRadius: "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopRight";
|
|
131
|
+
borderRightStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBlockStyle" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderInlineStyle" | "borderRight" | "borderStyle";
|
|
132
|
+
borderRightWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBlockWidth" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderInlineWidth" | "borderRight" | "borderWidth";
|
|
133
|
+
borderShape: "all";
|
|
134
|
+
borderSpacing: "all";
|
|
135
|
+
borderStartEndRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerInlineEnd" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
136
|
+
borderStartStartRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
137
|
+
borderStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBlockStyle" | "borderBottom" | "borderBottomStyle" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderInlineStyle" | "borderLeft" | "borderLeftStyle" | "borderRight" | "borderRightStyle" | "borderTop" | "borderTopStyle";
|
|
138
|
+
borderTop: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderStyle" | "borderTopColor" | "borderTopStyle" | "borderTopWidth" | "borderWidth";
|
|
139
|
+
borderTopClip: "all" | "borderBlockClip" | "borderBlockEndClip" | "borderBlockStartClip" | "borderClip" | "borderInlineClip" | "borderInlineEndClip" | "borderInlineStartClip";
|
|
140
|
+
borderTopColor: "all" | "border" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockEndColor" | "borderBlockStart" | "borderBlockStartColor" | "borderColor" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineEndColor" | "borderInlineStart" | "borderInlineStartColor" | "borderTop";
|
|
141
|
+
borderTopLeftRadius: "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft";
|
|
142
|
+
borderTopRadius: "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
143
|
+
borderTopRightRadius: "WebkitBorderRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopRight";
|
|
144
|
+
borderTopStyle: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndStyle" | "borderBlockStart" | "borderBlockStartStyle" | "borderBlockStyle" | "borderInline" | "borderInlineEnd" | "borderInlineEndStyle" | "borderInlineStart" | "borderInlineStartStyle" | "borderInlineStyle" | "borderStyle" | "borderTop";
|
|
145
|
+
borderTopWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBlockWidth" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderInlineWidth" | "borderTop" | "borderWidth";
|
|
146
|
+
borderWidth: "all" | "border" | "borderBlock" | "borderBlockEnd" | "borderBlockEndWidth" | "borderBlockStart" | "borderBlockStartWidth" | "borderBlockWidth" | "borderBottom" | "borderBottomWidth" | "borderInline" | "borderInlineEnd" | "borderInlineEndWidth" | "borderInlineStart" | "borderInlineStartWidth" | "borderInlineWidth" | "borderLeft" | "borderLeftWidth" | "borderRight" | "borderRightWidth" | "borderTop" | "borderTopWidth";
|
|
147
|
+
bottom: "all" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart";
|
|
148
|
+
boxDecorationBreak: "all";
|
|
149
|
+
boxShadow: "WebkitBoxShadow" | "all" | "boxShadowBlur" | "boxShadowColor" | "boxShadowOffset" | "boxShadowPosition" | "boxShadowSpread";
|
|
150
|
+
boxShadowBlur: "WebkitBoxShadow" | "all" | "boxShadow";
|
|
151
|
+
boxShadowColor: "WebkitBoxShadow" | "all" | "boxShadow";
|
|
152
|
+
boxShadowOffset: "WebkitBoxShadow" | "all" | "boxShadow";
|
|
153
|
+
boxShadowPosition: "WebkitBoxShadow" | "all" | "boxShadow";
|
|
154
|
+
boxShadowSpread: "WebkitBoxShadow" | "all" | "boxShadow";
|
|
155
|
+
boxSizing: "WebkitBoxSizing" | "all";
|
|
156
|
+
boxSnap: "all";
|
|
157
|
+
breakAfter: "all";
|
|
158
|
+
breakBefore: "all";
|
|
159
|
+
breakInside: "all";
|
|
160
|
+
captionSide: "all";
|
|
161
|
+
caret: "all" | "caretAnimation" | "caretColor" | "caretShape";
|
|
162
|
+
caretAnimation: "all" | "caret";
|
|
163
|
+
caretColor: "all" | "caret";
|
|
164
|
+
caretShape: "all" | "caret";
|
|
165
|
+
clear: "all";
|
|
166
|
+
clip: "all";
|
|
167
|
+
clipPath: "all";
|
|
168
|
+
clipRule: "all";
|
|
169
|
+
color: "all";
|
|
170
|
+
colorAdjust: "all" | "printColorAdjust";
|
|
171
|
+
colorInterpolation: "all";
|
|
172
|
+
colorInterpolationFilters: "all";
|
|
173
|
+
colorScheme: "all";
|
|
174
|
+
columnCount: "all" | "columns";
|
|
175
|
+
columnFill: "all";
|
|
176
|
+
columnGap: "all" | "gap" | "gridColumnGap" | "gridGap";
|
|
177
|
+
columnHeight: "all" | "columns";
|
|
178
|
+
columnRule: "all" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "rule" | "ruleColor" | "ruleStyle" | "ruleWidth";
|
|
179
|
+
columnRuleBreak: "all" | "ruleBreak";
|
|
180
|
+
columnRuleColor: "all" | "columnRule" | "rule" | "ruleColor";
|
|
181
|
+
columnRuleInset: "all" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetCapStart" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetCap" | "ruleInsetEnd" | "ruleInsetJunction" | "ruleInsetStart";
|
|
182
|
+
columnRuleInsetCap: "all" | "columnRuleInset" | "columnRuleInsetCapEnd" | "columnRuleInsetCapStart" | "columnRuleInsetEnd" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetCap" | "ruleInsetEnd" | "ruleInsetStart";
|
|
183
|
+
columnRuleInsetCapEnd: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetEnd" | "ruleInset" | "ruleInsetCap" | "ruleInsetEnd";
|
|
184
|
+
columnRuleInsetCapStart: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetCap" | "ruleInsetStart";
|
|
185
|
+
columnRuleInsetEnd: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "ruleInset" | "ruleInsetCap" | "ruleInsetEnd" | "ruleInsetJunction";
|
|
186
|
+
columnRuleInsetJunction: "all" | "columnRuleInset" | "columnRuleInsetEnd" | "columnRuleInsetJunctionEnd" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetJunction" | "ruleInsetStart";
|
|
187
|
+
columnRuleInsetJunctionEnd: "all" | "columnRuleInset" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "ruleInset" | "ruleInsetEnd" | "ruleInsetJunction";
|
|
188
|
+
columnRuleInsetJunctionStart: "all" | "columnRuleInset" | "columnRuleInsetJunction" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetJunction" | "ruleInsetStart";
|
|
189
|
+
columnRuleInsetStart: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapStart" | "columnRuleInsetJunction" | "columnRuleInsetJunctionStart" | "ruleInset" | "ruleInsetCap" | "ruleInsetJunction" | "ruleInsetStart";
|
|
190
|
+
columnRuleStyle: "all" | "columnRule" | "rule" | "ruleStyle";
|
|
191
|
+
columnRuleVisibilityItems: "all" | "ruleVisibilityItems";
|
|
192
|
+
columnRuleWidth: "all" | "columnRule" | "rule" | "ruleWidth";
|
|
193
|
+
columns: "all" | "columnCount" | "columnHeight" | "columnWidth";
|
|
194
|
+
columnSpan: "all";
|
|
195
|
+
columnWidth: "all" | "columns";
|
|
196
|
+
columnWrap: "all";
|
|
197
|
+
contain: "all";
|
|
198
|
+
container: "all" | "containerName" | "containerType";
|
|
199
|
+
containerName: "all" | "container";
|
|
200
|
+
containerType: "all" | "container";
|
|
201
|
+
containIntrinsicBlockSize: "all" | "containIntrinsicHeight" | "containIntrinsicSize" | "containIntrinsicWidth";
|
|
202
|
+
containIntrinsicHeight: "all" | "containIntrinsicBlockSize" | "containIntrinsicInlineSize" | "containIntrinsicSize";
|
|
203
|
+
containIntrinsicInlineSize: "all" | "containIntrinsicHeight" | "containIntrinsicSize" | "containIntrinsicWidth";
|
|
204
|
+
containIntrinsicSize: "all" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth";
|
|
205
|
+
containIntrinsicWidth: "all" | "containIntrinsicBlockSize" | "containIntrinsicInlineSize" | "containIntrinsicSize";
|
|
206
|
+
content: "all";
|
|
207
|
+
contentVisibility: "all";
|
|
208
|
+
continue: "WebkitLineClamp" | "all" | "lineClamp";
|
|
209
|
+
copyInto: "all";
|
|
210
|
+
corner: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
211
|
+
cornerBlockEnd: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEndShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
212
|
+
cornerBlockEndShape: "all" | "corner" | "cornerBlockEnd" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
213
|
+
cornerBlockStart: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
214
|
+
cornerBlockStartShape: "all" | "corner" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
215
|
+
cornerBottom: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
216
|
+
cornerBottomLeft: "WebkitBorderBottomLeftRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeftShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
217
|
+
cornerBottomLeftShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
218
|
+
cornerBottomRight: "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
219
|
+
cornerBottomRightShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomRight" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
220
|
+
cornerBottomShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape";
|
|
221
|
+
cornerEndEnd: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderInlineEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEndShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
222
|
+
cornerEndEndShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
223
|
+
cornerEndStart: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndStartRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndStartShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
224
|
+
cornerEndStartShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndStart" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
225
|
+
cornerInlineEnd: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderInlineEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerInlineEndShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
226
|
+
cornerInlineEndShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerInlineEnd" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
227
|
+
cornerInlineStart: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndStartRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
228
|
+
cornerInlineStartShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineStart" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
229
|
+
cornerLeft: "WebkitBorderBottomLeftRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeftShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopShape";
|
|
230
|
+
cornerLeftShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopShape";
|
|
231
|
+
cornerRight: "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
232
|
+
cornerRightShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRight" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
233
|
+
cornerShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
234
|
+
cornerStartEnd: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineEndRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEndShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
235
|
+
cornerStartEndShape: "all" | "corner" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
236
|
+
cornerStartStart: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
237
|
+
cornerStartStartShape: "all" | "corner" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomLeftShape" | "cornerBottomRight" | "cornerBottomRightShape" | "cornerBottomShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
238
|
+
cornerTop: "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape" | "cornerTopShape";
|
|
239
|
+
cornerTopLeft: "WebkitBorderRadius" | "WebkitBorderTopLeftRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeftShape" | "cornerTopShape";
|
|
240
|
+
cornerTopLeftShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopShape";
|
|
241
|
+
cornerTopRight: "WebkitBorderRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopRightShape" | "cornerTopShape";
|
|
242
|
+
cornerTopRightShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopRight" | "cornerTopShape";
|
|
243
|
+
cornerTopShape: "all" | "corner" | "cornerBlockEnd" | "cornerBlockEndShape" | "cornerBlockStart" | "cornerBlockStartShape" | "cornerEndEnd" | "cornerEndEndShape" | "cornerEndStart" | "cornerEndStartShape" | "cornerInlineEnd" | "cornerInlineEndShape" | "cornerInlineStart" | "cornerInlineStartShape" | "cornerLeft" | "cornerLeftShape" | "cornerRight" | "cornerRightShape" | "cornerShape" | "cornerStartEnd" | "cornerStartEndShape" | "cornerStartStart" | "cornerStartStartShape" | "cornerTop" | "cornerTopLeft" | "cornerTopLeftShape" | "cornerTopRight" | "cornerTopRightShape";
|
|
244
|
+
counterIncrement: "all";
|
|
245
|
+
counterReset: "all";
|
|
246
|
+
counterSet: "all";
|
|
247
|
+
cue: "all" | "cueAfter" | "cueBefore";
|
|
248
|
+
cueAfter: "all" | "cue";
|
|
249
|
+
cueBefore: "all" | "cue";
|
|
250
|
+
cursor: "all";
|
|
251
|
+
cx: "all";
|
|
252
|
+
cy: "all";
|
|
253
|
+
d: "all";
|
|
254
|
+
direction: never;
|
|
255
|
+
display: "all";
|
|
256
|
+
dominantBaseline: "all";
|
|
257
|
+
dynamicRangeLimit: "all";
|
|
258
|
+
emptyCells: "all";
|
|
259
|
+
eventTrigger: "all";
|
|
260
|
+
eventTriggerName: "all";
|
|
261
|
+
eventTriggerSource: "all";
|
|
262
|
+
fieldSizing: "all";
|
|
263
|
+
fill: "all";
|
|
264
|
+
fillBreak: "all";
|
|
265
|
+
fillColor: "all";
|
|
266
|
+
fillImage: "all";
|
|
267
|
+
fillOpacity: "all";
|
|
268
|
+
fillOrigin: "all";
|
|
269
|
+
fillPosition: "all";
|
|
270
|
+
fillRepeat: "all";
|
|
271
|
+
fillRule: "all";
|
|
272
|
+
fillSize: "all";
|
|
273
|
+
filter: "WebkitFilter" | "all";
|
|
274
|
+
flex: "WebkitFlex" | "WebkitFlexBasis" | "WebkitFlexGrow" | "WebkitFlexShrink" | "all" | "flexBasis" | "flexGrow" | "flexShrink";
|
|
275
|
+
flexBasis: "WebkitFlex" | "WebkitFlexBasis" | "all" | "flex";
|
|
276
|
+
flexDirection: "WebkitFlexDirection" | "WebkitFlexFlow" | "all" | "flexFlow";
|
|
277
|
+
flexFlow: "WebkitFlexDirection" | "WebkitFlexFlow" | "WebkitFlexWrap" | "all" | "flexDirection" | "flexWrap";
|
|
278
|
+
flexGrow: "WebkitFlex" | "WebkitFlexGrow" | "all" | "flex";
|
|
279
|
+
flexLineCount: "all";
|
|
280
|
+
flexShrink: "WebkitFlex" | "WebkitFlexShrink" | "all" | "flex";
|
|
281
|
+
flexWrap: "WebkitFlexFlow" | "WebkitFlexWrap" | "all" | "flexFlow";
|
|
282
|
+
float: "all";
|
|
283
|
+
floatDefer: "all";
|
|
284
|
+
floatOffset: "all";
|
|
285
|
+
floatReference: "all";
|
|
286
|
+
floodColor: "all";
|
|
287
|
+
floodOpacity: "all";
|
|
288
|
+
flowFrom: "all";
|
|
289
|
+
flowInto: "all";
|
|
290
|
+
flowTolerance: "all";
|
|
291
|
+
font: "all" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "fontWidth" | "lineHeight";
|
|
292
|
+
fontFamily: "all" | "font";
|
|
293
|
+
fontFeatureSettings: "all" | "font";
|
|
294
|
+
fontKerning: "all" | "font";
|
|
295
|
+
fontLanguageOverride: "all" | "font";
|
|
296
|
+
fontOpticalSizing: "all" | "font";
|
|
297
|
+
fontPalette: "all";
|
|
298
|
+
fontSize: "all" | "font";
|
|
299
|
+
fontSizeAdjust: "all" | "font";
|
|
300
|
+
fontStretch: "all" | "font" | "fontWidth";
|
|
301
|
+
fontStyle: "all" | "font";
|
|
302
|
+
fontSynthesis: "all" | "fontSynthesisSmallCaps" | "fontSynthesisStyle" | "fontSynthesisWeight";
|
|
303
|
+
fontSynthesisPosition: "all";
|
|
304
|
+
fontSynthesisSmallCaps: "all" | "fontSynthesis";
|
|
305
|
+
fontSynthesisStyle: "all" | "fontSynthesis";
|
|
306
|
+
fontSynthesisWeight: "all" | "fontSynthesis";
|
|
307
|
+
fontVariant: "all" | "font" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition";
|
|
308
|
+
fontVariantAlternates: "all" | "font" | "fontVariant";
|
|
309
|
+
fontVariantCaps: "all" | "font" | "fontVariant";
|
|
310
|
+
fontVariantEastAsian: "all" | "font" | "fontVariant";
|
|
311
|
+
fontVariantEmoji: "all" | "font" | "fontVariant";
|
|
312
|
+
fontVariantLigatures: "all" | "font" | "fontVariant";
|
|
313
|
+
fontVariantNumeric: "all" | "font" | "fontVariant";
|
|
314
|
+
fontVariantPosition: "all" | "font" | "fontVariant";
|
|
315
|
+
fontVariationSettings: "all" | "font";
|
|
316
|
+
fontWeight: "all" | "font";
|
|
317
|
+
fontWidth: "all" | "font" | "fontStretch";
|
|
318
|
+
footnoteDisplay: "all";
|
|
319
|
+
footnotePolicy: "all";
|
|
320
|
+
forcedColorAdjust: "all";
|
|
321
|
+
frameSizing: "all";
|
|
322
|
+
gap: "all" | "columnGap" | "gridColumnGap" | "gridGap" | "gridRowGap" | "rowGap";
|
|
323
|
+
glyphOrientationVertical: "all";
|
|
324
|
+
grid: "all" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplate" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows";
|
|
325
|
+
gridArea: "all" | "gridColumn" | "gridColumnEnd" | "gridColumnStart" | "gridRow" | "gridRowEnd" | "gridRowStart";
|
|
326
|
+
gridAutoColumns: "all" | "grid";
|
|
327
|
+
gridAutoFlow: "all" | "grid";
|
|
328
|
+
gridAutoRows: "all" | "grid";
|
|
329
|
+
gridColumn: "all" | "gridArea" | "gridColumnEnd" | "gridColumnStart";
|
|
330
|
+
gridColumnEnd: "all" | "gridArea" | "gridColumn";
|
|
331
|
+
gridColumnGap: "all" | "columnGap" | "gap" | "gridGap";
|
|
332
|
+
gridColumnStart: "all" | "gridArea" | "gridColumn";
|
|
333
|
+
gridGap: "all" | "columnGap" | "gap" | "gridColumnGap" | "gridRowGap" | "rowGap";
|
|
334
|
+
gridRow: "all" | "gridArea" | "gridRowEnd" | "gridRowStart";
|
|
335
|
+
gridRowEnd: "all" | "gridArea" | "gridRow";
|
|
336
|
+
gridRowGap: "all" | "gap" | "gridGap" | "rowGap";
|
|
337
|
+
gridRowStart: "all" | "gridArea" | "gridRow";
|
|
338
|
+
gridTemplate: "all" | "grid" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows";
|
|
339
|
+
gridTemplateAreas: "all" | "grid" | "gridTemplate";
|
|
340
|
+
gridTemplateColumns: "all" | "grid" | "gridTemplate";
|
|
341
|
+
gridTemplateRows: "all" | "grid" | "gridTemplate";
|
|
342
|
+
hangingPunctuation: "all";
|
|
343
|
+
height: "all" | "blockSize" | "inlineSize";
|
|
344
|
+
hyphenateCharacter: "all";
|
|
345
|
+
hyphenateLimitChars: "all";
|
|
346
|
+
hyphenateLimitLast: "all";
|
|
347
|
+
hyphenateLimitLines: "all";
|
|
348
|
+
hyphenateLimitZone: "all";
|
|
349
|
+
hyphens: "all";
|
|
350
|
+
imageAnimation: "all";
|
|
351
|
+
imageOrientation: "all";
|
|
352
|
+
imageRendering: "all";
|
|
353
|
+
imageResolution: "all";
|
|
354
|
+
initialLetter: "all";
|
|
355
|
+
initialLetterAlign: "all";
|
|
356
|
+
initialLetterWrap: "all";
|
|
357
|
+
inlineSize: "all" | "height" | "width";
|
|
358
|
+
inlineSizing: "all";
|
|
359
|
+
inputSecurity: "all";
|
|
360
|
+
inset: "all" | "bottom" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart" | "left" | "right" | "top";
|
|
361
|
+
insetBlock: "all" | "bottom" | "inset" | "insetBlockEnd" | "insetBlockStart" | "left" | "right" | "top";
|
|
362
|
+
insetBlockEnd: "all" | "bottom" | "inset" | "insetBlock" | "left" | "right" | "top";
|
|
363
|
+
insetBlockStart: "all" | "bottom" | "inset" | "insetBlock" | "left" | "right" | "top";
|
|
364
|
+
insetInline: "all" | "bottom" | "inset" | "insetInlineEnd" | "insetInlineStart" | "left" | "right" | "top";
|
|
365
|
+
insetInlineEnd: "all" | "bottom" | "inset" | "insetInline" | "left" | "right" | "top";
|
|
366
|
+
insetInlineStart: "all" | "bottom" | "inset" | "insetInline" | "left" | "right" | "top";
|
|
367
|
+
interactivity: "all";
|
|
368
|
+
interestDelay: "all" | "interestDelayEnd" | "interestDelayStart";
|
|
369
|
+
interestDelayEnd: "all" | "interestDelay";
|
|
370
|
+
interestDelayStart: "all" | "interestDelay";
|
|
371
|
+
interpolateSize: "all";
|
|
372
|
+
isolation: "all";
|
|
373
|
+
justifyContent: "WebkitJustifyContent" | "all" | "placeContent";
|
|
374
|
+
justifyItems: "all" | "placeItems";
|
|
375
|
+
justifySelf: "all" | "placeSelf";
|
|
376
|
+
left: "all" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart";
|
|
377
|
+
letterSpacing: "all";
|
|
378
|
+
lightingColor: "all";
|
|
379
|
+
lineBreak: "all";
|
|
380
|
+
lineClamp: "WebkitLineClamp" | "all" | "blockEllipsis" | "continue" | "maxLines";
|
|
381
|
+
lineFitEdge: "all";
|
|
382
|
+
lineGrid: "all";
|
|
383
|
+
lineHeight: "all" | "font";
|
|
384
|
+
lineHeightStep: "all";
|
|
385
|
+
linePadding: "all";
|
|
386
|
+
lineSnap: "all";
|
|
387
|
+
linkParameters: "all";
|
|
388
|
+
listStyle: "all" | "listStyleImage" | "listStylePosition" | "listStyleType";
|
|
389
|
+
listStyleImage: "all" | "listStyle";
|
|
390
|
+
listStylePosition: "all" | "listStyle";
|
|
391
|
+
listStyleType: "all" | "listStyle";
|
|
392
|
+
margin: "all" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInline" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop";
|
|
393
|
+
marginBlock: "all" | "margin" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop";
|
|
394
|
+
marginBlockEnd: "all" | "margin" | "marginBlock" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop";
|
|
395
|
+
marginBlockStart: "all" | "margin" | "marginBlock" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop";
|
|
396
|
+
marginBottom: "all" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "marginInlineEnd" | "marginInlineStart";
|
|
397
|
+
marginBreak: "all";
|
|
398
|
+
marginInline: "all" | "margin" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop";
|
|
399
|
+
marginInlineEnd: "all" | "margin" | "marginBottom" | "marginInline" | "marginLeft" | "marginRight" | "marginTop";
|
|
400
|
+
marginInlineStart: "all" | "margin" | "marginBottom" | "marginInline" | "marginLeft" | "marginRight" | "marginTop";
|
|
401
|
+
marginLeft: "all" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "marginInlineEnd" | "marginInlineStart";
|
|
402
|
+
marginRight: "all" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "marginInlineEnd" | "marginInlineStart";
|
|
403
|
+
marginTop: "all" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "marginInlineEnd" | "marginInlineStart";
|
|
404
|
+
marginTrim: "all";
|
|
405
|
+
marker: "all" | "markerEnd" | "markerMid" | "markerStart";
|
|
406
|
+
markerEnd: "all" | "marker";
|
|
407
|
+
markerMid: "all" | "marker";
|
|
408
|
+
markerSide: "all";
|
|
409
|
+
markerStart: "all" | "marker";
|
|
410
|
+
mask: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskRepeat" | "WebkitMaskSize" | "all" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize";
|
|
411
|
+
maskBorder: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "all" | "mask" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth";
|
|
412
|
+
maskBorderMode: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder";
|
|
413
|
+
maskBorderOutset: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageOutset" | "all" | "mask" | "maskBorder";
|
|
414
|
+
maskBorderRepeat: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageRepeat" | "all" | "mask" | "maskBorder";
|
|
415
|
+
maskBorderSlice: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageSlice" | "all" | "mask" | "maskBorder";
|
|
416
|
+
maskBorderSource: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageSource" | "all" | "mask" | "maskBorder";
|
|
417
|
+
maskBorderWidth: "WebkitMask" | "WebkitMaskBoxImage" | "WebkitMaskBoxImageWidth" | "all" | "mask" | "maskBorder";
|
|
418
|
+
maskClip: "WebkitMask" | "WebkitMaskClip" | "all" | "mask";
|
|
419
|
+
maskComposite: "WebkitMask" | "WebkitMaskComposite" | "all" | "mask";
|
|
420
|
+
maskImage: "WebkitMask" | "WebkitMaskImage" | "all" | "mask";
|
|
421
|
+
maskMode: "WebkitMask" | "all" | "mask";
|
|
422
|
+
maskOrigin: "WebkitMask" | "WebkitMaskOrigin" | "all" | "mask";
|
|
423
|
+
maskPosition: "WebkitMask" | "WebkitMaskPosition" | "all" | "mask";
|
|
424
|
+
maskRepeat: "WebkitMask" | "WebkitMaskRepeat" | "all" | "mask";
|
|
425
|
+
maskSize: "WebkitMask" | "WebkitMaskSize" | "all" | "mask";
|
|
426
|
+
maskType: "all";
|
|
427
|
+
mathDepth: "all";
|
|
428
|
+
mathShift: "all";
|
|
429
|
+
mathStyle: "all";
|
|
430
|
+
maxBlockSize: "all" | "maxHeight" | "maxWidth";
|
|
431
|
+
maxHeight: "all" | "maxBlockSize" | "maxInlineSize";
|
|
432
|
+
maxInlineSize: "all" | "maxHeight" | "maxWidth";
|
|
433
|
+
maxLines: "WebkitLineClamp" | "all" | "lineClamp";
|
|
434
|
+
maxWidth: "all" | "maxBlockSize" | "maxInlineSize";
|
|
435
|
+
minBlockSize: "all" | "minHeight" | "minWidth";
|
|
436
|
+
minHeight: "all" | "minBlockSize" | "minInlineSize";
|
|
437
|
+
minInlineSize: "all" | "minHeight" | "minWidth";
|
|
438
|
+
minIntrinsicSizing: "all";
|
|
439
|
+
minWidth: "all" | "minBlockSize" | "minInlineSize";
|
|
440
|
+
mixBlendMode: "all";
|
|
441
|
+
navDown: "all";
|
|
442
|
+
navLeft: "all";
|
|
443
|
+
navRight: "all";
|
|
444
|
+
navUp: "all";
|
|
445
|
+
objectFit: "all";
|
|
446
|
+
objectPosition: "all";
|
|
447
|
+
objectViewBox: "all";
|
|
448
|
+
offset: "all" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate";
|
|
449
|
+
offsetAnchor: "all" | "offset";
|
|
450
|
+
offsetDistance: "all" | "offset";
|
|
451
|
+
offsetPath: "all" | "offset";
|
|
452
|
+
offsetPosition: "all" | "offset";
|
|
453
|
+
offsetRotate: "all" | "offset";
|
|
454
|
+
opacity: "all";
|
|
455
|
+
order: "WebkitOrder" | "all";
|
|
456
|
+
orphans: "all";
|
|
457
|
+
outline: "all" | "outlineColor" | "outlineStyle" | "outlineWidth";
|
|
458
|
+
outlineColor: "all" | "outline";
|
|
459
|
+
outlineOffset: "all";
|
|
460
|
+
outlineStyle: "all" | "outline";
|
|
461
|
+
outlineWidth: "all" | "outline";
|
|
462
|
+
overflow: "all" | "overflowBlock" | "overflowInline" | "overflowX" | "overflowY";
|
|
463
|
+
overflowAnchor: "all";
|
|
464
|
+
overflowBlock: "all" | "overflow" | "overflowX" | "overflowY";
|
|
465
|
+
overflowClipMargin: "all" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginBottom" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
466
|
+
overflowClipMarginBlock: "all" | "overflowClipMargin" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginBottom" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
467
|
+
overflowClipMarginBlockEnd: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBottom" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
468
|
+
overflowClipMarginBlockStart: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBottom" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
469
|
+
overflowClipMarginBottom: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart";
|
|
470
|
+
overflowClipMarginInline: "all" | "overflowClipMargin" | "overflowClipMarginBottom" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
471
|
+
overflowClipMarginInlineEnd: "all" | "overflowClipMargin" | "overflowClipMarginBottom" | "overflowClipMarginInline" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
472
|
+
overflowClipMarginInlineStart: "all" | "overflowClipMargin" | "overflowClipMarginBottom" | "overflowClipMarginInline" | "overflowClipMarginLeft" | "overflowClipMarginRight" | "overflowClipMarginTop";
|
|
473
|
+
overflowClipMarginLeft: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart";
|
|
474
|
+
overflowClipMarginRight: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart";
|
|
475
|
+
overflowClipMarginTop: "all" | "overflowClipMargin" | "overflowClipMarginBlock" | "overflowClipMarginBlockEnd" | "overflowClipMarginBlockStart" | "overflowClipMarginInline" | "overflowClipMarginInlineEnd" | "overflowClipMarginInlineStart";
|
|
476
|
+
overflowInline: "all" | "overflow" | "overflowX" | "overflowY";
|
|
477
|
+
overflowWrap: "all" | "wordWrap";
|
|
478
|
+
overflowX: "all" | "overflow" | "overflowBlock" | "overflowInline";
|
|
479
|
+
overflowY: "all" | "overflow" | "overflowBlock" | "overflowInline";
|
|
480
|
+
overlay: "all";
|
|
481
|
+
overscrollBehavior: "all" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY";
|
|
482
|
+
overscrollBehaviorBlock: "all" | "overscrollBehavior" | "overscrollBehaviorX" | "overscrollBehaviorY";
|
|
483
|
+
overscrollBehaviorInline: "all" | "overscrollBehavior" | "overscrollBehaviorX" | "overscrollBehaviorY";
|
|
484
|
+
overscrollBehaviorX: "all" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline";
|
|
485
|
+
overscrollBehaviorY: "all" | "overscrollBehavior" | "overscrollBehaviorBlock" | "overscrollBehaviorInline";
|
|
486
|
+
padding: "all" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
487
|
+
paddingBlock: "all" | "padding" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
488
|
+
paddingBlockEnd: "all" | "padding" | "paddingBlock" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
489
|
+
paddingBlockStart: "all" | "padding" | "paddingBlock" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
490
|
+
paddingBottom: "all" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart";
|
|
491
|
+
paddingInline: "all" | "padding" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
492
|
+
paddingInlineEnd: "all" | "padding" | "paddingBottom" | "paddingInline" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
493
|
+
paddingInlineStart: "all" | "padding" | "paddingBottom" | "paddingInline" | "paddingLeft" | "paddingRight" | "paddingTop";
|
|
494
|
+
paddingLeft: "all" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart";
|
|
495
|
+
paddingRight: "all" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart";
|
|
496
|
+
paddingTop: "all" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart";
|
|
497
|
+
page: "all";
|
|
498
|
+
pageBreakAfter: "all";
|
|
499
|
+
pageBreakBefore: "all";
|
|
500
|
+
pageBreakInside: "all";
|
|
501
|
+
paintOrder: "all";
|
|
502
|
+
pathLength: "all";
|
|
503
|
+
pause: "all" | "pauseAfter" | "pauseBefore";
|
|
504
|
+
pauseAfter: "all" | "pause";
|
|
505
|
+
pauseBefore: "all" | "pause";
|
|
506
|
+
perspective: "WebkitPerspective" | "all";
|
|
507
|
+
perspectiveOrigin: "WebkitPerspectiveOrigin" | "all";
|
|
508
|
+
placeContent: "WebkitAlignContent" | "WebkitJustifyContent" | "alignContent" | "all" | "justifyContent";
|
|
509
|
+
placeItems: "WebkitAlignItems" | "alignItems" | "all" | "justifyItems";
|
|
510
|
+
placeSelf: "WebkitAlignSelf" | "alignSelf" | "all" | "justifySelf";
|
|
511
|
+
pointerEvents: "all";
|
|
512
|
+
pointerTimeline: "all" | "pointerTimelineAxis" | "pointerTimelineName";
|
|
513
|
+
pointerTimelineAxis: "all" | "pointerTimeline";
|
|
514
|
+
pointerTimelineName: "all" | "pointerTimeline";
|
|
515
|
+
position: "all";
|
|
516
|
+
positionAnchor: "all";
|
|
517
|
+
positionArea: "all";
|
|
518
|
+
positionTry: "all" | "positionTryFallbacks" | "positionTryOrder";
|
|
519
|
+
positionTryFallbacks: "all" | "positionTry";
|
|
520
|
+
positionTryOrder: "all" | "positionTry";
|
|
521
|
+
positionVisibility: "all";
|
|
522
|
+
printColorAdjust: "all" | "colorAdjust";
|
|
523
|
+
quotes: "all";
|
|
524
|
+
r: "all";
|
|
525
|
+
readingFlow: "all";
|
|
526
|
+
readingOrder: "all";
|
|
527
|
+
regionFragment: "all";
|
|
528
|
+
resize: "all";
|
|
529
|
+
rest: "all" | "restAfter" | "restBefore";
|
|
530
|
+
restAfter: "all" | "rest";
|
|
531
|
+
restBefore: "all" | "rest";
|
|
532
|
+
right: "all" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart";
|
|
533
|
+
rotate: "all";
|
|
534
|
+
rowGap: "all" | "gap" | "gridGap" | "gridRowGap";
|
|
535
|
+
rowRule: "all" | "rowRuleColor" | "rowRuleStyle" | "rowRuleWidth" | "rule" | "ruleColor" | "ruleStyle" | "ruleWidth";
|
|
536
|
+
rowRuleBreak: "all" | "ruleBreak";
|
|
537
|
+
rowRuleColor: "all" | "rowRule" | "rule" | "ruleColor";
|
|
538
|
+
rowRuleInset: "all" | "rowRuleInsetCap" | "rowRuleInsetCapEnd" | "rowRuleInsetCapStart" | "rowRuleInsetEnd" | "rowRuleInsetJunction" | "rowRuleInsetJunctionEnd" | "rowRuleInsetJunctionStart" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetStart";
|
|
539
|
+
rowRuleInsetCap: "all" | "rowRuleInset" | "rowRuleInsetCapEnd" | "rowRuleInsetCapStart" | "rowRuleInsetEnd" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetStart";
|
|
540
|
+
rowRuleInsetCapEnd: "all" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetEnd" | "ruleInset" | "ruleInsetEnd";
|
|
541
|
+
rowRuleInsetCapStart: "all" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetStart";
|
|
542
|
+
rowRuleInsetEnd: "all" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapEnd" | "rowRuleInsetJunction" | "rowRuleInsetJunctionEnd" | "ruleInset" | "ruleInsetEnd";
|
|
543
|
+
rowRuleInsetJunction: "all" | "rowRuleInset" | "rowRuleInsetEnd" | "rowRuleInsetJunctionEnd" | "rowRuleInsetJunctionStart" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetStart";
|
|
544
|
+
rowRuleInsetJunctionEnd: "all" | "rowRuleInset" | "rowRuleInsetEnd" | "rowRuleInsetJunction" | "ruleInset" | "ruleInsetEnd";
|
|
545
|
+
rowRuleInsetJunctionStart: "all" | "rowRuleInset" | "rowRuleInsetJunction" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetStart";
|
|
546
|
+
rowRuleInsetStart: "all" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapStart" | "rowRuleInsetJunction" | "rowRuleInsetJunctionStart" | "ruleInset" | "ruleInsetStart";
|
|
547
|
+
rowRuleStyle: "all" | "rowRule" | "rule" | "ruleStyle";
|
|
548
|
+
rowRuleVisibilityItems: "all";
|
|
549
|
+
rowRuleWidth: "all" | "rowRule" | "rule" | "ruleWidth";
|
|
550
|
+
rubyAlign: "all";
|
|
551
|
+
rubyMerge: "all";
|
|
552
|
+
rubyOverhang: "all";
|
|
553
|
+
rubyPosition: "all";
|
|
554
|
+
rule: "all" | "columnRule" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "rowRule" | "rowRuleColor" | "rowRuleStyle" | "rowRuleWidth" | "ruleColor" | "ruleStyle" | "ruleWidth";
|
|
555
|
+
ruleBreak: "all" | "columnRuleBreak" | "rowRuleBreak";
|
|
556
|
+
ruleColor: "all" | "columnRule" | "columnRuleColor" | "rowRule" | "rowRuleColor" | "rule";
|
|
557
|
+
ruleInset: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetCapStart" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapEnd" | "rowRuleInsetCapStart" | "rowRuleInsetEnd" | "rowRuleInsetJunction" | "rowRuleInsetJunctionEnd" | "rowRuleInsetJunctionStart" | "rowRuleInsetStart" | "ruleInsetCap" | "ruleInsetEnd" | "ruleInsetJunction" | "ruleInsetStart";
|
|
558
|
+
ruleInsetCap: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetCapStart" | "columnRuleInsetEnd" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetStart";
|
|
559
|
+
ruleInsetEnd: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapEnd" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapEnd" | "rowRuleInsetEnd" | "rowRuleInsetJunction" | "rowRuleInsetJunctionEnd" | "ruleInset" | "ruleInsetCap" | "ruleInsetJunction";
|
|
560
|
+
ruleInsetJunction: "all" | "columnRuleInset" | "columnRuleInsetEnd" | "columnRuleInsetJunction" | "columnRuleInsetJunctionEnd" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "ruleInset" | "ruleInsetEnd" | "ruleInsetStart";
|
|
561
|
+
ruleInsetStart: "all" | "columnRuleInset" | "columnRuleInsetCap" | "columnRuleInsetCapStart" | "columnRuleInsetJunction" | "columnRuleInsetJunctionStart" | "columnRuleInsetStart" | "rowRuleInset" | "rowRuleInsetCap" | "rowRuleInsetCapStart" | "rowRuleInsetJunction" | "rowRuleInsetJunctionStart" | "rowRuleInsetStart" | "ruleInset" | "ruleInsetCap" | "ruleInsetJunction";
|
|
562
|
+
ruleOverlap: "all";
|
|
563
|
+
ruleStyle: "all" | "columnRule" | "columnRuleStyle" | "rowRule" | "rowRuleStyle" | "rule";
|
|
564
|
+
ruleVisibilityItems: "all" | "columnRuleVisibilityItems";
|
|
565
|
+
ruleWidth: "all" | "columnRule" | "columnRuleWidth" | "rowRule" | "rowRuleWidth" | "rule";
|
|
566
|
+
rx: "all";
|
|
567
|
+
ry: "all";
|
|
568
|
+
scale: "all";
|
|
569
|
+
scrollAxisLock: "all";
|
|
570
|
+
scrollbarColor: "all";
|
|
571
|
+
scrollbarGutter: "all";
|
|
572
|
+
scrollbarWidth: "all";
|
|
573
|
+
scrollBehavior: "all";
|
|
574
|
+
scrollInitialTarget: "all";
|
|
575
|
+
scrollMargin: "all" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
576
|
+
scrollMarginBlock: "all" | "scrollMargin" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
577
|
+
scrollMarginBlockEnd: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBottom" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
578
|
+
scrollMarginBlockStart: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBottom" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
579
|
+
scrollMarginBottom: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart";
|
|
580
|
+
scrollMarginInline: "all" | "scrollMargin" | "scrollMarginBottom" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
581
|
+
scrollMarginInlineEnd: "all" | "scrollMargin" | "scrollMarginBottom" | "scrollMarginInline" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
582
|
+
scrollMarginInlineStart: "all" | "scrollMargin" | "scrollMarginBottom" | "scrollMarginInline" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop";
|
|
583
|
+
scrollMarginLeft: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart";
|
|
584
|
+
scrollMarginRight: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart";
|
|
585
|
+
scrollMarginTop: "all" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginInlineEnd" | "scrollMarginInlineStart";
|
|
586
|
+
scrollMarkerGroup: "all";
|
|
587
|
+
scrollPadding: "all" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
588
|
+
scrollPaddingBlock: "all" | "scrollPadding" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
589
|
+
scrollPaddingBlockEnd: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBottom" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
590
|
+
scrollPaddingBlockStart: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBottom" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
591
|
+
scrollPaddingBottom: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart";
|
|
592
|
+
scrollPaddingInline: "all" | "scrollPadding" | "scrollPaddingBottom" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
593
|
+
scrollPaddingInlineEnd: "all" | "scrollPadding" | "scrollPaddingBottom" | "scrollPaddingInline" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
594
|
+
scrollPaddingInlineStart: "all" | "scrollPadding" | "scrollPaddingBottom" | "scrollPaddingInline" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop";
|
|
595
|
+
scrollPaddingLeft: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart";
|
|
596
|
+
scrollPaddingRight: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart";
|
|
597
|
+
scrollPaddingTop: "all" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingInline" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart";
|
|
598
|
+
scrollSnapAlign: "all";
|
|
599
|
+
scrollSnapStop: "all";
|
|
600
|
+
scrollSnapType: "all";
|
|
601
|
+
scrollTargetGroup: "all";
|
|
602
|
+
scrollTimeline: "all" | "scrollTimelineAxis" | "scrollTimelineName";
|
|
603
|
+
scrollTimelineAxis: "all" | "scrollTimeline";
|
|
604
|
+
scrollTimelineName: "all" | "scrollTimeline";
|
|
605
|
+
shapeImageThreshold: "all";
|
|
606
|
+
shapeInside: "all";
|
|
607
|
+
shapeMargin: "all";
|
|
608
|
+
shapeOutside: "all";
|
|
609
|
+
shapePadding: "all";
|
|
610
|
+
shapeRendering: "all";
|
|
611
|
+
sliderOrientation: "all";
|
|
612
|
+
spatialNavigationAction: "all";
|
|
613
|
+
spatialNavigationContain: "all";
|
|
614
|
+
spatialNavigationFunction: "all";
|
|
615
|
+
speak: "all";
|
|
616
|
+
speakAs: "all";
|
|
617
|
+
stopColor: "all";
|
|
618
|
+
stopOpacity: "all";
|
|
619
|
+
stringSet: "all";
|
|
620
|
+
stroke: "all";
|
|
621
|
+
strokeAlign: "all";
|
|
622
|
+
strokeAlignment: "all";
|
|
623
|
+
strokeBreak: "all";
|
|
624
|
+
strokeColor: "all";
|
|
625
|
+
strokeDashadjust: "all";
|
|
626
|
+
strokeDasharray: "all";
|
|
627
|
+
strokeDashcorner: "all";
|
|
628
|
+
strokeDashCorner: "all";
|
|
629
|
+
strokeDashJustify: "all";
|
|
630
|
+
strokeDashoffset: "all";
|
|
631
|
+
strokeImage: "all";
|
|
632
|
+
strokeLinecap: "all";
|
|
633
|
+
strokeLinejoin: "all";
|
|
634
|
+
strokeMiterlimit: "all";
|
|
635
|
+
strokeOpacity: "all";
|
|
636
|
+
strokeOrigin: "all";
|
|
637
|
+
strokePosition: "all";
|
|
638
|
+
strokeRepeat: "all";
|
|
639
|
+
strokeSize: "all";
|
|
640
|
+
strokeWidth: "all";
|
|
641
|
+
tableLayout: "all";
|
|
642
|
+
tabSize: "all";
|
|
643
|
+
textAlign: "all" | "textAlignAll" | "textAlignLast";
|
|
644
|
+
textAlignAll: "all" | "textAlign";
|
|
645
|
+
textAlignLast: "all" | "textAlign";
|
|
646
|
+
textAnchor: "all";
|
|
647
|
+
textAutospace: "all" | "textSpacing";
|
|
648
|
+
textBox: "all";
|
|
649
|
+
textBoxEdge: "all";
|
|
650
|
+
textBoxTrim: "all";
|
|
651
|
+
textCombineUpright: "all";
|
|
652
|
+
textDecoration: "all" | "textDecorationColor" | "textDecorationLine" | "textDecorationStyle" | "textDecorationThickness";
|
|
653
|
+
textDecorationColor: "all" | "textDecoration";
|
|
654
|
+
textDecorationInset: "all";
|
|
655
|
+
textDecorationLine: "all" | "textDecoration";
|
|
656
|
+
textDecorationSkip: "all" | "textDecorationSkipBox" | "textDecorationSkipInk" | "textDecorationSkipSelf" | "textDecorationSkipSpaces";
|
|
657
|
+
textDecorationSkipBox: "all" | "textDecorationSkip";
|
|
658
|
+
textDecorationSkipInk: "all" | "textDecorationSkip";
|
|
659
|
+
textDecorationSkipSelf: "all" | "textDecorationSkip";
|
|
660
|
+
textDecorationSkipSpaces: "all" | "textDecorationSkip";
|
|
661
|
+
textDecorationStyle: "all" | "textDecoration";
|
|
662
|
+
textDecorationThickness: "all" | "textDecoration";
|
|
663
|
+
textEmphasis: "all" | "textEmphasisColor" | "textEmphasisStyle";
|
|
664
|
+
textEmphasisColor: "all" | "textEmphasis";
|
|
665
|
+
textEmphasisPosition: "all";
|
|
666
|
+
textEmphasisSkip: "all";
|
|
667
|
+
textEmphasisStyle: "all" | "textEmphasis";
|
|
668
|
+
textFit: "all";
|
|
669
|
+
textGroupAlign: "all";
|
|
670
|
+
textIndent: "all";
|
|
671
|
+
textJustify: "all";
|
|
672
|
+
textOrientation: "all";
|
|
673
|
+
textOverflow: "all";
|
|
674
|
+
textRendering: "all";
|
|
675
|
+
textShadow: "all";
|
|
676
|
+
textSizeAdjust: "WebkitTextSizeAdjust" | "all";
|
|
677
|
+
textSpacing: "all" | "textAutospace" | "textSpacingTrim";
|
|
678
|
+
textSpacingTrim: "all" | "textSpacing";
|
|
679
|
+
textTransform: "all";
|
|
680
|
+
textUnderlineOffset: "all";
|
|
681
|
+
textUnderlinePosition: "all";
|
|
682
|
+
textWrap: "all" | "textWrapMode" | "textWrapStyle" | "whiteSpace";
|
|
683
|
+
textWrapMode: "all" | "textWrap" | "whiteSpace";
|
|
684
|
+
textWrapStyle: "all" | "textWrap";
|
|
685
|
+
timelineScope: "all";
|
|
686
|
+
timelineTrigger: "all" | "timelineTriggerActivationRange" | "timelineTriggerActivationRangeEnd" | "timelineTriggerActivationRangeStart" | "timelineTriggerActiveRange" | "timelineTriggerActiveRangeEnd" | "timelineTriggerActiveRangeStart" | "timelineTriggerName" | "timelineTriggerSource";
|
|
687
|
+
timelineTriggerActivationRange: "all" | "timelineTrigger" | "timelineTriggerActivationRangeEnd" | "timelineTriggerActivationRangeStart";
|
|
688
|
+
timelineTriggerActivationRangeEnd: "all" | "timelineTrigger" | "timelineTriggerActivationRange";
|
|
689
|
+
timelineTriggerActivationRangeStart: "all" | "timelineTrigger" | "timelineTriggerActivationRange";
|
|
690
|
+
timelineTriggerActiveRange: "all" | "timelineTrigger" | "timelineTriggerActiveRangeEnd" | "timelineTriggerActiveRangeStart";
|
|
691
|
+
timelineTriggerActiveRangeEnd: "all" | "timelineTrigger" | "timelineTriggerActiveRange";
|
|
692
|
+
timelineTriggerActiveRangeStart: "all" | "timelineTrigger" | "timelineTriggerActiveRange";
|
|
693
|
+
timelineTriggerName: "all" | "timelineTrigger";
|
|
694
|
+
timelineTriggerSource: "all" | "timelineTrigger";
|
|
695
|
+
top: "all" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart";
|
|
696
|
+
touchAction: "all";
|
|
697
|
+
transform: "WebkitTransform" | "all";
|
|
698
|
+
transformBox: "all";
|
|
699
|
+
transformOrigin: "WebkitTransformOrigin" | "all";
|
|
700
|
+
transformStyle: "WebkitTransformStyle" | "all";
|
|
701
|
+
transition: "WebkitTransition" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "all" | "transitionBehavior" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction";
|
|
702
|
+
transitionBehavior: "WebkitTransition" | "all" | "transition";
|
|
703
|
+
transitionDelay: "WebkitTransition" | "WebkitTransitionDelay" | "all" | "transition";
|
|
704
|
+
transitionDuration: "WebkitTransition" | "WebkitTransitionDuration" | "all" | "transition";
|
|
705
|
+
transitionProperty: "WebkitTransition" | "WebkitTransitionProperty" | "all" | "transition";
|
|
706
|
+
transitionTimingFunction: "WebkitTransition" | "WebkitTransitionTimingFunction" | "all" | "transition";
|
|
707
|
+
translate: "all";
|
|
708
|
+
triggerScope: "all";
|
|
709
|
+
unicodeBidi: never;
|
|
710
|
+
userSelect: "all";
|
|
711
|
+
vectorEffect: "all";
|
|
712
|
+
verticalAlign: "alignmentBaseline" | "all" | "baselineShift" | "baselineSource";
|
|
713
|
+
viewTimeline: "all" | "viewTimelineAxis" | "viewTimelineName";
|
|
714
|
+
viewTimelineAxis: "all" | "viewTimeline";
|
|
715
|
+
viewTimelineInset: "all";
|
|
716
|
+
viewTimelineName: "all" | "viewTimeline";
|
|
717
|
+
viewTransitionClass: "all";
|
|
718
|
+
viewTransitionGroup: "all";
|
|
719
|
+
viewTransitionName: "all";
|
|
720
|
+
viewTransitionScope: "all";
|
|
721
|
+
visibility: "all";
|
|
722
|
+
voiceBalance: "all";
|
|
723
|
+
voiceDuration: "all";
|
|
724
|
+
voiceFamily: "all";
|
|
725
|
+
voicePitch: "all";
|
|
726
|
+
voiceRange: "all";
|
|
727
|
+
voiceRate: "all";
|
|
728
|
+
voiceStress: "all";
|
|
729
|
+
voiceVolume: "all";
|
|
730
|
+
WebkitAlignContent: "alignContent" | "all" | "placeContent";
|
|
731
|
+
WebkitAlignItems: "alignItems" | "all" | "placeItems";
|
|
732
|
+
WebkitAlignSelf: "alignSelf" | "all" | "placeSelf";
|
|
733
|
+
WebkitAnimation: "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "all" | "animation" | "animationDelay" | "animationDelayEnd" | "animationDelayStart" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationRange" | "animationRangeEnd" | "animationRangeStart" | "animationTimeline" | "animationTimingFunction" | "animationTrigger";
|
|
734
|
+
WebkitAnimationDelay: "WebkitAnimation" | "all" | "animation" | "animationDelay" | "animationDelayEnd" | "animationDelayStart";
|
|
735
|
+
WebkitAnimationDirection: "WebkitAnimation" | "all" | "animation" | "animationDirection";
|
|
736
|
+
WebkitAnimationDuration: "WebkitAnimation" | "all" | "animation" | "animationDuration";
|
|
737
|
+
WebkitAnimationFillMode: "WebkitAnimation" | "all" | "animation" | "animationFillMode";
|
|
738
|
+
WebkitAnimationIterationCount: "WebkitAnimation" | "all" | "animation" | "animationIterationCount";
|
|
739
|
+
WebkitAnimationName: "WebkitAnimation" | "all" | "animation" | "animationName";
|
|
740
|
+
WebkitAnimationPlayState: "WebkitAnimation" | "all" | "animation" | "animationPlayState";
|
|
741
|
+
WebkitAnimationTimingFunction: "WebkitAnimation" | "all" | "animation" | "animationTimingFunction";
|
|
742
|
+
WebkitAppearance: "all" | "appearance";
|
|
743
|
+
WebkitBackfaceVisibility: "all" | "backfaceVisibility";
|
|
744
|
+
WebkitBackgroundClip: "all" | "background" | "backgroundClip";
|
|
745
|
+
WebkitBackgroundOrigin: "all" | "background" | "backgroundOrigin";
|
|
746
|
+
WebkitBackgroundSize: "all" | "background" | "backgroundSize";
|
|
747
|
+
WebkitBorderBottomLeftRadius: "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerStartEnd" | "cornerStartStart";
|
|
748
|
+
WebkitBorderBottomRightRadius: "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerRight" | "cornerStartEnd" | "cornerStartStart";
|
|
749
|
+
WebkitBorderRadius: "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderBottomLeftRadius" | "borderBottomRadius" | "borderBottomRightRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerBottom" | "cornerBottomLeft" | "cornerBottomRight" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft" | "cornerTopRight";
|
|
750
|
+
WebkitBorderTopLeftRadius: "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderLeftRadius" | "borderRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopLeftRadius" | "borderTopRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerLeft" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopLeft";
|
|
751
|
+
WebkitBorderTopRightRadius: "WebkitBorderRadius" | "all" | "borderBlockEndRadius" | "borderBlockStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndRadius" | "borderInlineStartRadius" | "borderRadius" | "borderRightRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopRadius" | "borderTopRightRadius" | "corner" | "cornerBlockEnd" | "cornerBlockStart" | "cornerEndEnd" | "cornerEndStart" | "cornerInlineEnd" | "cornerInlineStart" | "cornerRight" | "cornerStartEnd" | "cornerStartStart" | "cornerTop" | "cornerTopRight";
|
|
752
|
+
WebkitBoxAlign: "all";
|
|
753
|
+
WebkitBoxFlex: "all";
|
|
754
|
+
WebkitBoxOrdinalGroup: "all";
|
|
755
|
+
WebkitBoxOrient: "all";
|
|
756
|
+
WebkitBoxPack: "all";
|
|
757
|
+
WebkitBoxShadow: "all" | "boxShadow" | "boxShadowBlur" | "boxShadowColor" | "boxShadowOffset" | "boxShadowPosition" | "boxShadowSpread";
|
|
758
|
+
WebkitBoxSizing: "all" | "boxSizing";
|
|
759
|
+
WebkitFilter: "all" | "filter";
|
|
760
|
+
WebkitFlex: "WebkitFlexBasis" | "WebkitFlexGrow" | "WebkitFlexShrink" | "all" | "flex" | "flexBasis" | "flexGrow" | "flexShrink";
|
|
761
|
+
WebkitFlexBasis: "WebkitFlex" | "all" | "flex" | "flexBasis";
|
|
762
|
+
WebkitFlexDirection: "WebkitFlexFlow" | "all" | "flexDirection" | "flexFlow";
|
|
763
|
+
WebkitFlexFlow: "WebkitFlexDirection" | "WebkitFlexWrap" | "all" | "flexDirection" | "flexFlow" | "flexWrap";
|
|
764
|
+
WebkitFlexGrow: "WebkitFlex" | "all" | "flex" | "flexGrow";
|
|
765
|
+
WebkitFlexShrink: "WebkitFlex" | "all" | "flex" | "flexShrink";
|
|
766
|
+
WebkitFlexWrap: "WebkitFlexFlow" | "all" | "flexFlow" | "flexWrap";
|
|
767
|
+
WebkitJustifyContent: "all" | "justifyContent" | "placeContent";
|
|
768
|
+
WebkitLineClamp: "all" | "blockEllipsis" | "continue" | "lineClamp" | "maxLines";
|
|
769
|
+
WebkitMask: "WebkitMaskBoxImage" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskRepeat" | "WebkitMaskSize" | "all" | "mask" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize";
|
|
770
|
+
WebkitMaskBoxImage: "WebkitMask" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "all" | "mask" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth";
|
|
771
|
+
WebkitMaskBoxImageOutset: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder" | "maskBorderOutset";
|
|
772
|
+
WebkitMaskBoxImageRepeat: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder" | "maskBorderRepeat";
|
|
773
|
+
WebkitMaskBoxImageSlice: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder" | "maskBorderSlice";
|
|
774
|
+
WebkitMaskBoxImageSource: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder" | "maskBorderSource";
|
|
775
|
+
WebkitMaskBoxImageWidth: "WebkitMask" | "WebkitMaskBoxImage" | "all" | "mask" | "maskBorder" | "maskBorderWidth";
|
|
776
|
+
WebkitMaskClip: "WebkitMask" | "all" | "mask" | "maskClip";
|
|
777
|
+
WebkitMaskComposite: "WebkitMask" | "all" | "mask" | "maskComposite";
|
|
778
|
+
WebkitMaskImage: "WebkitMask" | "all" | "mask" | "maskImage";
|
|
779
|
+
WebkitMaskOrigin: "WebkitMask" | "all" | "mask" | "maskOrigin";
|
|
780
|
+
WebkitMaskPosition: "WebkitMask" | "all" | "mask" | "maskPosition";
|
|
781
|
+
WebkitMaskRepeat: "WebkitMask" | "all" | "mask" | "maskRepeat";
|
|
782
|
+
WebkitMaskSize: "WebkitMask" | "all" | "mask" | "maskSize";
|
|
783
|
+
WebkitOrder: "all" | "order";
|
|
784
|
+
WebkitPerspective: "all" | "perspective";
|
|
785
|
+
WebkitPerspectiveOrigin: "all" | "perspectiveOrigin";
|
|
786
|
+
WebkitTextFillColor: "all";
|
|
787
|
+
WebkitTextSizeAdjust: "all" | "textSizeAdjust";
|
|
788
|
+
WebkitTextStroke: "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "all";
|
|
789
|
+
WebkitTextStrokeColor: "WebkitTextStroke" | "all";
|
|
790
|
+
WebkitTextStrokeWidth: "WebkitTextStroke" | "all";
|
|
791
|
+
WebkitTransform: "all" | "transform";
|
|
792
|
+
WebkitTransformOrigin: "all" | "transformOrigin";
|
|
793
|
+
WebkitTransformStyle: "all" | "transformStyle";
|
|
794
|
+
WebkitTransition: "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "all" | "transition" | "transitionBehavior" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction";
|
|
795
|
+
WebkitTransitionDelay: "WebkitTransition" | "all" | "transition" | "transitionDelay";
|
|
796
|
+
WebkitTransitionDuration: "WebkitTransition" | "all" | "transition" | "transitionDuration";
|
|
797
|
+
WebkitTransitionProperty: "WebkitTransition" | "all" | "transition" | "transitionProperty";
|
|
798
|
+
WebkitTransitionTimingFunction: "WebkitTransition" | "all" | "transition" | "transitionTimingFunction";
|
|
799
|
+
WebkitUserSelect: "all";
|
|
800
|
+
whiteSpace: "all" | "textWrap" | "textWrapMode" | "whiteSpaceCollapse";
|
|
801
|
+
whiteSpaceCollapse: "all" | "whiteSpace";
|
|
802
|
+
whiteSpaceTrim: "all";
|
|
803
|
+
widows: "all";
|
|
804
|
+
width: "all" | "blockSize" | "inlineSize";
|
|
805
|
+
willChange: "all";
|
|
806
|
+
windowDrag: "all";
|
|
807
|
+
wordBreak: "all";
|
|
808
|
+
wordSpaceTransform: "all";
|
|
809
|
+
wordSpacing: "all";
|
|
810
|
+
wordWrap: "all" | "overflowWrap";
|
|
811
|
+
wrapAfter: "all";
|
|
812
|
+
wrapBefore: "all";
|
|
813
|
+
wrapFlow: "all";
|
|
814
|
+
wrapInside: "all";
|
|
815
|
+
wrapThrough: "all";
|
|
816
|
+
writingMode: "all";
|
|
817
|
+
x: "all";
|
|
818
|
+
y: "all";
|
|
819
|
+
zIndex: "all";
|
|
820
|
+
zoom: "all";
|
|
821
|
+
};
|
package/types/index.d.ts
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* CSS Hooks for {@link https://react.dev | React}
|
|
3
3
|
*
|
|
4
4
|
* @packageDocumentation
|
|
5
5
|
*/
|
|
6
|
+
import type { CreateHooksFn } from "@css-hooks/core";
|
|
6
7
|
import type { CSSProperties } from "react";
|
|
8
|
+
import type { CSSPropertyConflicts } from "./css-property-conflicts.ts";
|
|
7
9
|
export type * from "@css-hooks/core";
|
|
8
10
|
/** @internal */
|
|
9
11
|
export declare function _stringifyValue(value: unknown, propertyName: string): string | null;
|
|
10
12
|
/**
|
|
11
13
|
* A {@link @css-hooks/core#CreateHooksFn} configured to use React's
|
|
12
|
-
* `CSSProperties` type and logic for converting CSS values into strings
|
|
14
|
+
* `CSSProperties` type and logic for converting CSS values into strings
|
|
13
15
|
*
|
|
14
16
|
* @public
|
|
15
17
|
*/
|
|
16
|
-
export declare const createHooks:
|
|
18
|
+
export declare const createHooks: CreateHooksFn<CSSProperties, CSSPropertyConflicts>;
|
|
17
19
|
/**
|
|
18
|
-
* Following code (c) Meta Platforms, Inc. and affiliates.
|
|
19
|
-
*
|
|
20
|
+
* Following code (c) Meta Platforms, Inc. and affiliates. Source modified to
|
|
21
|
+
* account for custom properties.
|
|
20
22
|
*/
|
|
21
23
|
/** @internal */
|
|
22
24
|
export declare const _unitlessNumbers: Set<string>;
|