@sinco/react 1.0.14-rc.8 → 1.0.14-rc.9
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 +7 -26
- package/package.json +1 -1
- package/src/lib/Theme/components.d.ts +0 -10
package/index.js
CHANGED
@@ -10547,7 +10547,7 @@ const components = {
|
|
10547
10547
|
root: {
|
10548
10548
|
boxShadow: "0px 3px 1px -2px rgba(24, 39, 75, 0.20), 0px 2px 2px 0px rgba(24, 39, 75, 0.14), 0px 1px 5px 0px rgba(24, 39, 75, 0.12)",
|
10549
10549
|
"&.MuiBackdrop-root": {
|
10550
|
-
backgroundColor: "#
|
10550
|
+
backgroundColor: "#f0f0f0",
|
10551
10551
|
backdropFilter: "blur(2px) !important"
|
10552
10552
|
}
|
10553
10553
|
}
|
@@ -10574,25 +10574,18 @@ const components = {
|
|
10574
10574
|
},
|
10575
10575
|
MuiCheckbox: {
|
10576
10576
|
variants: [{
|
10577
|
-
props: {
|
10578
|
-
size: "xsmall"
|
10579
|
-
},
|
10580
|
-
style: {
|
10581
|
-
padding: 2
|
10582
|
-
}
|
10583
|
-
}, {
|
10584
10577
|
props: {
|
10585
10578
|
size: "small"
|
10586
10579
|
},
|
10587
10580
|
style: {
|
10588
|
-
padding:
|
10581
|
+
padding: 2
|
10589
10582
|
}
|
10590
10583
|
}, {
|
10591
10584
|
props: {
|
10592
10585
|
size: "medium"
|
10593
10586
|
},
|
10594
10587
|
style: {
|
10595
|
-
padding:
|
10588
|
+
padding: 4
|
10596
10589
|
}
|
10597
10590
|
}],
|
10598
10591
|
defaultProps: {
|
@@ -10600,35 +10593,23 @@ const components = {
|
|
10600
10593
|
}
|
10601
10594
|
},
|
10602
10595
|
MuiChip: {
|
10603
|
-
variants: [{
|
10604
|
-
props: {
|
10605
|
-
size: "xsmall"
|
10606
|
-
},
|
10607
|
-
style: {
|
10608
|
-
height: 16
|
10609
|
-
}
|
10610
|
-
}],
|
10611
10596
|
styleOverrides: {
|
10612
10597
|
sizeSmall: {
|
10613
|
-
height:
|
10598
|
+
height: 16
|
10614
10599
|
},
|
10615
10600
|
sizeMedium: {
|
10616
|
-
height:
|
10601
|
+
height: 24
|
10617
10602
|
},
|
10618
10603
|
root: {
|
10619
10604
|
height: "inherit",
|
10620
10605
|
borderRadius: 4,
|
10621
|
-
".MuiChip-
|
10606
|
+
".MuiChip-deleteIconSmall": {
|
10622
10607
|
height: 12,
|
10623
10608
|
width: 12
|
10624
10609
|
},
|
10625
|
-
".MuiChip-
|
10610
|
+
".MuiChip-deleteIconMedium": {
|
10626
10611
|
height: 16,
|
10627
10612
|
widht: 16
|
10628
|
-
},
|
10629
|
-
".MuiChip-deleteIconMedium": {
|
10630
|
-
height: 20,
|
10631
|
-
widht: 20
|
10632
10613
|
}
|
10633
10614
|
}
|
10634
10615
|
}
|
package/package.json
CHANGED
@@ -1,12 +1,2 @@
|
|
1
1
|
import { Components } from '@mui/material';
|
2
|
-
declare module '@mui/material/Chip' {
|
3
|
-
interface ChipPropsSizeOverrides {
|
4
|
-
xsmall: true;
|
5
|
-
}
|
6
|
-
}
|
7
|
-
declare module "@mui/material/Checkbox" {
|
8
|
-
interface CheckboxPropsSizeOverrides {
|
9
|
-
xsmall: true;
|
10
|
-
}
|
11
|
-
}
|
12
2
|
export declare const components: Components;
|