@surveycake/rc 3.0.0-alpha.21 → 3.0.0-alpha.22
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
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.
|
|
5
|
+
## [3.0.0-alpha.22](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.20...v3.0.0-alpha.22) (2021-11-30)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Features
|
|
@@ -10,6 +10,19 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
10
10
|
* set letter-spacing and text-transform of Typography to none - surveycake/pm[#5088](https://fox.25sprout.com//undefined/issues/5088) ([b1221cd](https://fox.25sprout.com/surveycake/sdk/rc/commit/b1221cdf28098b7af51ea570874e0e8495bcbd47))
|
|
11
11
|
* show Tooltip without delay when the element is touched - surveycake/pm[#5087](https://fox.25sprout.com//undefined/issues/5087) ([8b1756d](https://fox.25sprout.com/surveycake/sdk/rc/commit/8b1756d9209ad06fdaaa028b4bd690a565132bab))
|
|
12
12
|
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* GroupSelect default background, default height ([76a9eb8](https://fox.25sprout.com/surveycake/sdk/rc/commit/76a9eb8ea7b6bdc42012f19d888a7446fc6470bc))
|
|
17
|
+
|
|
18
|
+
## [3.0.0-alpha.21](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.20...v3.0.0-alpha.21) (2021-11-28)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* set letter-spacing and text-transform of Typography to none - surveycake/pm[#5088](https://fox.25sprout.com/surveycake/pm/-/issues/5088) ([b1221cd](https://fox.25sprout.com/surveycake/sdk/rc/commit/b1221cdf28098b7af51ea570874e0e8495bcbd47))
|
|
24
|
+
* show Tooltip without delay when the element is touched - surveycake/pm[#5087](https://fox.25sprout.com/surveycake/pm/-/issues/5087) ([8b1756d](https://fox.25sprout.com/surveycake/sdk/rc/commit/8b1756d9209ad06fdaaa028b4bd690a565132bab))
|
|
25
|
+
|
|
13
26
|
## [3.0.0-alpha.20](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.19...v3.0.0-alpha.20) (2021-11-26)
|
|
14
27
|
|
|
15
28
|
|
|
@@ -1123,11 +1123,13 @@ Typography.displayName = 'Typography';
|
|
|
1123
1123
|
|
|
1124
1124
|
var useSelectStyle =
|
|
1125
1125
|
/*#__PURE__*/
|
|
1126
|
-
styles$5.makeStyles(function () {
|
|
1126
|
+
styles$5.makeStyles(function (theme) {
|
|
1127
1127
|
return {
|
|
1128
1128
|
select: {
|
|
1129
1129
|
padding: '5px 8px',
|
|
1130
|
-
display: 'inline-flex'
|
|
1130
|
+
display: 'inline-flex',
|
|
1131
|
+
backgroundColor: theme.palette.common.white,
|
|
1132
|
+
height: '30px'
|
|
1131
1133
|
}
|
|
1132
1134
|
};
|
|
1133
1135
|
});
|