@homebound/beam 3.47.1 → 3.47.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +80 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +4 -4
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +868 -2
- package/dist/index.d.ts +868 -2
- package/dist/index.js +127 -81
- package/dist/index.js.map +1 -1
- package/dist/truss.css +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4965,10 +4965,876 @@ type NavLinkProps = {
|
|
|
4965
4965
|
*/
|
|
4966
4966
|
iconOnly?: boolean;
|
|
4967
4967
|
onClick?: BeamButtonProps["onClick"];
|
|
4968
|
+
nested?: boolean;
|
|
4969
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
4970
|
+
__storyState?: {
|
|
4971
|
+
hovered?: boolean;
|
|
4972
|
+
focusVisible?: boolean;
|
|
4973
|
+
pressed?: boolean;
|
|
4974
|
+
};
|
|
4968
4975
|
} & BeamFocusableProps;
|
|
4969
4976
|
declare function NavLink(props: NavLinkProps): JSX.Element;
|
|
4970
|
-
declare function getNavLinkStyles(variant: NavLinkVariant): {
|
|
4971
|
-
baseStyles:
|
|
4977
|
+
declare function getNavLinkStyles(variant: NavLinkVariant, nested?: boolean): {
|
|
4978
|
+
baseStyles: {
|
|
4979
|
+
fontWeight: csstype.Property.FontWeight | undefined;
|
|
4980
|
+
fontSize: csstype.Property.FontSize<string | 0> | undefined;
|
|
4981
|
+
lineHeight: csstype.Property.LineHeight<string | 0> | undefined;
|
|
4982
|
+
__kind: "buildtime";
|
|
4983
|
+
accentColor?: csstype.Property.AccentColor | undefined;
|
|
4984
|
+
alignContent?: csstype.Property.AlignContent | undefined;
|
|
4985
|
+
alignItems?: csstype.Property.AlignItems | undefined;
|
|
4986
|
+
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
4987
|
+
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
4988
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
4989
|
+
anchorName?: csstype.Property.AnchorName | undefined;
|
|
4990
|
+
anchorScope?: csstype.Property.AnchorScope | undefined;
|
|
4991
|
+
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
4992
|
+
animationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
4993
|
+
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
4994
|
+
animationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
4995
|
+
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
4996
|
+
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
4997
|
+
animationName?: csstype.Property.AnimationName | undefined;
|
|
4998
|
+
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
4999
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | 0> | undefined;
|
|
5000
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | 0> | undefined;
|
|
5001
|
+
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
5002
|
+
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5003
|
+
appearance?: csstype.Property.Appearance | undefined;
|
|
5004
|
+
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
5005
|
+
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5006
|
+
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5007
|
+
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
5008
|
+
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
5009
|
+
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5010
|
+
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
5011
|
+
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
5012
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5013
|
+
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | 0> | undefined;
|
|
5014
|
+
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | 0> | undefined;
|
|
5015
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
5016
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5017
|
+
baselineShift?: csstype.Property.BaselineShift<string | 0> | undefined;
|
|
5018
|
+
blockSize?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5019
|
+
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
5020
|
+
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
5021
|
+
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | 0> | undefined;
|
|
5022
|
+
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
5023
|
+
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
5024
|
+
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | 0> | undefined;
|
|
5025
|
+
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
5026
|
+
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5027
|
+
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5028
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
5029
|
+
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | 0> | undefined;
|
|
5030
|
+
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
5031
|
+
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | 0> | undefined;
|
|
5032
|
+
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | 0> | undefined;
|
|
5033
|
+
borderImageOutset?: csstype.Property.BorderImageOutset<string | 0> | undefined;
|
|
5034
|
+
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
5035
|
+
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5036
|
+
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
5037
|
+
borderImageWidth?: csstype.Property.BorderImageWidth<string | 0> | undefined;
|
|
5038
|
+
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5039
|
+
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5040
|
+
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5041
|
+
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5042
|
+
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5043
|
+
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | 0> | undefined;
|
|
5044
|
+
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
5045
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
5046
|
+
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | 0> | undefined;
|
|
5047
|
+
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
5048
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
5049
|
+
borderRightWidth?: csstype.Property.BorderRightWidth<string | 0> | undefined;
|
|
5050
|
+
borderSpacing?: csstype.Property.BorderSpacing<string | 0> | undefined;
|
|
5051
|
+
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | 0> | undefined;
|
|
5052
|
+
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | 0> | undefined;
|
|
5053
|
+
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
5054
|
+
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5055
|
+
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5056
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
5057
|
+
borderTopWidth?: csstype.Property.BorderTopWidth<string | 0> | undefined;
|
|
5058
|
+
bottom?: csstype.Property.Bottom<string | 0> | undefined;
|
|
5059
|
+
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5060
|
+
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5061
|
+
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5062
|
+
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
5063
|
+
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
5064
|
+
breakInside?: csstype.Property.BreakInside | undefined;
|
|
5065
|
+
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
5066
|
+
caretColor?: csstype.Property.CaretColor | undefined;
|
|
5067
|
+
caretShape?: csstype.Property.CaretShape | undefined;
|
|
5068
|
+
clear?: csstype.Property.Clear | undefined;
|
|
5069
|
+
clipPath?: csstype.Property.ClipPath | undefined;
|
|
5070
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
5071
|
+
color?: csstype.Property.Color | undefined;
|
|
5072
|
+
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5073
|
+
colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
|
|
5074
|
+
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
5075
|
+
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
5076
|
+
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
5077
|
+
columnGap?: csstype.Property.ColumnGap<string | 0> | undefined;
|
|
5078
|
+
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5079
|
+
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5080
|
+
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5081
|
+
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5082
|
+
columnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5083
|
+
contain?: csstype.Property.Contain | undefined;
|
|
5084
|
+
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | 0> | undefined;
|
|
5085
|
+
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | 0> | undefined;
|
|
5086
|
+
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | 0> | undefined;
|
|
5087
|
+
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | 0> | undefined;
|
|
5088
|
+
containerName?: csstype.Property.ContainerName | undefined;
|
|
5089
|
+
containerType?: csstype.Property.ContainerType | undefined;
|
|
5090
|
+
content?: csstype.Property.Content | undefined;
|
|
5091
|
+
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
5092
|
+
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
5093
|
+
counterReset?: csstype.Property.CounterReset | undefined;
|
|
5094
|
+
counterSet?: csstype.Property.CounterSet | undefined;
|
|
5095
|
+
cursor?: csstype.Property.Cursor | undefined;
|
|
5096
|
+
cx?: csstype.Property.Cx<string | 0> | undefined;
|
|
5097
|
+
cy?: csstype.Property.Cy<string | 0> | undefined;
|
|
5098
|
+
d?: csstype.Property.D | undefined;
|
|
5099
|
+
direction?: csstype.Property.Direction | undefined;
|
|
5100
|
+
display?: csstype.Property.Display | undefined;
|
|
5101
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
5102
|
+
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
5103
|
+
fieldSizing?: csstype.Property.FieldSizing | undefined;
|
|
5104
|
+
fill?: csstype.Property.Fill | undefined;
|
|
5105
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
5106
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
5107
|
+
filter?: csstype.Property.Filter | undefined;
|
|
5108
|
+
flexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5109
|
+
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5110
|
+
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5111
|
+
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5112
|
+
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5113
|
+
float?: csstype.Property.Float | undefined;
|
|
5114
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
5115
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
5116
|
+
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
5117
|
+
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5118
|
+
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
5119
|
+
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5120
|
+
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
5121
|
+
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
5122
|
+
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
5123
|
+
fontSmooth?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5124
|
+
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
5125
|
+
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
5126
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
5127
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
5128
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
5129
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
5130
|
+
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
5131
|
+
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
5132
|
+
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
5133
|
+
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
5134
|
+
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
5135
|
+
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5136
|
+
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
5137
|
+
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
5138
|
+
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
5139
|
+
fontWidth?: csstype.Property.FontWidth | undefined;
|
|
5140
|
+
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
5141
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | 0> | undefined;
|
|
5142
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
5143
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | 0> | undefined;
|
|
5144
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
5145
|
+
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
5146
|
+
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
5147
|
+
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
5148
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
5149
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | 0> | undefined;
|
|
5150
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | 0> | undefined;
|
|
5151
|
+
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
5152
|
+
height?: csstype.Property.Height<string | 0> | undefined;
|
|
5153
|
+
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5154
|
+
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
5155
|
+
hyphens?: csstype.Property.Hyphens | undefined;
|
|
5156
|
+
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
5157
|
+
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
5158
|
+
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
5159
|
+
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5160
|
+
initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
|
|
5161
|
+
inlineSize?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5162
|
+
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5163
|
+
insetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5164
|
+
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5165
|
+
insetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5166
|
+
interpolateSize?: csstype.Property.InterpolateSize | undefined;
|
|
5167
|
+
isolation?: csstype.Property.Isolation | undefined;
|
|
5168
|
+
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5169
|
+
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
5170
|
+
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
5171
|
+
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
5172
|
+
left?: csstype.Property.Left<string | 0> | undefined;
|
|
5173
|
+
letterSpacing?: csstype.Property.LetterSpacing<string | 0> | undefined;
|
|
5174
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
5175
|
+
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
5176
|
+
lineHeightStep?: csstype.Property.LineHeightStep<string | 0> | undefined;
|
|
5177
|
+
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
5178
|
+
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
5179
|
+
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
5180
|
+
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | 0> | undefined;
|
|
5181
|
+
marginBlockStart?: csstype.Property.MarginBlockStart<string | 0> | undefined;
|
|
5182
|
+
marginBottom?: csstype.Property.MarginBottom<string | 0> | undefined;
|
|
5183
|
+
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5184
|
+
marginInlineStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5185
|
+
marginLeft?: csstype.Property.MarginLeft<string | 0> | undefined;
|
|
5186
|
+
marginRight?: csstype.Property.MarginRight<string | 0> | undefined;
|
|
5187
|
+
marginTop?: csstype.Property.MarginTop<string | 0> | undefined;
|
|
5188
|
+
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
5189
|
+
marker?: csstype.Property.Marker | undefined;
|
|
5190
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
5191
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
5192
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
5193
|
+
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
5194
|
+
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5195
|
+
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5196
|
+
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5197
|
+
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5198
|
+
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5199
|
+
maskClip?: csstype.Property.MaskClip | undefined;
|
|
5200
|
+
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
5201
|
+
maskImage?: csstype.Property.MaskImage | undefined;
|
|
5202
|
+
maskMode?: csstype.Property.MaskMode | undefined;
|
|
5203
|
+
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
5204
|
+
maskPosition?: csstype.Property.MaskPosition<string | 0> | undefined;
|
|
5205
|
+
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
5206
|
+
maskSize?: csstype.Property.MaskSize<string | 0> | undefined;
|
|
5207
|
+
maskType?: csstype.Property.MaskType | undefined;
|
|
5208
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
5209
|
+
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
5210
|
+
mathShift?: csstype.Property.MathShift | undefined;
|
|
5211
|
+
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
5212
|
+
maxBlockSize?: csstype.Property.MaxBlockSize<string | 0> | undefined;
|
|
5213
|
+
maxHeight?: csstype.Property.MaxHeight<string | 0> | undefined;
|
|
5214
|
+
maxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5215
|
+
maxLines?: csstype.Property.MaxLines | undefined;
|
|
5216
|
+
maxWidth?: csstype.Property.MaxWidth<string | 0> | undefined;
|
|
5217
|
+
minBlockSize?: csstype.Property.MinBlockSize<string | 0> | undefined;
|
|
5218
|
+
minHeight?: csstype.Property.MinHeight<string | 0> | undefined;
|
|
5219
|
+
minInlineSize?: csstype.Property.MinInlineSize<string | 0> | undefined;
|
|
5220
|
+
minWidth?: csstype.Property.MinWidth<string | 0> | undefined;
|
|
5221
|
+
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
5222
|
+
motionDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5223
|
+
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
5224
|
+
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5225
|
+
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
5226
|
+
objectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5227
|
+
objectViewBox?: csstype.Property.ObjectViewBox | undefined;
|
|
5228
|
+
offsetAnchor?: csstype.Property.OffsetAnchor<string | 0> | undefined;
|
|
5229
|
+
offsetDistance?: csstype.Property.OffsetDistance<string | 0> | undefined;
|
|
5230
|
+
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
5231
|
+
offsetPosition?: csstype.Property.OffsetPosition<string | 0> | undefined;
|
|
5232
|
+
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
5233
|
+
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
5234
|
+
opacity?: csstype.Property.Opacity | undefined;
|
|
5235
|
+
order?: csstype.Property.Order | undefined;
|
|
5236
|
+
orphans?: csstype.Property.Orphans | undefined;
|
|
5237
|
+
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5238
|
+
outlineOffset?: csstype.Property.OutlineOffset<string | 0> | undefined;
|
|
5239
|
+
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5240
|
+
outlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5241
|
+
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
5242
|
+
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
5243
|
+
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
5244
|
+
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | 0> | undefined;
|
|
5245
|
+
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
5246
|
+
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
5247
|
+
overflowX?: csstype.Property.OverflowX | undefined;
|
|
5248
|
+
overflowY?: csstype.Property.OverflowY | undefined;
|
|
5249
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
5250
|
+
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
5251
|
+
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
5252
|
+
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
5253
|
+
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
5254
|
+
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | 0> | undefined;
|
|
5255
|
+
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | 0> | undefined;
|
|
5256
|
+
paddingBottom?: csstype.Property.PaddingBottom<string | 0> | undefined;
|
|
5257
|
+
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5258
|
+
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5259
|
+
paddingLeft?: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
5260
|
+
paddingRight?: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
5261
|
+
paddingTop?: csstype.Property.PaddingTop<string | 0> | undefined;
|
|
5262
|
+
page?: csstype.Property.Page | undefined;
|
|
5263
|
+
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
5264
|
+
perspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5265
|
+
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5266
|
+
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
5267
|
+
position?: csstype.Property.Position | undefined;
|
|
5268
|
+
positionAnchor?: csstype.Property.PositionAnchor | undefined;
|
|
5269
|
+
positionArea?: csstype.Property.PositionArea | undefined;
|
|
5270
|
+
positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5271
|
+
positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
|
|
5272
|
+
positionVisibility?: csstype.Property.PositionVisibility | undefined;
|
|
5273
|
+
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5274
|
+
quotes?: csstype.Property.Quotes | undefined;
|
|
5275
|
+
r?: csstype.Property.R<string | 0> | undefined;
|
|
5276
|
+
resize?: csstype.Property.Resize | undefined;
|
|
5277
|
+
right?: csstype.Property.Right<string | 0> | undefined;
|
|
5278
|
+
rotate?: csstype.Property.Rotate | undefined;
|
|
5279
|
+
rowGap?: csstype.Property.RowGap<string | 0> | undefined;
|
|
5280
|
+
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
5281
|
+
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
5282
|
+
rubyOverhang?: csstype.Property.RubyOverhang | undefined;
|
|
5283
|
+
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5284
|
+
rx?: csstype.Property.Rx<string | 0> | undefined;
|
|
5285
|
+
ry?: csstype.Property.Ry<string | 0> | undefined;
|
|
5286
|
+
scale?: csstype.Property.Scale | undefined;
|
|
5287
|
+
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
5288
|
+
scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
|
|
5289
|
+
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | 0> | undefined;
|
|
5290
|
+
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | 0> | undefined;
|
|
5291
|
+
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5292
|
+
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | 0> | undefined;
|
|
5293
|
+
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | 0> | undefined;
|
|
5294
|
+
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5295
|
+
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5296
|
+
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5297
|
+
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | 0> | undefined;
|
|
5298
|
+
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | 0> | undefined;
|
|
5299
|
+
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | 0> | undefined;
|
|
5300
|
+
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | 0> | undefined;
|
|
5301
|
+
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | 0> | undefined;
|
|
5302
|
+
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | 0> | undefined;
|
|
5303
|
+
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | 0> | undefined;
|
|
5304
|
+
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | 0> | undefined;
|
|
5305
|
+
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
5306
|
+
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | 0> | undefined;
|
|
5307
|
+
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | 0> | undefined;
|
|
5308
|
+
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | 0> | undefined;
|
|
5309
|
+
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | 0> | undefined;
|
|
5310
|
+
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
5311
|
+
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5312
|
+
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
5313
|
+
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
5314
|
+
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
5315
|
+
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
5316
|
+
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
5317
|
+
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
5318
|
+
shapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5319
|
+
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
5320
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
5321
|
+
speakAs?: csstype.Property.SpeakAs | undefined;
|
|
5322
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
5323
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
5324
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
5325
|
+
strokeColor?: csstype.Property.StrokeColor | undefined;
|
|
5326
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | 0> | undefined;
|
|
5327
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | 0> | undefined;
|
|
5328
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
5329
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
5330
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
5331
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
5332
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | 0> | undefined;
|
|
5333
|
+
tabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5334
|
+
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
5335
|
+
textAlign?: csstype.Property.TextAlign | undefined;
|
|
5336
|
+
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5337
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
5338
|
+
textAutospace?: csstype.Property.TextAutospace | undefined;
|
|
5339
|
+
textBox?: csstype.Property.TextBox | undefined;
|
|
5340
|
+
textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
|
|
5341
|
+
textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
|
|
5342
|
+
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
5343
|
+
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5344
|
+
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5345
|
+
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5346
|
+
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
5347
|
+
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5348
|
+
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | 0> | undefined;
|
|
5349
|
+
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5350
|
+
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5351
|
+
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5352
|
+
textIndent?: csstype.Property.TextIndent<string | 0> | undefined;
|
|
5353
|
+
textJustify?: csstype.Property.TextJustify | undefined;
|
|
5354
|
+
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5355
|
+
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5356
|
+
textRendering?: csstype.Property.TextRendering | undefined;
|
|
5357
|
+
textShadow?: csstype.Property.TextShadow | undefined;
|
|
5358
|
+
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5359
|
+
textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
|
|
5360
|
+
textTransform?: csstype.Property.TextTransform | undefined;
|
|
5361
|
+
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | 0> | undefined;
|
|
5362
|
+
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5363
|
+
textWrapMode?: csstype.Property.TextWrapMode | undefined;
|
|
5364
|
+
textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
|
|
5365
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
5366
|
+
top?: csstype.Property.Top<string | 0> | undefined;
|
|
5367
|
+
touchAction?: csstype.Property.TouchAction | undefined;
|
|
5368
|
+
transform?: csstype.Property.Transform | undefined;
|
|
5369
|
+
transformBox?: csstype.Property.TransformBox | undefined;
|
|
5370
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5371
|
+
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5372
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
5373
|
+
transitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5374
|
+
transitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5375
|
+
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5376
|
+
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5377
|
+
translate?: csstype.Property.Translate<string | 0> | undefined;
|
|
5378
|
+
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
5379
|
+
userSelect?: csstype.Property.UserSelect | undefined;
|
|
5380
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
5381
|
+
verticalAlign?: csstype.Property.VerticalAlign<string | 0> | undefined;
|
|
5382
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
5383
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | 0> | undefined;
|
|
5384
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
5385
|
+
viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
|
|
5386
|
+
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
5387
|
+
visibility?: csstype.Property.Visibility | undefined;
|
|
5388
|
+
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
5389
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
5390
|
+
widows?: csstype.Property.Widows | undefined;
|
|
5391
|
+
width?: csstype.Property.Width<string | 0> | undefined;
|
|
5392
|
+
willChange?: csstype.Property.WillChange | undefined;
|
|
5393
|
+
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
5394
|
+
wordSpacing?: csstype.Property.WordSpacing<string | 0> | undefined;
|
|
5395
|
+
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
5396
|
+
writingMode?: csstype.Property.WritingMode | undefined;
|
|
5397
|
+
x?: csstype.Property.X<string | 0> | undefined;
|
|
5398
|
+
y?: csstype.Property.Y<string | 0> | undefined;
|
|
5399
|
+
zIndex?: csstype.Property.ZIndex | undefined;
|
|
5400
|
+
zoom?: csstype.Property.Zoom | undefined;
|
|
5401
|
+
all?: csstype.Property.All | undefined;
|
|
5402
|
+
animation?: csstype.Property.Animation<string> | undefined;
|
|
5403
|
+
animationRange?: csstype.Property.AnimationRange<string | 0> | undefined;
|
|
5404
|
+
background?: csstype.Property.Background<string | 0> | undefined;
|
|
5405
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | 0> | undefined;
|
|
5406
|
+
border?: csstype.Property.Border<string | 0> | undefined;
|
|
5407
|
+
borderBlock?: csstype.Property.BorderBlock<string | 0> | undefined;
|
|
5408
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
5409
|
+
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | 0> | undefined;
|
|
5410
|
+
borderBlockStart?: csstype.Property.BorderBlockStart<string | 0> | undefined;
|
|
5411
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
5412
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | 0> | undefined;
|
|
5413
|
+
borderBottom?: csstype.Property.BorderBottom<string | 0> | undefined;
|
|
5414
|
+
borderColor?: csstype.Property.BorderColor | undefined;
|
|
5415
|
+
borderImage?: csstype.Property.BorderImage | undefined;
|
|
5416
|
+
borderInline?: csstype.Property.BorderInline<string | 0> | undefined;
|
|
5417
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
5418
|
+
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | 0> | undefined;
|
|
5419
|
+
borderInlineStart?: csstype.Property.BorderInlineStart<string | 0> | undefined;
|
|
5420
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
5421
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | 0> | undefined;
|
|
5422
|
+
borderLeft?: csstype.Property.BorderLeft<string | 0> | undefined;
|
|
5423
|
+
borderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5424
|
+
borderRight?: csstype.Property.BorderRight<string | 0> | undefined;
|
|
5425
|
+
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
5426
|
+
borderTop?: csstype.Property.BorderTop<string | 0> | undefined;
|
|
5427
|
+
borderWidth?: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
5428
|
+
caret?: csstype.Property.Caret | undefined;
|
|
5429
|
+
columnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5430
|
+
columns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5431
|
+
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | 0> | undefined;
|
|
5432
|
+
container?: csstype.Property.Container | undefined;
|
|
5433
|
+
flex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5434
|
+
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5435
|
+
font?: csstype.Property.Font | undefined;
|
|
5436
|
+
gap?: csstype.Property.Gap<string | 0> | undefined;
|
|
5437
|
+
grid?: csstype.Property.Grid | undefined;
|
|
5438
|
+
gridArea?: csstype.Property.GridArea | undefined;
|
|
5439
|
+
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
5440
|
+
gridRow?: csstype.Property.GridRow | undefined;
|
|
5441
|
+
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
5442
|
+
inset?: csstype.Property.Inset<string | 0> | undefined;
|
|
5443
|
+
insetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5444
|
+
insetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5445
|
+
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
5446
|
+
listStyle?: csstype.Property.ListStyle | undefined;
|
|
5447
|
+
margin?: csstype.Property.Margin<string | 0> | undefined;
|
|
5448
|
+
marginBlock?: csstype.Property.MarginBlock<string | 0> | undefined;
|
|
5449
|
+
marginInline?: csstype.Property.MarginInline<string | 0> | undefined;
|
|
5450
|
+
mask?: csstype.Property.Mask<string | 0> | undefined;
|
|
5451
|
+
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
5452
|
+
motion?: csstype.Property.Offset<string | 0> | undefined;
|
|
5453
|
+
offset?: csstype.Property.Offset<string | 0> | undefined;
|
|
5454
|
+
outline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5455
|
+
overflow?: csstype.Property.Overflow | undefined;
|
|
5456
|
+
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
5457
|
+
padding?: csstype.Property.Padding<string | 0> | undefined;
|
|
5458
|
+
paddingBlock?: csstype.Property.PaddingBlock<string | 0> | undefined;
|
|
5459
|
+
paddingInline?: csstype.Property.PaddingInline<string | 0> | undefined;
|
|
5460
|
+
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
5461
|
+
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
5462
|
+
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
5463
|
+
positionTry?: csstype.Property.PositionTry | undefined;
|
|
5464
|
+
scrollMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5465
|
+
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | 0> | undefined;
|
|
5466
|
+
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | 0> | undefined;
|
|
5467
|
+
scrollPadding?: csstype.Property.ScrollPadding<string | 0> | undefined;
|
|
5468
|
+
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | 0> | undefined;
|
|
5469
|
+
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | 0> | undefined;
|
|
5470
|
+
scrollSnapMargin?: csstype.Property.ScrollMargin<string | 0> | undefined;
|
|
5471
|
+
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
5472
|
+
textDecoration?: csstype.Property.TextDecoration<string | 0> | undefined;
|
|
5473
|
+
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5474
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
5475
|
+
transition?: csstype.Property.Transition<string> | undefined;
|
|
5476
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
5477
|
+
MozAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5478
|
+
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5479
|
+
MozAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5480
|
+
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5481
|
+
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5482
|
+
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5483
|
+
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5484
|
+
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5485
|
+
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
5486
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5487
|
+
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
5488
|
+
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
5489
|
+
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
5490
|
+
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
5491
|
+
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | 0> | undefined;
|
|
5492
|
+
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
5493
|
+
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
5494
|
+
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
5495
|
+
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
5496
|
+
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
5497
|
+
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5498
|
+
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5499
|
+
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5500
|
+
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5501
|
+
MozColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5502
|
+
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
5503
|
+
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5504
|
+
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
5505
|
+
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
5506
|
+
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5507
|
+
MozMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5508
|
+
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
5509
|
+
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5510
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | 0> | undefined;
|
|
5511
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | 0> | undefined;
|
|
5512
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | 0> | undefined;
|
|
5513
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | 0> | undefined;
|
|
5514
|
+
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5515
|
+
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5516
|
+
MozPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5517
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5518
|
+
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
5519
|
+
MozTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5520
|
+
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
5521
|
+
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5522
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
5523
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5524
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5525
|
+
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
5526
|
+
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5527
|
+
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
5528
|
+
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
5529
|
+
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
5530
|
+
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
5531
|
+
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
5532
|
+
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
5533
|
+
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
5534
|
+
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
5535
|
+
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
5536
|
+
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
5537
|
+
msFilter?: csstype.Property.MsFilter | undefined;
|
|
5538
|
+
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5539
|
+
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
5540
|
+
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
5541
|
+
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
5542
|
+
msGridColumns?: csstype.Property.MsGridColumns<string | 0> | undefined;
|
|
5543
|
+
msGridRows?: csstype.Property.MsGridRows<string | 0> | undefined;
|
|
5544
|
+
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
5545
|
+
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
5546
|
+
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
5547
|
+
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | 0> | undefined;
|
|
5548
|
+
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
5549
|
+
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
5550
|
+
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5551
|
+
msOrder?: csstype.Property.Order | undefined;
|
|
5552
|
+
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
5553
|
+
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
5554
|
+
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
5555
|
+
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
5556
|
+
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | 0> | undefined;
|
|
5557
|
+
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | 0> | undefined;
|
|
5558
|
+
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | 0> | undefined;
|
|
5559
|
+
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | 0> | undefined;
|
|
5560
|
+
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
5561
|
+
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
5562
|
+
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
5563
|
+
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
5564
|
+
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
5565
|
+
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
5566
|
+
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
5567
|
+
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
5568
|
+
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
5569
|
+
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
5570
|
+
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
5571
|
+
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
5572
|
+
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
5573
|
+
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
5574
|
+
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
5575
|
+
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5576
|
+
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
5577
|
+
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
5578
|
+
msTransform?: csstype.Property.Transform | undefined;
|
|
5579
|
+
msTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5580
|
+
msTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5581
|
+
msTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5582
|
+
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5583
|
+
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5584
|
+
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
5585
|
+
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
5586
|
+
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
5587
|
+
msWrapMargin?: csstype.Property.MsWrapMargin<string | 0> | undefined;
|
|
5588
|
+
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
5589
|
+
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5590
|
+
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
5591
|
+
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
5592
|
+
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
5593
|
+
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5594
|
+
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5595
|
+
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5596
|
+
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5597
|
+
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5598
|
+
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5599
|
+
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5600
|
+
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5601
|
+
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
5602
|
+
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
5603
|
+
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
5604
|
+
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5605
|
+
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5606
|
+
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5607
|
+
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
5608
|
+
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
5609
|
+
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | 0> | undefined;
|
|
5610
|
+
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5611
|
+
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5612
|
+
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
5613
|
+
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5614
|
+
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5615
|
+
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
5616
|
+
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | 0> | undefined;
|
|
5617
|
+
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5618
|
+
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
5619
|
+
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
5620
|
+
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5621
|
+
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5622
|
+
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
5623
|
+
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
5624
|
+
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | 0> | undefined;
|
|
5625
|
+
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
5626
|
+
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | 0> | undefined;
|
|
5627
|
+
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
5628
|
+
WebkitFlexBasis?: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
5629
|
+
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
5630
|
+
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
5631
|
+
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
5632
|
+
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
5633
|
+
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
5634
|
+
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
5635
|
+
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | 0> | undefined;
|
|
5636
|
+
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
5637
|
+
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
5638
|
+
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
5639
|
+
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
5640
|
+
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
5641
|
+
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5642
|
+
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
5643
|
+
WebkitLogicalHeight?: csstype.Property.BlockSize<string | 0> | undefined;
|
|
5644
|
+
WebkitLogicalWidth?: csstype.Property.InlineSize<string | 0> | undefined;
|
|
5645
|
+
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | 0> | undefined;
|
|
5646
|
+
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | 0> | undefined;
|
|
5647
|
+
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
5648
|
+
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | 0> | undefined;
|
|
5649
|
+
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
5650
|
+
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
5651
|
+
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
5652
|
+
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | 0> | undefined;
|
|
5653
|
+
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
5654
|
+
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
5655
|
+
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
5656
|
+
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
5657
|
+
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | 0> | undefined;
|
|
5658
|
+
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | 0> | undefined;
|
|
5659
|
+
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | 0> | undefined;
|
|
5660
|
+
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
5661
|
+
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
5662
|
+
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
5663
|
+
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | 0> | undefined;
|
|
5664
|
+
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | 0> | undefined;
|
|
5665
|
+
WebkitOrder?: csstype.Property.Order | undefined;
|
|
5666
|
+
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
5667
|
+
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | 0> | undefined;
|
|
5668
|
+
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | 0> | undefined;
|
|
5669
|
+
WebkitPerspective?: csstype.Property.Perspective<string | 0> | undefined;
|
|
5670
|
+
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | 0> | undefined;
|
|
5671
|
+
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
5672
|
+
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
5673
|
+
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
5674
|
+
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | 0> | undefined;
|
|
5675
|
+
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
5676
|
+
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
5677
|
+
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5678
|
+
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5679
|
+
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
5680
|
+
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5681
|
+
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
5682
|
+
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
5683
|
+
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
5684
|
+
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
5685
|
+
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
5686
|
+
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
5687
|
+
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
5688
|
+
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | 0> | undefined;
|
|
5689
|
+
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
5690
|
+
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
5691
|
+
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
5692
|
+
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5693
|
+
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
5694
|
+
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5695
|
+
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5696
|
+
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5697
|
+
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5698
|
+
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
5699
|
+
WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
|
|
5700
|
+
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
5701
|
+
MozAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5702
|
+
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5703
|
+
MozColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5704
|
+
MozColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5705
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | 0> | undefined;
|
|
5706
|
+
MozTransition?: csstype.Property.Transition<string> | undefined;
|
|
5707
|
+
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
5708
|
+
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
5709
|
+
msFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5710
|
+
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
5711
|
+
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
5712
|
+
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
5713
|
+
msTransition?: csstype.Property.Transition<string> | undefined;
|
|
5714
|
+
WebkitAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5715
|
+
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | 0> | undefined;
|
|
5716
|
+
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5717
|
+
WebkitBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5718
|
+
WebkitColumnRule?: csstype.Property.ColumnRule<string | 0> | undefined;
|
|
5719
|
+
WebkitColumns?: csstype.Property.Columns<string | 0> | undefined;
|
|
5720
|
+
WebkitFlex?: csstype.Property.Flex<string | 0> | undefined;
|
|
5721
|
+
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
5722
|
+
WebkitMask?: csstype.Property.WebkitMask<string | 0> | undefined;
|
|
5723
|
+
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
5724
|
+
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
5725
|
+
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | 0> | undefined;
|
|
5726
|
+
WebkitTransition?: csstype.Property.Transition<string> | undefined;
|
|
5727
|
+
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5728
|
+
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5729
|
+
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5730
|
+
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5731
|
+
boxLines?: csstype.Property.BoxLines | undefined;
|
|
5732
|
+
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5733
|
+
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5734
|
+
boxPack?: csstype.Property.BoxPack | undefined;
|
|
5735
|
+
clip?: csstype.Property.Clip | undefined;
|
|
5736
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
5737
|
+
gridColumnGap?: csstype.Property.GridColumnGap<string | 0> | undefined;
|
|
5738
|
+
gridGap?: csstype.Property.GridGap<string | 0> | undefined;
|
|
5739
|
+
gridRowGap?: csstype.Property.GridRowGap<string | 0> | undefined;
|
|
5740
|
+
imeMode?: csstype.Property.ImeMode | undefined;
|
|
5741
|
+
insetArea?: csstype.Property.PositionArea | undefined;
|
|
5742
|
+
offsetBlock?: csstype.Property.InsetBlock<string | 0> | undefined;
|
|
5743
|
+
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | 0> | undefined;
|
|
5744
|
+
offsetBlockStart?: csstype.Property.InsetBlockStart<string | 0> | undefined;
|
|
5745
|
+
offsetInline?: csstype.Property.InsetInline<string | 0> | undefined;
|
|
5746
|
+
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | 0> | undefined;
|
|
5747
|
+
offsetInlineStart?: csstype.Property.InsetInlineStart<string | 0> | undefined;
|
|
5748
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
5749
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
5750
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
5751
|
+
positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
|
|
5752
|
+
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | 0> | undefined;
|
|
5753
|
+
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | 0> | undefined;
|
|
5754
|
+
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
5755
|
+
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
5756
|
+
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
5757
|
+
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
5758
|
+
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5759
|
+
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5760
|
+
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5761
|
+
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5762
|
+
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5763
|
+
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5764
|
+
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5765
|
+
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5766
|
+
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
5767
|
+
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
5768
|
+
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
5769
|
+
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
5770
|
+
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
5771
|
+
MozBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5772
|
+
MozBorderRadius?: csstype.Property.BorderRadius<string | 0> | undefined;
|
|
5773
|
+
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | 0> | undefined;
|
|
5774
|
+
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | 0> | undefined;
|
|
5775
|
+
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | 0> | undefined;
|
|
5776
|
+
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | 0> | undefined;
|
|
5777
|
+
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5778
|
+
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5779
|
+
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5780
|
+
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5781
|
+
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5782
|
+
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5783
|
+
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
5784
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
5785
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
5786
|
+
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
5787
|
+
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
5788
|
+
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
5789
|
+
MozOutline?: csstype.Property.Outline<string | 0> | undefined;
|
|
5790
|
+
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
5791
|
+
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
5792
|
+
MozOutlineWidth?: csstype.Property.OutlineWidth<string | 0> | undefined;
|
|
5793
|
+
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
5794
|
+
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
5795
|
+
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
5796
|
+
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
5797
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5798
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5799
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5800
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5801
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
5802
|
+
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
5803
|
+
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
5804
|
+
OAnimation?: csstype.Property.Animation<string> | undefined;
|
|
5805
|
+
OAnimationDelay?: csstype.Property.AnimationDelay<string> | undefined;
|
|
5806
|
+
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
5807
|
+
OAnimationDuration?: csstype.Property.AnimationDuration<string> | undefined;
|
|
5808
|
+
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
5809
|
+
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
5810
|
+
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
5811
|
+
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
5812
|
+
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
5813
|
+
OBackgroundSize?: csstype.Property.BackgroundSize<string | 0> | undefined;
|
|
5814
|
+
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
5815
|
+
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
5816
|
+
OObjectPosition?: csstype.Property.ObjectPosition<string | 0> | undefined;
|
|
5817
|
+
OTabSize?: csstype.Property.TabSize<string | 0> | undefined;
|
|
5818
|
+
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
5819
|
+
OTransform?: csstype.Property.Transform | undefined;
|
|
5820
|
+
OTransformOrigin?: csstype.Property.TransformOrigin<string | 0> | undefined;
|
|
5821
|
+
OTransition?: csstype.Property.Transition<string> | undefined;
|
|
5822
|
+
OTransitionDelay?: csstype.Property.TransitionDelay<string> | undefined;
|
|
5823
|
+
OTransitionDuration?: csstype.Property.TransitionDuration<string> | undefined;
|
|
5824
|
+
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
5825
|
+
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
5826
|
+
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
5827
|
+
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
5828
|
+
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
5829
|
+
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
5830
|
+
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
5831
|
+
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
5832
|
+
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
5833
|
+
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
5834
|
+
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
5835
|
+
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
5836
|
+
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
5837
|
+
};
|
|
4972
5838
|
hoverStyles: Properties;
|
|
4973
5839
|
disabledStyles: Properties;
|
|
4974
5840
|
focusRingStyles: Properties;
|