@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
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { TDeleteApiResource } from "../../types";
|
|
2
|
+
import { ECustomDomainVerificationStatus, TCustomDomainModel, TCustomDomainVerificationPayload } from "./types";
|
|
3
|
+
export declare class CustomDomainModel {
|
|
4
|
+
id: string;
|
|
5
|
+
account_id: number;
|
|
6
|
+
domain: string;
|
|
7
|
+
verification_status: ECustomDomainVerificationStatus;
|
|
8
|
+
verified_on: number | null;
|
|
9
|
+
created_on: number;
|
|
10
|
+
updated_on: number;
|
|
11
|
+
dns_instructions: TCustomDomainModel["dns_instructions"];
|
|
12
|
+
constructor(params: TCustomDomainModel);
|
|
13
|
+
get isVerified(): boolean;
|
|
14
|
+
toJson(): TCustomDomainModel;
|
|
15
|
+
set<T extends keyof this>(property: T, value: this[T]): void;
|
|
16
|
+
verify(): Promise<{
|
|
17
|
+
domain: CustomDomainModel;
|
|
18
|
+
verification: TCustomDomainVerificationPayload;
|
|
19
|
+
}>;
|
|
20
|
+
delete(): Promise<TDeleteApiResource>;
|
|
21
|
+
}
|
|
22
|
+
export * from "./types";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare enum ECustomDomainVerificationStatus {
|
|
2
|
+
pending = "pending",
|
|
3
|
+
verified = "verified",
|
|
4
|
+
failed = "failed"
|
|
5
|
+
}
|
|
6
|
+
export type TCustomDomainDnsCname = {
|
|
7
|
+
hostname: string;
|
|
8
|
+
point_to: string;
|
|
9
|
+
help: string;
|
|
10
|
+
};
|
|
11
|
+
export type TCustomDomainDnsInstructions = {
|
|
12
|
+
cname: TCustomDomainDnsCname;
|
|
13
|
+
extra_dns?: Array<{
|
|
14
|
+
hostname: string;
|
|
15
|
+
help: string;
|
|
16
|
+
}>;
|
|
17
|
+
};
|
|
18
|
+
export type TCustomDomainModel = {
|
|
19
|
+
id: string;
|
|
20
|
+
account_id: number;
|
|
21
|
+
domain: string;
|
|
22
|
+
verification_status: ECustomDomainVerificationStatus;
|
|
23
|
+
verified_on: number | null;
|
|
24
|
+
created_on: number;
|
|
25
|
+
updated_on: number;
|
|
26
|
+
dns_instructions: TCustomDomainDnsInstructions;
|
|
27
|
+
};
|
|
28
|
+
export type TCustomDomainVerificationPayload = {
|
|
29
|
+
success: boolean;
|
|
30
|
+
message: string;
|
|
31
|
+
};
|
|
32
|
+
export type TCustomDomainVerifyResult = TCustomDomainModel & {
|
|
33
|
+
verification: TCustomDomainVerificationPayload;
|
|
34
|
+
};
|
|
@@ -20,6 +20,8 @@ export declare class ListPageModel {
|
|
|
20
20
|
form_id: string | null;
|
|
21
21
|
thumbnail_url: string;
|
|
22
22
|
published_url: string | null;
|
|
23
|
+
custom_domain_id: string | null;
|
|
24
|
+
custom_domain: string | null;
|
|
23
25
|
constructor(params: TPageModel);
|
|
24
26
|
toJson(): any;
|
|
25
27
|
set<T extends keyof this>(property: T, value: this[T]): void;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TCustomDomainModel, TCustomDomainVerifyResult } from "../../models/customDomains/types";
|
|
2
|
+
import { TGenericListParams, TGenericListReturn, TGenericReturn } from "../../types";
|
|
3
|
+
import { TCreateApiResource, TDeleteApiResource, TUpdateApiResource } from "../../types/generic";
|
|
4
|
+
export declare function listCustomDomains({ ...options }: TGenericListParams & {
|
|
5
|
+
verificationStatus?: string;
|
|
6
|
+
}): Promise<TGenericListReturn<TCustomDomainModel>>;
|
|
7
|
+
export declare function createCustomDomain({ domain, }: {
|
|
8
|
+
domain: string;
|
|
9
|
+
}): Promise<TCreateApiResource<TCustomDomainModel>>;
|
|
10
|
+
export declare function getCustomDomain({ id }: {
|
|
11
|
+
id: string;
|
|
12
|
+
}): Promise<TGenericReturn<TCustomDomainModel>>;
|
|
13
|
+
export declare function deleteCustomDomain({ id }: {
|
|
14
|
+
id: string;
|
|
15
|
+
}): Promise<TDeleteApiResource>;
|
|
16
|
+
export declare function verifyCustomDomain({ id, }: {
|
|
17
|
+
id: string;
|
|
18
|
+
}): Promise<TUpdateApiResource<TCustomDomainVerifyResult>>;
|
|
@@ -23,6 +23,9 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
23
23
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
24
24
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
25
25
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
26
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
27
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
28
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
26
29
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
27
30
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
28
31
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -49,17 +52,14 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
49
52
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
50
53
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
51
54
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
52
|
-
|
|
55
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
53
56
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
54
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
55
57
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
56
58
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
57
59
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
58
60
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
59
61
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
60
62
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
61
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
62
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
63
63
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
64
64
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
65
65
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -73,15 +73,12 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
73
73
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
74
74
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
75
75
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
76
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
77
76
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
78
77
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
79
78
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
80
79
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
81
80
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
82
81
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
83
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
84
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
85
82
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
86
83
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
87
84
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -107,7 +104,9 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
107
104
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
108
105
|
clear?: import("csstype").Property.Clear | undefined;
|
|
109
106
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
107
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
110
108
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
109
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
111
110
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
112
111
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
113
112
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -130,9 +129,17 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
130
129
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
131
130
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
132
131
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
132
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
133
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
134
|
+
d?: import("csstype").Property.D | undefined;
|
|
133
135
|
direction?: import("csstype").Property.Direction | undefined;
|
|
134
136
|
display?: import("csstype").Property.Display | undefined;
|
|
137
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
135
138
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
139
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
140
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
141
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
142
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
136
143
|
filter?: import("csstype").Property.Filter | undefined;
|
|
137
144
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
138
145
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -140,6 +147,8 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
140
147
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
141
148
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
142
149
|
float?: import("csstype").Property.Float | undefined;
|
|
150
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
151
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
143
152
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
144
153
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
145
154
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -148,7 +157,6 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
148
157
|
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
149
158
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
150
159
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
151
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
152
160
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
153
161
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
154
162
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -165,6 +173,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
165
173
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
166
174
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
167
175
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
176
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
168
177
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
169
178
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
170
179
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -185,12 +194,13 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
185
194
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
186
195
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
187
196
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
197
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
188
198
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
189
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
190
199
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
191
200
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
192
201
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
193
202
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
203
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
194
204
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
195
205
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
196
206
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -198,6 +208,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
198
208
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
199
209
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
200
210
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
211
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
201
212
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
202
213
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
203
214
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -213,6 +224,10 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
213
224
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
214
225
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
215
226
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
227
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
228
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
229
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
230
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
216
231
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
217
232
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
218
233
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -247,6 +262,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
247
262
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
248
263
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
249
264
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
265
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
250
266
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
251
267
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
252
268
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -282,25 +298,32 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
282
298
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
283
299
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
284
300
|
page?: import("csstype").Property.Page | undefined;
|
|
285
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
286
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
287
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
288
301
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
289
302
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
290
303
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
291
304
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
292
305
|
position?: import("csstype").Property.Position | undefined;
|
|
306
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
307
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
308
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
309
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
310
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
293
311
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
294
312
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
313
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
295
314
|
resize?: import("csstype").Property.Resize | undefined;
|
|
296
315
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
297
316
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
298
317
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
299
318
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
300
319
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
320
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
301
321
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
322
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
323
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
302
324
|
scale?: import("csstype").Property.Scale | undefined;
|
|
303
325
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
326
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
304
327
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
305
328
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
306
329
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -332,10 +355,28 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
332
355
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
333
356
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
334
357
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
358
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
359
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
360
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
361
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
362
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
363
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
364
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
365
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
366
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
367
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
368
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
369
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
370
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
335
371
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
336
372
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
337
373
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
338
374
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
375
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
376
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
377
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
378
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
379
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
339
380
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
340
381
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
341
382
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -353,9 +394,11 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
353
394
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
354
395
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
355
396
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
397
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
356
398
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
357
399
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
358
|
-
|
|
400
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
401
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
359
402
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
360
403
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
361
404
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -371,20 +414,23 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
371
414
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
372
415
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
373
416
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
417
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
374
418
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
375
419
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
376
420
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
377
421
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
422
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
378
423
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
379
424
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
380
425
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
381
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
382
426
|
widows?: import("csstype").Property.Widows | undefined;
|
|
383
427
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
384
428
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
385
429
|
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
386
430
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
387
431
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
432
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
433
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
388
434
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
389
435
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
390
436
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -392,14 +438,20 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
392
438
|
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
393
439
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
394
440
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
441
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
395
442
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
396
443
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
444
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
445
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
397
446
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
398
447
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
399
448
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
400
449
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
450
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
401
451
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
402
452
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
453
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
454
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
403
455
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
404
456
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
405
457
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -441,6 +493,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
441
493
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
442
494
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
443
495
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
496
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
444
497
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
445
498
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
446
499
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -451,6 +504,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
451
504
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
452
505
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
453
506
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
507
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
454
508
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
455
509
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
456
510
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -462,6 +516,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
462
516
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
463
517
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
464
518
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
519
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
465
520
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
466
521
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
467
522
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -473,8 +528,6 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
473
528
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
474
529
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
475
530
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
476
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
477
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
478
531
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
479
532
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
480
533
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -483,7 +536,6 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
483
536
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
484
537
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
485
538
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
486
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
487
539
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
488
540
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
489
541
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -494,11 +546,15 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
494
546
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
495
547
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
496
548
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
549
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
550
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
497
551
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
498
552
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
499
553
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
500
554
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
501
|
-
|
|
555
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
556
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
557
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
502
558
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
503
559
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
504
560
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -617,6 +673,8 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
617
673
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
618
674
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
619
675
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
676
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
677
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
620
678
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
621
679
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
622
680
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -671,13 +729,14 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
671
729
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
672
730
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
673
731
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
674
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
732
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
675
733
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
676
734
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
677
735
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
678
736
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
679
737
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
680
738
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
739
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
681
740
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
682
741
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
683
742
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -698,7 +757,6 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
698
757
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
699
758
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
700
759
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
701
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
702
760
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
703
761
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
704
762
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -708,16 +766,22 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
708
766
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
709
767
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
710
768
|
clip?: import("csstype").Property.Clip | undefined;
|
|
769
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
711
770
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
712
771
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
713
772
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
714
773
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
774
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
715
775
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
716
776
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
717
777
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
718
778
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
719
779
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
720
780
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
781
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
782
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
783
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
784
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
721
785
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
722
786
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
723
787
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -735,9 +799,7 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
735
799
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
736
800
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
737
801
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
738
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
739
802
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
740
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
741
803
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
742
804
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
743
805
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -752,6 +814,8 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
752
814
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
753
815
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
754
816
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
817
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
818
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
755
819
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
756
820
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
757
821
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -759,20 +823,15 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
759
823
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
760
824
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
761
825
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
762
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
763
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
764
826
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
765
827
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
766
828
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
767
829
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
768
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
769
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
770
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
771
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
772
830
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
773
831
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
774
832
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
775
833
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
834
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
776
835
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
777
836
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
778
837
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -805,36 +864,9 @@ export default function getMuiAvatar(theme: Theme): {
|
|
|
805
864
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
806
865
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
807
866
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
808
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
809
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
810
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
811
867
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
812
868
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
813
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
814
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
815
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
816
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
817
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
818
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
819
869
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
820
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
821
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
822
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
823
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
824
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
825
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
826
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
827
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
828
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
829
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
830
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
831
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
832
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
833
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
834
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
835
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
836
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
837
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
838
870
|
};
|
|
839
871
|
};
|
|
840
872
|
defaultProps: {};
|