@cakemail-org/ui-components-v2 2.2.90 → 2.2.92
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/factories/customDomains/index.d.ts +13 -0
- package/dist/cjs/factories/index.d.ts +1 -0
- package/dist/cjs/index.js +323 -86
- package/dist/cjs/models/customDomains/index.d.ts +22 -0
- package/dist/cjs/models/customDomains/types.d.ts +34 -0
- package/dist/cjs/models/index.d.ts +1 -0
- package/dist/cjs/models/pages/index.d.ts +2 -0
- package/dist/cjs/models/pages/types.d.ts +2 -0
- package/dist/cjs/services/customDomains/index.d.ts +18 -0
- package/dist/cjs/services/index.d.ts +1 -0
- 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/factories/customDomains/index.d.ts +13 -0
- package/dist/esm/factories/index.d.ts +1 -0
- package/dist/esm/index.js +318 -88
- package/dist/esm/models/customDomains/index.d.ts +22 -0
- package/dist/esm/models/customDomains/types.d.ts +34 -0
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/pages/index.d.ts +2 -0
- package/dist/esm/models/pages/types.d.ts +2 -0
- package/dist/esm/services/customDomains/index.d.ts +18 -0
- package/dist/esm/services/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -18,6 +18,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
18
18
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
19
19
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
20
20
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
21
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
22
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
23
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
21
24
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
22
25
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
23
26
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -44,17 +47,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
44
47
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
45
48
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
46
49
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
47
|
-
|
|
50
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
48
51
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
49
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
50
52
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
51
53
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
52
54
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
53
55
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
54
56
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
55
57
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
56
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
57
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
58
58
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
59
59
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
60
60
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -68,15 +68,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
68
68
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
69
69
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
70
70
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
71
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
72
71
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
73
72
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
74
73
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
75
74
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
76
75
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
77
76
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
78
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
79
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
80
77
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
81
78
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
82
79
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -103,7 +100,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
103
100
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
104
101
|
clear?: import("csstype").Property.Clear | undefined;
|
|
105
102
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
103
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
106
104
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
105
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
107
106
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
108
107
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
109
108
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -126,9 +125,17 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
126
125
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
127
126
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
128
127
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
128
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
129
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
130
|
+
d?: import("csstype").Property.D | undefined;
|
|
129
131
|
direction?: import("csstype").Property.Direction | undefined;
|
|
130
132
|
display?: import("csstype").Property.Display | undefined;
|
|
133
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
131
134
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
135
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
136
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
137
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
138
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
132
139
|
filter?: import("csstype").Property.Filter | undefined;
|
|
133
140
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
134
141
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -136,6 +143,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
136
143
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
137
144
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
138
145
|
float?: import("csstype").Property.Float | undefined;
|
|
146
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
147
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
139
148
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
140
149
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
141
150
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -145,7 +154,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
145
154
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
146
155
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
147
156
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
148
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
149
157
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
150
158
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
151
159
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -162,6 +170,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
162
170
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
163
171
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
164
172
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
173
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
165
174
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
166
175
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
167
176
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -182,12 +191,13 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
182
191
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
183
192
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
184
193
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
194
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
185
195
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
186
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
187
196
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
188
197
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
189
198
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
190
199
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
200
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
191
201
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
192
202
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
193
203
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -195,6 +205,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
195
205
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
196
206
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
197
207
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
208
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
198
209
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
199
210
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
200
211
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -210,6 +221,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
210
221
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
211
222
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
212
223
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
224
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
225
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
226
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
227
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
213
228
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
214
229
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
215
230
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -244,6 +259,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
244
259
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
245
260
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
246
261
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
262
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
247
263
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
248
264
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
249
265
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -279,25 +295,32 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
279
295
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
280
296
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
281
297
|
page?: import("csstype").Property.Page | undefined;
|
|
282
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
283
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
284
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
285
298
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
286
299
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
287
300
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
288
301
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
289
302
|
position?: import("csstype").Property.Position | undefined;
|
|
303
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
304
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
305
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
306
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
307
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
290
308
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
291
309
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
310
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
292
311
|
resize?: import("csstype").Property.Resize | undefined;
|
|
293
312
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
294
313
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
295
314
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
296
315
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
297
316
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
317
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
298
318
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
319
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
320
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
299
321
|
scale?: import("csstype").Property.Scale | undefined;
|
|
300
322
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
323
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
301
324
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
302
325
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
303
326
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -329,10 +352,28 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
329
352
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
330
353
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
331
354
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
355
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
356
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
357
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
358
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
359
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
360
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
361
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
362
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
363
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
364
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
365
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
366
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
367
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
332
368
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
333
369
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
334
370
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
335
371
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
372
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
373
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
374
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
375
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
376
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
336
377
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
337
378
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
338
379
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -350,10 +391,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
350
391
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
351
392
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
352
393
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
394
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
353
395
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
354
396
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
355
397
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
356
|
-
|
|
398
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
399
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
357
400
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
358
401
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
359
402
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -368,15 +411,16 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
368
411
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
369
412
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
370
413
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
414
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
371
415
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
372
416
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
373
417
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
374
418
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
419
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
375
420
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
376
421
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
377
422
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
378
423
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
379
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
380
424
|
widows?: import("csstype").Property.Widows | undefined;
|
|
381
425
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
382
426
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -384,6 +428,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
384
428
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
385
429
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
386
430
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
431
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
432
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
387
433
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
388
434
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
389
435
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -393,14 +439,20 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
393
439
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
394
440
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
395
441
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
442
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
396
443
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
397
444
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
445
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
446
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
398
447
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
399
448
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
400
449
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
401
450
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
451
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
402
452
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
403
453
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
454
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
455
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
404
456
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
405
457
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
406
458
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -442,6 +494,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
442
494
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
443
495
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
444
496
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
497
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
445
498
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
446
499
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
447
500
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -452,6 +505,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
452
505
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
453
506
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
454
507
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
508
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
455
509
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
456
510
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
457
511
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -463,6 +517,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
463
517
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
464
518
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
465
519
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
520
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
466
521
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
467
522
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
468
523
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -474,8 +529,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
474
529
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
475
530
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
476
531
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
477
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
478
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
479
532
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
480
533
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
481
534
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -484,7 +537,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
484
537
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
485
538
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
486
539
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
487
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
488
540
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
489
541
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
490
542
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -495,11 +547,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
495
547
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
496
548
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
497
549
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
550
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
551
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
498
552
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
499
553
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
500
554
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
501
555
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
502
|
-
|
|
556
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
557
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
558
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
503
559
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
504
560
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
505
561
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -618,6 +674,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
618
674
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
619
675
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
620
676
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
677
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
678
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
621
679
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
622
680
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
623
681
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -672,13 +730,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
672
730
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
673
731
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
674
732
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
675
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
733
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
676
734
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
677
735
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
678
736
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
679
737
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
680
738
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
681
739
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
740
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
682
741
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
683
742
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
684
743
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -699,7 +758,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
699
758
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
700
759
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
701
760
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
702
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
703
761
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
704
762
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
705
763
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -709,16 +767,22 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
709
767
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
710
768
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
711
769
|
clip?: import("csstype").Property.Clip | undefined;
|
|
770
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
712
771
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
713
772
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
714
773
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
715
774
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
775
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
716
776
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
717
777
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
718
778
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
719
779
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
720
780
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
721
781
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
782
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
783
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
784
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
785
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
722
786
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
723
787
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
724
788
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -736,9 +800,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
736
800
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
737
801
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
738
802
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
739
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
740
803
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
741
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
742
804
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
743
805
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
744
806
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -753,6 +815,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
753
815
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
754
816
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
755
817
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
818
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
819
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
756
820
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
757
821
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
758
822
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -760,20 +824,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
760
824
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
761
825
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
762
826
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
763
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
764
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
765
827
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
766
828
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
767
829
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
768
830
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
769
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
770
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
771
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
772
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
773
831
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
774
832
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
775
833
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
776
834
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
835
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
777
836
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
778
837
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
779
838
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -806,36 +865,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
806
865
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
807
866
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
808
867
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
809
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
810
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
811
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
812
868
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
813
869
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
814
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
815
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
816
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
817
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
818
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
819
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
820
870
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
821
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
822
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
823
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
824
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
825
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
826
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
827
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
828
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
829
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
830
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
831
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
832
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
833
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
834
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
835
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
836
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
837
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
838
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
839
871
|
};
|
|
840
872
|
".MuiFormLabel-filled ~ .MuiInputBase-root": {
|
|
841
873
|
fieldset: {
|
|
@@ -859,6 +891,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
859
891
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
860
892
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
861
893
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
894
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
895
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
896
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
862
897
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
863
898
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
864
899
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -884,17 +919,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
884
919
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
885
920
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
886
921
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
887
|
-
|
|
922
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
888
923
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
889
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
890
924
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
891
925
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
892
926
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
893
927
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
894
928
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
895
929
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
896
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
897
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
898
930
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
899
931
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
900
932
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -908,15 +940,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
908
940
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
909
941
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
910
942
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
911
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
912
943
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
913
944
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
914
945
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
915
946
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
916
947
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
917
948
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
918
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
919
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
920
949
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
921
950
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
922
951
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -943,8 +972,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
943
972
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
944
973
|
clear?: import("csstype").Property.Clear | undefined;
|
|
945
974
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
975
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
946
976
|
color?: import("csstype").Property.Color | undefined;
|
|
947
977
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
978
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
948
979
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
949
980
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
950
981
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -967,9 +998,17 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
967
998
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
968
999
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
969
1000
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
1001
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
1002
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
1003
|
+
d?: import("csstype").Property.D | undefined;
|
|
970
1004
|
direction?: import("csstype").Property.Direction | undefined;
|
|
971
1005
|
display?: import("csstype").Property.Display | undefined;
|
|
1006
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
972
1007
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
1008
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
1009
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
1010
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
1011
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
973
1012
|
filter?: import("csstype").Property.Filter | undefined;
|
|
974
1013
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
975
1014
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -977,6 +1016,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
977
1016
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
978
1017
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
979
1018
|
float?: import("csstype").Property.Float | undefined;
|
|
1019
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
1020
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
980
1021
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
981
1022
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
982
1023
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -986,7 +1027,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
986
1027
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
987
1028
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
988
1029
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
989
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
990
1030
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
991
1031
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
992
1032
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -1002,6 +1042,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1002
1042
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
1003
1043
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
1004
1044
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
1045
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
1005
1046
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
1006
1047
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
1007
1048
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -1022,12 +1063,13 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1022
1063
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
1023
1064
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
1024
1065
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1066
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
1025
1067
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1026
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1027
1068
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1028
1069
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1029
1070
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1030
1071
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1072
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
1031
1073
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
1032
1074
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1033
1075
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -1035,6 +1077,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1035
1077
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
1036
1078
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
1037
1079
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
1080
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
1038
1081
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1039
1082
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
1040
1083
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1050,6 +1093,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1050
1093
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1051
1094
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1052
1095
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1096
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
1097
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
1098
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
1099
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
1053
1100
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1054
1101
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1055
1102
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1084,6 +1131,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1084
1131
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1085
1132
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1086
1133
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
1134
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
1087
1135
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1088
1136
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1089
1137
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -1119,25 +1167,32 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1119
1167
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1120
1168
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1121
1169
|
page?: import("csstype").Property.Page | undefined;
|
|
1122
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1123
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1124
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1125
1170
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1126
1171
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1127
1172
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1128
1173
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1129
1174
|
position?: import("csstype").Property.Position | undefined;
|
|
1175
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
1176
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
1177
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
1178
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
1179
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
1130
1180
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1131
1181
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
1182
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
1132
1183
|
resize?: import("csstype").Property.Resize | undefined;
|
|
1133
1184
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
1134
1185
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
1135
1186
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
1136
1187
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
1137
1188
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
1189
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
1138
1190
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1191
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
1192
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
1139
1193
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1140
1194
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1195
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
1141
1196
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1142
1197
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1143
1198
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1169,10 +1224,28 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1169
1224
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
1170
1225
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
1171
1226
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
1227
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
1228
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
1229
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
1230
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
1231
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
1232
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
1233
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
1234
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
1235
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
1236
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
1237
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
1238
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
1239
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
1172
1240
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1173
1241
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
1174
1242
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
1175
1243
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1244
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
1245
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
1246
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
1247
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
1248
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
1176
1249
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1177
1250
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1178
1251
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -1190,10 +1263,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1190
1263
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
1191
1264
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
1192
1265
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1266
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
1193
1267
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
1194
1268
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1195
1269
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1196
|
-
|
|
1270
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
1271
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
1197
1272
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
1198
1273
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
1199
1274
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -1209,15 +1284,16 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1209
1284
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
1210
1285
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1211
1286
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1287
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
1212
1288
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1213
1289
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1214
1290
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1215
1291
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1292
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
1216
1293
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1217
1294
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1218
1295
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1219
1296
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1220
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1221
1297
|
widows?: import("csstype").Property.Widows | undefined;
|
|
1222
1298
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
1223
1299
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -1225,6 +1301,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1225
1301
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1226
1302
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
1227
1303
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1304
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
1305
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
1228
1306
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
1229
1307
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
1230
1308
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -1234,14 +1312,20 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1234
1312
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1235
1313
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
1236
1314
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1315
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
1237
1316
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
1238
1317
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
1318
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
1319
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
1239
1320
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
1240
1321
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
1241
1322
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1242
1323
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
1324
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
1243
1325
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
1244
1326
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
1327
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
1328
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
1245
1329
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
1246
1330
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
1247
1331
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
@@ -1282,6 +1366,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1282
1366
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1283
1367
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1284
1368
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1369
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
1285
1370
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1286
1371
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1287
1372
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1292,6 +1377,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1292
1377
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1293
1378
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1294
1379
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1380
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
1295
1381
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1296
1382
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
1297
1383
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -1303,6 +1389,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1303
1389
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1304
1390
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1305
1391
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1392
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1306
1393
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1307
1394
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1308
1395
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -1314,8 +1401,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1314
1401
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
1315
1402
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
1316
1403
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1317
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1318
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1319
1404
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1320
1405
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1321
1406
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1324,7 +1409,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1324
1409
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1325
1410
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
1326
1411
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1327
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
1328
1412
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1329
1413
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1330
1414
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -1335,11 +1419,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1335
1419
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1336
1420
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1337
1421
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1422
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1423
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1338
1424
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
1339
1425
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1340
1426
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
1341
1427
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1342
|
-
|
|
1428
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1429
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1430
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1343
1431
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
1344
1432
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1345
1433
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -1458,6 +1546,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1458
1546
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1459
1547
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1460
1548
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
1549
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
1550
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1461
1551
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1462
1552
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1463
1553
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -1512,13 +1602,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1512
1602
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1513
1603
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1514
1604
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
1515
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
1605
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
1516
1606
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1517
1607
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1518
1608
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1519
1609
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1520
1610
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1521
1611
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1612
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1522
1613
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1523
1614
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1524
1615
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1539,7 +1630,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1539
1630
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1540
1631
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
1541
1632
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1542
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
1543
1633
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1544
1634
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1545
1635
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -1549,16 +1639,22 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1549
1639
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1550
1640
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1551
1641
|
clip?: import("csstype").Property.Clip | undefined;
|
|
1642
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
1552
1643
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
1553
1644
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
1554
1645
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
1555
1646
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1647
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
1556
1648
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1557
1649
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1558
1650
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1559
1651
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1560
1652
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1561
1653
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1654
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1655
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1656
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1657
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
1562
1658
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1563
1659
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
1564
1660
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -1576,9 +1672,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1576
1672
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1577
1673
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1578
1674
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1579
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1580
1675
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1581
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1582
1676
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1583
1677
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1584
1678
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -1593,6 +1687,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1593
1687
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1594
1688
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1595
1689
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
1690
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1691
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1596
1692
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
1597
1693
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
1598
1694
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -1600,20 +1696,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1600
1696
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1601
1697
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1602
1698
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1603
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1604
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1605
1699
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1606
1700
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1607
1701
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1608
1702
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1609
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1610
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1611
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1612
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1613
1703
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1614
1704
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1615
1705
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1616
1706
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1707
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
1617
1708
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1618
1709
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1619
1710
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -1646,36 +1737,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1646
1737
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1647
1738
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1648
1739
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1649
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1650
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1651
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
1652
1740
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
1653
1741
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
1654
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
1655
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
1656
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
1657
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
1658
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
1659
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
1660
1742
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
1661
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
1662
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
1663
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
1664
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
1665
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
1666
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
1667
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
1668
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
1669
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
1670
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
1671
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
1672
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
1673
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
1674
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
1675
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
1676
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
1677
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
1678
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
1679
1743
|
};
|
|
1680
1744
|
input: {
|
|
1681
1745
|
padding: string;
|
|
@@ -1691,6 +1755,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1691
1755
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
1692
1756
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1693
1757
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
1758
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1759
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
1760
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
1694
1761
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
1695
1762
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1696
1763
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -1717,17 +1784,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1717
1784
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
1718
1785
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
1719
1786
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1720
|
-
|
|
1787
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1721
1788
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
1722
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
1723
1789
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
1724
1790
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
1725
1791
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
1726
1792
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
1727
1793
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
1728
1794
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
1729
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
1730
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
1731
1795
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
1732
1796
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1733
1797
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -1741,15 +1805,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1741
1805
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
1742
1806
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
1743
1807
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
1744
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
1745
1808
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1746
1809
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
1747
1810
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1748
1811
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
1749
1812
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
1750
1813
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
1751
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
1752
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
1753
1814
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
1754
1815
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
1755
1816
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -1776,8 +1837,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1776
1837
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
1777
1838
|
clear?: import("csstype").Property.Clear | undefined;
|
|
1778
1839
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1840
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
1779
1841
|
color?: import("csstype").Property.Color | undefined;
|
|
1780
1842
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1843
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
1781
1844
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
1782
1845
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1783
1846
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -1800,9 +1863,17 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1800
1863
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
1801
1864
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
1802
1865
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
1866
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
1867
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
1868
|
+
d?: import("csstype").Property.D | undefined;
|
|
1803
1869
|
direction?: import("csstype").Property.Direction | undefined;
|
|
1804
1870
|
display?: import("csstype").Property.Display | undefined;
|
|
1871
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
1805
1872
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
1873
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
1874
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
1875
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
1876
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
1806
1877
|
filter?: import("csstype").Property.Filter | undefined;
|
|
1807
1878
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
1808
1879
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -1810,6 +1881,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1810
1881
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
1811
1882
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
1812
1883
|
float?: import("csstype").Property.Float | undefined;
|
|
1884
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
1885
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
1813
1886
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
1814
1887
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1815
1888
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -1819,7 +1892,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1819
1892
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
1820
1893
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
1821
1894
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1822
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
1823
1895
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
1824
1896
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
1825
1897
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -1836,6 +1908,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1836
1908
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
1837
1909
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
1838
1910
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
1911
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
1839
1912
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
1840
1913
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
1841
1914
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -1856,12 +1929,13 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1856
1929
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
1857
1930
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
1858
1931
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1932
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
1859
1933
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1860
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1861
1934
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1862
1935
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1863
1936
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1864
1937
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1938
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
1865
1939
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
1866
1940
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1867
1941
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -1869,6 +1943,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1869
1943
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
1870
1944
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
1871
1945
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
1946
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
1872
1947
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1873
1948
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
1874
1949
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1884,6 +1959,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1884
1959
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1885
1960
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1886
1961
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1962
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
1963
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
1964
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
1965
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
1887
1966
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1888
1967
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1889
1968
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1918,6 +1997,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1918
1997
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1919
1998
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1920
1999
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
2000
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
1921
2001
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1922
2002
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1923
2003
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -1953,25 +2033,32 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
1953
2033
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1954
2034
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1955
2035
|
page?: import("csstype").Property.Page | undefined;
|
|
1956
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1957
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1958
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1959
2036
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1960
2037
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1961
2038
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1962
2039
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1963
2040
|
position?: import("csstype").Property.Position | undefined;
|
|
2041
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
2042
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
2043
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
2044
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
2045
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
1964
2046
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1965
2047
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
2048
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
1966
2049
|
resize?: import("csstype").Property.Resize | undefined;
|
|
1967
2050
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
1968
2051
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
1969
2052
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
1970
2053
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
1971
2054
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
2055
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
1972
2056
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
2057
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
2058
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
1973
2059
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1974
2060
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
2061
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
1975
2062
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1976
2063
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1977
2064
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -2003,10 +2090,28 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2003
2090
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
2004
2091
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
2005
2092
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
2093
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
2094
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
2095
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
2096
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
2097
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
2098
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
2099
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
2100
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
2101
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
2102
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
2103
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
2104
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
2105
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
2006
2106
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
2007
2107
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
2008
2108
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
2009
2109
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
2110
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
2111
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
2112
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
2113
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
2114
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
2010
2115
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
2011
2116
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2012
2117
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -2024,10 +2129,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2024
2129
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
2025
2130
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
2026
2131
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
2132
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
2027
2133
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
2028
2134
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
2029
2135
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
2030
|
-
|
|
2136
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
2137
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
2031
2138
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
2032
2139
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
2033
2140
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -2043,15 +2150,16 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2043
2150
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
2044
2151
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
2045
2152
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2153
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
2046
2154
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
2047
2155
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
2048
2156
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
2049
2157
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
2158
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
2050
2159
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
2051
2160
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
2052
2161
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
2053
2162
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
2054
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
2055
2163
|
widows?: import("csstype").Property.Widows | undefined;
|
|
2056
2164
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
2057
2165
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -2059,6 +2167,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2059
2167
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
2060
2168
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
2061
2169
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
2170
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
2171
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
2062
2172
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
2063
2173
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
2064
2174
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -2068,14 +2178,20 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2068
2178
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
2069
2179
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
2070
2180
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
2181
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
2071
2182
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
2072
2183
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
2184
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
2185
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
2073
2186
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
2074
2187
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
2075
2188
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2076
2189
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
2190
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
2077
2191
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
2078
2192
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
2193
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
2194
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
2079
2195
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
2080
2196
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
2081
2197
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -2117,6 +2233,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2117
2233
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
2118
2234
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
2119
2235
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
2236
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
2120
2237
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2121
2238
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
2122
2239
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -2127,6 +2244,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2127
2244
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
2128
2245
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
2129
2246
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2247
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
2130
2248
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2131
2249
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
2132
2250
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -2138,6 +2256,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2138
2256
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
2139
2257
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2140
2258
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
2259
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2141
2260
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2142
2261
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
2143
2262
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -2149,8 +2268,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2149
2268
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
2150
2269
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
2151
2270
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
2152
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2153
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2154
2271
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
2155
2272
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
2156
2273
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2159,7 +2276,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2159
2276
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
2160
2277
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
2161
2278
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
2162
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
2163
2279
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
2164
2280
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
2165
2281
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -2170,11 +2286,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2170
2286
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2171
2287
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
2172
2288
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
2289
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2290
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2173
2291
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
2174
2292
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
2175
2293
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
2176
2294
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
2177
|
-
|
|
2295
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
2296
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2297
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2178
2298
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
2179
2299
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2180
2300
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -2293,6 +2413,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2293
2413
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
2294
2414
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2295
2415
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
2416
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
2417
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
2296
2418
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
2297
2419
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
2298
2420
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -2347,13 +2469,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2347
2469
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
2348
2470
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2349
2471
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
2350
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
2472
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
2351
2473
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
2352
2474
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
2353
2475
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2354
2476
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2355
2477
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
2356
2478
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
2479
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2357
2480
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
2358
2481
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
2359
2482
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -2374,7 +2497,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2374
2497
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2375
2498
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
2376
2499
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2377
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
2378
2500
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
2379
2501
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
2380
2502
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -2384,16 +2506,22 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2384
2506
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2385
2507
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2386
2508
|
clip?: import("csstype").Property.Clip | undefined;
|
|
2509
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
2387
2510
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
2388
2511
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
2389
2512
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
2390
2513
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2514
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
2391
2515
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
2392
2516
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
2393
2517
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
2394
2518
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
2395
2519
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
2396
2520
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
2521
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
2522
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
2523
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
2524
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
2397
2525
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
2398
2526
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
2399
2527
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -2411,9 +2539,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2411
2539
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2412
2540
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
2413
2541
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2414
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2415
2542
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
2416
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
2417
2543
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
2418
2544
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
2419
2545
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -2428,6 +2554,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2428
2554
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2429
2555
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2430
2556
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
2557
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2558
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2431
2559
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
2432
2560
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
2433
2561
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -2435,20 +2563,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2435
2563
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
2436
2564
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
2437
2565
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
2438
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2439
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2440
2566
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
2441
2567
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2442
2568
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
2443
2569
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2444
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
2445
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2446
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2447
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2448
2570
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2449
2571
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2450
2572
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
2451
2573
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2574
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
2452
2575
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
2453
2576
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2454
2577
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -2481,36 +2604,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2481
2604
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2482
2605
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2483
2606
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2484
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
2485
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
2486
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
2487
2607
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
2488
2608
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
2489
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
2490
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
2491
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
2492
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
2493
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
2494
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
2495
2609
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
2496
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
2497
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
2498
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
2499
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
2500
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
2501
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
2502
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
2503
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
2504
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
2505
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
2506
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
2507
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
2508
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
2509
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
2510
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
2511
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
2512
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
2513
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
2514
2610
|
};
|
|
2515
2611
|
};
|
|
2516
2612
|
"&:hover": {
|
|
@@ -2525,6 +2621,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2525
2621
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
2526
2622
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
2527
2623
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
2624
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
2625
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
2626
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
2528
2627
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
2529
2628
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
2530
2629
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -2551,17 +2650,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2551
2650
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
2552
2651
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
2553
2652
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
2554
|
-
|
|
2653
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
2555
2654
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
2556
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
2557
2655
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
2558
2656
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
2559
2657
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
2560
2658
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
2561
2659
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
2562
2660
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
2563
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
2564
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
2565
2661
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
2566
2662
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2567
2663
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -2575,15 +2671,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2575
2671
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
2576
2672
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
2577
2673
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
2578
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
2579
2674
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
2580
2675
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
2581
2676
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
2582
2677
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
2583
2678
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
2584
2679
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
2585
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
2586
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
2587
2680
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
2588
2681
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
2589
2682
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -2610,8 +2703,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2610
2703
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
2611
2704
|
clear?: import("csstype").Property.Clear | undefined;
|
|
2612
2705
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
2706
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
2613
2707
|
color?: import("csstype").Property.Color | undefined;
|
|
2614
2708
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
2709
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
2615
2710
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
2616
2711
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2617
2712
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -2634,9 +2729,17 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2634
2729
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
2635
2730
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
2636
2731
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
2732
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
2733
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
2734
|
+
d?: import("csstype").Property.D | undefined;
|
|
2637
2735
|
direction?: import("csstype").Property.Direction | undefined;
|
|
2638
2736
|
display?: import("csstype").Property.Display | undefined;
|
|
2737
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
2639
2738
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
2739
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
2740
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
2741
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
2742
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
2640
2743
|
filter?: import("csstype").Property.Filter | undefined;
|
|
2641
2744
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
2642
2745
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -2644,6 +2747,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2644
2747
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
2645
2748
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
2646
2749
|
float?: import("csstype").Property.Float | undefined;
|
|
2750
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
2751
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
2647
2752
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
2648
2753
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
2649
2754
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -2653,7 +2758,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2653
2758
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
2654
2759
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
2655
2760
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
2656
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
2657
2761
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
2658
2762
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
2659
2763
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -2670,6 +2774,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2670
2774
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
2671
2775
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
2672
2776
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
2777
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
2673
2778
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
2674
2779
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
2675
2780
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -2690,12 +2795,13 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2690
2795
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
2691
2796
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
2692
2797
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
2798
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
2693
2799
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
2694
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
2695
2800
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
2696
2801
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
2697
2802
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
2698
2803
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
2804
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
2699
2805
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
2700
2806
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
2701
2807
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -2703,6 +2809,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2703
2809
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
2704
2810
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
2705
2811
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
2812
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
2706
2813
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2707
2814
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
2708
2815
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -2718,6 +2825,10 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2718
2825
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
2719
2826
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
2720
2827
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
2828
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
2829
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
2830
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
2831
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
2721
2832
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
2722
2833
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
2723
2834
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -2752,6 +2863,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2752
2863
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
2753
2864
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
2754
2865
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
2866
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
2755
2867
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
2756
2868
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
2757
2869
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -2787,25 +2899,32 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2787
2899
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
2788
2900
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
2789
2901
|
page?: import("csstype").Property.Page | undefined;
|
|
2790
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
2791
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
2792
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
2793
2902
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
2794
2903
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2795
2904
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2796
2905
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
2797
2906
|
position?: import("csstype").Property.Position | undefined;
|
|
2907
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
2908
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
2909
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
2910
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
2911
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
2798
2912
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
2799
2913
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
2914
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
2800
2915
|
resize?: import("csstype").Property.Resize | undefined;
|
|
2801
2916
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
2802
2917
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
2803
2918
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
2804
2919
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
2805
2920
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
2921
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
2806
2922
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
2923
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
2924
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
2807
2925
|
scale?: import("csstype").Property.Scale | undefined;
|
|
2808
2926
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
2927
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
2809
2928
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
2810
2929
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
2811
2930
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -2837,10 +2956,28 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2837
2956
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
2838
2957
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
2839
2958
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
2959
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
2960
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
2961
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
2962
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
2963
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
2964
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
2965
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
2966
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
2967
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
2968
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
2969
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
2970
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
2971
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
2840
2972
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
2841
2973
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
2842
2974
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
2843
2975
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
2976
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
2977
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
2978
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
2979
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
2980
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
2844
2981
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
2845
2982
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2846
2983
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -2858,10 +2995,12 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2858
2995
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
2859
2996
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
2860
2997
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
2998
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
2861
2999
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
2862
3000
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
2863
3001
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
2864
|
-
|
|
3002
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
3003
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
2865
3004
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
2866
3005
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
2867
3006
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -2877,15 +3016,16 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2877
3016
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
2878
3017
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
2879
3018
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
3019
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
2880
3020
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
2881
3021
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
2882
3022
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
2883
3023
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
3024
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
2884
3025
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
2885
3026
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
2886
3027
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
2887
3028
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
2888
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
2889
3029
|
widows?: import("csstype").Property.Widows | undefined;
|
|
2890
3030
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
2891
3031
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -2893,6 +3033,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2893
3033
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
2894
3034
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
2895
3035
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
3036
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
3037
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
2896
3038
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
2897
3039
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
2898
3040
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -2902,14 +3044,20 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2902
3044
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
2903
3045
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
2904
3046
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
3047
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
2905
3048
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
2906
3049
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
3050
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
3051
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
2907
3052
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
2908
3053
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
2909
3054
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2910
3055
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
3056
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
2911
3057
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
2912
3058
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
3059
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
3060
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
2913
3061
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
2914
3062
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
2915
3063
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -2951,6 +3099,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2951
3099
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
2952
3100
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
2953
3101
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
3102
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
2954
3103
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
2955
3104
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
2956
3105
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -2961,6 +3110,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2961
3110
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
2962
3111
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
2963
3112
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
3113
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
2964
3114
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2965
3115
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
2966
3116
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -2972,6 +3122,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2972
3122
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
2973
3123
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
2974
3124
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
3125
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
2975
3126
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
2976
3127
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
2977
3128
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -2983,8 +3134,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2983
3134
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
2984
3135
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
2985
3136
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
2986
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2987
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2988
3137
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
2989
3138
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
2990
3139
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2993,7 +3142,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
2993
3142
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
2994
3143
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
2995
3144
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
2996
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
2997
3145
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
2998
3146
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
2999
3147
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -3004,11 +3152,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3004
3152
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
3005
3153
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
3006
3154
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
3155
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
3156
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
3007
3157
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
3008
3158
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
3009
3159
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
3010
3160
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
3011
|
-
|
|
3161
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
3162
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
3163
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
3012
3164
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
3013
3165
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
3014
3166
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -3127,6 +3279,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3127
3279
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
3128
3280
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
3129
3281
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
3282
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
3283
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
3130
3284
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
3131
3285
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
3132
3286
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -3181,13 +3335,14 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3181
3335
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
3182
3336
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
3183
3337
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
3184
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
3338
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
3185
3339
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
3186
3340
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
3187
3341
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
3188
3342
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
3189
3343
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
3190
3344
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
3345
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
3191
3346
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
3192
3347
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
3193
3348
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -3208,7 +3363,6 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3208
3363
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
3209
3364
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
3210
3365
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
3211
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
3212
3366
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
3213
3367
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
3214
3368
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -3218,16 +3372,22 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3218
3372
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
3219
3373
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
3220
3374
|
clip?: import("csstype").Property.Clip | undefined;
|
|
3375
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
3221
3376
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
3222
3377
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
3223
3378
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
3224
3379
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
3380
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
3225
3381
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
3226
3382
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
3227
3383
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
3228
3384
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
3229
3385
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
3230
3386
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
3387
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
3388
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
3389
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
3390
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
3231
3391
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
3232
3392
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
3233
3393
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -3245,9 +3405,7 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3245
3405
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
3246
3406
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
3247
3407
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
3248
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
3249
3408
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
3250
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
3251
3409
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
3252
3410
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
3253
3411
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -3262,6 +3420,8 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3262
3420
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
3263
3421
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
3264
3422
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
3423
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
3424
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
3265
3425
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
3266
3426
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
3267
3427
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -3269,20 +3429,15 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3269
3429
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
3270
3430
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
3271
3431
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
3272
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
3273
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
3274
3432
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
3275
3433
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
3276
3434
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
3277
3435
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
3278
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
3279
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
3280
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
3281
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
3282
3436
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
3283
3437
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
3284
3438
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
3285
3439
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
3440
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
3286
3441
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
3287
3442
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
3288
3443
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -3315,36 +3470,9 @@ export default function getMuiTextField(theme: Theme): {
|
|
|
3315
3470
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
3316
3471
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
3317
3472
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
3318
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
3319
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
3320
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
3321
3473
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
3322
3474
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
3323
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
3324
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
3325
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
3326
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
3327
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
3328
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
3329
3475
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
3330
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
3331
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
3332
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
3333
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
3334
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
3335
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
3336
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
3337
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
3338
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
3339
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
3340
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
3341
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
3342
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
3343
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
3344
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
3345
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
3346
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
3347
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
3348
3476
|
};
|
|
3349
3477
|
".Mui-error": {
|
|
3350
3478
|
color: string;
|