@sinco/react 1.0.12 → 1.0.13-rc.1
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 +148 -32
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -9540,19 +9540,157 @@ const components = {
|
|
|
9540
9540
|
height: 30
|
|
9541
9541
|
},
|
|
9542
9542
|
root: {
|
|
9543
|
-
height: "inherit",
|
|
9544
9543
|
borderRadius: 4,
|
|
9544
|
+
"&.MuiChip-filled.MuiChip-colorPrimary": {
|
|
9545
|
+
color: "#101840de",
|
|
9546
|
+
backgroundColor: "#E4ECF4",
|
|
9547
|
+
"&:hover": {
|
|
9548
|
+
backgroundColor: "#BCD0E3"
|
|
9549
|
+
},
|
|
9550
|
+
".MuiChip-deleteIcon": {
|
|
9551
|
+
color: "#90B1D0",
|
|
9552
|
+
"&:hover": {
|
|
9553
|
+
color: "#6392BD"
|
|
9554
|
+
}
|
|
9555
|
+
}
|
|
9556
|
+
},
|
|
9557
|
+
"&.MuiChip-filled.MuiChip-colorSecondary": {
|
|
9558
|
+
color: "#101840de",
|
|
9559
|
+
backgroundColor: "#E0F7FA",
|
|
9560
|
+
"&:hover": {
|
|
9561
|
+
backgroundColor: "#B3EBF2"
|
|
9562
|
+
},
|
|
9563
|
+
".MuiChip-deleteIcon": {
|
|
9564
|
+
color: "#80DEEA",
|
|
9565
|
+
"&:hover": {
|
|
9566
|
+
color: "#4DD0E1"
|
|
9567
|
+
}
|
|
9568
|
+
}
|
|
9569
|
+
},
|
|
9570
|
+
"&.MuiChip-filled.MuiChip-colorError": {
|
|
9571
|
+
color: "#101840de",
|
|
9572
|
+
backgroundColor: "#F9E8E8",
|
|
9573
|
+
"&:hover": {
|
|
9574
|
+
backgroundColor: "#F1C7C7"
|
|
9575
|
+
},
|
|
9576
|
+
".MuiChip-deleteIcon": {
|
|
9577
|
+
color: "#E8A1A1",
|
|
9578
|
+
"&:hover": {
|
|
9579
|
+
color: "#DF7B7B"
|
|
9580
|
+
}
|
|
9581
|
+
}
|
|
9582
|
+
},
|
|
9583
|
+
"&.MuiChip-filled.MuiChip-colorSuccess": {
|
|
9584
|
+
color: "#101840de",
|
|
9585
|
+
backgroundColor: "#F2F9E7",
|
|
9586
|
+
"&:hover": {
|
|
9587
|
+
backgroundColor: "#DDEFC4"
|
|
9588
|
+
},
|
|
9589
|
+
".MuiChip-deleteIcon": {
|
|
9590
|
+
color: "#C7E49D",
|
|
9591
|
+
"&:hover": {
|
|
9592
|
+
color: "#A0D158"
|
|
9593
|
+
}
|
|
9594
|
+
}
|
|
9595
|
+
},
|
|
9596
|
+
"&.MuiChip-filled.MuiChip-colorInfo": {
|
|
9597
|
+
color: "#101840de",
|
|
9598
|
+
backgroundColor: "#E6F3F8",
|
|
9599
|
+
"&:hover": {
|
|
9600
|
+
backgroundColor: "#C0E2EE"
|
|
9601
|
+
},
|
|
9602
|
+
".MuiChip-deleteIcon": {
|
|
9603
|
+
color: "#96CFE2",
|
|
9604
|
+
"&:hover": {
|
|
9605
|
+
color: "#6CBCD6"
|
|
9606
|
+
}
|
|
9607
|
+
}
|
|
9608
|
+
},
|
|
9609
|
+
"&.MuiChip-filled.MuiChip-colorWarning": {
|
|
9610
|
+
color: "#101840de",
|
|
9611
|
+
backgroundColor: "#FFF0E0",
|
|
9612
|
+
"&:hover": {
|
|
9613
|
+
backgroundColor: "#FEDAB3"
|
|
9614
|
+
},
|
|
9615
|
+
".MuiChip-deleteIcon": {
|
|
9616
|
+
color: "#FDC280",
|
|
9617
|
+
"&:hover": {
|
|
9618
|
+
color: "#FCAA4D"
|
|
9619
|
+
}
|
|
9620
|
+
}
|
|
9621
|
+
},
|
|
9622
|
+
//////
|
|
9623
|
+
"&.MuiChip-outlined.MuiChip-colorPrimary": {
|
|
9624
|
+
color: "#2063A0",
|
|
9625
|
+
border: "solid 1px #90B1D0",
|
|
9626
|
+
".MuiChip-deleteIcon": {
|
|
9627
|
+
color: "#90B1D0",
|
|
9628
|
+
"&:hover": {
|
|
9629
|
+
color: "#6392BD"
|
|
9630
|
+
}
|
|
9631
|
+
}
|
|
9632
|
+
},
|
|
9633
|
+
"&.MuiChip-outlined.MuiChip-colorSecondary": {
|
|
9634
|
+
color: "#00BCD4",
|
|
9635
|
+
border: "solid 1px #80DEEA",
|
|
9636
|
+
".MuiChip-deleteIcon": {
|
|
9637
|
+
color: "#80DEEA",
|
|
9638
|
+
"&:hover": {
|
|
9639
|
+
color: "#80DEEA"
|
|
9640
|
+
}
|
|
9641
|
+
}
|
|
9642
|
+
},
|
|
9643
|
+
"&.MuiChip-outlined.MuiChip-colorError": {
|
|
9644
|
+
color: "#D14343",
|
|
9645
|
+
border: "solid 1px #E8A1A1",
|
|
9646
|
+
".MuiChip-deleteIcon": {
|
|
9647
|
+
color: "#E8A1A1",
|
|
9648
|
+
"&:hover": {
|
|
9649
|
+
color: "#DF7B7B"
|
|
9650
|
+
}
|
|
9651
|
+
}
|
|
9652
|
+
},
|
|
9653
|
+
"&.MuiChip-outlined.MuiChip-colorSuccess": {
|
|
9654
|
+
color: "#8FC93A",
|
|
9655
|
+
border: "solid 1px #C7E49D",
|
|
9656
|
+
".MuiChip-deleteIcon": {
|
|
9657
|
+
color: "#C7E49D",
|
|
9658
|
+
"&:hover": {
|
|
9659
|
+
color: "#B1D975"
|
|
9660
|
+
}
|
|
9661
|
+
}
|
|
9662
|
+
},
|
|
9663
|
+
"&.MuiChip-outlined.MuiChip-colorInfo": {
|
|
9664
|
+
color: "#2D9FC5",
|
|
9665
|
+
border: "solid 1px #96CFE2",
|
|
9666
|
+
".MuiChip-deleteIcon": {
|
|
9667
|
+
color: "#96CFE2",
|
|
9668
|
+
"&:hover": {
|
|
9669
|
+
color: "#6CBCD6s"
|
|
9670
|
+
}
|
|
9671
|
+
}
|
|
9672
|
+
},
|
|
9673
|
+
"&.MuiChip-outlined.MuiChip-colorWarning": {
|
|
9674
|
+
color: "#FB8500",
|
|
9675
|
+
border: "solid 1px #FDC280",
|
|
9676
|
+
".MuiChip-deleteIcon": {
|
|
9677
|
+
color: "#FDC280",
|
|
9678
|
+
"&:hover": {
|
|
9679
|
+
color: "#FCAA4D"
|
|
9680
|
+
}
|
|
9681
|
+
}
|
|
9682
|
+
},
|
|
9545
9683
|
".MuiChip-deleteIconXsmall": {
|
|
9546
9684
|
height: 12,
|
|
9547
9685
|
width: 12
|
|
9548
9686
|
},
|
|
9549
9687
|
".MuiChip-deleteIconSmall": {
|
|
9550
9688
|
height: 16,
|
|
9551
|
-
|
|
9689
|
+
width: 16
|
|
9552
9690
|
},
|
|
9553
9691
|
".MuiChip-deleteIconMedium": {
|
|
9554
9692
|
height: 20,
|
|
9555
|
-
|
|
9693
|
+
width: 20
|
|
9556
9694
|
}
|
|
9557
9695
|
}
|
|
9558
9696
|
}
|
|
@@ -9577,35 +9715,16 @@ const components = {
|
|
|
9577
9715
|
},
|
|
9578
9716
|
MuiButton: {
|
|
9579
9717
|
styleOverrides: {
|
|
9580
|
-
root: {
|
|
9581
|
-
alignItems: "center"
|
|
9582
|
-
},
|
|
9583
|
-
iconSizeSmall: {
|
|
9584
|
-
height: 14,
|
|
9585
|
-
width: 14
|
|
9586
|
-
},
|
|
9587
|
-
iconSizeMedium: {
|
|
9588
|
-
height: 18,
|
|
9589
|
-
width: 18
|
|
9590
|
-
},
|
|
9591
|
-
iconSizeLarge: {
|
|
9592
|
-
height: 20,
|
|
9593
|
-
width: 20
|
|
9594
|
-
},
|
|
9595
9718
|
sizeSmall: {
|
|
9596
9719
|
height: 26,
|
|
9597
|
-
".MuiButton-iconSizeSmall": {
|
|
9598
|
-
height: 14,
|
|
9599
|
-
width: 14,
|
|
9600
|
-
".MuiSvgIcon-fontSizeMedium": {
|
|
9601
|
-
height: 18,
|
|
9602
|
-
width: 18
|
|
9603
|
-
}
|
|
9604
|
-
},
|
|
9605
9720
|
".MuiSvgIcon-fontSizeSmall": {
|
|
9606
9721
|
height: 16,
|
|
9607
9722
|
width: 16
|
|
9608
9723
|
},
|
|
9724
|
+
".MuiSvgIcon-fontSizeMedium": {
|
|
9725
|
+
height: 18,
|
|
9726
|
+
width: 18
|
|
9727
|
+
},
|
|
9609
9728
|
".MuiSvgIcon-fontSizeLarge": {
|
|
9610
9729
|
height: 20,
|
|
9611
9730
|
width: 20
|
|
@@ -9613,12 +9732,9 @@ const components = {
|
|
|
9613
9732
|
},
|
|
9614
9733
|
sizeMedium: {
|
|
9615
9734
|
height: 32,
|
|
9616
|
-
".
|
|
9617
|
-
|
|
9618
|
-
|
|
9619
|
-
height: 16,
|
|
9620
|
-
width: 16
|
|
9621
|
-
}
|
|
9735
|
+
".MuiSvgIcon-fontSizeSmall": {
|
|
9736
|
+
height: 18,
|
|
9737
|
+
width: 18
|
|
9622
9738
|
},
|
|
9623
9739
|
".MuiSvgIcon-fontSizeMedium": {
|
|
9624
9740
|
height: 18,
|