@surveycake/rc 3.0.0-alpha.36 → 3.0.0-alpha.39

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,6 +2,22 @@
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.39](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.38...v3.0.0-alpha.39) (2022-03-01)
6
+
7
+ ## [3.0.0-alpha.38](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.37...v3.0.0-alpha.38) (2022-02-18)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * column-gap is not supported in flex layout below Safari v14.1 - [SUR-99] ([e8c59ce](https://fox.25sprout.com/surveycake/sdk/rc/commit/e8c59ce5d4bfaae08ff274f9aa773bd0889d4f5f))
13
+
14
+ ## [3.0.0-alpha.37](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.36...v3.0.0-alpha.37) (2022-02-18)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * provide a fallback when column-gap is unsupported in the Tab component - [SUR-99] ([5873227](https://fox.25sprout.com/surveycake/sdk/rc/commit/58732273bb75670074277f1059ec779ab74b510b))
20
+
5
21
  ## [3.0.0-alpha.36](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.35...v3.0.0-alpha.36) (2022-02-11)
6
22
 
7
23
 
@@ -265,7 +265,8 @@ var MuiBackdrop = {
265
265
  root: {
266
266
  backgroundColor:
267
267
  /*#__PURE__*/
268
- polished.rgba(core.palette.common.black, 0.4)
268
+ styles$5.alpha(core.palette.common.black, 0.4),
269
+ zIndex: core.zIndex.modal + 50
269
270
  }
270
271
  };
271
272
 
@@ -826,8 +827,9 @@ var MuiTab = {
826
827
  '@media (min-width: 600px)': {
827
828
  minWidth: 'initial'
828
829
  },
829
- '.MuiTabs-vertical &': {
830
- minHeight: '40px'
830
+ '.MuiTabs-vertical &&': {
831
+ minHeight: '40px',
832
+ marginLeft: 0
831
833
  }
832
834
  }),
833
835
  textColorPrimary: {
@@ -853,7 +855,9 @@ var MuiTab = {
853
855
 
854
856
  var MuiTabs = {
855
857
  flexContainer: {
856
- columnGap: 24
858
+ '& > :not(:first-of-type)': {
859
+ marginLeft: 24
860
+ }
857
861
  },
858
862
  indicator: {
859
863
  '$vertical &': {