@m4l/styles 0.0.8 → 0.0.10

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.
Files changed (25) hide show
  1. package/index.js +2009 -507
  2. package/package.json +1 -1
  3. package/theme/defaultThemeOptions.d.ts +2 -1
  4. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +200 -2
  5. package/theme/overrides/M4LExtendedComponents/M4LErrorLabel.d.ts +14 -3
  6. package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +33 -2
  7. package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +130 -2
  8. package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +30 -1
  9. package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +3 -3
  10. package/theme/overrides/M4LExtendedComponents/M4LNavLink.d.ts +14 -2
  11. package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +48 -1
  12. package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +1093 -0
  13. package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +2 -1
  14. package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -3
  15. package/theme/overrides/M4LExtendedComponents/M4LoadingButton.d.ts +214 -2
  16. package/theme/overrides/M4LRHFComponents/M4LRHFAutocomplete.d.ts +125 -3
  17. package/theme/overrides/M4LRHFComponents/M4LRHFAutocompleteAsync.d.ts +2 -2
  18. package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +8 -6
  19. package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +125 -2
  20. package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +3 -8
  21. package/theme/overrides/MUIComponents/Drawer.d.ts +1078 -0
  22. package/theme/overrides/MUIComponents/Input.d.ts +0 -6
  23. package/theme/overrides/MUIComponents/Paper.d.ts +10 -10
  24. package/types/augmentations.d.ts +11 -7
  25. package/types/types.d.ts +1 -0
