nuclo 0.1.57 → 0.1.59

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.
@@ -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: string): this;
19
+ display(value: DisplayValue): this;
19
20
  grid(): this;
20
- bg(color: string): this;
21
- color(colorValue: string): this;
22
- accentColor(value: string): this;
23
- fontSize(size: string): this;
24
- fontWeight(value: string): this;
25
- fontFamily(value: string): this;
26
- lineHeight(value: string): this;
27
- letterSpacing(value: string): this;
28
- textAlign(value: string): this;
29
- textDecoration(value: string): this;
30
- fontStyle(value: string): this;
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: string): this;
34
- textIndent(value: string): this;
35
- textOverflow(value: string): this;
34
+ textTransform(value: TextTransformValue): this;
35
+ textIndent(value: CSSLengthValue): this;
36
+ textOverflow(value: TextOverflowValue): this;
36
37
  textShadow(value: string): this;
37
- whiteSpace(value: string): this;
38
- wordSpacing(value: string): this;
39
- wordWrap(value: string): this;
40
- overflowWrap(value: string): this;
41
- textAlignLast(value: string): this;
42
- textJustify(value: string): this;
43
- textDecorationLine(value: string): this;
44
- textDecorationColor(value: string): this;
45
- textDecorationStyle(value: string): this;
46
- textDecorationThickness(value: string): this;
47
- textUnderlineOffset(value: string): this;
48
- verticalAlign(value: string): this;
49
- position(value: string): this;
50
- padding(value: string): this;
51
- paddingTop(value: string): this;
52
- paddingRight(value: string): this;
53
- paddingBottom(value: string): this;
54
- paddingLeft(value: string): this;
55
- margin(value: string): this;
56
- marginTop(value: string): this;
57
- marginRight(value: string): this;
58
- marginBottom(value: string): this;
59
- marginLeft(value: string): this;
60
- width(value: string): this;
61
- height(value: string): this;
62
- minWidth(value: string): this;
63
- maxWidth(value: string): this;
64
- minHeight(value: string): this;
65
- maxHeight(value: string): this;
66
- boxSizing(value: string): this;
67
- top(value: string): this;
68
- right(value: string): this;
69
- bottom(value: string): this;
70
- left(value: string): this;
71
- zIndex(value: string): this;
72
- flexDirection(value: string): this;
73
- alignItems(value: string): this;
74
- justifyContent(value: string): this;
75
- gap(value: string): this;
76
- flexWrap(value: string): this;
77
- flexGrow(value: string): this;
78
- flexShrink(value: string): this;
79
- flexBasis(value: string): this;
80
- alignSelf(value: string): this;
81
- alignContent(value: string): this;
82
- justifySelf(value: string): this;
83
- justifyItems(value: string): this;
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: string): this;
95
- gridAutoRows(value: string): this;
96
- gridAutoFlow(value: string): this;
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: string): this;
103
- borderStyle(value: string): this;
104
- borderColor(value: string): this;
105
- borderTopWidth(value: string): this;
106
- borderRightWidth(value: string): this;
107
- borderBottomWidth(value: string): this;
108
- borderLeftWidth(value: string): this;
109
- borderTopStyle(value: string): this;
110
- borderRightStyle(value: string): this;
111
- borderBottomStyle(value: string): this;
112
- borderLeftStyle(value: string): this;
113
- borderTopColor(value: string): this;
114
- borderRightColor(value: string): this;
115
- borderBottomColor(value: string): this;
116
- borderLeftColor(value: string): this;
117
- borderRadius(value: string): this;
118
- borderTopLeftRadius(value: string): this;
119
- borderTopRightRadius(value: string): this;
120
- borderBottomLeftRadius(value: string): this;
121
- borderBottomRightRadius(value: string): this;
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: string): this;
124
- outlineStyle(value: string): this;
125
- outlineColor(value: string): this;
126
- outlineOffset(value: string): this;
127
- backgroundColor(value: string): this;
128
- backgroundImage(value: string): this;
129
- backgroundRepeat(value: string): this;
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: string): this;
132
- backgroundAttachment(value: string): this;
133
- backgroundClip(value: string): this;
134
- backgroundOrigin(value: string): this;
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: string): this;
141
- transitionDelay(value: string): this;
142
- transform(value: string): this;
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: string): this;
145
- perspective(value: string): this;
145
+ transformStyle(value: TransformStyleValue): this;
146
+ perspective(value: CSSLengthValue | "none"): this;
146
147
  perspectiveOrigin(value: string): this;
147
- backfaceVisibility(value: string): this;
148
+ backfaceVisibility(value: BackfaceVisibilityValue): this;
148
149
  animation(value: string): this;
149
- animationName(value: string): this;
150
- animationDuration(value: string): this;
151
- animationTimingFunction(value: string): this;
152
- animationDelay(value: string): this;
153
- animationIterationCount(value: string): this;
154
- animationDirection(value: string): this;
155
- animationFillMode(value: string): this;
156
- animationPlayState(value: string): this;
157
- filter(value: string): this;
158
- backdropFilter(value: string): this;
159
- overflow(value: string): this;
160
- overflowX(value: string): this;
161
- overflowY(value: string): this;
162
- visibility(value: string): this;
163
- objectFit(value: string): this;
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: string): this;
167
- listStylePosition(value: string): this;
168
- listStyleImage(value: string): this;
169
- borderCollapse(value: string): this;
170
- borderSpacing(value: string): this;
171
- captionSide(value: string): this;
172
- emptyCells(value: string): this;
173
- tableLayout(value: string): this;
174
- content(value: string): this;
175
- quotes(value: string): this;
176
- counterReset(value: string): this;
177
- counterIncrement(value: string): this;
178
- appearance(value: string): this;
179
- userSelect(value: string): this;
180
- pointerEvents(value: string): this;
181
- resize(value: string): this;
182
- scrollBehavior(value: string): this;
183
- clip(value: string): this;
184
- clipPath(value: string): this;
185
- isolation(value: string): this;
186
- mixBlendMode(value: string): this;
187
- willChange(value: string): this;
188
- contain(value: string): this;
189
- pageBreakBefore(value: string): this;
190
- pageBreakAfter(value: string): this;
191
- pageBreakInside(value: string): this;
192
- breakBefore(value: string): this;
193
- breakAfter(value: string): this;
194
- breakInside(value: string): this;
195
- orphans(value: string): this;
196
- widows(value: string): this;
197
- columnCount(value: string): this;
198
- columnFill(value: string): this;
199
- columnGap(value: string): this;
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: string): this;
202
- columnRuleStyle(value: string): this;
203
- columnRuleWidth(value: string): this;
204
- columnSpan(value: string): this;
205
- columnWidth(value: string): this;
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: string): this;
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