@selfcommunity/react-theme-default 0.4.2-courses.137 → 0.4.2-courses.139
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 +3 -1
- package/lib/cjs/components/SCLessonObject.js +3 -1
- package/lib/cjs/index.d.ts +3 -1
- package/lib/esm/components/SCLessonObject.d.ts +3 -1
- package/lib/esm/components/SCLessonObject.js +3 -1
- package/lib/esm/index.d.ts +3 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
padding: any;
|
|
6
|
+
};
|
|
4
7
|
display: string;
|
|
5
8
|
flexDirection: string;
|
|
6
|
-
padding: any;
|
|
7
9
|
'& .SCLessonObject-content': {
|
|
8
10
|
padding: string;
|
|
9
11
|
'& .SCLessonObject-text': {
|
|
@@ -5,7 +5,9 @@ const Component = {
|
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
display: 'flex',
|
|
7
7
|
flexDirection: 'column',
|
|
8
|
-
|
|
8
|
+
[theme.breakpoints.up('sm')]: {
|
|
9
|
+
padding: theme.spacing(1)
|
|
10
|
+
},
|
|
9
11
|
'& .SCLessonObject-content': {
|
|
10
12
|
padding: `${theme.spacing(2)} !important`,
|
|
11
13
|
'& .SCLessonObject-text': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5541,9 +5541,11 @@ declare const theme: {
|
|
|
5541
5541
|
SCLessonObject: {
|
|
5542
5542
|
styleOverrides: {
|
|
5543
5543
|
root: ({ theme }: any) => {
|
|
5544
|
+
[x: number]: {
|
|
5545
|
+
padding: any;
|
|
5546
|
+
};
|
|
5544
5547
|
display: string;
|
|
5545
5548
|
flexDirection: string;
|
|
5546
|
-
padding: any;
|
|
5547
5549
|
'& .SCLessonObject-content': {
|
|
5548
5550
|
padding: string;
|
|
5549
5551
|
'& .SCLessonObject-text': {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
padding: any;
|
|
6
|
+
};
|
|
4
7
|
display: string;
|
|
5
8
|
flexDirection: string;
|
|
6
|
-
padding: any;
|
|
7
9
|
'& .SCLessonObject-content': {
|
|
8
10
|
padding: string;
|
|
9
11
|
'& .SCLessonObject-text': {
|
|
@@ -3,7 +3,9 @@ const Component = {
|
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
display: 'flex',
|
|
5
5
|
flexDirection: 'column',
|
|
6
|
-
|
|
6
|
+
[theme.breakpoints.up('sm')]: {
|
|
7
|
+
padding: theme.spacing(1)
|
|
8
|
+
},
|
|
7
9
|
'& .SCLessonObject-content': {
|
|
8
10
|
padding: `${theme.spacing(2)} !important`,
|
|
9
11
|
'& .SCLessonObject-text': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5541,9 +5541,11 @@ declare const theme: {
|
|
|
5541
5541
|
SCLessonObject: {
|
|
5542
5542
|
styleOverrides: {
|
|
5543
5543
|
root: ({ theme }: any) => {
|
|
5544
|
+
[x: number]: {
|
|
5545
|
+
padding: any;
|
|
5546
|
+
};
|
|
5544
5547
|
display: string;
|
|
5545
5548
|
flexDirection: string;
|
|
5546
|
-
padding: any;
|
|
5547
5549
|
'& .SCLessonObject-content': {
|
|
5548
5550
|
padding: string;
|
|
5549
5551
|
'& .SCLessonObject-text': {
|