@m4l/styles 0.0.28 → 0.0.30

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 (35) hide show
  1. package/index.js +9 -9
  2. package/package.json +1 -1
  3. package/theme/{defaultThemeOptions.e09f6ae8.js → defaultThemeOptions.a8de2e18.js} +5 -5
  4. package/theme/index.b0919dac.js +7 -0
  5. package/theme/overrides/M4LExtendedComponents/M4LAccordion.d.ts +4 -0
  6. package/theme/overrides/M4LExtendedComponents/M4LAppBar.d.ts +2 -1
  7. package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +922 -534
  8. package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +203 -103
  9. package/theme/overrides/M4LExtendedComponents/M4LBadge.d.ts +2 -0
  10. package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +0 -1
  11. package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +39 -50
  12. package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +33 -56
  13. package/theme/overrides/M4LExtendedComponents/M4LMenuActions.d.ts +15 -0
  14. package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +58 -1655
  15. package/theme/overrides/M4LExtendedComponents/M4LModuleLayout.d.ts +1 -2
  16. package/theme/overrides/M4LExtendedComponents/M4LNoItemSelected.d.ts +2 -2
  17. package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +4 -1
  18. package/theme/overrides/M4LExtendedComponents/M4LRHFormProvider.d.ts +3 -0
  19. package/theme/overrides/M4LExtendedComponents/M4LScrollBar.d.ts +3 -1
  20. package/theme/overrides/M4LExtendedComponents/M4LSplitLayout.d.ts +0 -6
  21. package/theme/overrides/M4LExtendedComponents/M4LTab.d.ts +2 -5
  22. package/theme/overrides/M4LExtendedComponents/M4LTabContent.d.ts +18 -0
  23. package/theme/overrides/M4LExtendedComponents/M4LTabs.d.ts +1 -0
  24. package/theme/overrides/M4LExtendedComponents/{index.e4d90ec0.js → index.e875a5e1.js} +234 -155
  25. package/theme/overrides/MUIComponents/Badge.d.ts +2 -3
  26. package/theme/overrides/MUIComponents/{index.c5a85efa.js → index.f50cd1c7.js} +4 -5
  27. package/theme/overrides/{index.ab4ad05c.js → index.cbe0dea7.js} +29 -27
  28. package/theme/{palette.b6e02e1c.js → palette.104051a7.js} +14 -14
  29. package/theme/{shadows.386e7ef4.js → shadows.b036a684.js} +1 -1
  30. package/theme/{typography.006a6c85.js → typography.7591a12b.js} +4 -4
  31. package/types/augmentations.d.ts +4 -0
  32. package/utils/{getColorPresets.241c5bac.js → getColorPresets.2693301f.js} +1 -1
  33. package/utils/{getColorState.f10d3d33.js → getColorState.32c050bf.js} +52 -28
  34. package/utils/getColorState.d.ts +2 -0
  35. package/theme/index.e131f0b1.js +0 -7
