@m4l/styles 0.0.2 → 0.0.4
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/config.d.ts +13 -0
- package/index.d.ts +1 -0
- package/index.js +1141 -623
- package/package.json +1 -1
- package/theme/defaultThemeOptions.d.ts +1 -2
- package/theme/index.d.ts +4 -2
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +1 -5
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -2
- package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +35 -1
- package/theme/overrides/M4LExtendedComponents/M4LNavLink.d.ts +10 -0
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +5 -1
- package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +5 -2
- package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -4
- package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +6 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +10 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +10 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +46 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -11
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +5 -2
- package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
- package/theme/overrides/MUIComponents/Autocomplete.d.ts +0 -3
- package/theme/overrides/MUIComponents/ButtonGroup.d.ts +8 -0
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
- package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
- package/theme/overrides/MUIComponents/Fab.d.ts +1 -1
- package/theme/overrides/MUIComponents/Input.d.ts +72 -32
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
- package/theme/overrides/MUIComponents/Paper.d.ts +35 -0
- package/theme/overrides/MUIComponents/Table.d.ts +144 -64
- package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
- package/theme/overrides/MUIComponents/Typography.d.ts +5 -0
- package/theme/palette.d.ts +169 -30
- package/theme/shadows.d.ts +5 -50
- package/theme/typography.d.ts +146 -18
- package/types/types.d.ts +65 -1
- package/utils/getColorPresets.d.ts +9 -105
- package/utils/getColorState.d.ts +15 -0
- package/utils/getFontValue.d.ts +1 -1
- package/utils/index.d.ts +1 -0
|
@@ -137,6 +137,7 @@ export default function Table(theme: Theme): {
|
|
|
137
137
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
138
138
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
139
139
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
140
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
140
141
|
clear?: import("csstype").Property.Clear | undefined;
|
|
141
142
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
142
143
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -151,6 +152,12 @@ export default function Table(theme: Theme): {
|
|
|
151
152
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
152
153
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
153
154
|
contain?: import("csstype").Property.Contain | undefined;
|
|
155
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
156
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
157
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
158
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
159
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
160
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
154
161
|
content?: import("csstype").Property.Content | undefined;
|
|
155
162
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
156
163
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -172,6 +179,7 @@ export default function Table(theme: Theme): {
|
|
|
172
179
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
173
180
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
174
181
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
182
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
175
183
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
176
184
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
177
185
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -182,6 +190,7 @@ export default function Table(theme: Theme): {
|
|
|
182
190
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
183
191
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
184
192
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
193
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
185
194
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
186
195
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
187
196
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -201,6 +210,7 @@ export default function Table(theme: Theme): {
|
|
|
201
210
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
202
211
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
203
212
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
213
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
204
214
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
205
215
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
206
216
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -208,11 +218,8 @@ export default function Table(theme: Theme): {
|
|
|
208
218
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
209
219
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
210
220
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
211
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
212
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
213
221
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
214
222
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
215
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
216
223
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
217
224
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
218
225
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -228,16 +235,15 @@ export default function Table(theme: Theme): {
|
|
|
228
235
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
229
236
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
230
237
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
231
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
232
238
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
233
239
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
234
240
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
235
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
236
241
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
237
242
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
238
243
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
239
244
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
240
245
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
246
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
241
247
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
242
248
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
243
249
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -274,6 +280,7 @@ export default function Table(theme: Theme): {
|
|
|
274
280
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
275
281
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
276
282
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
283
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
277
284
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
278
285
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
279
286
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -295,23 +302,21 @@ export default function Table(theme: Theme): {
|
|
|
295
302
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
296
303
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
297
304
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
298
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
299
305
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
300
306
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
301
307
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
302
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
303
308
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
304
309
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
305
310
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
306
311
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
307
312
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
313
|
+
page?: import("csstype").Property.Page | undefined;
|
|
308
314
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
309
315
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
310
316
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
311
317
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
312
318
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
313
319
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
314
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
315
320
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
316
321
|
position?: import("csstype").Property.Position | undefined;
|
|
317
322
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -325,36 +330,31 @@ export default function Table(theme: Theme): {
|
|
|
325
330
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
326
331
|
scale?: import("csstype").Property.Scale | undefined;
|
|
327
332
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
328
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
329
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
330
333
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
331
334
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
332
335
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
333
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
334
336
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
335
337
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
336
338
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
337
339
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
338
340
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
339
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
340
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
341
341
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
342
342
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
343
343
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
344
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
345
344
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
346
345
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
347
346
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
348
347
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
349
348
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
350
349
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
351
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
352
350
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
353
351
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
354
352
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
355
353
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
356
354
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
357
355
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
356
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
357
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
358
358
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
359
359
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
360
360
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -399,6 +399,7 @@ export default function Table(theme: Theme): {
|
|
|
399
399
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
400
400
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
401
401
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
402
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
402
403
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
403
404
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
404
405
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -430,8 +431,11 @@ export default function Table(theme: Theme): {
|
|
|
430
431
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
431
432
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
432
433
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
434
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
433
435
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
434
436
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
437
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
438
|
+
container?: import("csstype").Property.Container | undefined;
|
|
435
439
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
436
440
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
437
441
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -441,9 +445,14 @@ export default function Table(theme: Theme): {
|
|
|
441
445
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
442
446
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
443
447
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
448
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
449
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
450
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
444
451
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
445
452
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
446
453
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
454
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
455
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
447
456
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
448
457
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
449
458
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -452,8 +461,19 @@ export default function Table(theme: Theme): {
|
|
|
452
461
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
453
462
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
454
463
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
464
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
465
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
466
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
455
467
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
456
468
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
469
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
470
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
471
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
472
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
473
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
474
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
475
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
476
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
457
477
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
458
478
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
459
479
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -467,6 +487,7 @@ export default function Table(theme: Theme): {
|
|
|
467
487
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
468
488
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
469
489
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
490
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
470
491
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
471
492
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
472
493
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -747,7 +768,6 @@ export default function Table(theme: Theme): {
|
|
|
747
768
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
748
769
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
749
770
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
750
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
751
771
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
752
772
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
753
773
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -929,6 +949,7 @@ export default function Table(theme: Theme): {
|
|
|
929
949
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
930
950
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
931
951
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
952
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
932
953
|
clear?: import("csstype").Property.Clear | undefined;
|
|
933
954
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
934
955
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -943,6 +964,12 @@ export default function Table(theme: Theme): {
|
|
|
943
964
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
944
965
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
945
966
|
contain?: import("csstype").Property.Contain | undefined;
|
|
967
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
968
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
969
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
970
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
971
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
972
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
946
973
|
content?: import("csstype").Property.Content | undefined;
|
|
947
974
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
948
975
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -964,6 +991,7 @@ export default function Table(theme: Theme): {
|
|
|
964
991
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
965
992
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
966
993
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
994
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
967
995
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
968
996
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
969
997
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -974,6 +1002,7 @@ export default function Table(theme: Theme): {
|
|
|
974
1002
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
975
1003
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
976
1004
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
1005
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
977
1006
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
978
1007
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
979
1008
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -993,6 +1022,7 @@ export default function Table(theme: Theme): {
|
|
|
993
1022
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
994
1023
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
995
1024
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1025
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
996
1026
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
997
1027
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
998
1028
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -1000,11 +1030,8 @@ export default function Table(theme: Theme): {
|
|
|
1000
1030
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1001
1031
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1002
1032
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1003
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1004
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1005
1033
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1006
1034
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1007
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1008
1035
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1009
1036
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1010
1037
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -1020,16 +1047,15 @@ export default function Table(theme: Theme): {
|
|
|
1020
1047
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1021
1048
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1022
1049
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1023
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1024
1050
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1025
1051
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1026
1052
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1027
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1028
1053
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1029
1054
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1030
1055
|
marginLeft: import("csstype").Property.MarginLeft<string | number>;
|
|
1031
1056
|
marginRight: import("csstype").Property.MarginRight<string | number>;
|
|
1032
1057
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1058
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1033
1059
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1034
1060
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1035
1061
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1066,6 +1092,7 @@ export default function Table(theme: Theme): {
|
|
|
1066
1092
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1067
1093
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1068
1094
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1095
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1069
1096
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1070
1097
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1071
1098
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -1087,23 +1114,21 @@ export default function Table(theme: Theme): {
|
|
|
1087
1114
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1088
1115
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1089
1116
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1090
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1091
1117
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1092
1118
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1093
1119
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1094
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1095
1120
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1096
1121
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1097
1122
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1098
1123
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1099
1124
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1125
|
+
page?: import("csstype").Property.Page | undefined;
|
|
1100
1126
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1101
1127
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1102
1128
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1103
1129
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1104
1130
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1105
1131
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1106
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1107
1132
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1108
1133
|
position?: import("csstype").Property.Position | undefined;
|
|
1109
1134
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -1117,36 +1142,31 @@ export default function Table(theme: Theme): {
|
|
|
1117
1142
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1118
1143
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1119
1144
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1120
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1121
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1122
1145
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1123
1146
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1124
1147
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1125
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1126
1148
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1127
1149
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1128
1150
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1129
1151
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1130
1152
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1131
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1132
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1133
1153
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1134
1154
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1135
1155
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1136
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1137
1156
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1138
1157
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1139
1158
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1140
1159
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1141
1160
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1142
1161
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1143
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1144
1162
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1145
1163
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1146
1164
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1147
1165
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1148
1166
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1149
1167
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1168
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1169
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1150
1170
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1151
1171
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1152
1172
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -1191,6 +1211,7 @@ export default function Table(theme: Theme): {
|
|
|
1191
1211
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1192
1212
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1193
1213
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1214
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1194
1215
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1195
1216
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1196
1217
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -1222,8 +1243,11 @@ export default function Table(theme: Theme): {
|
|
|
1222
1243
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
1223
1244
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
1224
1245
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
1246
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
1225
1247
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1226
1248
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1249
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1250
|
+
container?: import("csstype").Property.Container | undefined;
|
|
1227
1251
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1228
1252
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1229
1253
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -1233,9 +1257,14 @@ export default function Table(theme: Theme): {
|
|
|
1233
1257
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
1234
1258
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
1235
1259
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
1260
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1261
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1262
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1236
1263
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
1237
1264
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
1238
1265
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
1266
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1267
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1239
1268
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
1240
1269
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
1241
1270
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -1244,8 +1273,19 @@ export default function Table(theme: Theme): {
|
|
|
1244
1273
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
1245
1274
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
1246
1275
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
1276
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1277
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1278
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1247
1279
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1248
1280
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1281
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1282
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1283
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1284
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1285
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1286
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1287
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1288
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1249
1289
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1250
1290
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1251
1291
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -1259,6 +1299,7 @@ export default function Table(theme: Theme): {
|
|
|
1259
1299
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1260
1300
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1261
1301
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1302
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1262
1303
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1263
1304
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1264
1305
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -1539,7 +1580,6 @@ export default function Table(theme: Theme): {
|
|
|
1539
1580
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1540
1581
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1541
1582
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1542
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1543
1583
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1544
1584
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1545
1585
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -1726,6 +1766,7 @@ export default function Table(theme: Theme): {
|
|
|
1726
1766
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
1727
1767
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
1728
1768
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
1769
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
1729
1770
|
clear?: import("csstype").Property.Clear | undefined;
|
|
1730
1771
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1731
1772
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -1740,6 +1781,12 @@ export default function Table(theme: Theme): {
|
|
|
1740
1781
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
1741
1782
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1742
1783
|
contain?: import("csstype").Property.Contain | undefined;
|
|
1784
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
1785
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
1786
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
1787
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
1788
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
1789
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
1743
1790
|
content?: import("csstype").Property.Content | undefined;
|
|
1744
1791
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
1745
1792
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -1761,6 +1808,7 @@ export default function Table(theme: Theme): {
|
|
|
1761
1808
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
1762
1809
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
1763
1810
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
1811
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
1764
1812
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
1765
1813
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
1766
1814
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -1771,6 +1819,7 @@ export default function Table(theme: Theme): {
|
|
|
1771
1819
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1772
1820
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
1773
1821
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
1822
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
1774
1823
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
1775
1824
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
1776
1825
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -1790,6 +1839,7 @@ export default function Table(theme: Theme): {
|
|
|
1790
1839
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
1791
1840
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
1792
1841
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1842
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
1793
1843
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1794
1844
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
1795
1845
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -1797,11 +1847,8 @@ export default function Table(theme: Theme): {
|
|
|
1797
1847
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1798
1848
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1799
1849
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1800
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1801
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1802
1850
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1803
1851
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1804
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1805
1852
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1806
1853
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1807
1854
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -1817,16 +1864,15 @@ export default function Table(theme: Theme): {
|
|
|
1817
1864
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1818
1865
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1819
1866
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1820
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1821
1867
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1822
1868
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1823
1869
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1824
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1825
1870
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1826
1871
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1827
1872
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
1828
1873
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1829
1874
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1875
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1830
1876
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1831
1877
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1832
1878
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1863,6 +1909,7 @@ export default function Table(theme: Theme): {
|
|
|
1863
1909
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1864
1910
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1865
1911
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1912
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1866
1913
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1867
1914
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1868
1915
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -1884,23 +1931,21 @@ export default function Table(theme: Theme): {
|
|
|
1884
1931
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1885
1932
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1886
1933
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1887
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1888
1934
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1889
1935
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1890
1936
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1891
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1892
1937
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1893
1938
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1894
1939
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1895
1940
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1896
1941
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1942
|
+
page?: import("csstype").Property.Page | undefined;
|
|
1897
1943
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1898
1944
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1899
1945
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1900
1946
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1901
1947
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1902
1948
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1903
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1904
1949
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1905
1950
|
position?: import("csstype").Property.Position | undefined;
|
|
1906
1951
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -1914,36 +1959,31 @@ export default function Table(theme: Theme): {
|
|
|
1914
1959
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1915
1960
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1916
1961
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1917
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1918
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1919
1962
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1920
1963
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1921
1964
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1922
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1923
1965
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1924
1966
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1925
1967
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1926
1968
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1927
1969
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1928
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1929
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1930
1970
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1931
1971
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1932
1972
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1933
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1934
1973
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1935
1974
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1936
1975
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1937
1976
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1938
1977
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1939
1978
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1940
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1941
1979
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1942
1980
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1943
1981
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1944
1982
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1945
1983
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1946
1984
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1985
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1986
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1947
1987
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1948
1988
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1949
1989
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -1988,6 +2028,7 @@ export default function Table(theme: Theme): {
|
|
|
1988
2028
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1989
2029
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1990
2030
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
2031
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1991
2032
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1992
2033
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1993
2034
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -2019,8 +2060,11 @@ export default function Table(theme: Theme): {
|
|
|
2019
2060
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
2020
2061
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
2021
2062
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
2063
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
2022
2064
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2023
2065
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
2066
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
2067
|
+
container?: import("csstype").Property.Container | undefined;
|
|
2024
2068
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
2025
2069
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
2026
2070
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -2030,9 +2074,14 @@ export default function Table(theme: Theme): {
|
|
|
2030
2074
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
2031
2075
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
2032
2076
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
2077
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
2078
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
2079
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
2033
2080
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
2034
2081
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
2035
2082
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
2083
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
2084
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
2036
2085
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
2037
2086
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
2038
2087
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -2041,8 +2090,19 @@ export default function Table(theme: Theme): {
|
|
|
2041
2090
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
2042
2091
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
2043
2092
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
2093
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
2094
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
2095
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
2044
2096
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
2045
2097
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
2098
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2099
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
2100
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
2101
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
2102
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
2103
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
2104
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2105
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
2046
2106
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
2047
2107
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2048
2108
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -2056,6 +2116,7 @@ export default function Table(theme: Theme): {
|
|
|
2056
2116
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2057
2117
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
2058
2118
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2119
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2059
2120
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
2060
2121
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
2061
2122
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -2336,7 +2397,6 @@ export default function Table(theme: Theme): {
|
|
|
2336
2397
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
2337
2398
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
2338
2399
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
2339
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2340
2400
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
2341
2401
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2342
2402
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -2519,6 +2579,7 @@ export default function Table(theme: Theme): {
|
|
|
2519
2579
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
2520
2580
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
2521
2581
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
2582
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
2522
2583
|
clear?: import("csstype").Property.Clear | undefined;
|
|
2523
2584
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
2524
2585
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -2533,6 +2594,12 @@ export default function Table(theme: Theme): {
|
|
|
2533
2594
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
2534
2595
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
2535
2596
|
contain?: import("csstype").Property.Contain | undefined;
|
|
2597
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
2598
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
2599
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
2600
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
2601
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
2602
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
2536
2603
|
content?: import("csstype").Property.Content | undefined;
|
|
2537
2604
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
2538
2605
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -2554,6 +2621,7 @@ export default function Table(theme: Theme): {
|
|
|
2554
2621
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
2555
2622
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
2556
2623
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
2624
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
2557
2625
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
2558
2626
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
2559
2627
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -2564,6 +2632,7 @@ export default function Table(theme: Theme): {
|
|
|
2564
2632
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
2565
2633
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
2566
2634
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
2635
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
2567
2636
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
2568
2637
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
2569
2638
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -2583,6 +2652,7 @@ export default function Table(theme: Theme): {
|
|
|
2583
2652
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
2584
2653
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
2585
2654
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
2655
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
2586
2656
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
2587
2657
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
2588
2658
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -2590,11 +2660,8 @@ export default function Table(theme: Theme): {
|
|
|
2590
2660
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
2591
2661
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
2592
2662
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
2593
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
2594
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
2595
2663
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
2596
2664
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
2597
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
2598
2665
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
2599
2666
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
2600
2667
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -2610,16 +2677,15 @@ export default function Table(theme: Theme): {
|
|
|
2610
2677
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
2611
2678
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
2612
2679
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
2613
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
2614
2680
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
2615
2681
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
2616
2682
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
2617
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
2618
2683
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
2619
2684
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
2620
2685
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
2621
2686
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
2622
2687
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
2688
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
2623
2689
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
2624
2690
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
2625
2691
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -2656,6 +2722,7 @@ export default function Table(theme: Theme): {
|
|
|
2656
2722
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
2657
2723
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
2658
2724
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
2725
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
2659
2726
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
2660
2727
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
2661
2728
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -2677,23 +2744,21 @@ export default function Table(theme: Theme): {
|
|
|
2677
2744
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
2678
2745
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
2679
2746
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
2680
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
2681
2747
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
2682
2748
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
2683
2749
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
2684
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
2685
2750
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
2686
2751
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
2687
2752
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
2688
2753
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
2689
2754
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
2755
|
+
page?: import("csstype").Property.Page | undefined;
|
|
2690
2756
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
2691
2757
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
2692
2758
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
2693
2759
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
2694
2760
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2695
2761
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2696
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
2697
2762
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
2698
2763
|
position?: import("csstype").Property.Position | undefined;
|
|
2699
2764
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -2707,36 +2772,31 @@ export default function Table(theme: Theme): {
|
|
|
2707
2772
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
2708
2773
|
scale?: import("csstype").Property.Scale | undefined;
|
|
2709
2774
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
2710
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2711
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
2712
2775
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
2713
2776
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
2714
2777
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
2715
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
2716
2778
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
2717
2779
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
2718
2780
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
2719
2781
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
2720
2782
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
2721
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
2722
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
2723
2783
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
2724
2784
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
2725
2785
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
2726
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
2727
2786
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
2728
2787
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
2729
2788
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
2730
2789
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
2731
2790
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
2732
2791
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
2733
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2734
2792
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
2735
2793
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
2736
2794
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
2737
2795
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
2738
2796
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
2739
2797
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
2798
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
2799
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
2740
2800
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
2741
2801
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
2742
2802
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -2781,6 +2841,7 @@ export default function Table(theme: Theme): {
|
|
|
2781
2841
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
2782
2842
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2783
2843
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
2844
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
2784
2845
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
2785
2846
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
2786
2847
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -2812,8 +2873,11 @@ export default function Table(theme: Theme): {
|
|
|
2812
2873
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
2813
2874
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
2814
2875
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
2876
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
2815
2877
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2816
2878
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
2879
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
2880
|
+
container?: import("csstype").Property.Container | undefined;
|
|
2817
2881
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
2818
2882
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
2819
2883
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -2823,9 +2887,14 @@ export default function Table(theme: Theme): {
|
|
|
2823
2887
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
2824
2888
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
2825
2889
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
2890
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
2891
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
2892
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
2826
2893
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
2827
2894
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
2828
2895
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
2896
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
2897
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
2829
2898
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
2830
2899
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
2831
2900
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -2834,8 +2903,19 @@ export default function Table(theme: Theme): {
|
|
|
2834
2903
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
2835
2904
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
2836
2905
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
2906
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
2907
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
2908
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
2837
2909
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
2838
2910
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
2911
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2912
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
2913
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
2914
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
2915
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
2916
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
2917
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2918
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
2839
2919
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
2840
2920
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2841
2921
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -2849,6 +2929,7 @@ export default function Table(theme: Theme): {
|
|
|
2849
2929
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2850
2930
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
2851
2931
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2932
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2852
2933
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
2853
2934
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
2854
2935
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -3129,7 +3210,6 @@ export default function Table(theme: Theme): {
|
|
|
3129
3210
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
3130
3211
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
3131
3212
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
3132
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
3133
3213
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
3134
3214
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
3135
3215
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|