@m4l/styles 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +0 -1
- package/index.js +389 -381
- package/package.json +1 -1
- package/theme/index.d.ts +3 -0
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -2
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +3 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +3 -0
- package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
- package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
- package/theme/overrides/MUIComponents/Input.d.ts +72 -32
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
- package/theme/overrides/MUIComponents/Table.d.ts +144 -64
- package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
- package/theme/palette.d.ts +65 -0
- package/types/index.d.ts +1 -1
- package/types/types.d.ts +0 -87
|
@@ -126,6 +126,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
126
126
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
127
127
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
128
128
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
129
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
129
130
|
clear?: import("csstype").Property.Clear | undefined;
|
|
130
131
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
131
132
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -140,6 +141,12 @@ export default function DataGrid(theme: Theme): {
|
|
|
140
141
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
141
142
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
142
143
|
contain?: import("csstype").Property.Contain | undefined;
|
|
144
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
145
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
146
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
147
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
148
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
149
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
143
150
|
content?: import("csstype").Property.Content | undefined;
|
|
144
151
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
145
152
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -161,6 +168,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
161
168
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
162
169
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
163
170
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
171
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
164
172
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
165
173
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
166
174
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -171,6 +179,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
171
179
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
172
180
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
173
181
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
182
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
174
183
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
175
184
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
176
185
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -190,6 +199,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
190
199
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
191
200
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
192
201
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
202
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
193
203
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
194
204
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
195
205
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -197,11 +207,8 @@ export default function DataGrid(theme: Theme): {
|
|
|
197
207
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
198
208
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
199
209
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
200
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
201
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
202
210
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
203
211
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
204
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
205
212
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
206
213
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
207
214
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -217,16 +224,15 @@ export default function DataGrid(theme: Theme): {
|
|
|
217
224
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
218
225
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
219
226
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
220
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
221
227
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
222
228
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
223
229
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
224
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
225
230
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
226
231
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
227
232
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
228
233
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
229
234
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
235
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
230
236
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
231
237
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
232
238
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -263,6 +269,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
263
269
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
264
270
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
265
271
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
272
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
266
273
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
267
274
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
268
275
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -284,23 +291,21 @@ export default function DataGrid(theme: Theme): {
|
|
|
284
291
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
285
292
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
286
293
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
287
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
288
294
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
289
295
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
290
296
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
291
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
292
297
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
293
298
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
294
299
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
295
300
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
296
301
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
302
|
+
page?: import("csstype").Property.Page | undefined;
|
|
297
303
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
298
304
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
299
305
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
300
306
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
301
307
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
302
308
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
303
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
304
309
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
305
310
|
position?: import("csstype").Property.Position | undefined;
|
|
306
311
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -314,36 +319,31 @@ export default function DataGrid(theme: Theme): {
|
|
|
314
319
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
315
320
|
scale?: import("csstype").Property.Scale | undefined;
|
|
316
321
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
317
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
318
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
319
322
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
320
323
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
321
324
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
322
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
323
325
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
324
326
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
325
327
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
326
328
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
327
329
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
328
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
329
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
330
330
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
331
331
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
332
332
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
333
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
334
333
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
335
334
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
336
335
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
337
336
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
338
337
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
339
338
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
340
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
341
339
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
342
340
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
343
341
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
344
342
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
345
343
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
346
344
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
345
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
346
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
347
347
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
348
348
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
349
349
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -388,6 +388,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
388
388
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
389
389
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
390
390
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
391
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
391
392
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
392
393
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
393
394
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -419,8 +420,11 @@ export default function DataGrid(theme: Theme): {
|
|
|
419
420
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
420
421
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
421
422
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
423
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
422
424
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
423
425
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
426
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
427
|
+
container?: import("csstype").Property.Container | undefined;
|
|
424
428
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
425
429
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
426
430
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -430,9 +434,14 @@ export default function DataGrid(theme: Theme): {
|
|
|
430
434
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
431
435
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
432
436
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
437
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
438
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
439
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
433
440
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
434
441
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
435
442
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
443
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
444
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
436
445
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
437
446
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
438
447
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -441,8 +450,19 @@ export default function DataGrid(theme: Theme): {
|
|
|
441
450
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
442
451
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
443
452
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
453
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
454
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
455
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
444
456
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
445
457
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
458
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
459
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
460
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
461
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
462
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
463
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
464
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
465
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
446
466
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
447
467
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
448
468
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -456,6 +476,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
456
476
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
457
477
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
458
478
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
479
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
459
480
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
460
481
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
461
482
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -736,7 +757,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
736
757
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
737
758
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
738
759
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
739
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
740
760
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
741
761
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
742
762
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -934,6 +954,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
934
954
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
935
955
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
936
956
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
957
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
937
958
|
clear?: import("csstype").Property.Clear | undefined;
|
|
938
959
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
939
960
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -948,6 +969,12 @@ export default function DataGrid(theme: Theme): {
|
|
|
948
969
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
949
970
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
950
971
|
contain?: import("csstype").Property.Contain | undefined;
|
|
972
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
973
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
974
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
975
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
976
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
977
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
951
978
|
content?: import("csstype").Property.Content | undefined;
|
|
952
979
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
953
980
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -969,6 +996,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
969
996
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
970
997
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
971
998
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
999
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
972
1000
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
973
1001
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
974
1002
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -979,6 +1007,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
979
1007
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
980
1008
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
981
1009
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
1010
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
982
1011
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
983
1012
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
984
1013
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -998,6 +1027,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
998
1027
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
999
1028
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
1000
1029
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1030
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
1001
1031
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1002
1032
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
1003
1033
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -1005,11 +1035,8 @@ export default function DataGrid(theme: Theme): {
|
|
|
1005
1035
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1006
1036
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1007
1037
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1008
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1009
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1010
1038
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1011
1039
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1012
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1013
1040
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1014
1041
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1015
1042
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -1025,16 +1052,15 @@ export default function DataGrid(theme: Theme): {
|
|
|
1025
1052
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1026
1053
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1027
1054
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1028
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1029
1055
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1030
1056
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1031
1057
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1032
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1033
1058
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1034
1059
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1035
1060
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
1036
1061
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1037
1062
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1063
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1038
1064
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1039
1065
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1040
1066
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1071,6 +1097,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
1071
1097
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1072
1098
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1073
1099
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1100
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1074
1101
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1075
1102
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1076
1103
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -1092,23 +1119,21 @@ export default function DataGrid(theme: Theme): {
|
|
|
1092
1119
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1093
1120
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1094
1121
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1095
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1096
1122
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1097
1123
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1098
1124
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1099
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1100
1125
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1101
1126
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1102
1127
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1103
1128
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1104
1129
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1130
|
+
page?: import("csstype").Property.Page | undefined;
|
|
1105
1131
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1106
1132
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1107
1133
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1108
1134
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1109
1135
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1110
1136
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1111
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1112
1137
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1113
1138
|
position?: import("csstype").Property.Position | undefined;
|
|
1114
1139
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -1122,36 +1147,31 @@ export default function DataGrid(theme: Theme): {
|
|
|
1122
1147
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1123
1148
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1124
1149
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1125
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1126
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1127
1150
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1128
1151
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1129
1152
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1130
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1131
1153
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1132
1154
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1133
1155
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1134
1156
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1135
1157
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1136
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1137
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1138
1158
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1139
1159
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1140
1160
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1141
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1142
1161
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1143
1162
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1144
1163
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1145
1164
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1146
1165
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1147
1166
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1148
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1149
1167
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1150
1168
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1151
1169
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1152
1170
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1153
1171
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1154
1172
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1173
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1174
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1155
1175
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1156
1176
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1157
1177
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -1196,6 +1216,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
1196
1216
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1197
1217
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1198
1218
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1219
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1199
1220
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1200
1221
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1201
1222
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -1226,8 +1247,11 @@ export default function DataGrid(theme: Theme): {
|
|
|
1226
1247
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
1227
1248
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
1228
1249
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
1250
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
1229
1251
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1230
1252
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1253
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1254
|
+
container?: import("csstype").Property.Container | undefined;
|
|
1231
1255
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1232
1256
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1233
1257
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -1237,9 +1261,14 @@ export default function DataGrid(theme: Theme): {
|
|
|
1237
1261
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
1238
1262
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
1239
1263
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
1264
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1265
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1266
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1240
1267
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
1241
1268
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
1242
1269
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
1270
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1271
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1243
1272
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
1244
1273
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
1245
1274
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -1247,8 +1276,19 @@ export default function DataGrid(theme: Theme): {
|
|
|
1247
1276
|
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1248
1277
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
1249
1278
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
1279
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1280
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1281
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1250
1282
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1251
1283
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1284
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1285
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1286
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1287
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1288
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1289
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1290
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1291
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1252
1292
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1253
1293
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1254
1294
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -1262,6 +1302,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
1262
1302
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1263
1303
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1264
1304
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1305
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1265
1306
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1266
1307
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1267
1308
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -1542,7 +1583,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1542
1583
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1543
1584
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1544
1585
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1545
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1546
1586
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1547
1587
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1548
1588
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|