nuclo 0.1.49 → 0.1.51
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/runtimeBootstrap.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.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/index.d.ts +191 -63
- package/dist/style/index.d.ts.map +1 -1
- package/dist/style/styleProperties.d.ts +13 -0
- package/dist/style/styleProperties.d.ts.map +1 -0
- package/package.json +2 -2
- package/types/features/style.d.ts +927 -2
|
@@ -46,16 +46,52 @@ declare global {
|
|
|
46
46
|
textAlign(value: string): this;
|
|
47
47
|
textDecoration(value: string): this;
|
|
48
48
|
bold(): this;
|
|
49
|
+
fontStyle(value: string): this;
|
|
50
|
+
fontVariant(value: string): this;
|
|
51
|
+
fontStretch(value: string): this;
|
|
52
|
+
textTransform(value: string): this;
|
|
53
|
+
textIndent(value: string): this;
|
|
54
|
+
textOverflow(value: string): this;
|
|
55
|
+
textShadow(value: string): this;
|
|
56
|
+
whiteSpace(value: string): this;
|
|
57
|
+
wordSpacing(value: string): this;
|
|
58
|
+
wordWrap(value: string): this;
|
|
59
|
+
overflowWrap(value: string): this;
|
|
60
|
+
textAlignLast(value: string): this;
|
|
61
|
+
textJustify(value: string): this;
|
|
62
|
+
textDecorationLine(value: string): this;
|
|
63
|
+
textDecorationColor(value: string): this;
|
|
64
|
+
textDecorationStyle(value: string): this;
|
|
65
|
+
textDecorationThickness(value: string): this;
|
|
66
|
+
textUnderlineOffset(value: string): this;
|
|
67
|
+
verticalAlign(value: string): this;
|
|
49
68
|
|
|
50
69
|
// Layout
|
|
51
70
|
position(value: string): this;
|
|
52
71
|
padding(value: string): this;
|
|
72
|
+
paddingTop(value: string): this;
|
|
73
|
+
paddingRight(value: string): this;
|
|
74
|
+
paddingBottom(value: string): this;
|
|
75
|
+
paddingLeft(value: string): this;
|
|
53
76
|
margin(value: string): this;
|
|
77
|
+
marginTop(value: string): this;
|
|
78
|
+
marginRight(value: string): this;
|
|
79
|
+
marginBottom(value: string): this;
|
|
80
|
+
marginLeft(value: string): this;
|
|
54
81
|
width(value: string): this;
|
|
55
82
|
height(value: string): this;
|
|
56
83
|
minWidth(value: string): this;
|
|
57
84
|
maxWidth(value: string): this;
|
|
58
85
|
minHeight(value: string): this;
|
|
86
|
+
maxHeight(value: string): this;
|
|
87
|
+
boxSizing(value: string): this;
|
|
88
|
+
|
|
89
|
+
// Positioning
|
|
90
|
+
top(value: string): this;
|
|
91
|
+
right(value: string): this;
|
|
92
|
+
bottom(value: string): this;
|
|
93
|
+
left(value: string): this;
|
|
94
|
+
zIndex(value: string): this;
|
|
59
95
|
|
|
60
96
|
// Flexbox
|
|
61
97
|
flexDirection(value: string): this;
|
|
@@ -63,22 +99,191 @@ declare global {
|
|
|
63
99
|
justifyContent(value: string): this;
|
|
64
100
|
center(): this;
|
|
65
101
|
gap(value: string): this;
|
|
102
|
+
flexWrap(value: string): this;
|
|
103
|
+
flexGrow(value: string): this;
|
|
104
|
+
flexShrink(value: string): this;
|
|
105
|
+
flexBasis(value: string): this;
|
|
106
|
+
alignSelf(value: string): this;
|
|
107
|
+
alignContent(value: string): this;
|
|
108
|
+
justifySelf(value: string): this;
|
|
109
|
+
justifyItems(value: string): this;
|
|
110
|
+
|
|
111
|
+
// Grid
|
|
112
|
+
gridTemplateColumns(value: string): this;
|
|
113
|
+
gridTemplateRows(value: string): this;
|
|
114
|
+
gridTemplateAreas(value: string): this;
|
|
115
|
+
gridColumn(value: string): this;
|
|
116
|
+
gridRow(value: string): this;
|
|
117
|
+
gridColumnStart(value: string): this;
|
|
118
|
+
gridColumnEnd(value: string): this;
|
|
119
|
+
gridRowStart(value: string): this;
|
|
120
|
+
gridRowEnd(value: string): this;
|
|
121
|
+
gridArea(value: string): this;
|
|
122
|
+
gridAutoColumns(value: string): this;
|
|
123
|
+
gridAutoRows(value: string): this;
|
|
124
|
+
gridAutoFlow(value: string): this;
|
|
66
125
|
|
|
67
126
|
// Borders
|
|
68
127
|
border(value: string): this;
|
|
128
|
+
borderTop(value: string): this;
|
|
129
|
+
borderRight(value: string): this;
|
|
130
|
+
borderBottom(value: string): this;
|
|
131
|
+
borderLeft(value: string): this;
|
|
132
|
+
borderWidth(value: string): this;
|
|
133
|
+
borderStyle(value: string): this;
|
|
134
|
+
borderColor(value: string): this;
|
|
135
|
+
borderTopWidth(value: string): this;
|
|
136
|
+
borderRightWidth(value: string): this;
|
|
137
|
+
borderBottomWidth(value: string): this;
|
|
138
|
+
borderLeftWidth(value: string): this;
|
|
139
|
+
borderTopStyle(value: string): this;
|
|
140
|
+
borderRightStyle(value: string): this;
|
|
141
|
+
borderBottomStyle(value: string): this;
|
|
142
|
+
borderLeftStyle(value: string): this;
|
|
143
|
+
borderTopColor(value: string): this;
|
|
144
|
+
borderRightColor(value: string): this;
|
|
145
|
+
borderBottomColor(value: string): this;
|
|
146
|
+
borderLeftColor(value: string): this;
|
|
69
147
|
borderRadius(value: string): this;
|
|
148
|
+
borderTopLeftRadius(value: string): this;
|
|
149
|
+
borderTopRightRadius(value: string): this;
|
|
150
|
+
borderBottomLeftRadius(value: string): this;
|
|
151
|
+
borderBottomRightRadius(value: string): this;
|
|
152
|
+
|
|
153
|
+
// Outline
|
|
70
154
|
outline(value: string): this;
|
|
155
|
+
outlineWidth(value: string): this;
|
|
156
|
+
outlineStyle(value: string): this;
|
|
157
|
+
outlineColor(value: string): this;
|
|
158
|
+
outlineOffset(value: string): this;
|
|
159
|
+
|
|
160
|
+
// Background
|
|
161
|
+
backgroundColor(value: string): this;
|
|
162
|
+
backgroundImage(value: string): this;
|
|
163
|
+
backgroundRepeat(value: string): this;
|
|
164
|
+
backgroundPosition(value: string): this;
|
|
165
|
+
backgroundSize(value: string): this;
|
|
166
|
+
backgroundAttachment(value: string): this;
|
|
167
|
+
backgroundClip(value: string): this;
|
|
168
|
+
backgroundOrigin(value: string): this;
|
|
71
169
|
|
|
72
170
|
// Effects
|
|
73
171
|
boxShadow(value: string): this;
|
|
74
172
|
opacity(value: string): this;
|
|
75
173
|
transition(value: string): this;
|
|
174
|
+
transitionProperty(value: string): this;
|
|
175
|
+
transitionDuration(value: string): this;
|
|
176
|
+
transitionTimingFunction(value: string): this;
|
|
177
|
+
transitionDelay(value: string): this;
|
|
178
|
+
|
|
179
|
+
// Transform
|
|
180
|
+
transform(value: string): this;
|
|
181
|
+
transformOrigin(value: string): this;
|
|
182
|
+
transformStyle(value: string): this;
|
|
183
|
+
perspective(value: string): this;
|
|
184
|
+
perspectiveOrigin(value: string): this;
|
|
185
|
+
backfaceVisibility(value: string): this;
|
|
186
|
+
|
|
187
|
+
// Animation
|
|
188
|
+
animation(value: string): this;
|
|
189
|
+
animationName(value: string): this;
|
|
190
|
+
animationDuration(value: string): this;
|
|
191
|
+
animationTimingFunction(value: string): this;
|
|
192
|
+
animationDelay(value: string): this;
|
|
193
|
+
animationIterationCount(value: string): this;
|
|
194
|
+
animationDirection(value: string): this;
|
|
195
|
+
animationFillMode(value: string): this;
|
|
196
|
+
animationPlayState(value: string): this;
|
|
197
|
+
|
|
198
|
+
// Filter
|
|
199
|
+
filter(value: string): this;
|
|
200
|
+
backdropFilter(value: string): this;
|
|
201
|
+
|
|
202
|
+
// Overflow
|
|
203
|
+
overflow(value: string): this;
|
|
204
|
+
overflowX(value: string): this;
|
|
205
|
+
overflowY(value: string): this;
|
|
206
|
+
|
|
207
|
+
// Visibility
|
|
208
|
+
visibility(value: string): this;
|
|
209
|
+
|
|
210
|
+
// Object fit/position
|
|
211
|
+
objectFit(value: string): this;
|
|
212
|
+
objectPosition(value: string): this;
|
|
213
|
+
|
|
214
|
+
// List
|
|
215
|
+
listStyle(value: string): this;
|
|
216
|
+
listStyleType(value: string): this;
|
|
217
|
+
listStylePosition(value: string): this;
|
|
218
|
+
listStyleImage(value: string): this;
|
|
219
|
+
|
|
220
|
+
// Table
|
|
221
|
+
borderCollapse(value: string): this;
|
|
222
|
+
borderSpacing(value: string): this;
|
|
223
|
+
captionSide(value: string): this;
|
|
224
|
+
emptyCells(value: string): this;
|
|
225
|
+
tableLayout(value: string): this;
|
|
226
|
+
|
|
227
|
+
// Content
|
|
228
|
+
content(value: string): this;
|
|
229
|
+
quotes(value: string): this;
|
|
230
|
+
counterReset(value: string): this;
|
|
231
|
+
counterIncrement(value: string): this;
|
|
232
|
+
|
|
233
|
+
// User interface
|
|
234
|
+
appearance(value: string): this;
|
|
235
|
+
userSelect(value: string): this;
|
|
236
|
+
pointerEvents(value: string): this;
|
|
237
|
+
resize(value: string): this;
|
|
238
|
+
scrollBehavior(value: string): this;
|
|
239
|
+
|
|
240
|
+
// Clip
|
|
241
|
+
clip(value: string): this;
|
|
242
|
+
clipPath(value: string): this;
|
|
243
|
+
|
|
244
|
+
// Isolation
|
|
245
|
+
isolation(value: string): this;
|
|
246
|
+
|
|
247
|
+
// Mix blend mode
|
|
248
|
+
mixBlendMode(value: string): this;
|
|
249
|
+
|
|
250
|
+
// Will change
|
|
251
|
+
willChange(value: string): this;
|
|
252
|
+
|
|
253
|
+
// Contain
|
|
254
|
+
contain(value: string): this;
|
|
255
|
+
|
|
256
|
+
// Page break
|
|
257
|
+
pageBreakBefore(value: string): this;
|
|
258
|
+
pageBreakAfter(value: string): this;
|
|
259
|
+
pageBreakInside(value: string): this;
|
|
260
|
+
|
|
261
|
+
// Break
|
|
262
|
+
breakBefore(value: string): this;
|
|
263
|
+
breakAfter(value: string): this;
|
|
264
|
+
breakInside(value: string): this;
|
|
265
|
+
|
|
266
|
+
// Orphans and widows
|
|
267
|
+
orphans(value: string): this;
|
|
268
|
+
widows(value: string): this;
|
|
269
|
+
|
|
270
|
+
// Column
|
|
271
|
+
columnCount(value: string): this;
|
|
272
|
+
columnFill(value: string): this;
|
|
273
|
+
columnGap(value: string): this;
|
|
274
|
+
columnRule(value: string): this;
|
|
275
|
+
columnRuleColor(value: string): this;
|
|
276
|
+
columnRuleStyle(value: string): this;
|
|
277
|
+
columnRuleWidth(value: string): this;
|
|
278
|
+
columnSpan(value: string): this;
|
|
279
|
+
columnWidth(value: string): this;
|
|
280
|
+
columns(value: string): this;
|
|
76
281
|
|
|
77
282
|
// Interaction
|
|
78
283
|
cursor(value: string): this;
|
|
79
284
|
}
|
|
80
285
|
|
|
81
|
-
// Utility functions
|
|
286
|
+
// Utility functions available globally (like HTML tags)
|
|
82
287
|
// Display
|
|
83
288
|
function display(value: string): StyleBuilder;
|
|
84
289
|
function flex(value?: string): StyleBuilder;
|
|
@@ -98,16 +303,52 @@ declare global {
|
|
|
98
303
|
function textAlign(value: string): StyleBuilder;
|
|
99
304
|
function textDecoration(value: string): StyleBuilder;
|
|
100
305
|
function bold(): StyleBuilder;
|
|
306
|
+
function fontStyle(value: string): StyleBuilder;
|
|
307
|
+
function fontVariant(value: string): StyleBuilder;
|
|
308
|
+
function fontStretch(value: string): StyleBuilder;
|
|
309
|
+
function textTransform(value: string): StyleBuilder;
|
|
310
|
+
function textIndent(value: string): StyleBuilder;
|
|
311
|
+
function textOverflow(value: string): StyleBuilder;
|
|
312
|
+
function textShadow(value: string): StyleBuilder;
|
|
313
|
+
function whiteSpace(value: string): StyleBuilder;
|
|
314
|
+
function wordSpacing(value: string): StyleBuilder;
|
|
315
|
+
function wordWrap(value: string): StyleBuilder;
|
|
316
|
+
function overflowWrap(value: string): StyleBuilder;
|
|
317
|
+
function textAlignLast(value: string): StyleBuilder;
|
|
318
|
+
function textJustify(value: string): StyleBuilder;
|
|
319
|
+
function textDecorationLine(value: string): StyleBuilder;
|
|
320
|
+
function textDecorationColor(value: string): StyleBuilder;
|
|
321
|
+
function textDecorationStyle(value: string): StyleBuilder;
|
|
322
|
+
function textDecorationThickness(value: string): StyleBuilder;
|
|
323
|
+
function textUnderlineOffset(value: string): StyleBuilder;
|
|
324
|
+
function verticalAlign(value: string): StyleBuilder;
|
|
101
325
|
|
|
102
326
|
// Layout
|
|
103
327
|
function position(value: string): StyleBuilder;
|
|
104
328
|
function padding(value: string): StyleBuilder;
|
|
329
|
+
function paddingTop(value: string): StyleBuilder;
|
|
330
|
+
function paddingRight(value: string): StyleBuilder;
|
|
331
|
+
function paddingBottom(value: string): StyleBuilder;
|
|
332
|
+
function paddingLeft(value: string): StyleBuilder;
|
|
105
333
|
function margin(value: string): StyleBuilder;
|
|
334
|
+
function marginTop(value: string): StyleBuilder;
|
|
335
|
+
function marginRight(value: string): StyleBuilder;
|
|
336
|
+
function marginBottom(value: string): StyleBuilder;
|
|
337
|
+
function marginLeft(value: string): StyleBuilder;
|
|
106
338
|
function width(value: string): StyleBuilder;
|
|
107
339
|
function height(value: string): StyleBuilder;
|
|
108
340
|
function minWidth(value: string): StyleBuilder;
|
|
109
341
|
function maxWidth(value: string): StyleBuilder;
|
|
110
342
|
function minHeight(value: string): StyleBuilder;
|
|
343
|
+
function maxHeight(value: string): StyleBuilder;
|
|
344
|
+
function boxSizing(value: string): StyleBuilder;
|
|
345
|
+
|
|
346
|
+
// Positioning (Note: top conflicts with window.top and is skipped at runtime)
|
|
347
|
+
// function top(value: string): StyleBuilder; // Use module import: import { top } from "nuclo"
|
|
348
|
+
function right(value: string): StyleBuilder;
|
|
349
|
+
function bottom(value: string): StyleBuilder;
|
|
350
|
+
function left(value: string): StyleBuilder;
|
|
351
|
+
function zIndex(value: string): StyleBuilder;
|
|
111
352
|
|
|
112
353
|
// Flexbox
|
|
113
354
|
function flexDirection(value: string): StyleBuilder;
|
|
@@ -115,19 +356,703 @@ declare global {
|
|
|
115
356
|
function justifyContent(value: string): StyleBuilder;
|
|
116
357
|
function center(): StyleBuilder;
|
|
117
358
|
function gap(value: string): StyleBuilder;
|
|
359
|
+
function flexWrap(value: string): StyleBuilder;
|
|
360
|
+
function flexGrow(value: string): StyleBuilder;
|
|
361
|
+
function flexShrink(value: string): StyleBuilder;
|
|
362
|
+
function flexBasis(value: string): StyleBuilder;
|
|
363
|
+
function alignSelf(value: string): StyleBuilder;
|
|
364
|
+
function alignContent(value: string): StyleBuilder;
|
|
365
|
+
function justifySelf(value: string): StyleBuilder;
|
|
366
|
+
function justifyItems(value: string): StyleBuilder;
|
|
367
|
+
|
|
368
|
+
// Grid
|
|
369
|
+
function gridTemplateColumns(value: string): StyleBuilder;
|
|
370
|
+
function gridTemplateRows(value: string): StyleBuilder;
|
|
371
|
+
function gridTemplateAreas(value: string): StyleBuilder;
|
|
372
|
+
function gridColumn(value: string): StyleBuilder;
|
|
373
|
+
function gridRow(value: string): StyleBuilder;
|
|
374
|
+
function gridColumnStart(value: string): StyleBuilder;
|
|
375
|
+
function gridColumnEnd(value: string): StyleBuilder;
|
|
376
|
+
function gridRowStart(value: string): StyleBuilder;
|
|
377
|
+
function gridRowEnd(value: string): StyleBuilder;
|
|
378
|
+
function gridArea(value: string): StyleBuilder;
|
|
379
|
+
function gridAutoColumns(value: string): StyleBuilder;
|
|
380
|
+
function gridAutoRows(value: string): StyleBuilder;
|
|
381
|
+
function gridAutoFlow(value: string): StyleBuilder;
|
|
118
382
|
|
|
119
383
|
// Borders
|
|
120
384
|
function border(value: string): StyleBuilder;
|
|
385
|
+
function borderTop(value: string): StyleBuilder;
|
|
386
|
+
function borderRight(value: string): StyleBuilder;
|
|
387
|
+
function borderBottom(value: string): StyleBuilder;
|
|
388
|
+
function borderLeft(value: string): StyleBuilder;
|
|
389
|
+
function borderWidth(value: string): StyleBuilder;
|
|
390
|
+
function borderStyle(value: string): StyleBuilder;
|
|
391
|
+
function borderColor(value: string): StyleBuilder;
|
|
392
|
+
function borderTopWidth(value: string): StyleBuilder;
|
|
393
|
+
function borderRightWidth(value: string): StyleBuilder;
|
|
394
|
+
function borderBottomWidth(value: string): StyleBuilder;
|
|
395
|
+
function borderLeftWidth(value: string): StyleBuilder;
|
|
396
|
+
function borderTopStyle(value: string): StyleBuilder;
|
|
397
|
+
function borderRightStyle(value: string): StyleBuilder;
|
|
398
|
+
function borderBottomStyle(value: string): StyleBuilder;
|
|
399
|
+
function borderLeftStyle(value: string): StyleBuilder;
|
|
400
|
+
function borderTopColor(value: string): StyleBuilder;
|
|
401
|
+
function borderRightColor(value: string): StyleBuilder;
|
|
402
|
+
function borderBottomColor(value: string): StyleBuilder;
|
|
403
|
+
function borderLeftColor(value: string): StyleBuilder;
|
|
121
404
|
function borderRadius(value: string): StyleBuilder;
|
|
405
|
+
function borderTopLeftRadius(value: string): StyleBuilder;
|
|
406
|
+
function borderTopRightRadius(value: string): StyleBuilder;
|
|
407
|
+
function borderBottomLeftRadius(value: string): StyleBuilder;
|
|
408
|
+
function borderBottomRightRadius(value: string): StyleBuilder;
|
|
409
|
+
|
|
410
|
+
// Outline
|
|
122
411
|
function outline(value: string): StyleBuilder;
|
|
412
|
+
function outlineWidth(value: string): StyleBuilder;
|
|
413
|
+
function outlineStyle(value: string): StyleBuilder;
|
|
414
|
+
function outlineColor(value: string): StyleBuilder;
|
|
415
|
+
function outlineOffset(value: string): StyleBuilder;
|
|
416
|
+
|
|
417
|
+
// Background
|
|
418
|
+
function backgroundColor(value: string): StyleBuilder;
|
|
419
|
+
function backgroundImage(value: string): StyleBuilder;
|
|
420
|
+
function backgroundRepeat(value: string): StyleBuilder;
|
|
421
|
+
function backgroundPosition(value: string): StyleBuilder;
|
|
422
|
+
function backgroundSize(value: string): StyleBuilder;
|
|
423
|
+
function backgroundAttachment(value: string): StyleBuilder;
|
|
424
|
+
function backgroundClip(value: string): StyleBuilder;
|
|
425
|
+
function backgroundOrigin(value: string): StyleBuilder;
|
|
123
426
|
|
|
124
427
|
// Effects
|
|
125
428
|
function boxShadow(value: string): StyleBuilder;
|
|
126
429
|
function opacity(value: string): StyleBuilder;
|
|
127
430
|
function transition(value: string): StyleBuilder;
|
|
431
|
+
function transitionProperty(value: string): StyleBuilder;
|
|
432
|
+
function transitionDuration(value: string): StyleBuilder;
|
|
433
|
+
function transitionTimingFunction(value: string): StyleBuilder;
|
|
434
|
+
function transitionDelay(value: string): StyleBuilder;
|
|
435
|
+
|
|
436
|
+
// Transform
|
|
437
|
+
function transform(value: string): StyleBuilder;
|
|
438
|
+
function transformOrigin(value: string): StyleBuilder;
|
|
439
|
+
function transformStyle(value: string): StyleBuilder;
|
|
440
|
+
function perspective(value: string): StyleBuilder;
|
|
441
|
+
function perspectiveOrigin(value: string): StyleBuilder;
|
|
442
|
+
function backfaceVisibility(value: string): StyleBuilder;
|
|
443
|
+
|
|
444
|
+
// Animation
|
|
445
|
+
function animation(value: string): StyleBuilder;
|
|
446
|
+
function animationName(value: string): StyleBuilder;
|
|
447
|
+
function animationDuration(value: string): StyleBuilder;
|
|
448
|
+
function animationTimingFunction(value: string): StyleBuilder;
|
|
449
|
+
function animationDelay(value: string): StyleBuilder;
|
|
450
|
+
function animationIterationCount(value: string): StyleBuilder;
|
|
451
|
+
function animationDirection(value: string): StyleBuilder;
|
|
452
|
+
function animationFillMode(value: string): StyleBuilder;
|
|
453
|
+
function animationPlayState(value: string): StyleBuilder;
|
|
454
|
+
|
|
455
|
+
// Filter (Note: conflicts with SVG filter element, use module import if needed)
|
|
456
|
+
// function filter(value: string): StyleBuilder; // Use: import { filter } from "nuclo"
|
|
457
|
+
function backdropFilter(value: string): StyleBuilder;
|
|
458
|
+
|
|
459
|
+
// Overflow
|
|
460
|
+
function overflow(value: string): StyleBuilder;
|
|
461
|
+
function overflowX(value: string): StyleBuilder;
|
|
462
|
+
function overflowY(value: string): StyleBuilder;
|
|
463
|
+
|
|
464
|
+
// Visibility
|
|
465
|
+
function visibility(value: string): StyleBuilder;
|
|
466
|
+
|
|
467
|
+
// Object fit/position
|
|
468
|
+
function objectFit(value: string): StyleBuilder;
|
|
469
|
+
function objectPosition(value: string): StyleBuilder;
|
|
470
|
+
|
|
471
|
+
// List
|
|
472
|
+
function listStyle(value: string): StyleBuilder;
|
|
473
|
+
function listStyleType(value: string): StyleBuilder;
|
|
474
|
+
function listStylePosition(value: string): StyleBuilder;
|
|
475
|
+
function listStyleImage(value: string): StyleBuilder;
|
|
476
|
+
|
|
477
|
+
// Table
|
|
478
|
+
function borderCollapse(value: string): StyleBuilder;
|
|
479
|
+
function borderSpacing(value: string): StyleBuilder;
|
|
480
|
+
function captionSide(value: string): StyleBuilder;
|
|
481
|
+
function emptyCells(value: string): StyleBuilder;
|
|
482
|
+
function tableLayout(value: string): StyleBuilder;
|
|
483
|
+
|
|
484
|
+
// Content
|
|
485
|
+
function content(value: string): StyleBuilder;
|
|
486
|
+
function quotes(value: string): StyleBuilder;
|
|
487
|
+
function counterReset(value: string): StyleBuilder;
|
|
488
|
+
function counterIncrement(value: string): StyleBuilder;
|
|
489
|
+
|
|
490
|
+
// User interface
|
|
491
|
+
function appearance(value: string): StyleBuilder;
|
|
492
|
+
function userSelect(value: string): StyleBuilder;
|
|
493
|
+
function pointerEvents(value: string): StyleBuilder;
|
|
494
|
+
function resize(value: string): StyleBuilder;
|
|
495
|
+
function scrollBehavior(value: string): StyleBuilder;
|
|
496
|
+
|
|
497
|
+
// Clip (Note: clipPath conflicts with SVG clipPath element, use module import if needed)
|
|
498
|
+
function clip(value: string): StyleBuilder;
|
|
499
|
+
// function clipPath(value: string): StyleBuilder; // Use: import { clipPath } from "nuclo"
|
|
500
|
+
|
|
501
|
+
// Isolation
|
|
502
|
+
function isolation(value: string): StyleBuilder;
|
|
503
|
+
|
|
504
|
+
// Mix blend mode
|
|
505
|
+
function mixBlendMode(value: string): StyleBuilder;
|
|
506
|
+
|
|
507
|
+
// Will change
|
|
508
|
+
function willChange(value: string): StyleBuilder;
|
|
509
|
+
|
|
510
|
+
// Contain
|
|
511
|
+
function contain(value: string): StyleBuilder;
|
|
512
|
+
|
|
513
|
+
// Page break
|
|
514
|
+
function pageBreakBefore(value: string): StyleBuilder;
|
|
515
|
+
function pageBreakAfter(value: string): StyleBuilder;
|
|
516
|
+
function pageBreakInside(value: string): StyleBuilder;
|
|
517
|
+
|
|
518
|
+
// Break
|
|
519
|
+
function breakBefore(value: string): StyleBuilder;
|
|
520
|
+
function breakAfter(value: string): StyleBuilder;
|
|
521
|
+
function breakInside(value: string): StyleBuilder;
|
|
522
|
+
|
|
523
|
+
// Orphans and widows
|
|
524
|
+
function orphans(value: string): StyleBuilder;
|
|
525
|
+
function widows(value: string): StyleBuilder;
|
|
526
|
+
|
|
527
|
+
// Column
|
|
528
|
+
function columnCount(value: string): StyleBuilder;
|
|
529
|
+
function columnFill(value: string): StyleBuilder;
|
|
530
|
+
function columnGap(value: string): StyleBuilder;
|
|
531
|
+
function columnRule(value: string): StyleBuilder;
|
|
532
|
+
function columnRuleColor(value: string): StyleBuilder;
|
|
533
|
+
function columnRuleStyle(value: string): StyleBuilder;
|
|
534
|
+
function columnRuleWidth(value: string): StyleBuilder;
|
|
535
|
+
function columnSpan(value: string): StyleBuilder;
|
|
536
|
+
function columnWidth(value: string): StyleBuilder;
|
|
537
|
+
function columns(value: string): StyleBuilder;
|
|
128
538
|
|
|
129
539
|
// Interaction
|
|
130
540
|
function cursor(value: string): StyleBuilder;
|
|
131
541
|
}
|
|
132
542
|
|
|
133
|
-
|
|
543
|
+
// Export StyleBuilder class with all its methods (for module imports)
|
|
544
|
+
export class StyleBuilder {
|
|
545
|
+
getStyles(): Record<string, string>;
|
|
546
|
+
add(property: string, value: string): this;
|
|
547
|
+
|
|
548
|
+
// Display
|
|
549
|
+
display(value: string): this;
|
|
550
|
+
flex(value?: string): this;
|
|
551
|
+
grid(): this;
|
|
552
|
+
|
|
553
|
+
// Colors
|
|
554
|
+
bg(color: string): this;
|
|
555
|
+
color(color: string): this;
|
|
556
|
+
accentColor(value: string): this;
|
|
557
|
+
|
|
558
|
+
// Typography
|
|
559
|
+
fontSize(size: string): this;
|
|
560
|
+
fontWeight(value: string): this;
|
|
561
|
+
fontFamily(value: string): this;
|
|
562
|
+
lineHeight(value: string): this;
|
|
563
|
+
letterSpacing(value: string): this;
|
|
564
|
+
textAlign(value: string): this;
|
|
565
|
+
textDecoration(value: string): this;
|
|
566
|
+
bold(): this;
|
|
567
|
+
fontStyle(value: string): this;
|
|
568
|
+
fontVariant(value: string): this;
|
|
569
|
+
fontStretch(value: string): this;
|
|
570
|
+
textTransform(value: string): this;
|
|
571
|
+
textIndent(value: string): this;
|
|
572
|
+
textOverflow(value: string): this;
|
|
573
|
+
textShadow(value: string): this;
|
|
574
|
+
whiteSpace(value: string): this;
|
|
575
|
+
wordSpacing(value: string): this;
|
|
576
|
+
wordWrap(value: string): this;
|
|
577
|
+
overflowWrap(value: string): this;
|
|
578
|
+
textAlignLast(value: string): this;
|
|
579
|
+
textJustify(value: string): this;
|
|
580
|
+
textDecorationLine(value: string): this;
|
|
581
|
+
textDecorationColor(value: string): this;
|
|
582
|
+
textDecorationStyle(value: string): this;
|
|
583
|
+
textDecorationThickness(value: string): this;
|
|
584
|
+
textUnderlineOffset(value: string): this;
|
|
585
|
+
verticalAlign(value: string): this;
|
|
586
|
+
|
|
587
|
+
// Layout
|
|
588
|
+
position(value: string): this;
|
|
589
|
+
padding(value: string): this;
|
|
590
|
+
paddingTop(value: string): this;
|
|
591
|
+
paddingRight(value: string): this;
|
|
592
|
+
paddingBottom(value: string): this;
|
|
593
|
+
paddingLeft(value: string): this;
|
|
594
|
+
margin(value: string): this;
|
|
595
|
+
marginTop(value: string): this;
|
|
596
|
+
marginRight(value: string): this;
|
|
597
|
+
marginBottom(value: string): this;
|
|
598
|
+
marginLeft(value: string): this;
|
|
599
|
+
width(value: string): this;
|
|
600
|
+
height(value: string): this;
|
|
601
|
+
minWidth(value: string): this;
|
|
602
|
+
maxWidth(value: string): this;
|
|
603
|
+
minHeight(value: string): this;
|
|
604
|
+
maxHeight(value: string): this;
|
|
605
|
+
boxSizing(value: string): this;
|
|
606
|
+
|
|
607
|
+
// Positioning
|
|
608
|
+
top(value: string): this;
|
|
609
|
+
right(value: string): this;
|
|
610
|
+
bottom(value: string): this;
|
|
611
|
+
left(value: string): this;
|
|
612
|
+
zIndex(value: string): this;
|
|
613
|
+
|
|
614
|
+
// Flexbox
|
|
615
|
+
flexDirection(value: string): this;
|
|
616
|
+
alignItems(value: string): this;
|
|
617
|
+
justifyContent(value: string): this;
|
|
618
|
+
center(): this;
|
|
619
|
+
gap(value: string): this;
|
|
620
|
+
flexWrap(value: string): this;
|
|
621
|
+
flexGrow(value: string): this;
|
|
622
|
+
flexShrink(value: string): this;
|
|
623
|
+
flexBasis(value: string): this;
|
|
624
|
+
alignSelf(value: string): this;
|
|
625
|
+
alignContent(value: string): this;
|
|
626
|
+
justifySelf(value: string): this;
|
|
627
|
+
justifyItems(value: string): this;
|
|
628
|
+
|
|
629
|
+
// Grid
|
|
630
|
+
gridTemplateColumns(value: string): this;
|
|
631
|
+
gridTemplateRows(value: string): this;
|
|
632
|
+
gridTemplateAreas(value: string): this;
|
|
633
|
+
gridColumn(value: string): this;
|
|
634
|
+
gridRow(value: string): this;
|
|
635
|
+
gridColumnStart(value: string): this;
|
|
636
|
+
gridColumnEnd(value: string): this;
|
|
637
|
+
gridRowStart(value: string): this;
|
|
638
|
+
gridRowEnd(value: string): this;
|
|
639
|
+
gridArea(value: string): this;
|
|
640
|
+
gridAutoColumns(value: string): this;
|
|
641
|
+
gridAutoRows(value: string): this;
|
|
642
|
+
gridAutoFlow(value: string): this;
|
|
643
|
+
|
|
644
|
+
// Borders
|
|
645
|
+
border(value: string): this;
|
|
646
|
+
borderTop(value: string): this;
|
|
647
|
+
borderRight(value: string): this;
|
|
648
|
+
borderBottom(value: string): this;
|
|
649
|
+
borderLeft(value: string): this;
|
|
650
|
+
borderWidth(value: string): this;
|
|
651
|
+
borderStyle(value: string): this;
|
|
652
|
+
borderColor(value: string): this;
|
|
653
|
+
borderTopWidth(value: string): this;
|
|
654
|
+
borderRightWidth(value: string): this;
|
|
655
|
+
borderBottomWidth(value: string): this;
|
|
656
|
+
borderLeftWidth(value: string): this;
|
|
657
|
+
borderTopStyle(value: string): this;
|
|
658
|
+
borderRightStyle(value: string): this;
|
|
659
|
+
borderBottomStyle(value: string): this;
|
|
660
|
+
borderLeftStyle(value: string): this;
|
|
661
|
+
borderTopColor(value: string): this;
|
|
662
|
+
borderRightColor(value: string): this;
|
|
663
|
+
borderBottomColor(value: string): this;
|
|
664
|
+
borderLeftColor(value: string): this;
|
|
665
|
+
borderRadius(value: string): this;
|
|
666
|
+
borderTopLeftRadius(value: string): this;
|
|
667
|
+
borderTopRightRadius(value: string): this;
|
|
668
|
+
borderBottomLeftRadius(value: string): this;
|
|
669
|
+
borderBottomRightRadius(value: string): this;
|
|
670
|
+
|
|
671
|
+
// Outline
|
|
672
|
+
outline(value: string): this;
|
|
673
|
+
outlineWidth(value: string): this;
|
|
674
|
+
outlineStyle(value: string): this;
|
|
675
|
+
outlineColor(value: string): this;
|
|
676
|
+
outlineOffset(value: string): this;
|
|
677
|
+
|
|
678
|
+
// Background
|
|
679
|
+
backgroundColor(value: string): this;
|
|
680
|
+
backgroundImage(value: string): this;
|
|
681
|
+
backgroundRepeat(value: string): this;
|
|
682
|
+
backgroundPosition(value: string): this;
|
|
683
|
+
backgroundSize(value: string): this;
|
|
684
|
+
backgroundAttachment(value: string): this;
|
|
685
|
+
backgroundClip(value: string): this;
|
|
686
|
+
backgroundOrigin(value: string): this;
|
|
687
|
+
|
|
688
|
+
// Effects
|
|
689
|
+
boxShadow(value: string): this;
|
|
690
|
+
opacity(value: string): this;
|
|
691
|
+
transition(value: string): this;
|
|
692
|
+
transitionProperty(value: string): this;
|
|
693
|
+
transitionDuration(value: string): this;
|
|
694
|
+
transitionTimingFunction(value: string): this;
|
|
695
|
+
transitionDelay(value: string): this;
|
|
696
|
+
|
|
697
|
+
// Transform
|
|
698
|
+
transform(value: string): this;
|
|
699
|
+
transformOrigin(value: string): this;
|
|
700
|
+
transformStyle(value: string): this;
|
|
701
|
+
perspective(value: string): this;
|
|
702
|
+
perspectiveOrigin(value: string): this;
|
|
703
|
+
backfaceVisibility(value: string): this;
|
|
704
|
+
|
|
705
|
+
// Animation
|
|
706
|
+
animation(value: string): this;
|
|
707
|
+
animationName(value: string): this;
|
|
708
|
+
animationDuration(value: string): this;
|
|
709
|
+
animationTimingFunction(value: string): this;
|
|
710
|
+
animationDelay(value: string): this;
|
|
711
|
+
animationIterationCount(value: string): this;
|
|
712
|
+
animationDirection(value: string): this;
|
|
713
|
+
animationFillMode(value: string): this;
|
|
714
|
+
animationPlayState(value: string): this;
|
|
715
|
+
|
|
716
|
+
// Filter
|
|
717
|
+
filter(value: string): this;
|
|
718
|
+
backdropFilter(value: string): this;
|
|
719
|
+
|
|
720
|
+
// Overflow
|
|
721
|
+
overflow(value: string): this;
|
|
722
|
+
overflowX(value: string): this;
|
|
723
|
+
overflowY(value: string): this;
|
|
724
|
+
|
|
725
|
+
// Visibility
|
|
726
|
+
visibility(value: string): this;
|
|
727
|
+
|
|
728
|
+
// Object fit/position
|
|
729
|
+
objectFit(value: string): this;
|
|
730
|
+
objectPosition(value: string): this;
|
|
731
|
+
|
|
732
|
+
// List
|
|
733
|
+
listStyle(value: string): this;
|
|
734
|
+
listStyleType(value: string): this;
|
|
735
|
+
listStylePosition(value: string): this;
|
|
736
|
+
listStyleImage(value: string): this;
|
|
737
|
+
|
|
738
|
+
// Table
|
|
739
|
+
borderCollapse(value: string): this;
|
|
740
|
+
borderSpacing(value: string): this;
|
|
741
|
+
captionSide(value: string): this;
|
|
742
|
+
emptyCells(value: string): this;
|
|
743
|
+
tableLayout(value: string): this;
|
|
744
|
+
|
|
745
|
+
// Content
|
|
746
|
+
content(value: string): this;
|
|
747
|
+
quotes(value: string): this;
|
|
748
|
+
counterReset(value: string): this;
|
|
749
|
+
counterIncrement(value: string): this;
|
|
750
|
+
|
|
751
|
+
// User interface
|
|
752
|
+
appearance(value: string): this;
|
|
753
|
+
userSelect(value: string): this;
|
|
754
|
+
pointerEvents(value: string): this;
|
|
755
|
+
resize(value: string): this;
|
|
756
|
+
scrollBehavior(value: string): this;
|
|
757
|
+
|
|
758
|
+
// Clip
|
|
759
|
+
clip(value: string): this;
|
|
760
|
+
clipPath(value: string): this;
|
|
761
|
+
|
|
762
|
+
// Isolation
|
|
763
|
+
isolation(value: string): this;
|
|
764
|
+
|
|
765
|
+
// Mix blend mode
|
|
766
|
+
mixBlendMode(value: string): this;
|
|
767
|
+
|
|
768
|
+
// Will change
|
|
769
|
+
willChange(value: string): this;
|
|
770
|
+
|
|
771
|
+
// Contain
|
|
772
|
+
contain(value: string): this;
|
|
773
|
+
|
|
774
|
+
// Page break
|
|
775
|
+
pageBreakBefore(value: string): this;
|
|
776
|
+
pageBreakAfter(value: string): this;
|
|
777
|
+
pageBreakInside(value: string): this;
|
|
778
|
+
|
|
779
|
+
// Break
|
|
780
|
+
breakBefore(value: string): this;
|
|
781
|
+
breakAfter(value: string): this;
|
|
782
|
+
breakInside(value: string): this;
|
|
783
|
+
|
|
784
|
+
// Orphans and widows
|
|
785
|
+
orphans(value: string): this;
|
|
786
|
+
widows(value: string): this;
|
|
787
|
+
|
|
788
|
+
// Column
|
|
789
|
+
columnCount(value: string): this;
|
|
790
|
+
columnFill(value: string): this;
|
|
791
|
+
columnGap(value: string): this;
|
|
792
|
+
columnRule(value: string): this;
|
|
793
|
+
columnRuleColor(value: string): this;
|
|
794
|
+
columnRuleStyle(value: string): this;
|
|
795
|
+
columnRuleWidth(value: string): this;
|
|
796
|
+
columnSpan(value: string): this;
|
|
797
|
+
columnWidth(value: string): this;
|
|
798
|
+
columns(value: string): this;
|
|
799
|
+
|
|
800
|
+
// Interaction
|
|
801
|
+
cursor(value: string): this;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
// Utility functions that return StyleBuilders - exported at module level
|
|
805
|
+
// Display
|
|
806
|
+
export function display(value: string): StyleBuilder;
|
|
807
|
+
export function flex(value?: string): StyleBuilder;
|
|
808
|
+
export function grid(): StyleBuilder;
|
|
809
|
+
|
|
810
|
+
// Colors
|
|
811
|
+
export function bg(color: string): StyleBuilder;
|
|
812
|
+
export function color(colorValue: string): StyleBuilder;
|
|
813
|
+
export function accentColor(value: string): StyleBuilder;
|
|
814
|
+
|
|
815
|
+
// Typography
|
|
816
|
+
export function fontSize(size: string): StyleBuilder;
|
|
817
|
+
export function fontWeight(value: string): StyleBuilder;
|
|
818
|
+
export function fontFamily(value: string): StyleBuilder;
|
|
819
|
+
export function lineHeight(value: string): StyleBuilder;
|
|
820
|
+
export function letterSpacing(value: string): StyleBuilder;
|
|
821
|
+
export function textAlign(value: string): StyleBuilder;
|
|
822
|
+
export function textDecoration(value: string): StyleBuilder;
|
|
823
|
+
export function bold(): StyleBuilder;
|
|
824
|
+
export function fontStyle(value: string): StyleBuilder;
|
|
825
|
+
export function fontVariant(value: string): StyleBuilder;
|
|
826
|
+
export function fontStretch(value: string): StyleBuilder;
|
|
827
|
+
export function textTransform(value: string): StyleBuilder;
|
|
828
|
+
export function textIndent(value: string): StyleBuilder;
|
|
829
|
+
export function textOverflow(value: string): StyleBuilder;
|
|
830
|
+
export function textShadow(value: string): StyleBuilder;
|
|
831
|
+
export function whiteSpace(value: string): StyleBuilder;
|
|
832
|
+
export function wordSpacing(value: string): StyleBuilder;
|
|
833
|
+
export function wordWrap(value: string): StyleBuilder;
|
|
834
|
+
export function overflowWrap(value: string): StyleBuilder;
|
|
835
|
+
export function textAlignLast(value: string): StyleBuilder;
|
|
836
|
+
export function textJustify(value: string): StyleBuilder;
|
|
837
|
+
export function textDecorationLine(value: string): StyleBuilder;
|
|
838
|
+
export function textDecorationColor(value: string): StyleBuilder;
|
|
839
|
+
export function textDecorationStyle(value: string): StyleBuilder;
|
|
840
|
+
export function textDecorationThickness(value: string): StyleBuilder;
|
|
841
|
+
export function textUnderlineOffset(value: string): StyleBuilder;
|
|
842
|
+
export function verticalAlign(value: string): StyleBuilder;
|
|
843
|
+
|
|
844
|
+
// Layout
|
|
845
|
+
export function position(value: string): StyleBuilder;
|
|
846
|
+
export function padding(value: string): StyleBuilder;
|
|
847
|
+
export function paddingTop(value: string): StyleBuilder;
|
|
848
|
+
export function paddingRight(value: string): StyleBuilder;
|
|
849
|
+
export function paddingBottom(value: string): StyleBuilder;
|
|
850
|
+
export function paddingLeft(value: string): StyleBuilder;
|
|
851
|
+
export function margin(value: string): StyleBuilder;
|
|
852
|
+
export function marginTop(value: string): StyleBuilder;
|
|
853
|
+
export function marginRight(value: string): StyleBuilder;
|
|
854
|
+
export function marginBottom(value: string): StyleBuilder;
|
|
855
|
+
export function marginLeft(value: string): StyleBuilder;
|
|
856
|
+
export function width(value: string): StyleBuilder;
|
|
857
|
+
export function height(value: string): StyleBuilder;
|
|
858
|
+
export function minWidth(value: string): StyleBuilder;
|
|
859
|
+
export function maxWidth(value: string): StyleBuilder;
|
|
860
|
+
export function minHeight(value: string): StyleBuilder;
|
|
861
|
+
export function maxHeight(value: string): StyleBuilder;
|
|
862
|
+
export function boxSizing(value: string): StyleBuilder;
|
|
863
|
+
|
|
864
|
+
// Positioning
|
|
865
|
+
export function top(value: string): StyleBuilder;
|
|
866
|
+
export function right(value: string): StyleBuilder;
|
|
867
|
+
export function bottom(value: string): StyleBuilder;
|
|
868
|
+
export function left(value: string): StyleBuilder;
|
|
869
|
+
export function zIndex(value: string): StyleBuilder;
|
|
870
|
+
|
|
871
|
+
// Flexbox
|
|
872
|
+
export function flexDirection(value: string): StyleBuilder;
|
|
873
|
+
export function alignItems(value: string): StyleBuilder;
|
|
874
|
+
export function justifyContent(value: string): StyleBuilder;
|
|
875
|
+
export function center(): StyleBuilder;
|
|
876
|
+
export function gap(value: string): StyleBuilder;
|
|
877
|
+
export function flexWrap(value: string): StyleBuilder;
|
|
878
|
+
export function flexGrow(value: string): StyleBuilder;
|
|
879
|
+
export function flexShrink(value: string): StyleBuilder;
|
|
880
|
+
export function flexBasis(value: string): StyleBuilder;
|
|
881
|
+
export function alignSelf(value: string): StyleBuilder;
|
|
882
|
+
export function alignContent(value: string): StyleBuilder;
|
|
883
|
+
export function justifySelf(value: string): StyleBuilder;
|
|
884
|
+
export function justifyItems(value: string): StyleBuilder;
|
|
885
|
+
|
|
886
|
+
// Grid
|
|
887
|
+
export function gridTemplateColumns(value: string): StyleBuilder;
|
|
888
|
+
export function gridTemplateRows(value: string): StyleBuilder;
|
|
889
|
+
export function gridTemplateAreas(value: string): StyleBuilder;
|
|
890
|
+
export function gridColumn(value: string): StyleBuilder;
|
|
891
|
+
export function gridRow(value: string): StyleBuilder;
|
|
892
|
+
export function gridColumnStart(value: string): StyleBuilder;
|
|
893
|
+
export function gridColumnEnd(value: string): StyleBuilder;
|
|
894
|
+
export function gridRowStart(value: string): StyleBuilder;
|
|
895
|
+
export function gridRowEnd(value: string): StyleBuilder;
|
|
896
|
+
export function gridArea(value: string): StyleBuilder;
|
|
897
|
+
export function gridAutoColumns(value: string): StyleBuilder;
|
|
898
|
+
export function gridAutoRows(value: string): StyleBuilder;
|
|
899
|
+
export function gridAutoFlow(value: string): StyleBuilder;
|
|
900
|
+
|
|
901
|
+
// Borders
|
|
902
|
+
export function border(value: string): StyleBuilder;
|
|
903
|
+
export function borderTop(value: string): StyleBuilder;
|
|
904
|
+
export function borderRight(value: string): StyleBuilder;
|
|
905
|
+
export function borderBottom(value: string): StyleBuilder;
|
|
906
|
+
export function borderLeft(value: string): StyleBuilder;
|
|
907
|
+
export function borderWidth(value: string): StyleBuilder;
|
|
908
|
+
export function borderStyle(value: string): StyleBuilder;
|
|
909
|
+
export function borderColor(value: string): StyleBuilder;
|
|
910
|
+
export function borderTopWidth(value: string): StyleBuilder;
|
|
911
|
+
export function borderRightWidth(value: string): StyleBuilder;
|
|
912
|
+
export function borderBottomWidth(value: string): StyleBuilder;
|
|
913
|
+
export function borderLeftWidth(value: string): StyleBuilder;
|
|
914
|
+
export function borderTopStyle(value: string): StyleBuilder;
|
|
915
|
+
export function borderRightStyle(value: string): StyleBuilder;
|
|
916
|
+
export function borderBottomStyle(value: string): StyleBuilder;
|
|
917
|
+
export function borderLeftStyle(value: string): StyleBuilder;
|
|
918
|
+
export function borderTopColor(value: string): StyleBuilder;
|
|
919
|
+
export function borderRightColor(value: string): StyleBuilder;
|
|
920
|
+
export function borderBottomColor(value: string): StyleBuilder;
|
|
921
|
+
export function borderLeftColor(value: string): StyleBuilder;
|
|
922
|
+
export function borderRadius(value: string): StyleBuilder;
|
|
923
|
+
export function borderTopLeftRadius(value: string): StyleBuilder;
|
|
924
|
+
export function borderTopRightRadius(value: string): StyleBuilder;
|
|
925
|
+
export function borderBottomLeftRadius(value: string): StyleBuilder;
|
|
926
|
+
export function borderBottomRightRadius(value: string): StyleBuilder;
|
|
927
|
+
|
|
928
|
+
// Outline
|
|
929
|
+
export function outline(value: string): StyleBuilder;
|
|
930
|
+
export function outlineWidth(value: string): StyleBuilder;
|
|
931
|
+
export function outlineStyle(value: string): StyleBuilder;
|
|
932
|
+
export function outlineColor(value: string): StyleBuilder;
|
|
933
|
+
export function outlineOffset(value: string): StyleBuilder;
|
|
934
|
+
|
|
935
|
+
// Background
|
|
936
|
+
export function backgroundColor(value: string): StyleBuilder;
|
|
937
|
+
export function backgroundImage(value: string): StyleBuilder;
|
|
938
|
+
export function backgroundRepeat(value: string): StyleBuilder;
|
|
939
|
+
export function backgroundPosition(value: string): StyleBuilder;
|
|
940
|
+
export function backgroundSize(value: string): StyleBuilder;
|
|
941
|
+
export function backgroundAttachment(value: string): StyleBuilder;
|
|
942
|
+
export function backgroundClip(value: string): StyleBuilder;
|
|
943
|
+
export function backgroundOrigin(value: string): StyleBuilder;
|
|
944
|
+
|
|
945
|
+
// Effects
|
|
946
|
+
export function boxShadow(value: string): StyleBuilder;
|
|
947
|
+
export function opacity(value: string): StyleBuilder;
|
|
948
|
+
export function transition(value: string): StyleBuilder;
|
|
949
|
+
export function transitionProperty(value: string): StyleBuilder;
|
|
950
|
+
export function transitionDuration(value: string): StyleBuilder;
|
|
951
|
+
export function transitionTimingFunction(value: string): StyleBuilder;
|
|
952
|
+
export function transitionDelay(value: string): StyleBuilder;
|
|
953
|
+
|
|
954
|
+
// Transform
|
|
955
|
+
export function transform(value: string): StyleBuilder;
|
|
956
|
+
export function transformOrigin(value: string): StyleBuilder;
|
|
957
|
+
export function transformStyle(value: string): StyleBuilder;
|
|
958
|
+
export function perspective(value: string): StyleBuilder;
|
|
959
|
+
export function perspectiveOrigin(value: string): StyleBuilder;
|
|
960
|
+
export function backfaceVisibility(value: string): StyleBuilder;
|
|
961
|
+
|
|
962
|
+
// Animation
|
|
963
|
+
export function animation(value: string): StyleBuilder;
|
|
964
|
+
export function animationName(value: string): StyleBuilder;
|
|
965
|
+
export function animationDuration(value: string): StyleBuilder;
|
|
966
|
+
export function animationTimingFunction(value: string): StyleBuilder;
|
|
967
|
+
export function animationDelay(value: string): StyleBuilder;
|
|
968
|
+
export function animationIterationCount(value: string): StyleBuilder;
|
|
969
|
+
export function animationDirection(value: string): StyleBuilder;
|
|
970
|
+
export function animationFillMode(value: string): StyleBuilder;
|
|
971
|
+
export function animationPlayState(value: string): StyleBuilder;
|
|
972
|
+
|
|
973
|
+
// Filter
|
|
974
|
+
export function filter(value: string): StyleBuilder;
|
|
975
|
+
export function backdropFilter(value: string): StyleBuilder;
|
|
976
|
+
|
|
977
|
+
// Overflow
|
|
978
|
+
export function overflow(value: string): StyleBuilder;
|
|
979
|
+
export function overflowX(value: string): StyleBuilder;
|
|
980
|
+
export function overflowY(value: string): StyleBuilder;
|
|
981
|
+
|
|
982
|
+
// Visibility
|
|
983
|
+
export function visibility(value: string): StyleBuilder;
|
|
984
|
+
|
|
985
|
+
// Object fit/position
|
|
986
|
+
export function objectFit(value: string): StyleBuilder;
|
|
987
|
+
export function objectPosition(value: string): StyleBuilder;
|
|
988
|
+
|
|
989
|
+
// List
|
|
990
|
+
export function listStyle(value: string): StyleBuilder;
|
|
991
|
+
export function listStyleType(value: string): StyleBuilder;
|
|
992
|
+
export function listStylePosition(value: string): StyleBuilder;
|
|
993
|
+
export function listStyleImage(value: string): StyleBuilder;
|
|
994
|
+
|
|
995
|
+
// Table
|
|
996
|
+
export function borderCollapse(value: string): StyleBuilder;
|
|
997
|
+
export function borderSpacing(value: string): StyleBuilder;
|
|
998
|
+
export function captionSide(value: string): StyleBuilder;
|
|
999
|
+
export function emptyCells(value: string): StyleBuilder;
|
|
1000
|
+
export function tableLayout(value: string): StyleBuilder;
|
|
1001
|
+
|
|
1002
|
+
// Content
|
|
1003
|
+
export function content(value: string): StyleBuilder;
|
|
1004
|
+
export function quotes(value: string): StyleBuilder;
|
|
1005
|
+
export function counterReset(value: string): StyleBuilder;
|
|
1006
|
+
export function counterIncrement(value: string): StyleBuilder;
|
|
1007
|
+
|
|
1008
|
+
// User interface
|
|
1009
|
+
export function appearance(value: string): StyleBuilder;
|
|
1010
|
+
export function userSelect(value: string): StyleBuilder;
|
|
1011
|
+
export function pointerEvents(value: string): StyleBuilder;
|
|
1012
|
+
export function resize(value: string): StyleBuilder;
|
|
1013
|
+
export function scrollBehavior(value: string): StyleBuilder;
|
|
1014
|
+
|
|
1015
|
+
// Clip
|
|
1016
|
+
export function clip(value: string): StyleBuilder;
|
|
1017
|
+
export function clipPath(value: string): StyleBuilder;
|
|
1018
|
+
|
|
1019
|
+
// Isolation
|
|
1020
|
+
export function isolation(value: string): StyleBuilder;
|
|
1021
|
+
|
|
1022
|
+
// Mix blend mode
|
|
1023
|
+
export function mixBlendMode(value: string): StyleBuilder;
|
|
1024
|
+
|
|
1025
|
+
// Will change
|
|
1026
|
+
export function willChange(value: string): StyleBuilder;
|
|
1027
|
+
|
|
1028
|
+
// Contain
|
|
1029
|
+
export function contain(value: string): StyleBuilder;
|
|
1030
|
+
|
|
1031
|
+
// Page break
|
|
1032
|
+
export function pageBreakBefore(value: string): StyleBuilder;
|
|
1033
|
+
export function pageBreakAfter(value: string): StyleBuilder;
|
|
1034
|
+
export function pageBreakInside(value: string): StyleBuilder;
|
|
1035
|
+
|
|
1036
|
+
// Break
|
|
1037
|
+
export function breakBefore(value: string): StyleBuilder;
|
|
1038
|
+
export function breakAfter(value: string): StyleBuilder;
|
|
1039
|
+
export function breakInside(value: string): StyleBuilder;
|
|
1040
|
+
|
|
1041
|
+
// Orphans and widows
|
|
1042
|
+
export function orphans(value: string): StyleBuilder;
|
|
1043
|
+
export function widows(value: string): StyleBuilder;
|
|
1044
|
+
|
|
1045
|
+
// Column
|
|
1046
|
+
export function columnCount(value: string): StyleBuilder;
|
|
1047
|
+
export function columnFill(value: string): StyleBuilder;
|
|
1048
|
+
export function columnGap(value: string): StyleBuilder;
|
|
1049
|
+
export function columnRule(value: string): StyleBuilder;
|
|
1050
|
+
export function columnRuleColor(value: string): StyleBuilder;
|
|
1051
|
+
export function columnRuleStyle(value: string): StyleBuilder;
|
|
1052
|
+
export function columnRuleWidth(value: string): StyleBuilder;
|
|
1053
|
+
export function columnSpan(value: string): StyleBuilder;
|
|
1054
|
+
export function columnWidth(value: string): StyleBuilder;
|
|
1055
|
+
export function columns(value: string): StyleBuilder;
|
|
1056
|
+
|
|
1057
|
+
// Interaction
|
|
1058
|
+
export function cursor(value: string): StyleBuilder;
|