@selfcommunity/react-theme-default 0.4.2-courses.152 → 0.4.2-courses.154
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/lib/cjs/components/SCCourse.d.ts +3 -2
- package/lib/cjs/components/SCCourse.js +5 -4
- package/lib/cjs/components/SCCourseDashboard.js +1 -1
- package/lib/cjs/components/SCLessonTemplate.d.ts +1 -1
- package/lib/cjs/components/SCLessonTemplate.js +3 -1
- package/lib/cjs/index.d.ts +4 -3
- package/lib/esm/components/SCCourse.d.ts +3 -2
- package/lib/esm/components/SCCourse.js +5 -4
- package/lib/esm/components/SCCourseDashboard.js +1 -1
- package/lib/esm/components/SCLessonTemplate.d.ts +1 -1
- package/lib/esm/components/SCLessonTemplate.js +3 -1
- package/lib/esm/index.d.ts +4 -3
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -96,10 +96,11 @@ declare const Component: {
|
|
|
96
96
|
'& .SCCourse-preview-content': {
|
|
97
97
|
padding: any;
|
|
98
98
|
'& .SCCourse-preview-creator': {
|
|
99
|
-
paddingTop: number;
|
|
100
|
-
marginBottom: any;
|
|
101
99
|
textDecoration: string;
|
|
102
100
|
color: string;
|
|
101
|
+
'& .MuiTypography-root': {
|
|
102
|
+
marginBottom: any;
|
|
103
|
+
};
|
|
103
104
|
};
|
|
104
105
|
'& .SCCourse-preview-name-wrapper': {
|
|
105
106
|
textDecoration: string;
|
|
@@ -96,12 +96,13 @@ const Component = {
|
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
'& .SCCourse-preview-content': {
|
|
99
|
-
padding: theme.spacing(2),
|
|
99
|
+
padding: theme.spacing(1, 2, 2, 2),
|
|
100
100
|
'& .SCCourse-preview-creator': {
|
|
101
|
-
paddingTop: 0,
|
|
102
|
-
marginBottom: theme.spacing(1),
|
|
103
101
|
textDecoration: 'none',
|
|
104
|
-
color: 'inherit'
|
|
102
|
+
color: 'inherit',
|
|
103
|
+
'& .MuiTypography-root': {
|
|
104
|
+
marginBottom: theme.spacing(1)
|
|
105
|
+
}
|
|
105
106
|
},
|
|
106
107
|
'& .SCCourse-preview-name-wrapper': {
|
|
107
108
|
textDecoration: 'none',
|
|
@@ -3,7 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: () => ({}),
|
|
6
|
-
containerRoot: ({ theme, open }) => (Object.assign(Object.assign({ display: 'flex', flexDirection: 'column',
|
|
6
|
+
containerRoot: ({ theme, open }) => (Object.assign(Object.assign({ display: 'flex', flexDirection: 'column', paddingBottom: theme.mixins.toolbar.minHeight,
|
|
7
|
+
//overflow: 'hidden',
|
|
8
|
+
transition: theme.transitions.create('margin', {
|
|
7
9
|
easing: theme.transitions.easing.sharp,
|
|
8
10
|
duration: theme.transitions.duration.leavingScreen
|
|
9
11
|
}), marginRight: 0 }, (open && {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1805,10 +1805,11 @@ declare const theme: {
|
|
|
1805
1805
|
'& .SCCourse-preview-content': {
|
|
1806
1806
|
padding: any;
|
|
1807
1807
|
'& .SCCourse-preview-creator': {
|
|
1808
|
-
paddingTop: number;
|
|
1809
|
-
marginBottom: any;
|
|
1810
1808
|
textDecoration: string;
|
|
1811
1809
|
color: string;
|
|
1810
|
+
'& .MuiTypography-root': {
|
|
1811
|
+
marginBottom: any;
|
|
1812
|
+
};
|
|
1812
1813
|
};
|
|
1813
1814
|
'& .SCCourse-preview-name-wrapper': {
|
|
1814
1815
|
textDecoration: string;
|
|
@@ -5549,7 +5550,7 @@ declare const theme: {
|
|
|
5549
5550
|
width: string;
|
|
5550
5551
|
display: string;
|
|
5551
5552
|
flexDirection: string;
|
|
5552
|
-
|
|
5553
|
+
paddingBottom: any;
|
|
5553
5554
|
transition: any;
|
|
5554
5555
|
marginRight: number;
|
|
5555
5556
|
};
|
|
@@ -96,10 +96,11 @@ declare const Component: {
|
|
|
96
96
|
'& .SCCourse-preview-content': {
|
|
97
97
|
padding: any;
|
|
98
98
|
'& .SCCourse-preview-creator': {
|
|
99
|
-
paddingTop: number;
|
|
100
|
-
marginBottom: any;
|
|
101
99
|
textDecoration: string;
|
|
102
100
|
color: string;
|
|
101
|
+
'& .MuiTypography-root': {
|
|
102
|
+
marginBottom: any;
|
|
103
|
+
};
|
|
103
104
|
};
|
|
104
105
|
'& .SCCourse-preview-name-wrapper': {
|
|
105
106
|
textDecoration: string;
|
|
@@ -94,12 +94,13 @@ const Component = {
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
'& .SCCourse-preview-content': {
|
|
97
|
-
padding: theme.spacing(2),
|
|
97
|
+
padding: theme.spacing(1, 2, 2, 2),
|
|
98
98
|
'& .SCCourse-preview-creator': {
|
|
99
|
-
paddingTop: 0,
|
|
100
|
-
marginBottom: theme.spacing(1),
|
|
101
99
|
textDecoration: 'none',
|
|
102
|
-
color: 'inherit'
|
|
100
|
+
color: 'inherit',
|
|
101
|
+
'& .MuiTypography-root': {
|
|
102
|
+
marginBottom: theme.spacing(1)
|
|
103
|
+
}
|
|
103
104
|
},
|
|
104
105
|
'& .SCCourse-preview-name-wrapper': {
|
|
105
106
|
textDecoration: 'none',
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: () => ({}),
|
|
4
|
-
containerRoot: ({ theme, open }) => (Object.assign(Object.assign({ display: 'flex', flexDirection: 'column',
|
|
4
|
+
containerRoot: ({ theme, open }) => (Object.assign(Object.assign({ display: 'flex', flexDirection: 'column', paddingBottom: theme.mixins.toolbar.minHeight,
|
|
5
|
+
//overflow: 'hidden',
|
|
6
|
+
transition: theme.transitions.create('margin', {
|
|
5
7
|
easing: theme.transitions.easing.sharp,
|
|
6
8
|
duration: theme.transitions.duration.leavingScreen
|
|
7
9
|
}), marginRight: 0 }, (open && {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1805,10 +1805,11 @@ declare const theme: {
|
|
|
1805
1805
|
'& .SCCourse-preview-content': {
|
|
1806
1806
|
padding: any;
|
|
1807
1807
|
'& .SCCourse-preview-creator': {
|
|
1808
|
-
paddingTop: number;
|
|
1809
|
-
marginBottom: any;
|
|
1810
1808
|
textDecoration: string;
|
|
1811
1809
|
color: string;
|
|
1810
|
+
'& .MuiTypography-root': {
|
|
1811
|
+
marginBottom: any;
|
|
1812
|
+
};
|
|
1812
1813
|
};
|
|
1813
1814
|
'& .SCCourse-preview-name-wrapper': {
|
|
1814
1815
|
textDecoration: string;
|
|
@@ -5549,7 +5550,7 @@ declare const theme: {
|
|
|
5549
5550
|
width: string;
|
|
5550
5551
|
display: string;
|
|
5551
5552
|
flexDirection: string;
|
|
5552
|
-
|
|
5553
|
+
paddingBottom: any;
|
|
5553
5554
|
transition: any;
|
|
5554
5555
|
marginRight: number;
|
|
5555
5556
|
};
|