@m4l/graphics 0.1.5 → 0.1.7
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/contexts/HostThemeContext/index.js +0 -1
- package/contexts/LocalesContext/index.js +0 -2
- package/package.json +1 -1
- package/theme/overrides/Accordion.d.ts +4 -7
- package/theme/overrides/ControlLabel.d.ts +4 -7
- package/theme/overrides/DataGrid.d.ts +8 -14
- package/theme/overrides/Input.d.ts +8 -14
- package/theme/overrides/LoadingButton.d.ts +4 -7
- package/theme/overrides/Table.d.ts +16 -28
- package/theme/overrides/Tabs.d.ts +4 -7
|
@@ -28,7 +28,6 @@ function HostThemeProvider(props) {
|
|
|
28
28
|
return theme;
|
|
29
29
|
}, [finalThemeOptions]);
|
|
30
30
|
const onUpdateOverrides = useCallback((newThemeOptions) => {
|
|
31
|
-
console.debug("Emit HostThemeProvider", newThemeOptions);
|
|
32
31
|
setFinalThemeOptions(newThemeOptions);
|
|
33
32
|
}, []);
|
|
34
33
|
useEffect(() => {
|
|
@@ -33,11 +33,9 @@ function LocalesProvider({
|
|
|
33
33
|
}], []);
|
|
34
34
|
const [currentLang, setCurrentLang] = useState(LANGS.find((_lang) => _lang.value === langStorage) || LANGS[0]);
|
|
35
35
|
const onChangeLang = (newlang) => {
|
|
36
|
-
console.log("onChangeLang", newlang);
|
|
37
36
|
setLangStorage(newlang);
|
|
38
37
|
setCurrentLang(LANGS.find((_lang) => _lang.value === newlang) || LANGS[0]);
|
|
39
38
|
};
|
|
40
|
-
console.log("Render LocalesProvider", langStorage);
|
|
41
39
|
return /* @__PURE__ */ jsx(LocalesContext.Provider, {
|
|
42
40
|
value: {
|
|
43
41
|
currentLang,
|
package/package.json
CHANGED
|
@@ -73,6 +73,7 @@ export default function Accordion(theme: Theme): {
|
|
|
73
73
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
74
74
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
75
75
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
76
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
76
77
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
77
78
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
78
79
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -268,6 +269,8 @@ export default function Accordion(theme: Theme): {
|
|
|
268
269
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
269
270
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
270
271
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
272
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
273
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
271
274
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
272
275
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
273
276
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -385,7 +388,6 @@ export default function Accordion(theme: Theme): {
|
|
|
385
388
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
386
389
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
387
390
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
388
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
389
391
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
390
392
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
391
393
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -492,7 +494,6 @@ export default function Accordion(theme: Theme): {
|
|
|
492
494
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
493
495
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
494
496
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
495
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
496
497
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
497
498
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
498
499
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -526,7 +527,6 @@ export default function Accordion(theme: Theme): {
|
|
|
526
527
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
527
528
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
528
529
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
529
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
530
530
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
531
531
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
532
532
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -547,7 +547,6 @@ export default function Accordion(theme: Theme): {
|
|
|
547
547
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
548
548
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
549
549
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
550
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
551
550
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
552
551
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
553
552
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -570,6 +569,7 @@ export default function Accordion(theme: Theme): {
|
|
|
570
569
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
571
570
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
572
571
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
572
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
573
573
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
574
574
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
575
575
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -619,7 +619,6 @@ export default function Accordion(theme: Theme): {
|
|
|
619
619
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
620
620
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
621
621
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
622
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
623
622
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
624
623
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
625
624
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -748,7 +747,6 @@ export default function Accordion(theme: Theme): {
|
|
|
748
747
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
749
748
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
750
749
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
751
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
752
750
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
753
751
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
754
752
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -795,7 +793,6 @@ export default function Accordion(theme: Theme): {
|
|
|
795
793
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
796
794
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
797
795
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
798
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
799
796
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
800
797
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
801
798
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -10,6 +10,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
10
10
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
11
11
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
12
12
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
13
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
13
14
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
14
15
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
15
16
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -205,6 +206,8 @@ export default function ControlLabel(theme: Theme): {
|
|
|
205
206
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
206
207
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
207
208
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
209
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
210
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
208
211
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
209
212
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
210
213
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -322,7 +325,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
322
325
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
323
326
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
324
327
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
325
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
326
328
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
327
329
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
328
330
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -430,7 +432,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
430
432
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
431
433
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
432
434
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
433
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
434
435
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
435
436
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
436
437
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -464,7 +465,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
464
465
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
465
466
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
466
467
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
467
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
468
468
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
469
469
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
470
470
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -485,7 +485,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
485
485
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
486
486
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
487
487
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
488
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
489
488
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
490
489
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
491
490
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -508,6 +507,7 @@ export default function ControlLabel(theme: Theme): {
|
|
|
508
507
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
509
508
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
510
509
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
510
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
511
511
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
512
512
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
513
513
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -557,7 +557,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
557
557
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
558
558
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
559
559
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
560
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
561
560
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
562
561
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
563
562
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -686,7 +685,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
686
685
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
687
686
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
688
687
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
689
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
690
688
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
691
689
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
692
690
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -733,7 +731,6 @@ export default function ControlLabel(theme: Theme): {
|
|
|
733
731
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
734
732
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
735
733
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
736
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
737
734
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
738
735
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
739
736
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -46,6 +46,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
46
46
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
47
47
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
48
48
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
49
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
49
50
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
50
51
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
51
52
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -241,6 +242,8 @@ export default function DataGrid(theme: Theme): {
|
|
|
241
242
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
242
243
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
243
244
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
245
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
246
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
244
247
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
245
248
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
246
249
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -358,7 +361,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
358
361
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
359
362
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
360
363
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
361
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
362
364
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
363
365
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
364
366
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -466,7 +468,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
466
468
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
467
469
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
468
470
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
469
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
470
471
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
471
472
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
472
473
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -500,7 +501,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
500
501
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
501
502
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
502
503
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
503
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
504
504
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
505
505
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
506
506
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -521,7 +521,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
521
521
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
522
522
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
523
523
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
524
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
525
524
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
526
525
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
527
526
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -544,6 +543,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
544
543
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
545
544
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
546
545
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
546
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
547
547
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
548
548
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
549
549
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -593,7 +593,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
593
593
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
594
594
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
595
595
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
596
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
597
596
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
598
597
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
599
598
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -722,7 +721,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
722
721
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
723
722
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
724
723
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
725
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
726
724
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
727
725
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
728
726
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -769,7 +767,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
769
767
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
770
768
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
771
769
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
772
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
773
770
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
774
771
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
775
772
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -858,6 +855,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
858
855
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
859
856
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
860
857
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
858
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
861
859
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
862
860
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
863
861
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1052,6 +1050,8 @@ export default function DataGrid(theme: Theme): {
|
|
|
1052
1050
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1053
1051
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1054
1052
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1053
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1054
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1055
1055
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1056
1056
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1057
1057
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -1169,7 +1169,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1169
1169
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1170
1170
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1171
1171
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1172
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1173
1172
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1174
1173
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1175
1174
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -1275,7 +1274,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1275
1274
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1276
1275
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1277
1276
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1278
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1279
1277
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1280
1278
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1281
1279
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1309,7 +1307,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1309
1307
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
1310
1308
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
1311
1309
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
1312
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1313
1310
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
1314
1311
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
1315
1312
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -1330,7 +1327,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1330
1327
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1331
1328
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1332
1329
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
1333
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
1334
1330
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1335
1331
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
1336
1332
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -1353,6 +1349,7 @@ export default function DataGrid(theme: Theme): {
|
|
|
1353
1349
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
1354
1350
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
1355
1351
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
1352
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1356
1353
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
1357
1354
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1358
1355
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -1402,7 +1399,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1402
1399
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1403
1400
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1404
1401
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1405
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1406
1402
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1407
1403
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1408
1404
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1531,7 +1527,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1531
1527
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1532
1528
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
1533
1529
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
1534
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1535
1530
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1536
1531
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1537
1532
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -1578,7 +1573,6 @@ export default function DataGrid(theme: Theme): {
|
|
|
1578
1573
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1579
1574
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1580
1575
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1581
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1582
1576
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1583
1577
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1584
1578
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -27,6 +27,7 @@ export default function Input(theme: Theme): {
|
|
|
27
27
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
28
28
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
29
29
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
30
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
30
31
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
31
32
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
32
33
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -222,6 +223,8 @@ export default function Input(theme: Theme): {
|
|
|
222
223
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
223
224
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
224
225
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
226
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
227
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
225
228
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
226
229
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
227
230
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -339,7 +342,6 @@ export default function Input(theme: Theme): {
|
|
|
339
342
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
340
343
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
341
344
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
342
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
343
345
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
344
346
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
345
347
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -445,7 +447,6 @@ export default function Input(theme: Theme): {
|
|
|
445
447
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
446
448
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
447
449
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
448
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
449
450
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
450
451
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
451
452
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -479,7 +480,6 @@ export default function Input(theme: Theme): {
|
|
|
479
480
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
480
481
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
481
482
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
482
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
483
483
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
484
484
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
485
485
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -500,7 +500,6 @@ export default function Input(theme: Theme): {
|
|
|
500
500
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
501
501
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
502
502
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
503
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
504
503
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
505
504
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
506
505
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -523,6 +522,7 @@ export default function Input(theme: Theme): {
|
|
|
523
522
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
524
523
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
525
524
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
525
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
526
526
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
527
527
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
528
528
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -572,7 +572,6 @@ export default function Input(theme: Theme): {
|
|
|
572
572
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
573
573
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
574
574
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
575
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
576
575
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
577
576
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
578
577
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -701,7 +700,6 @@ export default function Input(theme: Theme): {
|
|
|
701
700
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
702
701
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
703
702
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
704
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
705
703
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
706
704
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
707
705
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -748,7 +746,6 @@ export default function Input(theme: Theme): {
|
|
|
748
746
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
749
747
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
750
748
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
751
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
752
749
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
753
750
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
754
751
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -876,6 +873,7 @@ export default function Input(theme: Theme): {
|
|
|
876
873
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
877
874
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
878
875
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
876
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
879
877
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
880
878
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
881
879
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1070,6 +1068,8 @@ export default function Input(theme: Theme): {
|
|
|
1070
1068
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1071
1069
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1072
1070
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1071
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1072
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1073
1073
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1074
1074
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1075
1075
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -1187,7 +1187,6 @@ export default function Input(theme: Theme): {
|
|
|
1187
1187
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1188
1188
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1189
1189
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1190
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1191
1190
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1192
1191
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1193
1192
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -1295,7 +1294,6 @@ export default function Input(theme: Theme): {
|
|
|
1295
1294
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1296
1295
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1297
1296
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1298
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1299
1297
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1300
1298
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1301
1299
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1329,7 +1327,6 @@ export default function Input(theme: Theme): {
|
|
|
1329
1327
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
1330
1328
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
1331
1329
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
1332
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1333
1330
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
1334
1331
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
1335
1332
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -1350,7 +1347,6 @@ export default function Input(theme: Theme): {
|
|
|
1350
1347
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1351
1348
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1352
1349
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
1353
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
1354
1350
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1355
1351
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
1356
1352
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -1373,6 +1369,7 @@ export default function Input(theme: Theme): {
|
|
|
1373
1369
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
1374
1370
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
1375
1371
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
1372
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1376
1373
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
1377
1374
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1378
1375
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -1422,7 +1419,6 @@ export default function Input(theme: Theme): {
|
|
|
1422
1419
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1423
1420
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1424
1421
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1425
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1426
1422
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1427
1423
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1428
1424
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1551,7 +1547,6 @@ export default function Input(theme: Theme): {
|
|
|
1551
1547
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1552
1548
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
1553
1549
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
1554
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1555
1550
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1556
1551
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1557
1552
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -1598,7 +1593,6 @@ export default function Input(theme: Theme): {
|
|
|
1598
1593
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1599
1594
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1600
1595
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1601
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1602
1596
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1603
1597
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1604
1598
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -13,6 +13,7 @@ export default function LoadingButton(theme: Theme): {
|
|
|
13
13
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
14
14
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
15
15
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
16
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
16
17
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
17
18
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
18
19
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -208,6 +209,8 @@ export default function LoadingButton(theme: Theme): {
|
|
|
208
209
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
209
210
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
210
211
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
212
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
213
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
211
214
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
212
215
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
213
216
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -325,7 +328,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
325
328
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
326
329
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
327
330
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
328
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
329
331
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
330
332
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
331
333
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -433,7 +435,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
433
435
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
434
436
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
435
437
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
436
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
437
438
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
438
439
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
439
440
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -467,7 +468,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
467
468
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
468
469
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
469
470
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
470
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
471
471
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
472
472
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
473
473
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -488,7 +488,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
488
488
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
489
489
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
490
490
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
491
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
492
491
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
493
492
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
494
493
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -511,6 +510,7 @@ export default function LoadingButton(theme: Theme): {
|
|
|
511
510
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
512
511
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
513
512
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
513
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
514
514
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
515
515
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
516
516
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -560,7 +560,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
560
560
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
561
561
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
562
562
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
563
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
564
563
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
565
564
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
566
565
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -689,7 +688,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
689
688
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
690
689
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
691
690
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
692
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
693
691
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
694
692
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
695
693
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -736,7 +734,6 @@ export default function LoadingButton(theme: Theme): {
|
|
|
736
734
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
737
735
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
738
736
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
739
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
740
737
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
741
738
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
742
739
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -57,6 +57,7 @@ export default function Table(theme: Theme): {
|
|
|
57
57
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
58
58
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
59
59
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
60
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
60
61
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
61
62
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
62
63
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -252,6 +253,8 @@ export default function Table(theme: Theme): {
|
|
|
252
253
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
253
254
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
254
255
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
256
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
257
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
255
258
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
256
259
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
257
260
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -369,7 +372,6 @@ export default function Table(theme: Theme): {
|
|
|
369
372
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
370
373
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
371
374
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
372
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
373
375
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
374
376
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
375
377
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -477,7 +479,6 @@ export default function Table(theme: Theme): {
|
|
|
477
479
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
478
480
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
479
481
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
480
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
481
482
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
482
483
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
483
484
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -511,7 +512,6 @@ export default function Table(theme: Theme): {
|
|
|
511
512
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
512
513
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
513
514
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
514
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
515
515
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
516
516
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
517
517
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -532,7 +532,6 @@ export default function Table(theme: Theme): {
|
|
|
532
532
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
533
533
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
534
534
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
535
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
536
535
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
537
536
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
538
537
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -555,6 +554,7 @@ export default function Table(theme: Theme): {
|
|
|
555
554
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
556
555
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
557
556
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
557
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
558
558
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
559
559
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
560
560
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -604,7 +604,6 @@ export default function Table(theme: Theme): {
|
|
|
604
604
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
605
605
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
606
606
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
607
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
608
607
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
609
608
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
610
609
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -733,7 +732,6 @@ export default function Table(theme: Theme): {
|
|
|
733
732
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
734
733
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
735
734
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
736
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
737
735
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
738
736
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
739
737
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -780,7 +778,6 @@ export default function Table(theme: Theme): {
|
|
|
780
778
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
781
779
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
782
780
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
783
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
784
781
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
785
782
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
786
783
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -852,6 +849,7 @@ export default function Table(theme: Theme): {
|
|
|
852
849
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
853
850
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
854
851
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
852
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
855
853
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
856
854
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
857
855
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1047,6 +1045,8 @@ export default function Table(theme: Theme): {
|
|
|
1047
1045
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1048
1046
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1049
1047
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1048
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1049
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1050
1050
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1051
1051
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1052
1052
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -1164,7 +1164,6 @@ export default function Table(theme: Theme): {
|
|
|
1164
1164
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1165
1165
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1166
1166
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1167
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1168
1167
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1169
1168
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1170
1169
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -1272,7 +1271,6 @@ export default function Table(theme: Theme): {
|
|
|
1272
1271
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1273
1272
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1274
1273
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1275
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1276
1274
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1277
1275
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1278
1276
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1306,7 +1304,6 @@ export default function Table(theme: Theme): {
|
|
|
1306
1304
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
1307
1305
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
1308
1306
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
1309
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1310
1307
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
1311
1308
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
1312
1309
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -1327,7 +1324,6 @@ export default function Table(theme: Theme): {
|
|
|
1327
1324
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1328
1325
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1329
1326
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
1330
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
1331
1327
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1332
1328
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
1333
1329
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -1350,6 +1346,7 @@ export default function Table(theme: Theme): {
|
|
|
1350
1346
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
1351
1347
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
1352
1348
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
1349
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1353
1350
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
1354
1351
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1355
1352
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -1399,7 +1396,6 @@ export default function Table(theme: Theme): {
|
|
|
1399
1396
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1400
1397
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1401
1398
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1402
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1403
1399
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1404
1400
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1405
1401
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1528,7 +1524,6 @@ export default function Table(theme: Theme): {
|
|
|
1528
1524
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1529
1525
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
1530
1526
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
1531
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1532
1527
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1533
1528
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1534
1529
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -1575,7 +1570,6 @@ export default function Table(theme: Theme): {
|
|
|
1575
1570
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1576
1571
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1577
1572
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1578
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1579
1573
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1580
1574
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1581
1575
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -1652,6 +1646,7 @@ export default function Table(theme: Theme): {
|
|
|
1652
1646
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
1653
1647
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1654
1648
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
1649
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
1655
1650
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1656
1651
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1657
1652
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1847,6 +1842,8 @@ export default function Table(theme: Theme): {
|
|
|
1847
1842
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1848
1843
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1849
1844
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1845
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1846
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1850
1847
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1851
1848
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1852
1849
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -1964,7 +1961,6 @@ export default function Table(theme: Theme): {
|
|
|
1964
1961
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1965
1962
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1966
1963
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1967
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1968
1964
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1969
1965
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1970
1966
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -2072,7 +2068,6 @@ export default function Table(theme: Theme): {
|
|
|
2072
2068
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
2073
2069
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2074
2070
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2075
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
2076
2071
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
2077
2072
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
2078
2073
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2106,7 +2101,6 @@ export default function Table(theme: Theme): {
|
|
|
2106
2101
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
2107
2102
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
2108
2103
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
2109
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
2110
2104
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
2111
2105
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
2112
2106
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -2127,7 +2121,6 @@ export default function Table(theme: Theme): {
|
|
|
2127
2121
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
2128
2122
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
2129
2123
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
2130
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
2131
2124
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2132
2125
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
2133
2126
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -2150,6 +2143,7 @@ export default function Table(theme: Theme): {
|
|
|
2150
2143
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
2151
2144
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
2152
2145
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
2146
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
2153
2147
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
2154
2148
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
2155
2149
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -2199,7 +2193,6 @@ export default function Table(theme: Theme): {
|
|
|
2199
2193
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
2200
2194
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2201
2195
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2202
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
2203
2196
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
2204
2197
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
2205
2198
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2328,7 +2321,6 @@ export default function Table(theme: Theme): {
|
|
|
2328
2321
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
2329
2322
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
2330
2323
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
2331
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
2332
2324
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
2333
2325
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
2334
2326
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -2375,7 +2367,6 @@ export default function Table(theme: Theme): {
|
|
|
2375
2367
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2376
2368
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
2377
2369
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2378
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
2379
2370
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
2380
2371
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
2381
2372
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -2448,6 +2439,7 @@ export default function Table(theme: Theme): {
|
|
|
2448
2439
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
2449
2440
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
2450
2441
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
2442
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
2451
2443
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
2452
2444
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
2453
2445
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -2643,6 +2635,8 @@ export default function Table(theme: Theme): {
|
|
|
2643
2635
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
2644
2636
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
2645
2637
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
2638
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
2639
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
2646
2640
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
2647
2641
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
2648
2642
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -2760,7 +2754,6 @@ export default function Table(theme: Theme): {
|
|
|
2760
2754
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
2761
2755
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2762
2756
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
2763
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
2764
2757
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
2765
2758
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
2766
2759
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -2868,7 +2861,6 @@ export default function Table(theme: Theme): {
|
|
|
2868
2861
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
2869
2862
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2870
2863
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2871
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
2872
2864
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
2873
2865
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
2874
2866
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -2902,7 +2894,6 @@ export default function Table(theme: Theme): {
|
|
|
2902
2894
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
2903
2895
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
2904
2896
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
2905
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
2906
2897
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
2907
2898
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
2908
2899
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -2923,7 +2914,6 @@ export default function Table(theme: Theme): {
|
|
|
2923
2914
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
2924
2915
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
2925
2916
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
2926
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
2927
2917
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2928
2918
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
2929
2919
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -2946,6 +2936,7 @@ export default function Table(theme: Theme): {
|
|
|
2946
2936
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
2947
2937
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
2948
2938
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
2939
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
2949
2940
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
2950
2941
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
2951
2942
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -2995,7 +2986,6 @@ export default function Table(theme: Theme): {
|
|
|
2995
2986
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
2996
2987
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
2997
2988
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
2998
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
2999
2989
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
3000
2990
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
3001
2991
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -3124,7 +3114,6 @@ export default function Table(theme: Theme): {
|
|
|
3124
3114
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
3125
3115
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
3126
3116
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
3127
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
3128
3117
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
3129
3118
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
3130
3119
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -3171,7 +3160,6 @@ export default function Table(theme: Theme): {
|
|
|
3171
3160
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
3172
3161
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
3173
3162
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
3174
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
3175
3163
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
3176
3164
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
3177
3165
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -24,6 +24,7 @@ export default function Tabs(theme: Theme): {
|
|
|
24
24
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
25
25
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
26
26
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
27
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
27
28
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
28
29
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
29
30
|
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -219,6 +220,8 @@ export default function Tabs(theme: Theme): {
|
|
|
219
220
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
220
221
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
221
222
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
223
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
224
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
222
225
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
223
226
|
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
224
227
|
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
@@ -336,7 +339,6 @@ export default function Tabs(theme: Theme): {
|
|
|
336
339
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
337
340
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
338
341
|
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
339
|
-
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
340
342
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
341
343
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
342
344
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
@@ -444,7 +446,6 @@ export default function Tabs(theme: Theme): {
|
|
|
444
446
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
445
447
|
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
446
448
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
447
|
-
MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
448
449
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
449
450
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
450
451
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -478,7 +479,6 @@ export default function Tabs(theme: Theme): {
|
|
|
478
479
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
479
480
|
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
480
481
|
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
481
|
-
msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
482
482
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
483
483
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
484
484
|
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
@@ -499,7 +499,6 @@ export default function Tabs(theme: Theme): {
|
|
|
499
499
|
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
500
500
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
501
501
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
502
|
-
msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
503
502
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
504
503
|
msOrder?: import("csstype").Property.Order | undefined;
|
|
505
504
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
@@ -522,6 +521,7 @@ export default function Tabs(theme: Theme): {
|
|
|
522
521
|
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
523
522
|
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
524
523
|
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
524
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
525
525
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
526
526
|
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
527
527
|
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -571,7 +571,6 @@ export default function Tabs(theme: Theme): {
|
|
|
571
571
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
572
572
|
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
573
573
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
574
|
-
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
575
574
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
576
575
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
577
576
|
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -700,7 +699,6 @@ export default function Tabs(theme: Theme): {
|
|
|
700
699
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
701
700
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
702
701
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
703
|
-
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
704
702
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
705
703
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
706
704
|
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -747,7 +745,6 @@ export default function Tabs(theme: Theme): {
|
|
|
747
745
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
748
746
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
749
747
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
750
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
751
748
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
752
749
|
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
753
750
|
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|