nuclo 0.1.57 → 0.1.58
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/core/tagConstants.d.ts +5 -0
- package/dist/core/tagConstants.d.ts.map +1 -0
- package/dist/core/tagRegistry.d.ts +2 -3
- package/dist/core/tagRegistry.d.ts.map +1 -1
- package/dist/nuclo.cjs +1 -1
- package/dist/nuclo.cjs.map +1 -1
- package/dist/nuclo.js +1 -1
- package/dist/nuclo.js.map +1 -1
- package/dist/nuclo.umd.js +1 -1
- package/dist/nuclo.umd.js.map +1 -1
- package/dist/style/cssPropertyTypes.d.ts +98 -0
- package/dist/style/cssPropertyTypes.d.ts.map +1 -0
- package/dist/style/styleBuilder.d.ts +293 -166
- package/dist/style/styleBuilder.d.ts.map +1 -1
- package/dist/style/styleProperties.d.ts.map +1 -1
- package/package.json +1 -1
- package/types/features/style.d.ts +1428 -664
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { DisplayValue, PositionValue, TextAlignValue, FontWeightValue, FontStyleValue, TextTransformValue, TextDecorationValue, TextDecorationStyleValue, TextDecorationLineValue, WhiteSpaceValue, OverflowValue, VisibilityValue, FlexDirectionValue, FlexWrapValue, AlignItemsValue, JustifyContentValue, AlignSelfValue, AlignContentValue, JustifySelfValue, JustifyItemsValue, GridAutoFlowValue, BorderStyleValue, OutlineStyleValue, BoxSizingValue, ObjectFitValue, VerticalAlignValue, TextAlignLastValue, TextJustifyValue, TextOverflowValue, WordWrapValue, OverflowWrapValue, BackgroundRepeatValue, BackgroundAttachmentValue, BackgroundClipValue, BackgroundOriginValue, TransformStyleValue, BackfaceVisibilityValue, AnimationDirectionValue, AnimationFillModeValue, AnimationPlayStateValue, ListStyleTypeValue, ListStylePositionValue, BorderCollapseValue, CaptionSideValue, EmptyCellsValue, TableLayoutValue, AppearanceValue, UserSelectValue, PointerEventsValue, ResizeValue, ScrollBehaviorValue, IsolationValue, MixBlendModeValue, ContainValue, PageBreakValue, BreakValue, ColumnFillValue, ColumnRuleStyleValue, ColumnSpanValue, CursorValue, CSSLengthValue, CSSColorValue, CSSFontFamilyValue, CSSTimingFunctionValue, CSSTransformValue, CSSFilterValue, CSSBackgroundImageValue, CSSAnimationNameValue, CSSContentValue, CSSAspectRatioValue, FloatValue, ClearValue, WritingModeValue, DirectionValue, UnicodeBidiValue, TextOrientationValue, HyphensValue, LineBreakValue, WordBreakValue, TouchActionValue, OverscrollBehaviorValue, ImageRenderingValue, ColorSchemeValue, CaretColorValue, CaretShapeValue, BackgroundBlendModeValue, ContentVisibilityValue, ContainerTypeValue, FontKerningValue, FontSynthesisValue, FontOpticalSizingValue, FontDisplayValue, FontVariantCapsValue, TextRenderingValue, TextCombineUprightValue, MaskCompositeValue, ClipRuleValue } from "./cssPropertyTypes";
|
|
1
2
|
export declare class StyleBuilder {
|
|
2
3
|
private styles;
|
|
3
4
|
getStyles(): Record<string, string>;
|
|
@@ -15,196 +16,322 @@ export declare class StyleBuilder {
|
|
|
15
16
|
flex(value?: string): this;
|
|
16
17
|
}
|
|
17
18
|
export interface StyleBuilder {
|
|
18
|
-
display(value:
|
|
19
|
+
display(value: DisplayValue): this;
|
|
19
20
|
grid(): this;
|
|
20
|
-
bg(color:
|
|
21
|
-
color(colorValue:
|
|
22
|
-
accentColor(value:
|
|
23
|
-
fontSize(size:
|
|
24
|
-
fontWeight(value:
|
|
25
|
-
fontFamily(value:
|
|
26
|
-
lineHeight(value:
|
|
27
|
-
letterSpacing(value:
|
|
28
|
-
textAlign(value:
|
|
29
|
-
textDecoration(value:
|
|
30
|
-
fontStyle(value:
|
|
21
|
+
bg(color: CSSColorValue): this;
|
|
22
|
+
color(colorValue: CSSColorValue): this;
|
|
23
|
+
accentColor(value: CSSColorValue): this;
|
|
24
|
+
fontSize(size: CSSLengthValue): this;
|
|
25
|
+
fontWeight(value: FontWeightValue): this;
|
|
26
|
+
fontFamily(value: CSSFontFamilyValue): this;
|
|
27
|
+
lineHeight(value: CSSLengthValue | "normal" | number): this;
|
|
28
|
+
letterSpacing(value: CSSLengthValue | "normal"): this;
|
|
29
|
+
textAlign(value: TextAlignValue): this;
|
|
30
|
+
textDecoration(value: TextDecorationValue): this;
|
|
31
|
+
fontStyle(value: FontStyleValue): this;
|
|
31
32
|
fontVariant(value: string): this;
|
|
32
33
|
fontStretch(value: string): this;
|
|
33
|
-
textTransform(value:
|
|
34
|
-
textIndent(value:
|
|
35
|
-
textOverflow(value:
|
|
34
|
+
textTransform(value: TextTransformValue): this;
|
|
35
|
+
textIndent(value: CSSLengthValue): this;
|
|
36
|
+
textOverflow(value: TextOverflowValue): this;
|
|
36
37
|
textShadow(value: string): this;
|
|
37
|
-
whiteSpace(value:
|
|
38
|
-
wordSpacing(value:
|
|
39
|
-
wordWrap(value:
|
|
40
|
-
overflowWrap(value:
|
|
41
|
-
textAlignLast(value:
|
|
42
|
-
textJustify(value:
|
|
43
|
-
textDecorationLine(value:
|
|
44
|
-
textDecorationColor(value:
|
|
45
|
-
textDecorationStyle(value:
|
|
46
|
-
textDecorationThickness(value:
|
|
47
|
-
textUnderlineOffset(value:
|
|
48
|
-
verticalAlign(value:
|
|
49
|
-
position(value:
|
|
50
|
-
padding(value:
|
|
51
|
-
paddingTop(value:
|
|
52
|
-
paddingRight(value:
|
|
53
|
-
paddingBottom(value:
|
|
54
|
-
paddingLeft(value:
|
|
55
|
-
margin(value:
|
|
56
|
-
marginTop(value:
|
|
57
|
-
marginRight(value:
|
|
58
|
-
marginBottom(value:
|
|
59
|
-
marginLeft(value:
|
|
60
|
-
width(value:
|
|
61
|
-
height(value:
|
|
62
|
-
minWidth(value:
|
|
63
|
-
maxWidth(value:
|
|
64
|
-
minHeight(value:
|
|
65
|
-
maxHeight(value:
|
|
66
|
-
boxSizing(value:
|
|
67
|
-
top(value:
|
|
68
|
-
right(value:
|
|
69
|
-
bottom(value:
|
|
70
|
-
left(value:
|
|
71
|
-
zIndex(value:
|
|
72
|
-
flexDirection(value:
|
|
73
|
-
alignItems(value:
|
|
74
|
-
justifyContent(value:
|
|
75
|
-
gap(value:
|
|
76
|
-
flexWrap(value:
|
|
77
|
-
flexGrow(value: string): this;
|
|
78
|
-
flexShrink(value: string): this;
|
|
79
|
-
flexBasis(value:
|
|
80
|
-
alignSelf(value:
|
|
81
|
-
alignContent(value:
|
|
82
|
-
justifySelf(value:
|
|
83
|
-
justifyItems(value:
|
|
38
|
+
whiteSpace(value: WhiteSpaceValue): this;
|
|
39
|
+
wordSpacing(value: CSSLengthValue | "normal"): this;
|
|
40
|
+
wordWrap(value: WordWrapValue): this;
|
|
41
|
+
overflowWrap(value: OverflowWrapValue): this;
|
|
42
|
+
textAlignLast(value: TextAlignLastValue): this;
|
|
43
|
+
textJustify(value: TextJustifyValue): this;
|
|
44
|
+
textDecorationLine(value: TextDecorationLineValue): this;
|
|
45
|
+
textDecorationColor(value: CSSColorValue): this;
|
|
46
|
+
textDecorationStyle(value: TextDecorationStyleValue): this;
|
|
47
|
+
textDecorationThickness(value: CSSLengthValue | "auto" | "from-font"): this;
|
|
48
|
+
textUnderlineOffset(value: CSSLengthValue | "auto"): this;
|
|
49
|
+
verticalAlign(value: VerticalAlignValue): this;
|
|
50
|
+
position(value: PositionValue): this;
|
|
51
|
+
padding(value: CSSLengthValue): this;
|
|
52
|
+
paddingTop(value: CSSLengthValue): this;
|
|
53
|
+
paddingRight(value: CSSLengthValue): this;
|
|
54
|
+
paddingBottom(value: CSSLengthValue): this;
|
|
55
|
+
paddingLeft(value: CSSLengthValue): this;
|
|
56
|
+
margin(value: CSSLengthValue | "auto"): this;
|
|
57
|
+
marginTop(value: CSSLengthValue | "auto"): this;
|
|
58
|
+
marginRight(value: CSSLengthValue | "auto"): this;
|
|
59
|
+
marginBottom(value: CSSLengthValue | "auto"): this;
|
|
60
|
+
marginLeft(value: CSSLengthValue | "auto"): this;
|
|
61
|
+
width(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
62
|
+
height(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
63
|
+
minWidth(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
64
|
+
maxWidth(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content" | "none"): this;
|
|
65
|
+
minHeight(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
66
|
+
maxHeight(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content" | "none"): this;
|
|
67
|
+
boxSizing(value: BoxSizingValue): this;
|
|
68
|
+
top(value: CSSLengthValue | "auto"): this;
|
|
69
|
+
right(value: CSSLengthValue | "auto"): this;
|
|
70
|
+
bottom(value: CSSLengthValue | "auto"): this;
|
|
71
|
+
left(value: CSSLengthValue | "auto"): this;
|
|
72
|
+
zIndex(value: number | "auto"): this;
|
|
73
|
+
flexDirection(value: FlexDirectionValue): this;
|
|
74
|
+
alignItems(value: AlignItemsValue): this;
|
|
75
|
+
justifyContent(value: JustifyContentValue): this;
|
|
76
|
+
gap(value: CSSLengthValue): this;
|
|
77
|
+
flexWrap(value: FlexWrapValue): this;
|
|
78
|
+
flexGrow(value: number | string): this;
|
|
79
|
+
flexShrink(value: number | string): this;
|
|
80
|
+
flexBasis(value: CSSLengthValue | "auto" | "content" | "fit-content"): this;
|
|
81
|
+
alignSelf(value: AlignSelfValue): this;
|
|
82
|
+
alignContent(value: AlignContentValue): this;
|
|
83
|
+
justifySelf(value: JustifySelfValue): this;
|
|
84
|
+
justifyItems(value: JustifyItemsValue): this;
|
|
84
85
|
gridTemplateColumns(value: string): this;
|
|
85
86
|
gridTemplateRows(value: string): this;
|
|
86
87
|
gridTemplateAreas(value: string): this;
|
|
87
88
|
gridColumn(value: string): this;
|
|
88
89
|
gridRow(value: string): this;
|
|
89
|
-
gridColumnStart(value: string): this;
|
|
90
|
-
gridColumnEnd(value: string): this;
|
|
91
|
-
gridRowStart(value: string): this;
|
|
92
|
-
gridRowEnd(value: string): this;
|
|
90
|
+
gridColumnStart(value: string | number | "auto"): this;
|
|
91
|
+
gridColumnEnd(value: string | number | "auto"): this;
|
|
92
|
+
gridRowStart(value: string | number | "auto"): this;
|
|
93
|
+
gridRowEnd(value: string | number | "auto"): this;
|
|
93
94
|
gridArea(value: string): this;
|
|
94
|
-
gridAutoColumns(value:
|
|
95
|
-
gridAutoRows(value:
|
|
96
|
-
gridAutoFlow(value:
|
|
95
|
+
gridAutoColumns(value: CSSLengthValue): this;
|
|
96
|
+
gridAutoRows(value: CSSLengthValue): this;
|
|
97
|
+
gridAutoFlow(value: GridAutoFlowValue): this;
|
|
97
98
|
border(value: string): this;
|
|
98
99
|
borderTop(value: string): this;
|
|
99
100
|
borderRight(value: string): this;
|
|
100
101
|
borderBottom(value: string): this;
|
|
101
102
|
borderLeft(value: string): this;
|
|
102
|
-
borderWidth(value:
|
|
103
|
-
borderStyle(value:
|
|
104
|
-
borderColor(value:
|
|
105
|
-
borderTopWidth(value:
|
|
106
|
-
borderRightWidth(value:
|
|
107
|
-
borderBottomWidth(value:
|
|
108
|
-
borderLeftWidth(value:
|
|
109
|
-
borderTopStyle(value:
|
|
110
|
-
borderRightStyle(value:
|
|
111
|
-
borderBottomStyle(value:
|
|
112
|
-
borderLeftStyle(value:
|
|
113
|
-
borderTopColor(value:
|
|
114
|
-
borderRightColor(value:
|
|
115
|
-
borderBottomColor(value:
|
|
116
|
-
borderLeftColor(value:
|
|
117
|
-
borderRadius(value:
|
|
118
|
-
borderTopLeftRadius(value:
|
|
119
|
-
borderTopRightRadius(value:
|
|
120
|
-
borderBottomLeftRadius(value:
|
|
121
|
-
borderBottomRightRadius(value:
|
|
103
|
+
borderWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
104
|
+
borderStyle(value: BorderStyleValue): this;
|
|
105
|
+
borderColor(value: CSSColorValue): this;
|
|
106
|
+
borderTopWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
107
|
+
borderRightWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
108
|
+
borderBottomWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
109
|
+
borderLeftWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
110
|
+
borderTopStyle(value: BorderStyleValue): this;
|
|
111
|
+
borderRightStyle(value: BorderStyleValue): this;
|
|
112
|
+
borderBottomStyle(value: BorderStyleValue): this;
|
|
113
|
+
borderLeftStyle(value: BorderStyleValue): this;
|
|
114
|
+
borderTopColor(value: CSSColorValue): this;
|
|
115
|
+
borderRightColor(value: CSSColorValue): this;
|
|
116
|
+
borderBottomColor(value: CSSColorValue): this;
|
|
117
|
+
borderLeftColor(value: CSSColorValue): this;
|
|
118
|
+
borderRadius(value: CSSLengthValue): this;
|
|
119
|
+
borderTopLeftRadius(value: CSSLengthValue): this;
|
|
120
|
+
borderTopRightRadius(value: CSSLengthValue): this;
|
|
121
|
+
borderBottomLeftRadius(value: CSSLengthValue): this;
|
|
122
|
+
borderBottomRightRadius(value: CSSLengthValue): this;
|
|
122
123
|
outline(value: string): this;
|
|
123
|
-
outlineWidth(value:
|
|
124
|
-
outlineStyle(value:
|
|
125
|
-
outlineColor(value:
|
|
126
|
-
outlineOffset(value:
|
|
127
|
-
backgroundColor(value:
|
|
128
|
-
backgroundImage(value:
|
|
129
|
-
backgroundRepeat(value:
|
|
124
|
+
outlineWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
125
|
+
outlineStyle(value: OutlineStyleValue): this;
|
|
126
|
+
outlineColor(value: CSSColorValue): this;
|
|
127
|
+
outlineOffset(value: CSSLengthValue): this;
|
|
128
|
+
backgroundColor(value: CSSColorValue): this;
|
|
129
|
+
backgroundImage(value: CSSBackgroundImageValue | "none"): this;
|
|
130
|
+
backgroundRepeat(value: BackgroundRepeatValue): this;
|
|
130
131
|
backgroundPosition(value: string): this;
|
|
131
|
-
backgroundSize(value:
|
|
132
|
-
backgroundAttachment(value:
|
|
133
|
-
backgroundClip(value:
|
|
134
|
-
backgroundOrigin(value:
|
|
135
|
-
boxShadow(value: string): this;
|
|
136
|
-
opacity(value: string): this;
|
|
132
|
+
backgroundSize(value: CSSLengthValue | "auto" | "cover" | "contain"): this;
|
|
133
|
+
backgroundAttachment(value: BackgroundAttachmentValue): this;
|
|
134
|
+
backgroundClip(value: BackgroundClipValue): this;
|
|
135
|
+
backgroundOrigin(value: BackgroundOriginValue): this;
|
|
136
|
+
boxShadow(value: string | "none"): this;
|
|
137
|
+
opacity(value: number | string): this;
|
|
137
138
|
transition(value: string): this;
|
|
138
|
-
transitionProperty(value: string): this;
|
|
139
|
-
transitionDuration(value: string): this;
|
|
140
|
-
transitionTimingFunction(value:
|
|
141
|
-
transitionDelay(value: string): this;
|
|
142
|
-
transform(value:
|
|
139
|
+
transitionProperty(value: string | "none" | "all"): this;
|
|
140
|
+
transitionDuration(value: string | number): this;
|
|
141
|
+
transitionTimingFunction(value: CSSTimingFunctionValue): this;
|
|
142
|
+
transitionDelay(value: string | number): this;
|
|
143
|
+
transform(value: CSSTransformValue | "none"): this;
|
|
143
144
|
transformOrigin(value: string): this;
|
|
144
|
-
transformStyle(value:
|
|
145
|
-
perspective(value:
|
|
145
|
+
transformStyle(value: TransformStyleValue): this;
|
|
146
|
+
perspective(value: CSSLengthValue | "none"): this;
|
|
146
147
|
perspectiveOrigin(value: string): this;
|
|
147
|
-
backfaceVisibility(value:
|
|
148
|
+
backfaceVisibility(value: BackfaceVisibilityValue): this;
|
|
148
149
|
animation(value: string): this;
|
|
149
|
-
animationName(value:
|
|
150
|
-
animationDuration(value: string): this;
|
|
151
|
-
animationTimingFunction(value:
|
|
152
|
-
animationDelay(value: string): this;
|
|
153
|
-
animationIterationCount(value: string): this;
|
|
154
|
-
animationDirection(value:
|
|
155
|
-
animationFillMode(value:
|
|
156
|
-
animationPlayState(value:
|
|
157
|
-
filter(value:
|
|
158
|
-
backdropFilter(value:
|
|
159
|
-
overflow(value:
|
|
160
|
-
overflowX(value:
|
|
161
|
-
overflowY(value:
|
|
162
|
-
visibility(value:
|
|
163
|
-
objectFit(value:
|
|
150
|
+
animationName(value: CSSAnimationNameValue): this;
|
|
151
|
+
animationDuration(value: string | number): this;
|
|
152
|
+
animationTimingFunction(value: CSSTimingFunctionValue): this;
|
|
153
|
+
animationDelay(value: string | number): this;
|
|
154
|
+
animationIterationCount(value: number | "infinite" | string): this;
|
|
155
|
+
animationDirection(value: AnimationDirectionValue): this;
|
|
156
|
+
animationFillMode(value: AnimationFillModeValue): this;
|
|
157
|
+
animationPlayState(value: AnimationPlayStateValue): this;
|
|
158
|
+
filter(value: CSSFilterValue | "none"): this;
|
|
159
|
+
backdropFilter(value: CSSFilterValue | "none"): this;
|
|
160
|
+
overflow(value: OverflowValue): this;
|
|
161
|
+
overflowX(value: OverflowValue): this;
|
|
162
|
+
overflowY(value: OverflowValue): this;
|
|
163
|
+
visibility(value: VisibilityValue): this;
|
|
164
|
+
objectFit(value: ObjectFitValue): this;
|
|
164
165
|
objectPosition(value: string): this;
|
|
165
166
|
listStyle(value: string): this;
|
|
166
|
-
listStyleType(value:
|
|
167
|
-
listStylePosition(value:
|
|
168
|
-
listStyleImage(value:
|
|
169
|
-
borderCollapse(value:
|
|
170
|
-
borderSpacing(value:
|
|
171
|
-
captionSide(value:
|
|
172
|
-
emptyCells(value:
|
|
173
|
-
tableLayout(value:
|
|
174
|
-
content(value:
|
|
175
|
-
quotes(value: string): this;
|
|
176
|
-
counterReset(value: string): this;
|
|
177
|
-
counterIncrement(value: string): this;
|
|
178
|
-
appearance(value:
|
|
179
|
-
userSelect(value:
|
|
180
|
-
pointerEvents(value:
|
|
181
|
-
resize(value:
|
|
182
|
-
scrollBehavior(value:
|
|
183
|
-
clip(value: string): this;
|
|
184
|
-
clipPath(value: string): this;
|
|
185
|
-
isolation(value:
|
|
186
|
-
mixBlendMode(value:
|
|
187
|
-
willChange(value: string): this;
|
|
188
|
-
contain(value:
|
|
189
|
-
pageBreakBefore(value:
|
|
190
|
-
pageBreakAfter(value:
|
|
191
|
-
pageBreakInside(value:
|
|
192
|
-
breakBefore(value:
|
|
193
|
-
breakAfter(value:
|
|
194
|
-
breakInside(value:
|
|
195
|
-
orphans(value: string): this;
|
|
196
|
-
widows(value: string): this;
|
|
197
|
-
columnCount(value: string): this;
|
|
198
|
-
columnFill(value:
|
|
199
|
-
columnGap(value:
|
|
167
|
+
listStyleType(value: ListStyleTypeValue): this;
|
|
168
|
+
listStylePosition(value: ListStylePositionValue): this;
|
|
169
|
+
listStyleImage(value: CSSBackgroundImageValue | "none"): this;
|
|
170
|
+
borderCollapse(value: BorderCollapseValue): this;
|
|
171
|
+
borderSpacing(value: CSSLengthValue): this;
|
|
172
|
+
captionSide(value: CaptionSideValue): this;
|
|
173
|
+
emptyCells(value: EmptyCellsValue): this;
|
|
174
|
+
tableLayout(value: TableLayoutValue): this;
|
|
175
|
+
content(value: CSSContentValue | "normal" | "none"): this;
|
|
176
|
+
quotes(value: string | "none"): this;
|
|
177
|
+
counterReset(value: string | "none"): this;
|
|
178
|
+
counterIncrement(value: string | "none"): this;
|
|
179
|
+
appearance(value: AppearanceValue): this;
|
|
180
|
+
userSelect(value: UserSelectValue): this;
|
|
181
|
+
pointerEvents(value: PointerEventsValue): this;
|
|
182
|
+
resize(value: ResizeValue): this;
|
|
183
|
+
scrollBehavior(value: ScrollBehaviorValue): this;
|
|
184
|
+
clip(value: string | "auto"): this;
|
|
185
|
+
clipPath(value: string | "none"): this;
|
|
186
|
+
isolation(value: IsolationValue): this;
|
|
187
|
+
mixBlendMode(value: MixBlendModeValue): this;
|
|
188
|
+
willChange(value: string | "auto"): this;
|
|
189
|
+
contain(value: ContainValue): this;
|
|
190
|
+
pageBreakBefore(value: PageBreakValue): this;
|
|
191
|
+
pageBreakAfter(value: PageBreakValue): this;
|
|
192
|
+
pageBreakInside(value: PageBreakValue): this;
|
|
193
|
+
breakBefore(value: BreakValue): this;
|
|
194
|
+
breakAfter(value: BreakValue): this;
|
|
195
|
+
breakInside(value: BreakValue): this;
|
|
196
|
+
orphans(value: number | string): this;
|
|
197
|
+
widows(value: number | string): this;
|
|
198
|
+
columnCount(value: number | "auto" | string): this;
|
|
199
|
+
columnFill(value: ColumnFillValue): this;
|
|
200
|
+
columnGap(value: CSSLengthValue | "normal"): this;
|
|
200
201
|
columnRule(value: string): this;
|
|
201
|
-
columnRuleColor(value:
|
|
202
|
-
columnRuleStyle(value:
|
|
203
|
-
columnRuleWidth(value:
|
|
204
|
-
columnSpan(value:
|
|
205
|
-
columnWidth(value:
|
|
202
|
+
columnRuleColor(value: CSSColorValue): this;
|
|
203
|
+
columnRuleStyle(value: ColumnRuleStyleValue): this;
|
|
204
|
+
columnRuleWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
205
|
+
columnSpan(value: ColumnSpanValue): this;
|
|
206
|
+
columnWidth(value: CSSLengthValue | "auto"): this;
|
|
206
207
|
columns(value: string): this;
|
|
207
|
-
cursor(value:
|
|
208
|
+
cursor(value: CursorValue): this;
|
|
209
|
+
aspectRatio(value: CSSAspectRatioValue): this;
|
|
210
|
+
clear(value: ClearValue): this;
|
|
211
|
+
float(value: FloatValue): this;
|
|
212
|
+
order(value: number | string): this;
|
|
213
|
+
placeContent(value: string): this;
|
|
214
|
+
placeItems(value: string): this;
|
|
215
|
+
placeSelf(value: string): this;
|
|
216
|
+
hyphens(value: HyphensValue): this;
|
|
217
|
+
lineBreak(value: LineBreakValue): this;
|
|
218
|
+
wordBreak(value: WordBreakValue): this;
|
|
219
|
+
textOrientation(value: TextOrientationValue): this;
|
|
220
|
+
writingMode(value: WritingModeValue): this;
|
|
221
|
+
direction(value: DirectionValue): this;
|
|
222
|
+
unicodeBidi(value: UnicodeBidiValue): this;
|
|
223
|
+
backgroundBlendMode(value: BackgroundBlendModeValue): this;
|
|
224
|
+
backgroundPositionX(value: string): this;
|
|
225
|
+
backgroundPositionY(value: string): this;
|
|
226
|
+
borderImage(value: string): this;
|
|
227
|
+
borderImageSource(value: CSSBackgroundImageValue | "none"): this;
|
|
228
|
+
borderImageSlice(value: string | number): this;
|
|
229
|
+
borderImageWidth(value: CSSLengthValue | number): this;
|
|
230
|
+
borderImageOutset(value: CSSLengthValue | number): this;
|
|
231
|
+
borderImageRepeat(value: BackgroundRepeatValue): this;
|
|
232
|
+
inset(value: CSSLengthValue | "auto"): this;
|
|
233
|
+
insetBlock(value: CSSLengthValue): this;
|
|
234
|
+
insetBlockStart(value: CSSLengthValue | "auto"): this;
|
|
235
|
+
insetBlockEnd(value: CSSLengthValue | "auto"): this;
|
|
236
|
+
insetInline(value: CSSLengthValue): this;
|
|
237
|
+
insetInlineStart(value: CSSLengthValue | "auto"): this;
|
|
238
|
+
insetInlineEnd(value: CSSLengthValue | "auto"): this;
|
|
239
|
+
marginBlock(value: CSSLengthValue | "auto"): this;
|
|
240
|
+
marginBlockStart(value: CSSLengthValue | "auto"): this;
|
|
241
|
+
marginBlockEnd(value: CSSLengthValue | "auto"): this;
|
|
242
|
+
marginInline(value: CSSLengthValue | "auto"): this;
|
|
243
|
+
marginInlineStart(value: CSSLengthValue | "auto"): this;
|
|
244
|
+
marginInlineEnd(value: CSSLengthValue | "auto"): this;
|
|
245
|
+
paddingBlock(value: CSSLengthValue): this;
|
|
246
|
+
paddingBlockStart(value: CSSLengthValue): this;
|
|
247
|
+
paddingBlockEnd(value: CSSLengthValue): this;
|
|
248
|
+
paddingInline(value: CSSLengthValue): this;
|
|
249
|
+
paddingInlineStart(value: CSSLengthValue): this;
|
|
250
|
+
paddingInlineEnd(value: CSSLengthValue): this;
|
|
251
|
+
inlineSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
252
|
+
blockSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
253
|
+
minInlineSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
254
|
+
minBlockSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content"): this;
|
|
255
|
+
maxInlineSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content" | "none"): this;
|
|
256
|
+
maxBlockSize(value: CSSLengthValue | "auto" | "fit-content" | "max-content" | "min-content" | "none"): this;
|
|
257
|
+
borderBlock(value: string): this;
|
|
258
|
+
borderBlockStart(value: string): this;
|
|
259
|
+
borderBlockEnd(value: string): this;
|
|
260
|
+
borderInline(value: string): this;
|
|
261
|
+
borderInlineStart(value: string): this;
|
|
262
|
+
borderInlineEnd(value: string): this;
|
|
263
|
+
borderBlockWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
264
|
+
borderBlockStartWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
265
|
+
borderBlockEndWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
266
|
+
borderInlineWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
267
|
+
borderInlineStartWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
268
|
+
borderInlineEndWidth(value: CSSLengthValue | "thin" | "medium" | "thick"): this;
|
|
269
|
+
borderBlockStyle(value: BorderStyleValue): this;
|
|
270
|
+
borderBlockStartStyle(value: BorderStyleValue): this;
|
|
271
|
+
borderBlockEndStyle(value: BorderStyleValue): this;
|
|
272
|
+
borderInlineStyle(value: BorderStyleValue): this;
|
|
273
|
+
borderInlineStartStyle(value: BorderStyleValue): this;
|
|
274
|
+
borderInlineEndStyle(value: BorderStyleValue): this;
|
|
275
|
+
borderBlockColor(value: CSSColorValue): this;
|
|
276
|
+
borderBlockStartColor(value: CSSColorValue): this;
|
|
277
|
+
borderBlockEndColor(value: CSSColorValue): this;
|
|
278
|
+
borderInlineColor(value: CSSColorValue): this;
|
|
279
|
+
borderInlineStartColor(value: CSSColorValue): this;
|
|
280
|
+
borderInlineEndColor(value: CSSColorValue): this;
|
|
281
|
+
borderStartStartRadius(value: CSSLengthValue): this;
|
|
282
|
+
borderStartEndRadius(value: CSSLengthValue): this;
|
|
283
|
+
borderEndStartRadius(value: CSSLengthValue): this;
|
|
284
|
+
borderEndEndRadius(value: CSSLengthValue): this;
|
|
285
|
+
scrollMargin(value: CSSLengthValue): this;
|
|
286
|
+
scrollMarginTop(value: CSSLengthValue): this;
|
|
287
|
+
scrollMarginRight(value: CSSLengthValue): this;
|
|
288
|
+
scrollMarginBottom(value: CSSLengthValue): this;
|
|
289
|
+
scrollMarginLeft(value: CSSLengthValue): this;
|
|
290
|
+
scrollPadding(value: CSSLengthValue): this;
|
|
291
|
+
scrollPaddingTop(value: CSSLengthValue): this;
|
|
292
|
+
scrollPaddingRight(value: CSSLengthValue): this;
|
|
293
|
+
scrollPaddingBottom(value: CSSLengthValue): this;
|
|
294
|
+
scrollPaddingLeft(value: CSSLengthValue): this;
|
|
295
|
+
overscrollBehavior(value: OverscrollBehaviorValue): this;
|
|
296
|
+
overscrollBehaviorX(value: OverscrollBehaviorValue): this;
|
|
297
|
+
overscrollBehaviorY(value: OverscrollBehaviorValue): this;
|
|
298
|
+
caretColor(value: CaretColorValue): this;
|
|
299
|
+
caretShape(value: CaretShapeValue): this;
|
|
300
|
+
caretAnimation(value: string): this;
|
|
301
|
+
imageRendering(value: ImageRenderingValue): this;
|
|
302
|
+
colorScheme(value: ColorSchemeValue): this;
|
|
303
|
+
contentVisibility(value: ContentVisibilityValue): this;
|
|
304
|
+
touchAction(value: TouchActionValue): this;
|
|
305
|
+
containerType(value: ContainerTypeValue): this;
|
|
306
|
+
containerName(value: string): this;
|
|
307
|
+
container(value: string): this;
|
|
308
|
+
fontFeatureSettings(value: string): this;
|
|
309
|
+
fontKerning(value: FontKerningValue): this;
|
|
310
|
+
fontSynthesis(value: FontSynthesisValue): this;
|
|
311
|
+
fontOpticalSizing(value: FontOpticalSizingValue): this;
|
|
312
|
+
fontDisplay(value: FontDisplayValue): this;
|
|
313
|
+
fontVariantCaps(value: FontVariantCapsValue): this;
|
|
314
|
+
fontVariantNumeric(value: string): this;
|
|
315
|
+
fontVariantLigatures(value: string): this;
|
|
316
|
+
fontVariantEastAsian(value: string): this;
|
|
317
|
+
fontVariantAlternates(value: string): this;
|
|
318
|
+
fontVariantPosition(value: string): this;
|
|
319
|
+
textRendering(value: TextRenderingValue): this;
|
|
320
|
+
textCombineUpright(value: TextCombineUprightValue): this;
|
|
321
|
+
textSizeAdjust(value: string | "auto" | "none" | `${number}%`): this;
|
|
322
|
+
mask(value: string): this;
|
|
323
|
+
maskImage(value: CSSBackgroundImageValue | "none"): this;
|
|
324
|
+
maskMode(value: string): this;
|
|
325
|
+
maskRepeat(value: BackgroundRepeatValue): this;
|
|
326
|
+
maskPosition(value: string): this;
|
|
327
|
+
maskSize(value: CSSLengthValue | "auto" | "cover" | "contain"): this;
|
|
328
|
+
maskOrigin(value: BackgroundOriginValue): this;
|
|
329
|
+
maskClip(value: BackgroundClipValue): this;
|
|
330
|
+
maskComposite(value: MaskCompositeValue): this;
|
|
331
|
+
clipRule(value: ClipRuleValue): this;
|
|
332
|
+
gridColumnGap(value: CSSLengthValue): this;
|
|
333
|
+
gridRowGap(value: CSSLengthValue): this;
|
|
334
|
+
gridGap(value: CSSLengthValue): this;
|
|
208
335
|
}
|
|
209
|
-
export declare const display: (value?: string) => StyleBuilder, flex: (value?: string) => StyleBuilder, grid: (value?: string) => StyleBuilder, bg: (value?: string) => StyleBuilder, color: (value?: string) => StyleBuilder, accentColor: (value?: string) => StyleBuilder, fontSize: (value?: string) => StyleBuilder, fontWeight: (value?: string) => StyleBuilder, fontFamily: (value?: string) => StyleBuilder, lineHeight: (value?: string) => StyleBuilder, letterSpacing: (value?: string) => StyleBuilder, textAlign: (value?: string) => StyleBuilder, textDecoration: (value?: string) => StyleBuilder, bold: (value?: string) => StyleBuilder, fontStyle: (value?: string) => StyleBuilder, fontVariant: (value?: string) => StyleBuilder, fontStretch: (value?: string) => StyleBuilder, textTransform: (value?: string) => StyleBuilder, textIndent: (value?: string) => StyleBuilder, textOverflow: (value?: string) => StyleBuilder, textShadow: (value?: string) => StyleBuilder, whiteSpace: (value?: string) => StyleBuilder, wordSpacing: (value?: string) => StyleBuilder, wordWrap: (value?: string) => StyleBuilder, overflowWrap: (value?: string) => StyleBuilder, textAlignLast: (value?: string) => StyleBuilder, textJustify: (value?: string) => StyleBuilder, textDecorationLine: (value?: string) => StyleBuilder, textDecorationColor: (value?: string) => StyleBuilder, textDecorationStyle: (value?: string) => StyleBuilder, textDecorationThickness: (value?: string) => StyleBuilder, textUnderlineOffset: (value?: string) => StyleBuilder, verticalAlign: (value?: string) => StyleBuilder, position: (value?: string) => StyleBuilder, padding: (value?: string) => StyleBuilder, paddingTop: (value?: string) => StyleBuilder, paddingRight: (value?: string) => StyleBuilder, paddingBottom: (value?: string) => StyleBuilder, paddingLeft: (value?: string) => StyleBuilder, margin: (value?: string) => StyleBuilder, marginTop: (value?: string) => StyleBuilder, marginRight: (value?: string) => StyleBuilder, marginBottom: (value?: string) => StyleBuilder, marginLeft: (value?: string) => StyleBuilder, width: (value?: string) => StyleBuilder, height: (value?: string) => StyleBuilder, minWidth: (value?: string) => StyleBuilder, maxWidth: (value?: string) => StyleBuilder, minHeight: (value?: string) => StyleBuilder, maxHeight: (value?: string) => StyleBuilder, boxSizing: (value?: string) => StyleBuilder, top: (value?: string) => StyleBuilder, right: (value?: string) => StyleBuilder, bottom: (value?: string) => StyleBuilder, left: (value?: string) => StyleBuilder, zIndex: (value?: string) => StyleBuilder, flexDirection: (value?: string) => StyleBuilder, alignItems: (value?: string) => StyleBuilder, justifyContent: (value?: string) => StyleBuilder, center: (value?: string) => StyleBuilder, gap: (value?: string) => StyleBuilder, flexWrap: (value?: string) => StyleBuilder, flexGrow: (value?: string) => StyleBuilder, flexShrink: (value?: string) => StyleBuilder, flexBasis: (value?: string) => StyleBuilder, alignSelf: (value?: string) => StyleBuilder, alignContent: (value?: string) => StyleBuilder, justifySelf: (value?: string) => StyleBuilder, justifyItems: (value?: string) => StyleBuilder, gridTemplateColumns: (value?: string) => StyleBuilder, gridTemplateRows: (value?: string) => StyleBuilder, gridTemplateAreas: (value?: string) => StyleBuilder, gridColumn: (value?: string) => StyleBuilder, gridRow: (value?: string) => StyleBuilder, gridColumnStart: (value?: string) => StyleBuilder, gridColumnEnd: (value?: string) => StyleBuilder, gridRowStart: (value?: string) => StyleBuilder, gridRowEnd: (value?: string) => StyleBuilder, gridArea: (value?: string) => StyleBuilder, gridAutoColumns: (value?: string) => StyleBuilder, gridAutoRows: (value?: string) => StyleBuilder, gridAutoFlow: (value?: string) => StyleBuilder, border: (value?: string) => StyleBuilder, borderTop: (value?: string) => StyleBuilder, borderRight: (value?: string) => StyleBuilder, borderBottom: (value?: string) => StyleBuilder, borderLeft: (value?: string) => StyleBuilder, borderWidth: (value?: string) => StyleBuilder, borderStyle: (value?: string) => StyleBuilder, borderColor: (value?: string) => StyleBuilder, borderTopWidth: (value?: string) => StyleBuilder, borderRightWidth: (value?: string) => StyleBuilder, borderBottomWidth: (value?: string) => StyleBuilder, borderLeftWidth: (value?: string) => StyleBuilder, borderTopStyle: (value?: string) => StyleBuilder, borderRightStyle: (value?: string) => StyleBuilder, borderBottomStyle: (value?: string) => StyleBuilder, borderLeftStyle: (value?: string) => StyleBuilder, borderTopColor: (value?: string) => StyleBuilder, borderRightColor: (value?: string) => StyleBuilder, borderBottomColor: (value?: string) => StyleBuilder, borderLeftColor: (value?: string) => StyleBuilder, borderRadius: (value?: string) => StyleBuilder, borderTopLeftRadius: (value?: string) => StyleBuilder, borderTopRightRadius: (value?: string) => StyleBuilder, borderBottomLeftRadius: (value?: string) => StyleBuilder, borderBottomRightRadius: (value?: string) => StyleBuilder, outline: (value?: string) => StyleBuilder, outlineWidth: (value?: string) => StyleBuilder, outlineStyle: (value?: string) => StyleBuilder, outlineColor: (value?: string) => StyleBuilder, outlineOffset: (value?: string) => StyleBuilder, backgroundColor: (value?: string) => StyleBuilder, backgroundImage: (value?: string) => StyleBuilder, backgroundRepeat: (value?: string) => StyleBuilder, backgroundPosition: (value?: string) => StyleBuilder, backgroundSize: (value?: string) => StyleBuilder, backgroundAttachment: (value?: string) => StyleBuilder, backgroundClip: (value?: string) => StyleBuilder, backgroundOrigin: (value?: string) => StyleBuilder, boxShadow: (value?: string) => StyleBuilder, opacity: (value?: string) => StyleBuilder, transition: (value?: string) => StyleBuilder, transitionProperty: (value?: string) => StyleBuilder, transitionDuration: (value?: string) => StyleBuilder, transitionTimingFunction: (value?: string) => StyleBuilder, transitionDelay: (value?: string) => StyleBuilder, transform: (value?: string) => StyleBuilder, transformOrigin: (value?: string) => StyleBuilder, transformStyle: (value?: string) => StyleBuilder, perspective: (value?: string) => StyleBuilder, perspectiveOrigin: (value?: string) => StyleBuilder, backfaceVisibility: (value?: string) => StyleBuilder, animation: (value?: string) => StyleBuilder, animationName: (value?: string) => StyleBuilder, animationDuration: (value?: string) => StyleBuilder, animationTimingFunction: (value?: string) => StyleBuilder, animationDelay: (value?: string) => StyleBuilder, animationIterationCount: (value?: string) => StyleBuilder, animationDirection: (value?: string) => StyleBuilder, animationFillMode: (value?: string) => StyleBuilder, animationPlayState: (value?: string) => StyleBuilder, filter: (value?: string) => StyleBuilder, backdropFilter: (value?: string) => StyleBuilder, overflow: (value?: string) => StyleBuilder, overflowX: (value?: string) => StyleBuilder, overflowY: (value?: string) => StyleBuilder, visibility: (value?: string) => StyleBuilder, objectFit: (value?: string) => StyleBuilder, objectPosition: (value?: string) => StyleBuilder, listStyle: (value?: string) => StyleBuilder, listStyleType: (value?: string) => StyleBuilder, listStylePosition: (value?: string) => StyleBuilder, listStyleImage: (value?: string) => StyleBuilder, borderCollapse: (value?: string) => StyleBuilder, borderSpacing: (value?: string) => StyleBuilder, captionSide: (value?: string) => StyleBuilder, emptyCells: (value?: string) => StyleBuilder, tableLayout: (value?: string) => StyleBuilder, content: (value?: string) => StyleBuilder, quotes: (value?: string) => StyleBuilder, counterReset: (value?: string) => StyleBuilder, counterIncrement: (value?: string) => StyleBuilder, appearance: (value?: string) => StyleBuilder, userSelect: (value?: string) => StyleBuilder, pointerEvents: (value?: string) => StyleBuilder, resize: (value?: string) => StyleBuilder, scrollBehavior: (value?: string) => StyleBuilder, clip: (value?: string) => StyleBuilder, clipPath: (value?: string) => StyleBuilder, isolation: (value?: string) => StyleBuilder, mixBlendMode: (value?: string) => StyleBuilder, willChange: (value?: string) => StyleBuilder, contain: (value?: string) => StyleBuilder, pageBreakBefore: (value?: string) => StyleBuilder, pageBreakAfter: (value?: string) => StyleBuilder, pageBreakInside: (value?: string) => StyleBuilder, breakBefore: (value?: string) => StyleBuilder, breakAfter: (value?: string) => StyleBuilder, breakInside: (value?: string) => StyleBuilder, orphans: (value?: string) => StyleBuilder, widows: (value?: string) => StyleBuilder, columnCount: (value?: string) => StyleBuilder, columnFill: (value?: string) => StyleBuilder, columnGap: (value?: string) => StyleBuilder, columnRule: (value?: string) => StyleBuilder, columnRuleColor: (value?: string) => StyleBuilder, columnRuleStyle: (value?: string) => StyleBuilder, columnRuleWidth: (value?: string) => StyleBuilder, columnSpan: (value?: string) => StyleBuilder, columnWidth: (value?: string) => StyleBuilder, columns: (value?: string) => StyleBuilder, cursor: (value?: string) => StyleBuilder;
|
|
336
|
+
export declare const display: (value?: string) => StyleBuilder, flex: (value?: string) => StyleBuilder, grid: (value?: string) => StyleBuilder, bg: (value?: string) => StyleBuilder, color: (value?: string) => StyleBuilder, accentColor: (value?: string) => StyleBuilder, fontSize: (value?: string) => StyleBuilder, fontWeight: (value?: string) => StyleBuilder, fontFamily: (value?: string) => StyleBuilder, lineHeight: (value?: string) => StyleBuilder, letterSpacing: (value?: string) => StyleBuilder, textAlign: (value?: string) => StyleBuilder, textDecoration: (value?: string) => StyleBuilder, bold: (value?: string) => StyleBuilder, fontStyle: (value?: string) => StyleBuilder, fontVariant: (value?: string) => StyleBuilder, fontStretch: (value?: string) => StyleBuilder, textTransform: (value?: string) => StyleBuilder, textIndent: (value?: string) => StyleBuilder, textOverflow: (value?: string) => StyleBuilder, textShadow: (value?: string) => StyleBuilder, whiteSpace: (value?: string) => StyleBuilder, wordSpacing: (value?: string) => StyleBuilder, wordWrap: (value?: string) => StyleBuilder, overflowWrap: (value?: string) => StyleBuilder, textAlignLast: (value?: string) => StyleBuilder, textJustify: (value?: string) => StyleBuilder, textDecorationLine: (value?: string) => StyleBuilder, textDecorationColor: (value?: string) => StyleBuilder, textDecorationStyle: (value?: string) => StyleBuilder, textDecorationThickness: (value?: string) => StyleBuilder, textUnderlineOffset: (value?: string) => StyleBuilder, verticalAlign: (value?: string) => StyleBuilder, position: (value?: string) => StyleBuilder, padding: (value?: string) => StyleBuilder, paddingTop: (value?: string) => StyleBuilder, paddingRight: (value?: string) => StyleBuilder, paddingBottom: (value?: string) => StyleBuilder, paddingLeft: (value?: string) => StyleBuilder, margin: (value?: string) => StyleBuilder, marginTop: (value?: string) => StyleBuilder, marginRight: (value?: string) => StyleBuilder, marginBottom: (value?: string) => StyleBuilder, marginLeft: (value?: string) => StyleBuilder, width: (value?: string) => StyleBuilder, height: (value?: string) => StyleBuilder, minWidth: (value?: string) => StyleBuilder, maxWidth: (value?: string) => StyleBuilder, minHeight: (value?: string) => StyleBuilder, maxHeight: (value?: string) => StyleBuilder, boxSizing: (value?: string) => StyleBuilder, top: (value?: string) => StyleBuilder, right: (value?: string) => StyleBuilder, bottom: (value?: string) => StyleBuilder, left: (value?: string) => StyleBuilder, zIndex: (value?: string) => StyleBuilder, flexDirection: (value?: string) => StyleBuilder, alignItems: (value?: string) => StyleBuilder, justifyContent: (value?: string) => StyleBuilder, center: (value?: string) => StyleBuilder, gap: (value?: string) => StyleBuilder, flexWrap: (value?: string) => StyleBuilder, flexGrow: (value?: string) => StyleBuilder, flexShrink: (value?: string) => StyleBuilder, flexBasis: (value?: string) => StyleBuilder, alignSelf: (value?: string) => StyleBuilder, alignContent: (value?: string) => StyleBuilder, justifySelf: (value?: string) => StyleBuilder, justifyItems: (value?: string) => StyleBuilder, gridTemplateColumns: (value?: string) => StyleBuilder, gridTemplateRows: (value?: string) => StyleBuilder, gridTemplateAreas: (value?: string) => StyleBuilder, gridColumn: (value?: string) => StyleBuilder, gridRow: (value?: string) => StyleBuilder, gridColumnStart: (value?: string) => StyleBuilder, gridColumnEnd: (value?: string) => StyleBuilder, gridRowStart: (value?: string) => StyleBuilder, gridRowEnd: (value?: string) => StyleBuilder, gridArea: (value?: string) => StyleBuilder, gridAutoColumns: (value?: string) => StyleBuilder, gridAutoRows: (value?: string) => StyleBuilder, gridAutoFlow: (value?: string) => StyleBuilder, border: (value?: string) => StyleBuilder, borderTop: (value?: string) => StyleBuilder, borderRight: (value?: string) => StyleBuilder, borderBottom: (value?: string) => StyleBuilder, borderLeft: (value?: string) => StyleBuilder, borderWidth: (value?: string) => StyleBuilder, borderStyle: (value?: string) => StyleBuilder, borderColor: (value?: string) => StyleBuilder, borderTopWidth: (value?: string) => StyleBuilder, borderRightWidth: (value?: string) => StyleBuilder, borderBottomWidth: (value?: string) => StyleBuilder, borderLeftWidth: (value?: string) => StyleBuilder, borderTopStyle: (value?: string) => StyleBuilder, borderRightStyle: (value?: string) => StyleBuilder, borderBottomStyle: (value?: string) => StyleBuilder, borderLeftStyle: (value?: string) => StyleBuilder, borderTopColor: (value?: string) => StyleBuilder, borderRightColor: (value?: string) => StyleBuilder, borderBottomColor: (value?: string) => StyleBuilder, borderLeftColor: (value?: string) => StyleBuilder, borderRadius: (value?: string) => StyleBuilder, borderTopLeftRadius: (value?: string) => StyleBuilder, borderTopRightRadius: (value?: string) => StyleBuilder, borderBottomLeftRadius: (value?: string) => StyleBuilder, borderBottomRightRadius: (value?: string) => StyleBuilder, outline: (value?: string) => StyleBuilder, outlineWidth: (value?: string) => StyleBuilder, outlineStyle: (value?: string) => StyleBuilder, outlineColor: (value?: string) => StyleBuilder, outlineOffset: (value?: string) => StyleBuilder, backgroundColor: (value?: string) => StyleBuilder, backgroundImage: (value?: string) => StyleBuilder, backgroundRepeat: (value?: string) => StyleBuilder, backgroundPosition: (value?: string) => StyleBuilder, backgroundSize: (value?: string) => StyleBuilder, backgroundAttachment: (value?: string) => StyleBuilder, backgroundClip: (value?: string) => StyleBuilder, backgroundOrigin: (value?: string) => StyleBuilder, boxShadow: (value?: string) => StyleBuilder, opacity: (value?: string) => StyleBuilder, transition: (value?: string) => StyleBuilder, transitionProperty: (value?: string) => StyleBuilder, transitionDuration: (value?: string) => StyleBuilder, transitionTimingFunction: (value?: string) => StyleBuilder, transitionDelay: (value?: string) => StyleBuilder, transform: (value?: string) => StyleBuilder, transformOrigin: (value?: string) => StyleBuilder, transformStyle: (value?: string) => StyleBuilder, perspective: (value?: string) => StyleBuilder, perspectiveOrigin: (value?: string) => StyleBuilder, backfaceVisibility: (value?: string) => StyleBuilder, animation: (value?: string) => StyleBuilder, animationName: (value?: string) => StyleBuilder, animationDuration: (value?: string) => StyleBuilder, animationTimingFunction: (value?: string) => StyleBuilder, animationDelay: (value?: string) => StyleBuilder, animationIterationCount: (value?: string) => StyleBuilder, animationDirection: (value?: string) => StyleBuilder, animationFillMode: (value?: string) => StyleBuilder, animationPlayState: (value?: string) => StyleBuilder, filter: (value?: string) => StyleBuilder, backdropFilter: (value?: string) => StyleBuilder, overflow: (value?: string) => StyleBuilder, overflowX: (value?: string) => StyleBuilder, overflowY: (value?: string) => StyleBuilder, visibility: (value?: string) => StyleBuilder, objectFit: (value?: string) => StyleBuilder, objectPosition: (value?: string) => StyleBuilder, listStyle: (value?: string) => StyleBuilder, listStyleType: (value?: string) => StyleBuilder, listStylePosition: (value?: string) => StyleBuilder, listStyleImage: (value?: string) => StyleBuilder, borderCollapse: (value?: string) => StyleBuilder, borderSpacing: (value?: string) => StyleBuilder, captionSide: (value?: string) => StyleBuilder, emptyCells: (value?: string) => StyleBuilder, tableLayout: (value?: string) => StyleBuilder, content: (value?: string) => StyleBuilder, quotes: (value?: string) => StyleBuilder, counterReset: (value?: string) => StyleBuilder, counterIncrement: (value?: string) => StyleBuilder, appearance: (value?: string) => StyleBuilder, userSelect: (value?: string) => StyleBuilder, pointerEvents: (value?: string) => StyleBuilder, resize: (value?: string) => StyleBuilder, scrollBehavior: (value?: string) => StyleBuilder, clip: (value?: string) => StyleBuilder, clipPath: (value?: string) => StyleBuilder, isolation: (value?: string) => StyleBuilder, mixBlendMode: (value?: string) => StyleBuilder, willChange: (value?: string) => StyleBuilder, contain: (value?: string) => StyleBuilder, pageBreakBefore: (value?: string) => StyleBuilder, pageBreakAfter: (value?: string) => StyleBuilder, pageBreakInside: (value?: string) => StyleBuilder, breakBefore: (value?: string) => StyleBuilder, breakAfter: (value?: string) => StyleBuilder, breakInside: (value?: string) => StyleBuilder, orphans: (value?: string) => StyleBuilder, widows: (value?: string) => StyleBuilder, columnCount: (value?: string) => StyleBuilder, columnFill: (value?: string) => StyleBuilder, columnGap: (value?: string) => StyleBuilder, columnRule: (value?: string) => StyleBuilder, columnRuleColor: (value?: string) => StyleBuilder, columnRuleStyle: (value?: string) => StyleBuilder, columnRuleWidth: (value?: string) => StyleBuilder, columnSpan: (value?: string) => StyleBuilder, columnWidth: (value?: string) => StyleBuilder, columns: (value?: string) => StyleBuilder, cursor: (value?: string) => StyleBuilder, aspectRatio: (value?: string) => StyleBuilder, clear: (value?: string) => StyleBuilder, float: (value?: string) => StyleBuilder, order: (value?: string) => StyleBuilder, placeContent: (value?: string) => StyleBuilder, placeItems: (value?: string) => StyleBuilder, placeSelf: (value?: string) => StyleBuilder, hyphens: (value?: string) => StyleBuilder, lineBreak: (value?: string) => StyleBuilder, wordBreak: (value?: string) => StyleBuilder, textOrientation: (value?: string) => StyleBuilder, writingMode: (value?: string) => StyleBuilder, direction: (value?: string) => StyleBuilder, unicodeBidi: (value?: string) => StyleBuilder, backgroundBlendMode: (value?: string) => StyleBuilder, backgroundPositionX: (value?: string) => StyleBuilder, backgroundPositionY: (value?: string) => StyleBuilder, borderImage: (value?: string) => StyleBuilder, borderImageSource: (value?: string) => StyleBuilder, borderImageSlice: (value?: string) => StyleBuilder, borderImageWidth: (value?: string) => StyleBuilder, borderImageOutset: (value?: string) => StyleBuilder, borderImageRepeat: (value?: string) => StyleBuilder, inset: (value?: string) => StyleBuilder, insetBlock: (value?: string) => StyleBuilder, insetBlockStart: (value?: string) => StyleBuilder, insetBlockEnd: (value?: string) => StyleBuilder, insetInline: (value?: string) => StyleBuilder, insetInlineStart: (value?: string) => StyleBuilder, insetInlineEnd: (value?: string) => StyleBuilder, marginBlock: (value?: string) => StyleBuilder, marginBlockStart: (value?: string) => StyleBuilder, marginBlockEnd: (value?: string) => StyleBuilder, marginInline: (value?: string) => StyleBuilder, marginInlineStart: (value?: string) => StyleBuilder, marginInlineEnd: (value?: string) => StyleBuilder, paddingBlock: (value?: string) => StyleBuilder, paddingBlockStart: (value?: string) => StyleBuilder, paddingBlockEnd: (value?: string) => StyleBuilder, paddingInline: (value?: string) => StyleBuilder, paddingInlineStart: (value?: string) => StyleBuilder, paddingInlineEnd: (value?: string) => StyleBuilder, inlineSize: (value?: string) => StyleBuilder, blockSize: (value?: string) => StyleBuilder, minInlineSize: (value?: string) => StyleBuilder, minBlockSize: (value?: string) => StyleBuilder, maxInlineSize: (value?: string) => StyleBuilder, maxBlockSize: (value?: string) => StyleBuilder, borderBlock: (value?: string) => StyleBuilder, borderBlockStart: (value?: string) => StyleBuilder, borderBlockEnd: (value?: string) => StyleBuilder, borderInline: (value?: string) => StyleBuilder, borderInlineStart: (value?: string) => StyleBuilder, borderInlineEnd: (value?: string) => StyleBuilder, borderBlockWidth: (value?: string) => StyleBuilder, borderBlockStartWidth: (value?: string) => StyleBuilder, borderBlockEndWidth: (value?: string) => StyleBuilder, borderInlineWidth: (value?: string) => StyleBuilder, borderInlineStartWidth: (value?: string) => StyleBuilder, borderInlineEndWidth: (value?: string) => StyleBuilder, borderBlockStyle: (value?: string) => StyleBuilder, borderBlockStartStyle: (value?: string) => StyleBuilder, borderBlockEndStyle: (value?: string) => StyleBuilder, borderInlineStyle: (value?: string) => StyleBuilder, borderInlineStartStyle: (value?: string) => StyleBuilder, borderInlineEndStyle: (value?: string) => StyleBuilder, borderBlockColor: (value?: string) => StyleBuilder, borderBlockStartColor: (value?: string) => StyleBuilder, borderBlockEndColor: (value?: string) => StyleBuilder, borderInlineColor: (value?: string) => StyleBuilder, borderInlineStartColor: (value?: string) => StyleBuilder, borderInlineEndColor: (value?: string) => StyleBuilder, borderStartStartRadius: (value?: string) => StyleBuilder, borderStartEndRadius: (value?: string) => StyleBuilder, borderEndStartRadius: (value?: string) => StyleBuilder, borderEndEndRadius: (value?: string) => StyleBuilder, scrollMargin: (value?: string) => StyleBuilder, scrollMarginTop: (value?: string) => StyleBuilder, scrollMarginRight: (value?: string) => StyleBuilder, scrollMarginBottom: (value?: string) => StyleBuilder, scrollMarginLeft: (value?: string) => StyleBuilder, scrollPadding: (value?: string) => StyleBuilder, scrollPaddingTop: (value?: string) => StyleBuilder, scrollPaddingRight: (value?: string) => StyleBuilder, scrollPaddingBottom: (value?: string) => StyleBuilder, scrollPaddingLeft: (value?: string) => StyleBuilder, overscrollBehavior: (value?: string) => StyleBuilder, overscrollBehaviorX: (value?: string) => StyleBuilder, overscrollBehaviorY: (value?: string) => StyleBuilder, caretColor: (value?: string) => StyleBuilder, caretShape: (value?: string) => StyleBuilder, caretAnimation: (value?: string) => StyleBuilder, imageRendering: (value?: string) => StyleBuilder, colorScheme: (value?: string) => StyleBuilder, contentVisibility: (value?: string) => StyleBuilder, touchAction: (value?: string) => StyleBuilder, containerType: (value?: string) => StyleBuilder, containerName: (value?: string) => StyleBuilder, container: (value?: string) => StyleBuilder, fontFeatureSettings: (value?: string) => StyleBuilder, fontKerning: (value?: string) => StyleBuilder, fontSynthesis: (value?: string) => StyleBuilder, fontOpticalSizing: (value?: string) => StyleBuilder, fontDisplay: (value?: string) => StyleBuilder, fontVariantCaps: (value?: string) => StyleBuilder, fontVariantNumeric: (value?: string) => StyleBuilder, fontVariantLigatures: (value?: string) => StyleBuilder, fontVariantEastAsian: (value?: string) => StyleBuilder, fontVariantAlternates: (value?: string) => StyleBuilder, fontVariantPosition: (value?: string) => StyleBuilder, textRendering: (value?: string) => StyleBuilder, textCombineUpright: (value?: string) => StyleBuilder, textSizeAdjust: (value?: string) => StyleBuilder, mask: (value?: string) => StyleBuilder, maskImage: (value?: string) => StyleBuilder, maskMode: (value?: string) => StyleBuilder, maskRepeat: (value?: string) => StyleBuilder, maskPosition: (value?: string) => StyleBuilder, maskSize: (value?: string) => StyleBuilder, maskOrigin: (value?: string) => StyleBuilder, maskClip: (value?: string) => StyleBuilder, maskComposite: (value?: string) => StyleBuilder, clipRule: (value?: string) => StyleBuilder, gridColumnGap: (value?: string) => StyleBuilder, gridRowGap: (value?: string) => StyleBuilder, gridGap: (value?: string) => StyleBuilder;
|
|
210
337
|
//# sourceMappingURL=styleBuilder.d.ts.map
|