@selfcommunity/react-theme-default 0.4.2-courses.135 → 0.4.2-courses.137
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/SCLessonObject.d.ts +4 -1
- package/lib/cjs/components/SCLessonObject.js +4 -1
- package/lib/cjs/components/SCLessonTemplate.d.ts +1 -0
- package/lib/cjs/components/SCLessonTemplate.js +2 -1
- package/lib/cjs/index.d.ts +5 -1
- package/lib/esm/components/SCLessonObject.d.ts +4 -1
- package/lib/esm/components/SCLessonObject.js +4 -1
- package/lib/esm/components/SCLessonTemplate.d.ts +1 -0
- package/lib/esm/components/SCLessonTemplate.js +2 -1
- package/lib/esm/index.d.ts +5 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -3,6 +3,7 @@ declare const Component: {
|
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
display: string;
|
|
5
5
|
flexDirection: string;
|
|
6
|
+
padding: any;
|
|
6
7
|
'& .SCLessonObject-content': {
|
|
7
8
|
padding: string;
|
|
8
9
|
'& .SCLessonObject-text': {
|
|
@@ -33,8 +34,10 @@ declare const Component: {
|
|
|
33
34
|
};
|
|
34
35
|
};
|
|
35
36
|
'& .SCWidget-root': {
|
|
37
|
+
[x: number]: {
|
|
38
|
+
boxShadow: string;
|
|
39
|
+
};
|
|
36
40
|
marginBottom: any;
|
|
37
|
-
boxShadow: string;
|
|
38
41
|
};
|
|
39
42
|
'& .SCLessonObject-button': {
|
|
40
43
|
alignSelf: string;
|
|
@@ -5,6 +5,7 @@ const Component = {
|
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
display: 'flex',
|
|
7
7
|
flexDirection: 'column',
|
|
8
|
+
padding: theme.spacing(1),
|
|
8
9
|
'& .SCLessonObject-content': {
|
|
9
10
|
padding: `${theme.spacing(2)} !important`,
|
|
10
11
|
'& .SCLessonObject-text': {
|
|
@@ -37,7 +38,9 @@ const Component = {
|
|
|
37
38
|
},
|
|
38
39
|
'& .SCWidget-root': {
|
|
39
40
|
marginBottom: theme.spacing(3),
|
|
40
|
-
|
|
41
|
+
[theme.breakpoints.down('md')]: {
|
|
42
|
+
boxShadow: 'none'
|
|
43
|
+
}
|
|
41
44
|
},
|
|
42
45
|
'& .SCLessonObject-button': {
|
|
43
46
|
alignSelf: 'center'
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5527,6 +5527,7 @@ declare const theme: {
|
|
|
5527
5527
|
display: string;
|
|
5528
5528
|
alignItems: string;
|
|
5529
5529
|
justifyContent: string;
|
|
5530
|
+
marginBottom: any;
|
|
5530
5531
|
};
|
|
5531
5532
|
width: string;
|
|
5532
5533
|
display: string;
|
|
@@ -5542,6 +5543,7 @@ declare const theme: {
|
|
|
5542
5543
|
root: ({ theme }: any) => {
|
|
5543
5544
|
display: string;
|
|
5544
5545
|
flexDirection: string;
|
|
5546
|
+
padding: any;
|
|
5545
5547
|
'& .SCLessonObject-content': {
|
|
5546
5548
|
padding: string;
|
|
5547
5549
|
'& .SCLessonObject-text': {
|
|
@@ -5572,8 +5574,10 @@ declare const theme: {
|
|
|
5572
5574
|
};
|
|
5573
5575
|
};
|
|
5574
5576
|
'& .SCWidget-root': {
|
|
5577
|
+
[x: number]: {
|
|
5578
|
+
boxShadow: string;
|
|
5579
|
+
};
|
|
5575
5580
|
marginBottom: any;
|
|
5576
|
-
boxShadow: string;
|
|
5577
5581
|
};
|
|
5578
5582
|
'& .SCLessonObject-button': {
|
|
5579
5583
|
alignSelf: string;
|
|
@@ -3,6 +3,7 @@ declare const Component: {
|
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
4
|
display: string;
|
|
5
5
|
flexDirection: string;
|
|
6
|
+
padding: any;
|
|
6
7
|
'& .SCLessonObject-content': {
|
|
7
8
|
padding: string;
|
|
8
9
|
'& .SCLessonObject-text': {
|
|
@@ -33,8 +34,10 @@ declare const Component: {
|
|
|
33
34
|
};
|
|
34
35
|
};
|
|
35
36
|
'& .SCWidget-root': {
|
|
37
|
+
[x: number]: {
|
|
38
|
+
boxShadow: string;
|
|
39
|
+
};
|
|
36
40
|
marginBottom: any;
|
|
37
|
-
boxShadow: string;
|
|
38
41
|
};
|
|
39
42
|
'& .SCLessonObject-button': {
|
|
40
43
|
alignSelf: string;
|
|
@@ -3,6 +3,7 @@ const Component = {
|
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
display: 'flex',
|
|
5
5
|
flexDirection: 'column',
|
|
6
|
+
padding: theme.spacing(1),
|
|
6
7
|
'& .SCLessonObject-content': {
|
|
7
8
|
padding: `${theme.spacing(2)} !important`,
|
|
8
9
|
'& .SCLessonObject-text': {
|
|
@@ -35,7 +36,9 @@ const Component = {
|
|
|
35
36
|
},
|
|
36
37
|
'& .SCWidget-root': {
|
|
37
38
|
marginBottom: theme.spacing(3),
|
|
38
|
-
|
|
39
|
+
[theme.breakpoints.down('md')]: {
|
|
40
|
+
boxShadow: 'none'
|
|
41
|
+
}
|
|
39
42
|
},
|
|
40
43
|
'& .SCLessonObject-button': {
|
|
41
44
|
alignSelf: 'center'
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5527,6 +5527,7 @@ declare const theme: {
|
|
|
5527
5527
|
display: string;
|
|
5528
5528
|
alignItems: string;
|
|
5529
5529
|
justifyContent: string;
|
|
5530
|
+
marginBottom: any;
|
|
5530
5531
|
};
|
|
5531
5532
|
width: string;
|
|
5532
5533
|
display: string;
|
|
@@ -5542,6 +5543,7 @@ declare const theme: {
|
|
|
5542
5543
|
root: ({ theme }: any) => {
|
|
5543
5544
|
display: string;
|
|
5544
5545
|
flexDirection: string;
|
|
5546
|
+
padding: any;
|
|
5545
5547
|
'& .SCLessonObject-content': {
|
|
5546
5548
|
padding: string;
|
|
5547
5549
|
'& .SCLessonObject-text': {
|
|
@@ -5572,8 +5574,10 @@ declare const theme: {
|
|
|
5572
5574
|
};
|
|
5573
5575
|
};
|
|
5574
5576
|
'& .SCWidget-root': {
|
|
5577
|
+
[x: number]: {
|
|
5578
|
+
boxShadow: string;
|
|
5579
|
+
};
|
|
5575
5580
|
marginBottom: any;
|
|
5576
|
-
boxShadow: string;
|
|
5577
5581
|
};
|
|
5578
5582
|
'& .SCLessonObject-button': {
|
|
5579
5583
|
alignSelf: string;
|