@selfcommunity/react-theme-default 0.4.2-courses.180 → 0.4.2-courses.181
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/SCLessonCommentObjects.d.ts +1 -0
- package/lib/cjs/components/SCLessonCommentObjects.js +2 -1
- package/lib/cjs/components/SCLessonTemplate.d.ts +5 -0
- package/lib/cjs/components/SCLessonTemplate.js +4 -0
- package/lib/cjs/index.d.ts +6 -0
- package/lib/esm/components/SCLessonCommentObjects.d.ts +1 -0
- package/lib/esm/components/SCLessonCommentObjects.js +2 -1
- package/lib/esm/components/SCLessonTemplate.d.ts +5 -0
- package/lib/esm/components/SCLessonTemplate.js +4 -0
- package/lib/esm/index.d.ts +6 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -8,6 +8,11 @@ declare const Component: {
|
|
|
8
8
|
justifyContent: string;
|
|
9
9
|
marginBottom: any;
|
|
10
10
|
};
|
|
11
|
+
'& .SCLessonTemplate-preview-info': {
|
|
12
|
+
justifyContent: string;
|
|
13
|
+
borderRadius: number;
|
|
14
|
+
marginBottom: any;
|
|
15
|
+
};
|
|
11
16
|
'& .SCLessonTemplate-button': {
|
|
12
17
|
alignSelf: string;
|
|
13
18
|
marginTop: string;
|
|
@@ -16,6 +16,10 @@ const Component = {
|
|
|
16
16
|
alignItems: 'center',
|
|
17
17
|
justifyContent: 'space-between',
|
|
18
18
|
marginBottom: theme.spacing(1)
|
|
19
|
+
}, '& .SCLessonTemplate-preview-info': {
|
|
20
|
+
justifyContent: 'center',
|
|
21
|
+
borderRadius: 5,
|
|
22
|
+
marginBottom: theme.spacing(1)
|
|
19
23
|
}, '& .SCLessonTemplate-button': {
|
|
20
24
|
alignSelf: 'center',
|
|
21
25
|
marginTop: 'auto'
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -5554,6 +5554,7 @@ declare const theme: {
|
|
|
5554
5554
|
skeletonRoot: ({ theme }: any) => {
|
|
5555
5555
|
width: string;
|
|
5556
5556
|
backgroundColor: string;
|
|
5557
|
+
padding: any;
|
|
5557
5558
|
};
|
|
5558
5559
|
};
|
|
5559
5560
|
};
|
|
@@ -5649,6 +5650,11 @@ declare const theme: {
|
|
|
5649
5650
|
justifyContent: string;
|
|
5650
5651
|
marginBottom: any;
|
|
5651
5652
|
};
|
|
5653
|
+
'& .SCLessonTemplate-preview-info': {
|
|
5654
|
+
justifyContent: string;
|
|
5655
|
+
borderRadius: number;
|
|
5656
|
+
marginBottom: any;
|
|
5657
|
+
};
|
|
5652
5658
|
'& .SCLessonTemplate-button': {
|
|
5653
5659
|
alignSelf: string;
|
|
5654
5660
|
marginTop: string;
|
|
@@ -8,6 +8,11 @@ declare const Component: {
|
|
|
8
8
|
justifyContent: string;
|
|
9
9
|
marginBottom: any;
|
|
10
10
|
};
|
|
11
|
+
'& .SCLessonTemplate-preview-info': {
|
|
12
|
+
justifyContent: string;
|
|
13
|
+
borderRadius: number;
|
|
14
|
+
marginBottom: any;
|
|
15
|
+
};
|
|
11
16
|
'& .SCLessonTemplate-button': {
|
|
12
17
|
alignSelf: string;
|
|
13
18
|
marginTop: string;
|
|
@@ -14,6 +14,10 @@ const Component = {
|
|
|
14
14
|
alignItems: 'center',
|
|
15
15
|
justifyContent: 'space-between',
|
|
16
16
|
marginBottom: theme.spacing(1)
|
|
17
|
+
}, '& .SCLessonTemplate-preview-info': {
|
|
18
|
+
justifyContent: 'center',
|
|
19
|
+
borderRadius: 5,
|
|
20
|
+
marginBottom: theme.spacing(1)
|
|
17
21
|
}, '& .SCLessonTemplate-button': {
|
|
18
22
|
alignSelf: 'center',
|
|
19
23
|
marginTop: 'auto'
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -5554,6 +5554,7 @@ declare const theme: {
|
|
|
5554
5554
|
skeletonRoot: ({ theme }: any) => {
|
|
5555
5555
|
width: string;
|
|
5556
5556
|
backgroundColor: string;
|
|
5557
|
+
padding: any;
|
|
5557
5558
|
};
|
|
5558
5559
|
};
|
|
5559
5560
|
};
|
|
@@ -5649,6 +5650,11 @@ declare const theme: {
|
|
|
5649
5650
|
justifyContent: string;
|
|
5650
5651
|
marginBottom: any;
|
|
5651
5652
|
};
|
|
5653
|
+
'& .SCLessonTemplate-preview-info': {
|
|
5654
|
+
justifyContent: string;
|
|
5655
|
+
borderRadius: number;
|
|
5656
|
+
marginBottom: any;
|
|
5657
|
+
};
|
|
5652
5658
|
'& .SCLessonTemplate-button': {
|
|
5653
5659
|
alignSelf: string;
|
|
5654
5660
|
marginTop: string;
|