@cakemail-org/ui-components-v2 2.2.90 → 2.2.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/cjs/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTextField.d.ts +348 -220
- package/dist/cjs/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/cjs/index.js +160 -86
- package/dist/esm/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/esm/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/esm/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/esm/data/theme/MuiTextField.d.ts +348 -220
- package/dist/esm/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/esm/index.js +161 -87
- package/package.json +2 -2
|
@@ -27,6 +27,9 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
27
27
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
28
28
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
29
29
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
30
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
31
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
32
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
30
33
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
31
34
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
32
35
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -53,17 +56,14 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
53
56
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
54
57
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
55
58
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
56
|
-
|
|
59
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
57
60
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
58
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
59
61
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
60
62
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
61
63
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
62
64
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
63
65
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
64
66
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
65
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
66
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
67
67
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
68
68
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
69
69
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -77,15 +77,12 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
77
77
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
78
78
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
79
79
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
80
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
81
80
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
82
81
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
83
82
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
84
83
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
85
84
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
86
85
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
87
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
88
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
89
86
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
90
87
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
91
88
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -112,8 +109,10 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
112
109
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
113
110
|
clear?: import("csstype").Property.Clear | undefined;
|
|
114
111
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
112
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
115
113
|
color?: import("csstype").Property.Color | undefined;
|
|
116
114
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
115
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
117
116
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
118
117
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
119
118
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -136,9 +135,17 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
136
135
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
137
136
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
138
137
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
138
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
139
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
140
|
+
d?: import("csstype").Property.D | undefined;
|
|
139
141
|
direction?: import("csstype").Property.Direction | undefined;
|
|
140
142
|
display?: import("csstype").Property.Display | undefined;
|
|
143
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
141
144
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
145
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
146
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
147
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
148
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
142
149
|
filter?: import("csstype").Property.Filter | undefined;
|
|
143
150
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
144
151
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -146,6 +153,8 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
146
153
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
147
154
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
148
155
|
float?: import("csstype").Property.Float | undefined;
|
|
156
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
157
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
149
158
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
150
159
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
151
160
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -155,7 +164,6 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
155
164
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
156
165
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
157
166
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
158
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
159
167
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
160
168
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
161
169
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -172,6 +180,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
172
180
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
173
181
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
174
182
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
183
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
175
184
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
176
185
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
177
186
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -192,12 +201,13 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
192
201
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
193
202
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
194
203
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
204
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
195
205
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
196
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
197
206
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
198
207
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
199
208
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
200
209
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
210
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
201
211
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
202
212
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
203
213
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -205,6 +215,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
205
215
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
206
216
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
207
217
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
218
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
208
219
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
209
220
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
210
221
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -220,6 +231,10 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
220
231
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
221
232
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
222
233
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
234
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
235
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
236
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
237
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
223
238
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
224
239
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
225
240
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -254,6 +269,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
254
269
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
255
270
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
256
271
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
272
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
257
273
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
258
274
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
259
275
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -289,25 +305,32 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
289
305
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
290
306
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
291
307
|
page?: import("csstype").Property.Page | undefined;
|
|
292
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
293
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
294
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
295
308
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
296
309
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
297
310
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
298
311
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
299
312
|
position?: import("csstype").Property.Position | undefined;
|
|
313
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
314
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
315
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
316
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
317
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
300
318
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
301
319
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
320
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
302
321
|
resize?: import("csstype").Property.Resize | undefined;
|
|
303
322
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
304
323
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
305
324
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
306
325
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
307
326
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
327
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
308
328
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
329
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
330
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
309
331
|
scale?: import("csstype").Property.Scale | undefined;
|
|
310
332
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
333
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
311
334
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
312
335
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
313
336
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -339,10 +362,28 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
339
362
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
340
363
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
341
364
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
365
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
366
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
367
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
368
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
369
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
370
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
371
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
372
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
373
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
374
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
375
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
376
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
377
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
342
378
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
343
379
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
344
380
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
345
381
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
382
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
383
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
384
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
385
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
386
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
346
387
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
347
388
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
348
389
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -360,10 +401,12 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
360
401
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
361
402
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
362
403
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
404
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
363
405
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
364
406
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
365
407
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
366
|
-
|
|
408
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
409
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
367
410
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
368
411
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
369
412
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -379,15 +422,16 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
379
422
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
380
423
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
381
424
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
425
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
382
426
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
383
427
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
384
428
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
385
429
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
430
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
386
431
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
387
432
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
388
433
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
389
434
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
390
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
391
435
|
widows?: import("csstype").Property.Widows | undefined;
|
|
392
436
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
393
437
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -395,6 +439,8 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
395
439
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
396
440
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
397
441
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
442
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
443
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
398
444
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
399
445
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
400
446
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -404,14 +450,20 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
404
450
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
405
451
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
406
452
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
453
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
407
454
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
408
455
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
456
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
457
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
409
458
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
410
459
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
411
460
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
412
461
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
462
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
413
463
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
414
464
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
465
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
466
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
415
467
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
416
468
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
417
469
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -452,6 +504,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
452
504
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
453
505
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
454
506
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
507
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
455
508
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
456
509
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
457
510
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -462,6 +515,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
462
515
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
463
516
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
464
517
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
518
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
465
519
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
466
520
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
467
521
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -473,6 +527,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
473
527
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
474
528
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
475
529
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
530
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
476
531
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
477
532
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
478
533
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -484,8 +539,6 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
484
539
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
485
540
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
486
541
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
487
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
488
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
489
542
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
490
543
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
491
544
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -494,7 +547,6 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
494
547
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
495
548
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
496
549
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
497
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
498
550
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
499
551
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
500
552
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -505,11 +557,15 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
505
557
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
506
558
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
507
559
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
560
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
561
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
508
562
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
509
563
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
510
564
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
511
565
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
512
|
-
|
|
566
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
567
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
568
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
513
569
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
514
570
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
515
571
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -628,6 +684,8 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
628
684
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
629
685
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
630
686
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
687
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
688
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
631
689
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
632
690
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
633
691
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -682,13 +740,14 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
682
740
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
683
741
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
684
742
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
685
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
743
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
686
744
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
687
745
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
688
746
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
689
747
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
690
748
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
691
749
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
750
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
692
751
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
693
752
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
694
753
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -709,7 +768,6 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
709
768
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
710
769
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
711
770
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
712
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
713
771
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
714
772
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
715
773
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -719,16 +777,22 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
719
777
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
720
778
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
721
779
|
clip?: import("csstype").Property.Clip | undefined;
|
|
780
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
722
781
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
723
782
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
724
783
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
725
784
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
785
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
726
786
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
727
787
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
728
788
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
729
789
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
730
790
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
731
791
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
792
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
793
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
794
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
795
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
732
796
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
733
797
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
734
798
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -746,9 +810,7 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
746
810
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
747
811
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
748
812
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
749
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
750
813
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
751
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
752
814
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
753
815
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
754
816
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -763,6 +825,8 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
763
825
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
764
826
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
765
827
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
828
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
829
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
766
830
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
767
831
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
768
832
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -770,20 +834,15 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
770
834
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
771
835
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
772
836
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
773
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
774
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
775
837
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
776
838
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
777
839
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
778
840
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
779
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
780
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
781
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
782
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
783
841
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
784
842
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
785
843
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
786
844
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
845
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
787
846
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
788
847
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
789
848
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -816,36 +875,9 @@ export default function getMuiTableCell(theme: Theme): {
|
|
|
816
875
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
817
876
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
818
877
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
819
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
820
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
821
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
822
878
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
823
879
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
824
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
825
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
826
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
827
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
828
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
829
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
830
880
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
831
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
832
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
833
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
834
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
835
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
836
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
837
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
838
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
839
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
840
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
841
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
842
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
843
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
844
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
845
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
846
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
847
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
848
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
849
881
|
};
|
|
850
882
|
"&.MuiTableCell-head": {
|
|
851
883
|
padding: string;
|