@surveycake/rc 3.0.0-alpha.45 → 3.0.0-alpha.46
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/CHANGELOG.md +7 -0
- package/dist/V2/Select/Select.stories.d.ts +1 -1
- package/dist/rc.cjs.development.js +7 -5
- package/dist/rc.cjs.development.js.map +1 -1
- package/dist/rc.cjs.production.min.js +1 -1
- package/dist/rc.cjs.production.min.js.map +1 -1
- package/dist/rc.esm.js +7 -5
- package/dist/rc.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [3.0.0-alpha.46](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.45...v3.0.0-alpha.46) (2022-04-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* modified Customized Select ([c4d5858](https://fox.25sprout.com/surveycake/sdk/rc/commit/c4d5858b055b5addd84c390db4c254aa8b2bce6e))
|
|
11
|
+
|
|
5
12
|
## [3.0.0-alpha.45](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.44...v3.0.0-alpha.45) (2022-04-07)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -801,18 +801,20 @@ var MuiSelect = {
|
|
|
801
801
|
color: core.palette.grey[700]
|
|
802
802
|
}),
|
|
803
803
|
select: {
|
|
804
|
-
'
|
|
804
|
+
'.Mui-focused &': {
|
|
805
805
|
backgroundColor: core.palette.common.white,
|
|
806
806
|
borderRadius: 4
|
|
807
807
|
}
|
|
808
808
|
},
|
|
809
809
|
outlined: {
|
|
810
|
-
padding: "9px 32px 9px
|
|
810
|
+
padding: "9px 32px 9px 8px"
|
|
811
811
|
},
|
|
812
812
|
icon: {
|
|
813
|
-
color: core.palette.grey[
|
|
814
|
-
|
|
815
|
-
|
|
813
|
+
color: core.palette.grey[500],
|
|
814
|
+
top: 'calc(50% - 10px)',
|
|
815
|
+
'.Mui-focused &': {
|
|
816
|
+
color: core.palette.primary.main
|
|
817
|
+
}
|
|
816
818
|
}
|
|
817
819
|
};
|
|
818
820
|
|