@cakemail-org/ui-components-v2 2.2.90 → 2.2.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/cjs/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTextField.d.ts +348 -220
- package/dist/cjs/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/cjs/index.js +160 -86
- package/dist/esm/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/esm/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/esm/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/esm/data/theme/MuiTextField.d.ts +348 -220
- package/dist/esm/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/esm/index.js +161 -87
- package/package.json +2 -2
|
@@ -16,6 +16,9 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
16
16
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
17
17
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
18
18
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
19
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
20
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
21
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
19
22
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
20
23
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
21
24
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -42,17 +45,14 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
42
45
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
43
46
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
44
47
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
45
|
-
|
|
48
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
46
49
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
47
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
48
50
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
49
51
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
50
52
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
51
53
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
52
54
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
53
55
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
54
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
55
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
56
56
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
57
57
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
58
58
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -66,15 +66,12 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
66
66
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
67
67
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
68
68
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
69
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
70
69
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
71
70
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
72
71
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
73
72
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
74
73
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
75
74
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
76
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
77
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
78
75
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
79
76
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
80
77
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -101,7 +98,9 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
101
98
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
102
99
|
clear?: import("csstype").Property.Clear | undefined;
|
|
103
100
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
101
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
104
102
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
103
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
105
104
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
106
105
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
107
106
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -124,9 +123,17 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
124
123
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
125
124
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
126
125
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
126
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
127
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
128
|
+
d?: import("csstype").Property.D | undefined;
|
|
127
129
|
direction?: import("csstype").Property.Direction | undefined;
|
|
128
130
|
display?: import("csstype").Property.Display | undefined;
|
|
131
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
129
132
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
133
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
134
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
135
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
136
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
130
137
|
filter?: import("csstype").Property.Filter | undefined;
|
|
131
138
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
132
139
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -134,6 +141,8 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
134
141
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
135
142
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
136
143
|
float?: import("csstype").Property.Float | undefined;
|
|
144
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
145
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
137
146
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
138
147
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
139
148
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -143,7 +152,6 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
143
152
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
144
153
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
145
154
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
146
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
147
155
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
148
156
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
149
157
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -160,6 +168,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
160
168
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
161
169
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
162
170
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
171
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
163
172
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
164
173
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
165
174
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -180,12 +189,13 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
180
189
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
181
190
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
182
191
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
192
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
183
193
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
184
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
185
194
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
186
195
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
187
196
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
188
197
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
198
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
189
199
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
190
200
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
191
201
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -193,6 +203,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
193
203
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
194
204
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
195
205
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
206
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
196
207
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
197
208
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
198
209
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -208,6 +219,10 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
208
219
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
209
220
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
210
221
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
222
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
223
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
224
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
225
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
211
226
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
212
227
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
213
228
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -241,6 +256,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
241
256
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
242
257
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
243
258
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
259
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
244
260
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
245
261
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
246
262
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -276,25 +292,32 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
276
292
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
277
293
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
278
294
|
page?: import("csstype").Property.Page | undefined;
|
|
279
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
280
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
281
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
282
295
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
283
296
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
284
297
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
285
298
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
286
299
|
position?: import("csstype").Property.Position | undefined;
|
|
300
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
301
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
302
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
303
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
304
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
287
305
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
288
306
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
307
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
289
308
|
resize?: import("csstype").Property.Resize | undefined;
|
|
290
309
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
291
310
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
292
311
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
293
312
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
294
313
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
314
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
295
315
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
316
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
317
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
296
318
|
scale?: import("csstype").Property.Scale | undefined;
|
|
297
319
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
320
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
298
321
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
299
322
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
300
323
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -326,10 +349,28 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
326
349
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
327
350
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
328
351
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
352
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
353
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
354
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
355
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
356
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
357
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
358
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
359
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
360
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
361
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
362
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
363
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
364
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
329
365
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
330
366
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
331
367
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
332
368
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
369
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
370
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
371
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
372
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
373
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
333
374
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
334
375
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
335
376
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -347,10 +388,12 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
347
388
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
348
389
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
349
390
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
391
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
350
392
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
351
393
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
352
394
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
353
|
-
|
|
395
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
396
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
354
397
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
355
398
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
356
399
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -366,15 +409,16 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
366
409
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
367
410
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
368
411
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
412
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
369
413
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
370
414
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
371
415
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
372
416
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
417
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
373
418
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
374
419
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
375
420
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
376
421
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
377
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
378
422
|
widows?: import("csstype").Property.Widows | undefined;
|
|
379
423
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
380
424
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -382,6 +426,8 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
382
426
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
383
427
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
384
428
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
429
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
430
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
385
431
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
386
432
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
387
433
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -391,14 +437,20 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
391
437
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
392
438
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
393
439
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
440
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
394
441
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
395
442
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
443
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
444
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
396
445
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
397
446
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
398
447
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
399
448
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
449
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
400
450
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
401
451
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
452
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
453
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
402
454
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
403
455
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
404
456
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
@@ -438,6 +490,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
438
490
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
439
491
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
440
492
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
493
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
441
494
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
442
495
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
443
496
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -448,6 +501,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
448
501
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
449
502
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
450
503
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
504
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
451
505
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
452
506
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
453
507
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -459,6 +513,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
459
513
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
460
514
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
461
515
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
516
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
462
517
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
463
518
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
464
519
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -470,8 +525,6 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
470
525
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
471
526
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
472
527
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
473
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
474
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
475
528
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
476
529
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
477
530
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -480,7 +533,6 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
480
533
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
481
534
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
482
535
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
483
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
484
536
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
485
537
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
486
538
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -491,11 +543,15 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
491
543
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
492
544
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
493
545
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
546
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
547
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
494
548
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
495
549
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
496
550
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
497
551
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
498
|
-
|
|
552
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
553
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
554
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
499
555
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
500
556
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
501
557
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -614,6 +670,8 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
614
670
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
615
671
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
616
672
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
673
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
674
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
617
675
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
618
676
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
619
677
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -668,13 +726,14 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
668
726
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
669
727
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
670
728
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
671
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
729
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
672
730
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
673
731
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
674
732
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
675
733
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
676
734
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
677
735
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
736
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
678
737
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
679
738
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
680
739
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -695,7 +754,6 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
695
754
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
696
755
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
697
756
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
698
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
699
757
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
700
758
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
701
759
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -705,16 +763,22 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
705
763
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
706
764
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
707
765
|
clip?: import("csstype").Property.Clip | undefined;
|
|
766
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
708
767
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
709
768
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
710
769
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
711
770
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
771
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
712
772
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
713
773
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
714
774
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
715
775
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
716
776
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
717
777
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
778
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
779
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
780
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
781
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
718
782
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
719
783
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
720
784
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -732,9 +796,7 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
732
796
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
733
797
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
734
798
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
735
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
736
799
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
737
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
738
800
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
739
801
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
740
802
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -749,6 +811,8 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
749
811
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
750
812
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
751
813
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
814
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
815
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
752
816
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
753
817
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
754
818
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -756,20 +820,15 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
756
820
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
757
821
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
758
822
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
759
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
760
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
761
823
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
762
824
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
763
825
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
764
826
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
765
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
766
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
767
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
768
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
769
827
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
770
828
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
771
829
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
772
830
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
831
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
773
832
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
774
833
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
775
834
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -802,36 +861,9 @@ export default function getMuiTooltip(theme: Theme): {
|
|
|
802
861
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
803
862
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
804
863
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
805
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
806
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
807
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
808
864
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
809
865
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
810
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
811
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
812
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
813
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
814
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
815
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
816
866
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
817
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
818
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
819
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
820
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
821
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
822
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
823
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
824
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
825
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
826
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
827
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
828
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
829
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
830
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
831
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
832
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
833
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
834
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
835
867
|
};
|
|
836
868
|
arrow: ({ ownerState, theme }: TComponentsOwnerState) => any;
|
|
837
869
|
};
|