@m4l/styles 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +392 -383
- package/package.json +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +5 -2
- package/theme/overrides/M4LExtendedComponents/M4LErrorLabel.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LImage.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LImageButton.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LPopover.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LTypography.d.ts +1 -1
- package/theme/overrides/M4LExtendedComponents/M4LanguagePopover.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFCheckbox.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextField.d.ts +1 -1
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +4 -1
- package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
- package/theme/overrides/MUIComponents/CmpDisenoTest.d.ts +1 -1
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
- package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
- package/theme/overrides/MUIComponents/DynamicFilter.d.ts +1 -1
- package/theme/overrides/MUIComponents/Input.d.ts +72 -32
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
- package/theme/overrides/MUIComponents/Table.d.ts +144 -64
- package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { Theme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LButton: (
|
|
2
|
+
export declare const M4LButton: (_theme: Theme) => {
|
|
3
3
|
M4LButton: {
|
|
4
4
|
styleOverrides: {
|
|
5
|
-
|
|
5
|
+
'&.M4LButton-root': {
|
|
6
6
|
test: string;
|
|
7
|
+
'.MuiButton-root': {
|
|
8
|
+
border: string;
|
|
9
|
+
};
|
|
7
10
|
};
|
|
8
11
|
};
|
|
9
12
|
};
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { Theme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LIconButton: (
|
|
2
|
+
export declare const M4LIconButton: (_theme: Theme) => {
|
|
3
3
|
M4LIconButton: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
"&.M4LIconButton-root": {
|
|
6
6
|
test: string;
|
|
7
|
+
'.M4LIcon-root': {
|
|
8
|
+
backgroundColor: string;
|
|
9
|
+
};
|
|
7
10
|
};
|
|
8
11
|
};
|
|
9
12
|
};
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { Theme } from '@mui/material/styles';
|
|
2
|
-
export declare const M4LRHFTextFieldPassword: (
|
|
2
|
+
export declare const M4LRHFTextFieldPassword: (_theme: Theme) => {
|
|
3
3
|
M4LRHFTextFieldPassword: {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
"&.M4LRHFTextFieldPassword-root": {
|
|
6
6
|
".M4LRHFTextField-root .MuiTextField-root": {
|
|
7
7
|
border: string;
|
|
8
8
|
};
|
|
9
|
+
'.MuiInputBase-root': {
|
|
10
|
+
gap: string;
|
|
11
|
+
};
|
|
9
12
|
};
|
|
10
13
|
};
|
|
11
14
|
};
|
|
@@ -153,6 +153,7 @@ export default function Accordion(theme: Theme): {
|
|
|
153
153
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
154
154
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
155
155
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
156
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
156
157
|
clear?: import("csstype").Property.Clear | undefined;
|
|
157
158
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
158
159
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -167,6 +168,12 @@ export default function Accordion(theme: Theme): {
|
|
|
167
168
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
168
169
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
169
170
|
contain?: import("csstype").Property.Contain | undefined;
|
|
171
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
172
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
173
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
174
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
175
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
176
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
170
177
|
content?: import("csstype").Property.Content | undefined;
|
|
171
178
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
172
179
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -188,6 +195,7 @@ export default function Accordion(theme: Theme): {
|
|
|
188
195
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
189
196
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
190
197
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
198
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
191
199
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
192
200
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
193
201
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -198,6 +206,7 @@ export default function Accordion(theme: Theme): {
|
|
|
198
206
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
199
207
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
200
208
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
209
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
201
210
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
202
211
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
203
212
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -217,6 +226,7 @@ export default function Accordion(theme: Theme): {
|
|
|
217
226
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
218
227
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
219
228
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
229
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
220
230
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
221
231
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
222
232
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -224,11 +234,8 @@ export default function Accordion(theme: Theme): {
|
|
|
224
234
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
225
235
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
226
236
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
227
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
228
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
229
237
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
230
238
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
231
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
232
239
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
233
240
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
234
241
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -244,16 +251,15 @@ export default function Accordion(theme: Theme): {
|
|
|
244
251
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
245
252
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
246
253
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
247
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
248
254
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
249
255
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
250
256
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
251
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
252
257
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
253
258
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
254
259
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
255
260
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
256
261
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
262
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
257
263
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
258
264
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
259
265
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -290,6 +296,7 @@ export default function Accordion(theme: Theme): {
|
|
|
290
296
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
291
297
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
292
298
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
299
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
293
300
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
294
301
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
295
302
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -311,23 +318,21 @@ export default function Accordion(theme: Theme): {
|
|
|
311
318
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
312
319
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
313
320
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
314
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
315
321
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
316
322
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
317
323
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
318
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
319
324
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
320
325
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
321
326
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
322
327
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
323
328
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
329
|
+
page?: import("csstype").Property.Page | undefined;
|
|
324
330
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
325
331
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
326
332
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
327
333
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
328
334
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
329
335
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
330
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
331
336
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
332
337
|
position?: import("csstype").Property.Position | undefined;
|
|
333
338
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -341,36 +346,31 @@ export default function Accordion(theme: Theme): {
|
|
|
341
346
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
342
347
|
scale?: import("csstype").Property.Scale | undefined;
|
|
343
348
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
344
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
345
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
346
349
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
347
350
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
348
351
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
349
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
350
352
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
351
353
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
352
354
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
353
355
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
354
356
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
355
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
356
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
357
357
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
358
358
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
359
359
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
360
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
361
360
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
362
361
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
363
362
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
364
363
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
365
364
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
366
365
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
367
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
368
366
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
369
367
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
370
368
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
371
369
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
372
370
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
373
371
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
372
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
373
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
374
374
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
375
375
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
376
376
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -415,6 +415,7 @@ export default function Accordion(theme: Theme): {
|
|
|
415
415
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
416
416
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
417
417
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
418
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
418
419
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
419
420
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
420
421
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -446,8 +447,11 @@ export default function Accordion(theme: Theme): {
|
|
|
446
447
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
447
448
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
448
449
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
450
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
449
451
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
450
452
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
453
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
454
|
+
container?: import("csstype").Property.Container | undefined;
|
|
451
455
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
452
456
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
453
457
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -457,8 +461,13 @@ export default function Accordion(theme: Theme): {
|
|
|
457
461
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
458
462
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
459
463
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
464
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
465
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
466
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
460
467
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
461
468
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
469
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
470
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
462
471
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
463
472
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
464
473
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -467,8 +476,19 @@ export default function Accordion(theme: Theme): {
|
|
|
467
476
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
468
477
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
469
478
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
479
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
480
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
481
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
470
482
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
471
483
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
484
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
485
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
486
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
487
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
488
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
489
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
490
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
491
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
472
492
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
473
493
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
474
494
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -482,6 +502,7 @@ export default function Accordion(theme: Theme): {
|
|
|
482
502
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
483
503
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
484
504
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
505
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
485
506
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
486
507
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
487
508
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -762,7 +783,6 @@ export default function Accordion(theme: Theme): {
|
|
|
762
783
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
763
784
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
764
785
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
765
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
766
786
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
767
787
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
768
788
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -90,6 +90,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
90
90
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
91
91
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
92
92
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
93
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
93
94
|
clear?: import("csstype").Property.Clear | undefined;
|
|
94
95
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
95
96
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -104,6 +105,12 @@ export default function ControlLabel(theme: Theme): {
|
|
|
104
105
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
105
106
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
106
107
|
contain?: import("csstype").Property.Contain | undefined;
|
|
108
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
109
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
110
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
111
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
112
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
113
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
107
114
|
content?: import("csstype").Property.Content | undefined;
|
|
108
115
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
109
116
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -125,6 +132,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
125
132
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
126
133
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
127
134
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
135
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
128
136
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
129
137
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
130
138
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -135,6 +143,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
135
143
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
136
144
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
137
145
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
146
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
138
147
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
139
148
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
140
149
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -154,6 +163,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
154
163
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
155
164
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
156
165
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
166
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
157
167
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
158
168
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
159
169
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -161,11 +171,8 @@ export default function ControlLabel(theme: Theme): {
|
|
|
161
171
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
162
172
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
163
173
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
164
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
165
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
166
174
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
167
175
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
168
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
169
176
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
170
177
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
171
178
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -181,16 +188,15 @@ export default function ControlLabel(theme: Theme): {
|
|
|
181
188
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
182
189
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
183
190
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
184
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
185
191
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
186
192
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
187
193
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
188
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
189
194
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
190
195
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
191
196
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
192
197
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
193
198
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
199
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
194
200
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
195
201
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
196
202
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -227,6 +233,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
227
233
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
228
234
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
229
235
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
236
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
230
237
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
231
238
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
232
239
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -248,23 +255,21 @@ export default function ControlLabel(theme: Theme): {
|
|
|
248
255
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
249
256
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
250
257
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
251
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
252
258
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
253
259
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
254
260
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
255
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
256
261
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
257
262
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
258
263
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
259
264
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
260
265
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
266
|
+
page?: import("csstype").Property.Page | undefined;
|
|
261
267
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
262
268
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
263
269
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
264
270
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
265
271
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
266
272
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
267
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
268
273
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
269
274
|
position?: import("csstype").Property.Position | undefined;
|
|
270
275
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -278,36 +283,31 @@ export default function ControlLabel(theme: Theme): {
|
|
|
278
283
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
279
284
|
scale?: import("csstype").Property.Scale | undefined;
|
|
280
285
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
281
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
282
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
283
286
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
284
287
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
285
288
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
286
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
287
289
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
288
290
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
289
291
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
290
292
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
291
293
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
292
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
293
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
294
294
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
295
295
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
296
296
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
297
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
298
297
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
299
298
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
300
299
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
301
300
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
302
301
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
303
302
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
304
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
305
303
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
306
304
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
307
305
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
308
306
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
309
307
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
310
308
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
309
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
310
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
311
311
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
312
312
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
313
313
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -352,6 +352,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
352
352
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
353
353
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
354
354
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
355
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
355
356
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
356
357
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
357
358
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -383,8 +384,11 @@ export default function ControlLabel(theme: Theme): {
|
|
|
383
384
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
384
385
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
385
386
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
387
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
386
388
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
387
389
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
390
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
391
|
+
container?: import("csstype").Property.Container | undefined;
|
|
388
392
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
389
393
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
390
394
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -394,9 +398,14 @@ export default function ControlLabel(theme: Theme): {
|
|
|
394
398
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
395
399
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
396
400
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
401
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
402
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
403
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
397
404
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
398
405
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
399
406
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
407
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
408
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
400
409
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
401
410
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
402
411
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -405,8 +414,19 @@ export default function ControlLabel(theme: Theme): {
|
|
|
405
414
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
406
415
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
407
416
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
417
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
418
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
419
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
408
420
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
409
421
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
422
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
423
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
424
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
425
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
426
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
427
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
428
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
429
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
410
430
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
411
431
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
412
432
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -420,6 +440,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
420
440
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
421
441
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
422
442
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
443
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
423
444
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
424
445
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
425
446
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -700,7 +721,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
700
721
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
701
722
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
702
723
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
703
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
704
724
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
705
725
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
706
726
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|