@@ -4,44 +4,42 @@ export declare const M4LModalDialog: (theme: Theme) => {
4
4
  styleOverrides: {
5
5
  '&.M4LModal-root': {
6
6
  test: string;
7
- "& .MuiPaper-root": {
7
+ '& .MuiPaper-root.MuiDialog-paper': {
8
8
  [x: string]: string | {
9
9
  width: string;
10
10
  height: string;
11
11
  maxHeight: string;
12
+ borderColor: string;
12
13
  display?: undefined;
13
14
  flexDirection?: undefined;
14
- padding?: undefined;
15
15
  justifyContent?: undefined;
16
16
  alignItems?: undefined;
17
17
  overflow?: undefined;
18
- gap?: undefined;
19
18
  background?: undefined;
20
19
  boxShadow?: undefined;
21
20
  borderRadius?: undefined;
22
- "& .M4LCommonActions-root"?: undefined;
21
+ '& .M4LCommonActions-root'?: undefined;
23
22
  '& .M4LModal-containerMassageIlustration'?: undefined;
24
23
  '& .M4LModal-headerContainer'?: undefined;
25
- "& .custom-handle-nw"?: undefined;
24
+ '& .M4LModal-windowContent'?: undefined;
26
25
  '& .M4LIcon-root'?: undefined;
27
26
  } | {
28
27
  display: string;
29
28
  flexDirection: string;
30
29
  width: string;
31
30
  height: string;
32
- padding: string;
33
31
  maxHeight?: undefined;
32
+ borderColor?: undefined;
34
33
  justifyContent?: undefined;
35
34
  alignItems?: undefined;
36
35
  overflow?: undefined;
37
- gap?: undefined;
38
36
  background?: undefined;
39
37
  boxShadow?: undefined;
40
38
  borderRadius?: undefined;
41
- "& .M4LCommonActions-root"?: undefined;
39
+ '& .M4LCommonActions-root'?: undefined;
42
40
  '& .M4LModal-containerMassageIlustration'?: undefined;
43
41
  '& .M4LModal-headerContainer'?: undefined;
44
- "& .custom-handle-nw"?: undefined;
42
+ '& .M4LModal-windowContent'?: undefined;
45
43
  '& .M4LIcon-root'?: undefined;
46
44
  } | {
47
45
  display: string;
@@ -51,11 +49,10 @@ export declare const M4LModalDialog: (theme: Theme) => {
51
49
  height: string;
52
50
  overflow: string;
53
51
  width: string;
54
- gap: string;
55
52
  background: string;
56
53
  boxShadow: string;
57
54
  borderRadius: string;
58
- "& .M4LCommonActions-root": {
55
+ '& .M4LCommonActions-root': {
59
56
  padding: string;
60
57
  margin: string;
61
58
  width: string;
@@ -64,7 +61,6 @@ export declare const M4LModalDialog: (theme: Theme) => {
64
61
  flexDirection: string;
65
62
  justifyContent: string;
66
63
  gap: string;
67
- background: string;
68
64
  };
69
65
  '& .M4LModal-containerMassageIlustration': {
70
66
  display: string;
@@ -74,6 +70,7 @@ export declare const M4LModalDialog: (theme: Theme) => {
74
70
  height: string;
75
71
  width: string;
76
72
  padding: string;
73
+ background: string;
77
74
  '& .M4LModal-modalContent': {
78
75
  display: string;
79
76
  flexDirection: string;
@@ -89,10 +86,10 @@ export declare const M4LModalDialog: (theme: Theme) => {
89
86
  height: string;
90
87
  width: string;
91
88
  };
92
- "& .MuiTypography-subtitle": {
89
+ '& .MuiTypography-subtitle': {
93
90
  color: string;
94
91
  };
95
- "& .M4LModal-messageContainer": {
92
+ '& .M4LModal-messageContainer': {
96
93
  color: string;
97
94
  textAlign: string;
98
95
  };
@@ -103,842 +100,44 @@ export declare const M4LModalDialog: (theme: Theme) => {
103
100
  alignItems: string;
104
101
  justifyContent: string;
105
102
  minHeight: string;
106
- borderBottom: string;
103
+ padding: string;
104
+ gap: string;
105
+ cursor: string;
107
106
  '& .M4LModal-iconHeader': {
108
107
  display: string;
109
108
  alignItems: string;
110
109
  justifyContent: string;
111
- marginRight: string;
112
110
  };
113
111
  '& .M4LModal-titleHeader': {
114
112
  width: string;
115
113
  whiteSpace: string;
116
114
  textOverflow: string;
117
115
  overflow: string;
118
- '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
119
- accentColor?: import("csstype").Property.AccentColor | undefined;
120
- alignContent?: import("csstype").Property.AlignContent | undefined;
121
- alignItems?: import("csstype").Property.AlignItems | undefined;
122
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
123
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
124
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
125
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
126
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
127
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
128
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
129
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
130
- animationName?: import("csstype").Property.AnimationName | undefined;
131
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
132
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
133
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
134
- appearance?: import("csstype").Property.Appearance | undefined;
135
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
136
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
137
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
138
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
139
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
140
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
141
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
142
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
143
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
144
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
145
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
146
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
147
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
148
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
149
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
150
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
151
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
152
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
153
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
154
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
155
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
156
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
157
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
158
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
159
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
160
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
161
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
162
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
163
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
164
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
165
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
166
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
167
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
168
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
169
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
170
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
171
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
172
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
173
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
174
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
175
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
176
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
177
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
178
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
179
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
180
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
181
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
182
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
183
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
184
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
185
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
186
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
187
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
188
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
189
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
190
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
191
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
192
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
193
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
194
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
195
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
196
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
197
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
198
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
199
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
200
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
201
- breakInside?: import("csstype").Property.BreakInside | undefined;
202
- captionSide?: import("csstype").Property.CaptionSide | undefined;
203
- caretColor?: import("csstype").Property.CaretColor | undefined;
204
- caretShape?: import("csstype").Property.CaretShape | undefined;
205
- clear?: import("csstype").Property.Clear | undefined;
206
- clipPath?: import("csstype").Property.ClipPath | undefined;
207
- color?: import("csstype").Property.Color | undefined;
208
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
209
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
210
- columnCount?: import("csstype").Property.ColumnCount | undefined;
211
- columnFill?: import("csstype").Property.ColumnFill | undefined;
212
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
213
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
214
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
215
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
216
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
217
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
218
- contain?: import("csstype").Property.Contain | undefined;
219
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
220
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
221
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
222
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
223
- containerName?: import("csstype").Property.ContainerName | undefined;
224
- containerType?: import("csstype").Property.ContainerType | undefined;
225
- content?: import("csstype").Property.Content | undefined;
226
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
227
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
228
- counterReset?: import("csstype").Property.CounterReset | undefined;
229
- counterSet?: import("csstype").Property.CounterSet | undefined;
230
- cursor?: import("csstype").Property.Cursor | undefined;
231
- direction?: import("csstype").Property.Direction | undefined;
232
- display?: import("csstype").Property.Display | undefined;
233
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
234
- filter?: import("csstype").Property.Filter | undefined;
235
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
236
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
237
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
238
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
239
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
240
- float?: import("csstype").Property.Float | undefined;
241
- fontFamily?: import("csstype").Property.FontFamily | undefined;
242
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
243
- fontKerning?: import("csstype").Property.FontKerning | undefined;
244
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
245
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
246
- fontPalette?: import("csstype").Property.FontPalette | undefined;
247
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
248
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
249
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
250
- fontStretch?: import("csstype").Property.FontStretch | undefined;
251
- fontStyle?: import("csstype").Property.FontStyle | undefined;
252
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
253
- fontVariant?: import("csstype").Property.FontVariant | undefined;
254
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
255
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
256
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
257
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
258
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
259
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
260
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
261
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
262
- fontWeight?: import("csstype").Property.FontWeight | undefined;
263
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
264
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
265
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
266
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
267
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
268
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
269
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
270
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
271
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
272
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
273
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
274
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
275
- height?: import("csstype").Property.Height<string | number> | undefined;
276
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
277
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
278
- hyphens?: import("csstype").Property.Hyphens | undefined;
279
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
280
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
281
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
282
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
283
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
284
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
285
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
286
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
287
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
288
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
289
- isolation?: import("csstype").Property.Isolation | undefined;
290
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
291
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
292
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
293
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
294
- left?: import("csstype").Property.Left<string | number> | undefined;
295
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
296
- lineBreak?: import("csstype").Property.LineBreak | undefined;
297
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
298
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
299
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
300
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
301
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
302
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
303
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
304
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
305
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
306
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
307
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
308
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
309
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
310
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
311
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
312
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
313
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
314
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
315
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
316
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
317
- maskClip?: import("csstype").Property.MaskClip | undefined;
318
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
319
- maskImage?: import("csstype").Property.MaskImage | undefined;
320
- maskMode?: import("csstype").Property.MaskMode | undefined;
321
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
322
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
323
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
324
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
325
- maskType?: import("csstype").Property.MaskType | undefined;
326
- mathDepth?: import("csstype").Property.MathDepth | undefined;
327
- mathShift?: import("csstype").Property.MathShift | undefined;
328
- mathStyle?: import("csstype").Property.MathStyle | undefined;
329
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
330
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
331
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
332
- maxLines?: import("csstype").Property.MaxLines | undefined;
333
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
334
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
335
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
336
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
337
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
338
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
339
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
340
- motionPath?: import("csstype").Property.OffsetPath | undefined;
341
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
342
- objectFit?: import("csstype").Property.ObjectFit | undefined;
343
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
344
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
345
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
346
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
347
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
348
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
349
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
350
- opacity?: import("csstype").Property.Opacity | undefined;
351
- order?: import("csstype").Property.Order | undefined;
352
- orphans?: import("csstype").Property.Orphans | undefined;
353
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
354
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
355
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
356
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
357
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
358
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
359
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
360
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
361
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
362
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
363
- overflowX?: import("csstype").Property.OverflowX | undefined;
364
- overflowY?: import("csstype").Property.OverflowY | undefined;
365
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
366
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
367
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
368
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
369
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
370
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
371
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
372
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
373
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
374
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
375
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
376
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
377
- page?: import("csstype").Property.Page | undefined;
378
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
379
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
380
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
381
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
382
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
383
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
384
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
385
- position?: import("csstype").Property.Position | undefined;
386
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
387
- quotes?: import("csstype").Property.Quotes | undefined;
388
- resize?: import("csstype").Property.Resize | undefined;
389
- right?: import("csstype").Property.Right<string | number> | undefined;
390
- rotate?: import("csstype").Property.Rotate | undefined;
391
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
392
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
393
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
394
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
395
- scale?: import("csstype").Property.Scale | undefined;
396
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
397
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
398
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
399
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
400
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
401
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
402
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
403
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
404
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
405
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
406
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
407
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
408
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
409
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
410
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
411
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
412
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
413
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
414
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
415
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
416
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
417
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
418
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
419
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
420
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
421
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
422
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
423
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
424
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
425
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
426
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
427
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
428
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
429
- tableLayout?: import("csstype").Property.TableLayout | undefined;
430
- textAlign?: import("csstype").Property.TextAlign | undefined;
431
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
432
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
433
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
434
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
435
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
436
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
437
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
438
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
439
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
440
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
441
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
442
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
443
- textJustify?: import("csstype").Property.TextJustify | undefined;
444
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
445
- textRendering?: import("csstype").Property.TextRendering | undefined;
446
- textShadow?: import("csstype").Property.TextShadow | undefined;
447
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
448
- textTransform?: import("csstype").Property.TextTransform | undefined;
449
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
450
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
451
- top?: import("csstype").Property.Top<string | number> | undefined;
452
- touchAction?: import("csstype").Property.TouchAction | undefined;
453
- transform?: import("csstype").Property.Transform | undefined;
454
- transformBox?: import("csstype").Property.TransformBox | undefined;
455
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
456
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
457
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
458
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
459
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
460
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
461
- translate?: import("csstype").Property.Translate<string | number> | undefined;
462
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
463
- userSelect?: import("csstype").Property.UserSelect | undefined;
464
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
465
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
466
- visibility?: import("csstype").Property.Visibility | undefined;
467
- widows?: import("csstype").Property.Widows | undefined;
468
- willChange?: import("csstype").Property.WillChange | undefined;
469
- wordBreak?: import("csstype").Property.WordBreak | undefined;
470
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
471
- wordWrap?: import("csstype").Property.WordWrap | undefined;
472
- writingMode?: import("csstype").Property.WritingMode | undefined;
473
- zIndex?: import("csstype").Property.ZIndex | undefined;
474
- zoom?: import("csstype").Property.Zoom | undefined;
475
- all?: import("csstype").Globals | undefined;
476
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
477
- background?: import("csstype").Property.Background<string | number> | undefined;
478
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
479
- border?: import("csstype").Property.Border<string | number> | undefined;
480
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
481
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
482
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
483
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
484
- borderColor?: import("csstype").Property.BorderColor | undefined;
485
- borderImage?: import("csstype").Property.BorderImage | undefined;
486
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
487
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
488
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
489
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
490
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
491
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
492
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
493
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
494
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
495
- caret?: import("csstype").Property.Caret | undefined;
496
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
497
- columns?: import("csstype").Property.Columns<string | number> | undefined;
498
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
499
- container?: import("csstype").Property.Container | undefined;
500
- flex?: import("csstype").Property.Flex<string | number> | undefined;
501
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
502
- font?: import("csstype").Property.Font | undefined;
503
- gap?: import("csstype").Property.Gap<string | number> | undefined;
504
- grid?: import("csstype").Property.Grid | undefined;
505
- gridArea?: import("csstype").Property.GridArea | undefined;
506
- gridColumn?: import("csstype").Property.GridColumn | undefined;
507
- gridRow?: import("csstype").Property.GridRow | undefined;
508
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
509
- inset?: import("csstype").Property.Inset<string | number> | undefined;
510
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
511
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
512
- lineClamp?: import("csstype").Property.LineClamp | undefined;
513
- listStyle?: import("csstype").Property.ListStyle | undefined;
514
- margin?: import("csstype").Property.Margin<string | number> | undefined;
515
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
516
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
517
- mask?: import("csstype").Property.Mask<string | number> | undefined;
518
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
519
- motion?: import("csstype").Property.Offset<string | number> | undefined;
520
- offset?: import("csstype").Property.Offset<string | number> | undefined;
521
- outline?: import("csstype").Property.Outline<string | number> | undefined;
522
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
523
- padding?: import("csstype").Property.Padding<string | number> | undefined;
524
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
525
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
526
- placeContent?: import("csstype").Property.PlaceContent | undefined;
527
- placeItems?: import("csstype").Property.PlaceItems | undefined;
528
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
529
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
530
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
531
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
532
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
533
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
534
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
535
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
536
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
537
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
538
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
539
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
540
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
541
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
542
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
543
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
544
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
545
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
546
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
547
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
548
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
549
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
550
- MozBinding?: import("csstype").Property.MozBinding | undefined;
551
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
552
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
553
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
554
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
555
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
556
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
557
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
558
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
559
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
560
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
561
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
562
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
563
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
564
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
565
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
566
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
567
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
568
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
569
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
570
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
571
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
572
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
573
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
574
- MozOrient?: import("csstype").Property.MozOrient | undefined;
575
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
576
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
577
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
578
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
579
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
580
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
581
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
582
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
583
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
584
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
585
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
586
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
587
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
588
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
589
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
590
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
591
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
592
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
593
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
594
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
595
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
596
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
597
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
598
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
599
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
600
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
601
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
602
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
603
- msFilter?: import("csstype").Property.MsFilter | undefined;
604
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
605
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
606
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
607
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
608
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
609
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
610
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
611
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
612
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
613
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
614
- msHyphens?: import("csstype").Property.Hyphens | undefined;
615
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
616
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
617
- msOrder?: import("csstype").Property.Order | undefined;
618
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
619
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
620
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
621
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
622
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
623
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
624
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
625
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
626
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
627
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
628
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
629
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
630
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
631
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
632
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
633
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
634
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
635
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
636
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
637
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
638
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
639
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
640
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
641
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
642
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
643
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
644
- msTransform?: import("csstype").Property.Transform | undefined;
645
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
646
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
647
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
648
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
649
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
650
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
651
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
652
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
653
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
654
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
655
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
656
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
657
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
658
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
659
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
660
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
661
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
662
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
663
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
664
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
665
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
666
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
667
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
668
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
669
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
670
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
671
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
672
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
673
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
674
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
675
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
676
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
677
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
678
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
679
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
680
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
681
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
682
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
683
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
684
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
685
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
686
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
687
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
688
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
689
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
690
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
691
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
692
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
693
- WebkitFilter?: import("csstype").Property.Filter | undefined;
694
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
695
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
696
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
697
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
698
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
699
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
700
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
701
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
702
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
703
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
704
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
705
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
706
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
707
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
708
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
709
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
710
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
711
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
712
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
713
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
714
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
715
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
716
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
717
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
718
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
719
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
720
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
721
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
722
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
723
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
724
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
725
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
726
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
727
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
728
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
729
- WebkitOrder?: import("csstype").Property.Order | undefined;
730
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
731
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
732
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
733
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
734
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
735
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
736
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
737
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
738
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
739
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
740
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
741
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
742
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
743
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
744
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
745
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
746
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
747
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
748
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
749
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
750
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
751
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
752
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
753
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
754
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
755
- WebkitTransform?: import("csstype").Property.Transform | undefined;
756
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
757
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
758
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
759
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
760
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
761
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
762
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
763
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
764
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
765
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
766
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
767
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
768
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
769
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
770
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
771
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
772
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
773
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
774
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
775
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
776
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
777
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
778
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
779
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
780
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
781
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
782
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
783
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
784
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
785
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
786
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
787
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
788
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
789
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
790
- azimuth?: import("csstype").Property.Azimuth | undefined;
791
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
792
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
793
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
794
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
795
- boxLines?: import("csstype").Property.BoxLines | undefined;
796
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
797
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
798
- boxPack?: import("csstype").Property.BoxPack | undefined;
799
- clip?: import("csstype").Property.Clip | undefined;
800
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
801
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
802
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
803
- imeMode?: import("csstype").Property.ImeMode | undefined;
804
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
805
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
806
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
807
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
808
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
809
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
810
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
811
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
812
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
813
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
814
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
815
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
816
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
817
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
818
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
819
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
820
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
821
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
822
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
823
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
824
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
825
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
826
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
827
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
828
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
829
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
830
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
831
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
832
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
833
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
834
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
835
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
836
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
837
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
838
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
839
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
840
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
841
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
842
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
843
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
844
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
845
- MozOpacity?: import("csstype").Property.Opacity | undefined;
846
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
847
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
848
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
849
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
850
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
851
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
852
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
853
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
854
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
855
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
856
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
857
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
858
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
859
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
860
- msImeMode?: import("csstype").Property.ImeMode | undefined;
861
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
862
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
863
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
864
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
865
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
866
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
867
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
868
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
869
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
870
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
871
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
872
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
873
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
874
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
875
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
876
- OTransform?: import("csstype").Property.Transform | undefined;
877
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
878
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
879
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
880
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
881
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
882
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
883
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
884
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
885
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
886
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
887
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
888
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
889
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
890
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
891
- WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
892
- WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
893
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
894
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
895
- clipRule?: import("csstype").Property.ClipRule | undefined;
896
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
897
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
898
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
899
- fill?: import("csstype").Property.Fill | undefined;
900
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
901
- fillRule?: import("csstype").Property.FillRule | undefined;
902
- floodColor?: import("csstype").Property.FloodColor | undefined;
903
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
904
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
905
- lightingColor?: import("csstype").Property.LightingColor | undefined;
906
- marker?: import("csstype").Property.Marker | undefined;
907
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
908
- markerMid?: import("csstype").Property.MarkerMid | undefined;
909
- markerStart?: import("csstype").Property.MarkerStart | undefined;
910
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
911
- stopColor?: import("csstype").Property.StopColor | undefined;
912
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
913
- stroke?: import("csstype").Property.Stroke | undefined;
914
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
915
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
916
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
917
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
918
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
919
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
920
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
921
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
922
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
923
116
  };
924
117
  '& .M4LModal-iconCloseHeader': {};
925
118
  };
119
+ '& .M4LModal-windowContent': {
120
+ [x: string]: string | {
121
+ padding: string;
122
+ };
123
+ padding: string;
124
+ width: string;
125
+ height: string;
126
+ display: string;
127
+ flexDirection: string;
128
+ flex: string;
129
+ overflow: string;
130
+ };
926
131
  maxHeight?: undefined;
927
- padding?: undefined;
928
- "& .custom-handle-nw"?: undefined;
132
+ borderColor?: undefined;
929
133
  '& .M4LIcon-root'?: undefined;
930
134
  } | {
931
135
  display: string;
932
136
  flexDirection: string;
933
137
  justifyContent: string;
934
138
  alignItems: string;
935
- "& .custom-handle-nw": {
936
- position: string;
937
- top: string;
938
- left: string;
939
- };
940
- "& .M4LIcon-root": {
941
- "& .M4LIcon-icon": {
139
+ '& .M4LIcon-root': {
140
+ '& .M4LIcon-icon': {
942
141
  background: string;
943
142
  boxShadow: string;
944
143
  };
@@ -946,32 +145,34 @@ export declare const M4LModalDialog: (theme: Theme) => {
946
145
  width?: undefined;
947
146
  height?: undefined;
948
147
  maxHeight?: undefined;
949
- padding?: undefined;
148
+ borderColor?: undefined;
950
149
  overflow?: undefined;
951
- gap?: undefined;
952
150
  background?: undefined;
953
151
  boxShadow?: undefined;
954
152
  borderRadius?: undefined;
955
- "& .M4LCommonActions-root"?: undefined;
153
+ '& .M4LCommonActions-root'?: undefined;
956
154
  '& .M4LModal-containerMassageIlustration'?: undefined;
957
155
  '& .M4LModal-headerContainer'?: undefined;
156
+ '& .M4LModal-windowContent'?: undefined;
958
157
  };
959
158
  display: string;
960
159
  flexDirection: string;
961
160
  overflow: string;
962
161
  borderRadius: string;
963
162
  margin: string;
964
- background: string;
965
163
  width: string;
966
164
  height: string;
967
165
  maxWidth: string;
968
166
  maxHeight: string;
167
+ background: string;
168
+ border: string;
169
+ borderColor: string;
170
+ boxShadow: string;
969
171
  '& .M4LModal-windowBaseRoot': {
970
172
  display: string;
971
173
  flexDirection: string;
972
174
  width: string;
973
175
  height: string;
974
- padding: string;
975
176
  };
976
177
  '& .M4LModal-containerWindow': {
977
178
  display: string;
@@ -981,11 +182,10 @@ export declare const M4LModalDialog: (theme: Theme) => {
981
182
  height: string;
982
183
  overflow: string;
983
184
  width: string;
984
- gap: string;
985
185
  background: string;
986
186
  boxShadow: string;
987
187
  borderRadius: string;
988
- "& .M4LCommonActions-root": {
188
+ '& .M4LCommonActions-root': {
989
189
  padding: string;
990
190
  margin: string;
991
191
  width: string;
@@ -994,7 +194,6 @@ export declare const M4LModalDialog: (theme: Theme) => {
994
194
  flexDirection: string;
995
195
  justifyContent: string;
996
196
  gap: string;
997
- background: string;
998
197
  };
999
198
  '& .M4LModal-containerMassageIlustration': {
1000
199
  display: string;
@@ -1004,6 +203,7 @@ export declare const M4LModalDialog: (theme: Theme) => {
1004
203
  height: string;
1005
204
  width: string;
1006
205
  padding: string;
206
+ background: string;
1007
207
  '& .M4LModal-modalContent': {
1008
208
  display: string;
1009
209
  flexDirection: string;
@@ -1019,10 +219,10 @@ export declare const M4LModalDialog: (theme: Theme) => {
1019
219
  height: string;
1020
220
  width: string;
1021
221
  };
1022
- "& .MuiTypography-subtitle": {
222
+ '& .MuiTypography-subtitle': {
1023
223
  color: string;
1024
224
  };
1025
- "& .M4LModal-messageContainer": {
225
+ '& .M4LModal-messageContainer': {
1026
226
  color: string;
1027
227
  textAlign: string;
1028
228
  };
@@ -1033,839 +233,42 @@ export declare const M4LModalDialog: (theme: Theme) => {
1033
233
  alignItems: string;
1034
234
  justifyContent: string;
1035
235
  minHeight: string;
1036
- borderBottom: string;
236
+ padding: string;
237
+ gap: string;
238
+ cursor: string;
1037
239
  '& .M4LModal-iconHeader': {
1038
240
  display: string;
1039
241
  alignItems: string;
1040
242
  justifyContent: string;
1041
- marginRight: string;
1042
243
  };
1043
244
  '& .M4LModal-titleHeader': {
1044
245
  width: string;
1045
246
  whiteSpace: string;
1046
247
  textOverflow: string;
1047
248
  overflow: string;
1048
- '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
1049
- accentColor?: import("csstype").Property.AccentColor | undefined;
1050
- alignContent?: import("csstype").Property.AlignContent | undefined;
1051
- alignItems?: import("csstype").Property.AlignItems | undefined;
1052
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
1053
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
1054
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1055
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1056
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1057
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1058
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1059
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1060
- animationName?: import("csstype").Property.AnimationName | undefined;
1061
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1062
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1063
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1064
- appearance?: import("csstype").Property.Appearance | undefined;
1065
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1066
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1067
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1068
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1069
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1070
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1071
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1072
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1073
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1074
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1075
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1076
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1077
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1078
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1079
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1080
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1081
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1082
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1083
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1084
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1085
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1086
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1087
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1088
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1089
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1090
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1091
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1092
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1093
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1094
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1095
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1096
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1097
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1098
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1099
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1100
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1101
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1102
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1103
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1104
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1105
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1106
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1107
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1108
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1109
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1110
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1111
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1112
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1113
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1114
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1115
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1116
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1117
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1118
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1119
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1120
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1121
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1122
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1123
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1124
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1125
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1126
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1127
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
1128
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
1129
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
1130
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
1131
- breakInside?: import("csstype").Property.BreakInside | undefined;
1132
- captionSide?: import("csstype").Property.CaptionSide | undefined;
1133
- caretColor?: import("csstype").Property.CaretColor | undefined;
1134
- caretShape?: import("csstype").Property.CaretShape | undefined;
1135
- clear?: import("csstype").Property.Clear | undefined;
1136
- clipPath?: import("csstype").Property.ClipPath | undefined;
1137
- color?: import("csstype").Property.Color | undefined;
1138
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1139
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
1140
- columnCount?: import("csstype").Property.ColumnCount | undefined;
1141
- columnFill?: import("csstype").Property.ColumnFill | undefined;
1142
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1143
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1144
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1145
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1146
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1147
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1148
- contain?: import("csstype").Property.Contain | undefined;
1149
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1150
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1151
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1152
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1153
- containerName?: import("csstype").Property.ContainerName | undefined;
1154
- containerType?: import("csstype").Property.ContainerType | undefined;
1155
- content?: import("csstype").Property.Content | undefined;
1156
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1157
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1158
- counterReset?: import("csstype").Property.CounterReset | undefined;
1159
- counterSet?: import("csstype").Property.CounterSet | undefined;
1160
- cursor?: import("csstype").Property.Cursor | undefined;
1161
- direction?: import("csstype").Property.Direction | undefined;
1162
- display?: import("csstype").Property.Display | undefined;
1163
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
1164
- filter?: import("csstype").Property.Filter | undefined;
1165
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1166
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
1167
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
1168
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
1169
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
1170
- float?: import("csstype").Property.Float | undefined;
1171
- fontFamily?: import("csstype").Property.FontFamily | undefined;
1172
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1173
- fontKerning?: import("csstype").Property.FontKerning | undefined;
1174
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1175
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1176
- fontPalette?: import("csstype").Property.FontPalette | undefined;
1177
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1178
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1179
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1180
- fontStretch?: import("csstype").Property.FontStretch | undefined;
1181
- fontStyle?: import("csstype").Property.FontStyle | undefined;
1182
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1183
- fontVariant?: import("csstype").Property.FontVariant | undefined;
1184
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1185
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1186
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1187
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1188
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1189
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1190
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1191
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1192
- fontWeight?: import("csstype").Property.FontWeight | undefined;
1193
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1194
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1195
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1196
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1197
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1198
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1199
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1200
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1201
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1202
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1203
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1204
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1205
- height?: import("csstype").Property.Height<string | number> | undefined;
1206
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1207
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1208
- hyphens?: import("csstype").Property.Hyphens | undefined;
1209
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1210
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
1211
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
1212
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
1213
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1214
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1215
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1216
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1217
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1218
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1219
- isolation?: import("csstype").Property.Isolation | undefined;
1220
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
1221
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
1222
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
1223
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1224
- left?: import("csstype").Property.Left<string | number> | undefined;
1225
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1226
- lineBreak?: import("csstype").Property.LineBreak | undefined;
1227
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1228
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1229
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1230
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1231
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
1232
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1233
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1234
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1235
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1236
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1237
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1238
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1239
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1240
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
1241
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1242
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1243
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1244
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1245
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1246
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1247
- maskClip?: import("csstype").Property.MaskClip | undefined;
1248
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
1249
- maskImage?: import("csstype").Property.MaskImage | undefined;
1250
- maskMode?: import("csstype").Property.MaskMode | undefined;
1251
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1252
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1253
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1254
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1255
- maskType?: import("csstype").Property.MaskType | undefined;
1256
- mathDepth?: import("csstype").Property.MathDepth | undefined;
1257
- mathShift?: import("csstype").Property.MathShift | undefined;
1258
- mathStyle?: import("csstype").Property.MathStyle | undefined;
1259
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1260
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1261
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1262
- maxLines?: import("csstype").Property.MaxLines | undefined;
1263
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1264
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1265
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1266
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1267
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1268
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1269
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1270
- motionPath?: import("csstype").Property.OffsetPath | undefined;
1271
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1272
- objectFit?: import("csstype").Property.ObjectFit | undefined;
1273
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1274
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1275
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1276
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
1277
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1278
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1279
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1280
- opacity?: import("csstype").Property.Opacity | undefined;
1281
- order?: import("csstype").Property.Order | undefined;
1282
- orphans?: import("csstype").Property.Orphans | undefined;
1283
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
1284
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1285
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1286
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1287
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1288
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1289
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1290
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1291
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
1292
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1293
- overflowX?: import("csstype").Property.OverflowX | undefined;
1294
- overflowY?: import("csstype").Property.OverflowY | undefined;
1295
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1296
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1297
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1298
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1299
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1300
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1301
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1302
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1303
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1304
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1305
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1306
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1307
- page?: import("csstype").Property.Page | undefined;
1308
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1309
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1310
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1311
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
1312
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1313
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1314
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1315
- position?: import("csstype").Property.Position | undefined;
1316
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1317
- quotes?: import("csstype").Property.Quotes | undefined;
1318
- resize?: import("csstype").Property.Resize | undefined;
1319
- right?: import("csstype").Property.Right<string | number> | undefined;
1320
- rotate?: import("csstype").Property.Rotate | undefined;
1321
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1322
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1323
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1324
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1325
- scale?: import("csstype").Property.Scale | undefined;
1326
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1327
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1328
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1329
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1330
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1331
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1332
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1333
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1334
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1335
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1336
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1337
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1338
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1339
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1340
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1341
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1342
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1343
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1344
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1345
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1346
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1347
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1348
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1349
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1350
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1351
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1352
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1353
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1354
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1355
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1356
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1357
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1358
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1359
- tableLayout?: import("csstype").Property.TableLayout | undefined;
1360
- textAlign?: import("csstype").Property.TextAlign | undefined;
1361
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1362
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1363
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1364
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1365
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1366
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1367
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1368
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1369
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1370
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1371
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1372
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1373
- textJustify?: import("csstype").Property.TextJustify | undefined;
1374
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
1375
- textRendering?: import("csstype").Property.TextRendering | undefined;
1376
- textShadow?: import("csstype").Property.TextShadow | undefined;
1377
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1378
- textTransform?: import("csstype").Property.TextTransform | undefined;
1379
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1380
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1381
- top?: import("csstype").Property.Top<string | number> | undefined;
1382
- touchAction?: import("csstype").Property.TouchAction | undefined;
1383
- transform?: import("csstype").Property.Transform | undefined;
1384
- transformBox?: import("csstype").Property.TransformBox | undefined;
1385
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1386
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
1387
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1388
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1389
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1390
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1391
- translate?: import("csstype").Property.Translate<string | number> | undefined;
1392
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1393
- userSelect?: import("csstype").Property.UserSelect | undefined;
1394
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1395
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1396
- visibility?: import("csstype").Property.Visibility | undefined;
1397
- widows?: import("csstype").Property.Widows | undefined;
1398
- willChange?: import("csstype").Property.WillChange | undefined;
1399
- wordBreak?: import("csstype").Property.WordBreak | undefined;
1400
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1401
- wordWrap?: import("csstype").Property.WordWrap | undefined;
1402
- writingMode?: import("csstype").Property.WritingMode | undefined;
1403
- zIndex?: import("csstype").Property.ZIndex | undefined;
1404
- zoom?: import("csstype").Property.Zoom | undefined;
1405
- all?: import("csstype").Globals | undefined;
1406
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
1407
- background?: import("csstype").Property.Background<string | number> | undefined;
1408
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1409
- border?: import("csstype").Property.Border<string | number> | undefined;
1410
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1411
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1412
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1413
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1414
- borderColor?: import("csstype").Property.BorderColor | undefined;
1415
- borderImage?: import("csstype").Property.BorderImage | undefined;
1416
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1417
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1418
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1419
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1420
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1421
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1422
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
1423
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1424
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1425
- caret?: import("csstype").Property.Caret | undefined;
1426
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1427
- columns?: import("csstype").Property.Columns<string | number> | undefined;
1428
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1429
- container?: import("csstype").Property.Container | undefined;
1430
- flex?: import("csstype").Property.Flex<string | number> | undefined;
1431
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
1432
- font?: import("csstype").Property.Font | undefined;
1433
- gap?: import("csstype").Property.Gap<string | number> | undefined;
1434
- grid?: import("csstype").Property.Grid | undefined;
1435
- gridArea?: import("csstype").Property.GridArea | undefined;
1436
- gridColumn?: import("csstype").Property.GridColumn | undefined;
1437
- gridRow?: import("csstype").Property.GridRow | undefined;
1438
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1439
- inset?: import("csstype").Property.Inset<string | number> | undefined;
1440
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1441
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1442
- lineClamp?: import("csstype").Property.LineClamp | undefined;
1443
- listStyle?: import("csstype").Property.ListStyle | undefined;
1444
- margin?: import("csstype").Property.Margin<string | number> | undefined;
1445
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1446
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1447
- mask?: import("csstype").Property.Mask<string | number> | undefined;
1448
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
1449
- motion?: import("csstype").Property.Offset<string | number> | undefined;
1450
- offset?: import("csstype").Property.Offset<string | number> | undefined;
1451
- outline?: import("csstype").Property.Outline<string | number> | undefined;
1452
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1453
- padding?: import("csstype").Property.Padding<string | number> | undefined;
1454
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1455
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1456
- placeContent?: import("csstype").Property.PlaceContent | undefined;
1457
- placeItems?: import("csstype").Property.PlaceItems | undefined;
1458
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1459
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1460
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1461
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1462
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1463
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1464
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1465
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1466
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1467
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1468
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1469
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
1470
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1471
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1472
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1473
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1474
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1475
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1476
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1477
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1478
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1479
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1480
- MozBinding?: import("csstype").Property.MozBinding | undefined;
1481
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1482
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1483
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1484
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1485
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1486
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1487
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1488
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1489
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1490
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1491
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1492
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1493
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1494
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1495
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1496
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1497
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1498
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1499
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1500
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
1501
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1502
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1503
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1504
- MozOrient?: import("csstype").Property.MozOrient | undefined;
1505
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1506
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1507
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1508
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1509
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1510
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1511
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1512
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1513
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1514
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1515
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1516
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1517
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1518
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1519
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1520
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1521
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1522
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1523
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1524
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1525
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1526
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1527
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1528
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1529
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1530
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1531
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1532
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1533
- msFilter?: import("csstype").Property.MsFilter | undefined;
1534
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1535
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1536
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1537
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1538
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1539
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1540
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1541
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1542
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1543
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1544
- msHyphens?: import("csstype").Property.Hyphens | undefined;
1545
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1546
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
1547
- msOrder?: import("csstype").Property.Order | undefined;
1548
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1549
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
1550
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
1551
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1552
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1553
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1554
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1555
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1556
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1557
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1558
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1559
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1560
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1561
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1562
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1563
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1564
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1565
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1566
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1567
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1568
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1569
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1570
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1571
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1572
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
1573
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1574
- msTransform?: import("csstype").Property.Transform | undefined;
1575
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1576
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1577
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1578
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1579
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1580
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1581
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
1582
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1583
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1584
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1585
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
1586
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1587
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1588
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1589
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1590
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1591
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1592
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1593
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1594
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1595
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1596
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1597
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1598
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1599
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1600
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1601
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1602
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1603
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1604
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1605
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1606
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1607
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1608
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1609
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1610
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1611
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1612
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1613
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1614
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1615
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1616
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1617
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1618
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1619
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1620
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1621
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1622
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1623
- WebkitFilter?: import("csstype").Property.Filter | undefined;
1624
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1625
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1626
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1627
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1628
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1629
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1630
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1631
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1632
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1633
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1634
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1635
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1636
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1637
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1638
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1639
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1640
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1641
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1642
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1643
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1644
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1645
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1646
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1647
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1648
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1649
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1650
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1651
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1652
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1653
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1654
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1655
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1656
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1657
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1658
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1659
- WebkitOrder?: import("csstype").Property.Order | undefined;
1660
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1661
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1662
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1663
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1664
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1665
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1666
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1667
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1668
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1669
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1670
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1671
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1672
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1673
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1674
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1675
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1676
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1677
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1678
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1679
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1680
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1681
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1682
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1683
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1684
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1685
- WebkitTransform?: import("csstype").Property.Transform | undefined;
1686
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1687
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1688
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1689
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1690
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1691
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1692
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1693
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1694
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1695
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1696
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1697
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1698
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1699
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1700
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1701
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1702
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1703
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1704
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1705
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1706
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1707
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1708
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1709
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1710
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1711
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1712
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1713
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1714
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1715
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1716
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1717
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1718
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1719
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1720
- azimuth?: import("csstype").Property.Azimuth | undefined;
1721
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
1722
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
1723
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
1724
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1725
- boxLines?: import("csstype").Property.BoxLines | undefined;
1726
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1727
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
1728
- boxPack?: import("csstype").Property.BoxPack | undefined;
1729
- clip?: import("csstype").Property.Clip | undefined;
1730
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1731
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1732
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1733
- imeMode?: import("csstype").Property.ImeMode | undefined;
1734
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1735
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1736
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1737
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1738
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1739
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1740
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1741
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1742
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1743
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1744
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1745
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1746
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1747
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1748
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1749
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1750
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1751
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1752
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1753
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1754
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1755
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1756
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1757
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1758
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1759
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1760
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1761
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1762
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1763
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1764
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1765
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1766
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1767
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1768
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1769
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1770
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1771
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1772
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1773
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1774
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1775
- MozOpacity?: import("csstype").Property.Opacity | undefined;
1776
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1777
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1778
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1779
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1780
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1781
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1782
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1783
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1784
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1785
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1786
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1787
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1788
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1789
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1790
- msImeMode?: import("csstype").Property.ImeMode | undefined;
1791
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1792
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1793
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1794
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1795
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1796
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1797
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
1798
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1799
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1800
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1801
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
1802
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1803
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1804
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1805
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1806
- OTransform?: import("csstype").Property.Transform | undefined;
1807
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1808
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1809
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1810
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1811
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1812
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1813
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1814
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1815
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1816
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1817
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1818
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1819
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1820
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1821
- WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1822
- WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1823
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1824
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1825
- clipRule?: import("csstype").Property.ClipRule | undefined;
1826
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1827
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
1828
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1829
- fill?: import("csstype").Property.Fill | undefined;
1830
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1831
- fillRule?: import("csstype").Property.FillRule | undefined;
1832
- floodColor?: import("csstype").Property.FloodColor | undefined;
1833
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1834
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1835
- lightingColor?: import("csstype").Property.LightingColor | undefined;
1836
- marker?: import("csstype").Property.Marker | undefined;
1837
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1838
- markerMid?: import("csstype").Property.MarkerMid | undefined;
1839
- markerStart?: import("csstype").Property.MarkerStart | undefined;
1840
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1841
- stopColor?: import("csstype").Property.StopColor | undefined;
1842
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1843
- stroke?: import("csstype").Property.Stroke | undefined;
1844
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1845
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1846
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1847
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1848
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1849
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1850
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1851
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
1852
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1853
249
  };
1854
250
  '& .M4LModal-iconCloseHeader': {};
1855
251
  };
252
+ '& .M4LModal-windowContent': {
253
+ [x: string]: string | {
254
+ padding: string;
255
+ };
256
+ padding: string;
257
+ width: string;
258
+ height: string;
259
+ display: string;
260
+ flexDirection: string;
261
+ flex: string;
262
+ overflow: string;
263
+ };
1856
264
  };
1857
- "& .react-resizable": {
265
+ '& .react-resizable': {
1858
266
  display: string;
1859
267
  flexDirection: string;
1860
268
  justifyContent: string;
1861
269
  alignItems: string;
1862
- "& .custom-handle-nw": {
1863
- position: string;
1864
- top: string;
1865
- left: string;
1866
- };
1867
- "& .M4LIcon-root": {
1868
- "& .M4LIcon-icon": {
270
+ '& .M4LIcon-root': {
271
+ '& .M4LIcon-icon': {
1869
272
  background: string;
1870
273
  boxShadow: string;
1871
274
  };