@@ -0,0 +1,1093 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export declare const M4LSideBar: (theme: Theme) => {
3
+ M4LSideBar: {
4
+ styleOverrides: {
5
+ '&.M4LSideBar-root': {
6
+ test: string;
7
+ height: string;
8
+ width: string;
9
+ borderRadius: string;
10
+ display: string;
11
+ background: string;
12
+ boxSizing: string;
13
+ overflow: string;
14
+ '& .M4LSideBar-wrapperSideBar': {
15
+ display: string;
16
+ "& .M4LSideBar-containerLogo": {
17
+ display: string;
18
+ flexDirection: string;
19
+ width: string;
20
+ gap: string;
21
+ boxSizing: string;
22
+ padding: string;
23
+ position: string;
24
+ left: string;
25
+ fitContent: string;
26
+ alignItems: string;
27
+ "& .M4LImage-root": {
28
+ position: string;
29
+ background: string;
30
+ boxShadow: string;
31
+ padding: string;
32
+ borderRadius: string;
33
+ minWidth: string;
34
+ minHeight: string;
35
+ };
36
+ };
37
+ '& .M4LSideBar-contentGroups': {
38
+ overflow: string;
39
+ "& .M4LSideBar-wrapperGroup": {
40
+ padding: string;
41
+ flexDirection: string;
42
+ gap: string;
43
+ '& .M4LSideBar-itemListMainRoot': {
44
+ display: string;
45
+ flexDirection: string;
46
+ position: string;
47
+ '& > .MuiCollapse-root:nth-of-type(2)': {
48
+ backgroundColor: string;
49
+ top: string;
50
+ };
51
+ "& .MuiCollapse-root": {
52
+ borderRadius: string;
53
+ padding: string;
54
+ position: string;
55
+ };
56
+ '&.M4LSideBar-itemMainActive': {
57
+ '& .M4LSideBar-navItemMainRoot': {
58
+ height: string;
59
+ };
60
+ '& > .MuiCollapse-root:nth-of-type(2)': {
61
+ backgroundColor: string;
62
+ top: string;
63
+ };
64
+ '& .M4LSideBar-navItemRootContent': {
65
+ background: string;
66
+ '& .M4LTypography-root .MuiTypography-root': {
67
+ color: string | undefined;
68
+ };
69
+ '& .M4LIcon-root .M4LIcon-icon': {
70
+ backgroundColor: string | undefined;
71
+ };
72
+ '&:hover': {
73
+ background: string;
74
+ };
75
+ };
76
+ '& .M4LSideBar-navItemMainTriangleTop': {
77
+ position: string;
78
+ top: string;
79
+ left: string;
80
+ width: string;
81
+ height: string;
82
+ overflow: string;
83
+ backgroundColor: string;
84
+ transform: string;
85
+ '&::before': {
86
+ content: string;
87
+ position: string;
88
+ width: string;
89
+ height: string;
90
+ backgroundColor: string;
91
+ transform: string;
92
+ inset: string;
93
+ borderTopLeftRadius: string;
94
+ transformOrigin: string;
95
+ };
96
+ };
97
+ '& .M4LSideBar-navItemMainTriangleBottom': {
98
+ position: string;
99
+ bottom: string;
100
+ left: string;
101
+ width: string;
102
+ height: string;
103
+ overflow: string;
104
+ background: string;
105
+ transform: string;
106
+ '&::before': {
107
+ content: string;
108
+ position: string;
109
+ width: string;
110
+ height: string;
111
+ backgroundColor: string;
112
+ transform: string;
113
+ inset: string;
114
+ borderTopLeftRadius: string;
115
+ transformOrigin: string;
116
+ };
117
+ };
118
+ };
119
+ "& .M4LSideBar-navItemMainRoot": {
120
+ padding: string;
121
+ height: string;
122
+ position: string;
123
+ display: string;
124
+ alignItems: string;
125
+ textTransform: string;
126
+ overflow: string;
127
+ backgroundColor: string;
128
+ "& .M4LSideBar-navItemRootContent": {
129
+ padding: string;
130
+ border: string;
131
+ justifyContent: string;
132
+ alignItems: string;
133
+ display: string;
134
+ width: string;
135
+ height: string;
136
+ boxSizing: string;
137
+ borderRadius: string;
138
+ overflow: string;
139
+ transition: string;
140
+ '&:hover': {
141
+ backgroundColor: string;
142
+ Color: string;
143
+ };
144
+ '& .M4LSideBar-navItemRootContentIconTypo': {
145
+ display: string;
146
+ gap: string;
147
+ };
148
+ };
149
+ '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
150
+ accentColor?: import("csstype").Property.AccentColor | undefined;
151
+ alignContent?: import("csstype").Property.AlignContent | undefined;
152
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
153
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
154
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
155
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
156
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
157
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
158
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
159
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
160
+ animationName?: import("csstype").Property.AnimationName | undefined;
161
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
162
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
163
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
164
+ appearance?: import("csstype").Property.Appearance | undefined;
165
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
166
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
167
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
168
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
169
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
170
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
171
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
172
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
173
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
174
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
175
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
176
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
177
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
178
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
179
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
180
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
181
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
182
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
183
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
184
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
185
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
186
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
187
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
188
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
189
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
190
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
191
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
192
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
193
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
194
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
195
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
196
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
197
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
198
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
199
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
200
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
201
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
202
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
203
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
204
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
205
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
206
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
207
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
208
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
209
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
210
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
211
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
212
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
213
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
214
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
215
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
216
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
217
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
218
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
219
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
220
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
221
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
222
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
223
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
224
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
225
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
226
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
227
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
228
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
229
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
230
+ breakInside?: import("csstype").Property.BreakInside | undefined;
231
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
232
+ caretColor?: import("csstype").Property.CaretColor | undefined;
233
+ caretShape?: import("csstype").Property.CaretShape | undefined;
234
+ clear?: import("csstype").Property.Clear | undefined;
235
+ clipPath?: import("csstype").Property.ClipPath | undefined;
236
+ color?: import("csstype").Property.Color | undefined;
237
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
238
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
239
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
240
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
241
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
242
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
243
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
244
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
245
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
246
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
247
+ contain?: import("csstype").Property.Contain | undefined;
248
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
249
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
250
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
251
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
252
+ containerName?: import("csstype").Property.ContainerName | undefined;
253
+ containerType?: import("csstype").Property.ContainerType | undefined;
254
+ content?: import("csstype").Property.Content | undefined;
255
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
256
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
257
+ counterReset?: import("csstype").Property.CounterReset | undefined;
258
+ counterSet?: import("csstype").Property.CounterSet | undefined;
259
+ cursor?: import("csstype").Property.Cursor | undefined;
260
+ direction?: import("csstype").Property.Direction | undefined;
261
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
262
+ filter?: import("csstype").Property.Filter | undefined;
263
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
264
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
265
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
266
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
267
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
268
+ float?: import("csstype").Property.Float | undefined;
269
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
270
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
271
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
272
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
273
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
274
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
275
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
276
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
277
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
278
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
279
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
280
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
281
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
282
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
283
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
284
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
285
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
286
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
287
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
288
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
289
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
290
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
291
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
292
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
293
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
294
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
295
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
296
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
297
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
298
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
299
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
300
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
301
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
302
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
303
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
304
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
305
+ hyphens?: import("csstype").Property.Hyphens | undefined;
306
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
307
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
308
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
309
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
310
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
311
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
312
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
313
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
314
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
315
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
316
+ isolation?: import("csstype").Property.Isolation | undefined;
317
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
318
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
319
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
320
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
321
+ left?: import("csstype").Property.Left<string | number> | undefined;
322
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
323
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
324
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
325
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
326
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
327
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
328
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
329
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
330
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
331
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
332
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
333
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
334
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
335
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
336
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
337
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
338
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
339
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
340
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
341
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
342
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
343
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
344
+ maskClip?: import("csstype").Property.MaskClip | undefined;
345
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
346
+ maskImage?: import("csstype").Property.MaskImage | undefined;
347
+ maskMode?: import("csstype").Property.MaskMode | undefined;
348
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
349
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
350
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
351
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
352
+ maskType?: import("csstype").Property.MaskType | undefined;
353
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
354
+ mathShift?: import("csstype").Property.MathShift | undefined;
355
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
356
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
357
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
358
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
359
+ maxLines?: import("csstype").Property.MaxLines | undefined;
360
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
361
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
362
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
363
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
364
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
365
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
366
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
367
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
368
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
369
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
370
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
371
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
372
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
373
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
374
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
375
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
376
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
377
+ opacity?: import("csstype").Property.Opacity | undefined;
378
+ order?: import("csstype").Property.Order | undefined;
379
+ orphans?: import("csstype").Property.Orphans | undefined;
380
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
381
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
382
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
383
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
384
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
385
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
386
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
387
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
388
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
389
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
390
+ overflowX?: import("csstype").Property.OverflowX | undefined;
391
+ overflowY?: import("csstype").Property.OverflowY | undefined;
392
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
393
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
394
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
395
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
396
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
397
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
398
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
399
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
400
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
401
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
402
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
403
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
404
+ page?: import("csstype").Property.Page | undefined;
405
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
406
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
407
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
408
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
409
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
410
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
411
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
412
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
413
+ quotes?: import("csstype").Property.Quotes | undefined;
414
+ resize?: import("csstype").Property.Resize | undefined;
415
+ right?: import("csstype").Property.Right<string | number> | undefined;
416
+ rotate?: import("csstype").Property.Rotate | undefined;
417
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
418
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
419
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
420
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
421
+ scale?: import("csstype").Property.Scale | undefined;
422
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
423
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
424
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
425
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
426
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
427
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
428
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
429
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
430
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
431
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
432
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
433
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
434
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
435
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
436
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
437
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
438
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
439
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
440
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
441
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
442
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
443
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
444
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
445
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
446
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
447
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
448
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
449
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
450
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
451
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
452
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
453
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
454
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
455
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
456
+ textAlign?: import("csstype").Property.TextAlign | undefined;
457
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
458
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
459
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
460
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
461
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
462
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
463
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
464
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
465
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
466
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
467
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
468
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
469
+ textJustify?: import("csstype").Property.TextJustify | undefined;
470
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
471
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
472
+ textRendering?: import("csstype").Property.TextRendering | undefined;
473
+ textShadow?: import("csstype").Property.TextShadow | undefined;
474
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
475
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
476
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
477
+ top?: import("csstype").Property.Top<string | number> | undefined;
478
+ touchAction?: import("csstype").Property.TouchAction | undefined;
479
+ transform?: import("csstype").Property.Transform | undefined;
480
+ transformBox?: import("csstype").Property.TransformBox | undefined;
481
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
482
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
483
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
484
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
485
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
486
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
487
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
488
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
489
+ userSelect?: import("csstype").Property.UserSelect | undefined;
490
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
491
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
492
+ visibility?: import("csstype").Property.Visibility | undefined;
493
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
494
+ widows?: import("csstype").Property.Widows | undefined;
495
+ width?: import("csstype").Property.Width<string | number> | undefined;
496
+ willChange?: import("csstype").Property.WillChange | undefined;
497
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
498
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
499
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
500
+ writingMode?: import("csstype").Property.WritingMode | undefined;
501
+ zIndex?: import("csstype").Property.ZIndex | undefined;
502
+ zoom?: import("csstype").Property.Zoom | undefined;
503
+ all?: import("csstype").Globals | undefined;
504
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
505
+ background?: import("csstype").Property.Background<string | number> | undefined;
506
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
507
+ border?: import("csstype").Property.Border<string | number> | undefined;
508
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
509
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
510
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
511
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
512
+ borderColor?: import("csstype").Property.BorderColor | undefined;
513
+ borderImage?: import("csstype").Property.BorderImage | undefined;
514
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
515
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
516
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
517
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
518
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
519
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
520
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
521
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
522
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
523
+ caret?: import("csstype").Property.Caret | undefined;
524
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
525
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
526
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
527
+ container?: import("csstype").Property.Container | undefined;
528
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
529
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
530
+ font?: import("csstype").Property.Font | undefined;
531
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
532
+ grid?: import("csstype").Property.Grid | undefined;
533
+ gridArea?: import("csstype").Property.GridArea | undefined;
534
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
535
+ gridRow?: import("csstype").Property.GridRow | undefined;
536
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
537
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
538
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
539
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
540
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
541
+ listStyle?: import("csstype").Property.ListStyle | undefined;
542
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
543
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
544
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
545
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
546
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
547
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
548
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
549
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
550
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
551
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
552
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
553
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
554
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
555
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
556
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
557
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
558
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
559
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
560
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
561
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
562
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
563
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
564
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
565
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
566
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
567
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
568
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
569
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
570
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
571
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
572
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
573
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
574
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
575
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
576
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
577
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
578
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
579
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
580
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
581
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
582
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
583
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
584
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
585
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
586
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
587
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
588
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
589
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
590
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
591
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
592
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
593
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
594
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
595
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
596
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
597
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
598
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
599
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
600
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
601
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
602
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
603
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
604
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
605
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
606
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
607
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
608
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
609
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
610
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
611
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
612
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
613
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
614
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
615
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
616
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
617
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
618
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
619
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
620
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
621
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
622
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
623
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
624
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
625
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
626
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
627
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
628
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
629
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
630
+ msFilter?: import("csstype").Property.MsFilter | undefined;
631
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
632
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
633
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
634
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
635
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
636
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
637
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
638
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
639
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
640
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
641
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
642
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
643
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
644
+ msOrder?: import("csstype").Property.Order | undefined;
645
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
646
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
647
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
648
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
649
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
650
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
651
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
652
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
653
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
654
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
655
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
656
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
657
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
658
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
659
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
660
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
661
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
662
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
663
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
664
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
665
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
666
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
667
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
668
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
669
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
670
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
671
+ msTransform?: import("csstype").Property.Transform | undefined;
672
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
673
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
674
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
675
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
676
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
677
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
678
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
679
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
680
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
681
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
682
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
683
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
684
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
685
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
686
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
687
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
688
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
689
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
690
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
691
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
692
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
693
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
694
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
695
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
696
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
697
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
698
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
699
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
700
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
701
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
702
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
703
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
704
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
705
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
706
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
707
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
708
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
709
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
710
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
711
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
712
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
713
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
714
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
715
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
716
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
717
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
718
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
719
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
720
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
721
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
722
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
723
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
724
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
725
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
726
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
727
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
728
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
729
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
730
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
731
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
732
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
733
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
734
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
735
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
736
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
737
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
738
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
739
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
740
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
741
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
742
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
743
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
744
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
745
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
746
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
747
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
748
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
749
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
750
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
751
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
752
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
753
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
754
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
755
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
756
+ WebkitOrder?: import("csstype").Property.Order | undefined;
757
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
758
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
759
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
760
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
761
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
762
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
763
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
764
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
765
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
766
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
767
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
768
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
769
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
770
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
771
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
772
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
773
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
774
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
775
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
776
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
777
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
778
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
779
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
780
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
781
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
782
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
783
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
784
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
785
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
786
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
787
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
788
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
789
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
790
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
791
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
792
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
793
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
794
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
795
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
796
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
797
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
798
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
799
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
800
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
801
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
802
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
803
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
804
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
805
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
806
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
807
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
808
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
809
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
810
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
811
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
812
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
813
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
814
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
815
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
816
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
817
+ azimuth?: import("csstype").Property.Azimuth | undefined;
818
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
819
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
820
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
821
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
822
+ boxLines?: import("csstype").Property.BoxLines | undefined;
823
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
824
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
825
+ boxPack?: import("csstype").Property.BoxPack | undefined;
826
+ clip?: import("csstype").Property.Clip | undefined;
827
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
828
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
829
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
830
+ imeMode?: import("csstype").Property.ImeMode | undefined;
831
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
832
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
833
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
834
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
835
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
836
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
837
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
838
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
839
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
840
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
841
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
842
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
843
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
844
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
845
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
846
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
847
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
848
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
849
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
850
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
851
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
852
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
853
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
854
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
855
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
856
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
857
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
858
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
859
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
860
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
861
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
862
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
863
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
864
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
865
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
866
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
867
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
868
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
869
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
870
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
871
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
872
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
873
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
874
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
875
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
876
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
877
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
878
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
879
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
880
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
881
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
882
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
883
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
884
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
885
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
886
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
887
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
888
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
889
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
890
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
891
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
892
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
893
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
894
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
895
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
896
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
897
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
898
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
899
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
900
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
901
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
902
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
903
+ OTransform?: import("csstype").Property.Transform | undefined;
904
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
905
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
906
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
907
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
908
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
909
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
910
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
911
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
912
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
913
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
914
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
915
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
916
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
917
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
918
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
919
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
920
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
921
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
922
+ clipRule?: import("csstype").Property.ClipRule | undefined;
923
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
924
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
925
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
926
+ fill?: import("csstype").Property.Fill | undefined;
927
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
928
+ fillRule?: import("csstype").Property.FillRule | undefined;
929
+ floodColor?: import("csstype").Property.FloodColor | undefined;
930
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
931
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
932
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
933
+ marker?: import("csstype").Property.Marker | undefined;
934
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
935
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
936
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
937
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
938
+ stopColor?: import("csstype").Property.StopColor | undefined;
939
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
940
+ stroke?: import("csstype").Property.Stroke | undefined;
941
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
942
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
943
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
944
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
945
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
946
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
947
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
948
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
949
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
950
+ };
951
+ };
952
+ };
953
+ };
954
+ '& .M4LSideBar-lineLeft': {
955
+ height: string;
956
+ width: string;
957
+ backgroundColor: string;
958
+ };
959
+ '& .M4LSideBar-contentDesktop, & .M4LSideBar-contentMobile': {
960
+ position: string;
961
+ width: string;
962
+ flexGrow: string;
963
+ display: string;
964
+ '& .M4LSideBar-collapseButton': {
965
+ width: string;
966
+ padding: string;
967
+ '& .M4LSideBar-containerLogoButton': {
968
+ width: string;
969
+ height: string;
970
+ justifyContent: string;
971
+ alignItems: string;
972
+ '& .M4LSideBar-containerLogoButtonLogo': {
973
+ width: string;
974
+ height: string;
975
+ padding: string;
976
+ };
977
+ '& .M4LSideBar-containerLogoButtonIcon': {
978
+ width: string;
979
+ height: string;
980
+ position: string;
981
+ display: string;
982
+ alignItems: string;
983
+ '& .M4LIconButton-root': {
984
+ width: string;
985
+ height: string;
986
+ borderRadius: string;
987
+ backgroundColor: string;
988
+ '&:hover': {
989
+ backgroundColor: string;
990
+ };
991
+ '& .M4LIcon-icon': {
992
+ backgroundColor: string | undefined;
993
+ };
994
+ };
995
+ '& .M4LSideBar-collapseButtontriangleTop': {
996
+ position: string;
997
+ top: string;
998
+ left: string;
999
+ width: string;
1000
+ height: string;
1001
+ overflow: string;
1002
+ backgroundColor: string;
1003
+ transform: string;
1004
+ '&::before': {
1005
+ content: string;
1006
+ position: string;
1007
+ width: string;
1008
+ height: string;
1009
+ backgroundColor: string;
1010
+ transform: string;
1011
+ inset: string;
1012
+ borderTopLeftRadius: string;
1013
+ transformOrigin: string;
1014
+ };
1015
+ };
1016
+ '& .M4LSideBar-collapseButtontriangleBottom': {
1017
+ position: string;
1018
+ bottom: string;
1019
+ left: string;
1020
+ width: string;
1021
+ height: string;
1022
+ ocontainerLogoButtonIconerflow: string;
1023
+ background: string;
1024
+ transform: string;
1025
+ '&::before': {
1026
+ content: string;
1027
+ position: string;
1028
+ width: string;
1029
+ height: string;
1030
+ backgroundColor: string;
1031
+ transform: string;
1032
+ inset: string;
1033
+ borderTopLeftRadius: string;
1034
+ transformOrigin: string;
1035
+ };
1036
+ };
1037
+ };
1038
+ };
1039
+ "& .M4LImage-root": {
1040
+ display: string;
1041
+ position: string;
1042
+ padding: string;
1043
+ width: string;
1044
+ height: string;
1045
+ boxShadow: string;
1046
+ opacity: string;
1047
+ };
1048
+ };
1049
+ };
1050
+ "& .MuiCollapse-wrapperInner": {
1051
+ display: string;
1052
+ flexDirection: string;
1053
+ gap: string;
1054
+ };
1055
+ "& .M4LSideBar-navListSubItemRoot:hover": {
1056
+ padding: string;
1057
+ borderRadius: string;
1058
+ backgroundColor: string;
1059
+ };
1060
+ "& .M4LSideBar-navListSubItemRoot": {
1061
+ padding: string;
1062
+ borderRadius: string;
1063
+ '& .M4LSideBar-subItemActive': {
1064
+ '& .M4LSideBar-navSubItemContentBullet': {
1065
+ borderRadius: string;
1066
+ height: string;
1067
+ backgroundColor: string;
1068
+ };
1069
+ };
1070
+ '& .MuiButtonBase-root': {
1071
+ gap: string;
1072
+ '&:hover': {
1073
+ backgroundColor: string;
1074
+ };
1075
+ };
1076
+ '& .M4LSideBar-navSubItemContentBullet': {
1077
+ width: string;
1078
+ height: string;
1079
+ borderRadius: string;
1080
+ backgroundColor: string;
1081
+ margin: string;
1082
+ };
1083
+ };
1084
+ "& .MuiPaper-root": {
1085
+ borderRadius: string;
1086
+ backgroundColor: string;
1087
+ padding: string;
1088
+ };
1089
+ };
1090
+ };
1091
+ };
1092
+ };
1093
+ };