@selfcommunity/react-theme-default 0.4.2-courses.207 → 0.4.2-courses.209
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/SCComposer.d.ts +3 -0
- package/lib/cjs/components/SCComposer.js +4 -1
- package/lib/cjs/components/SCEventFormDialog.d.ts +9 -0
- package/lib/cjs/components/SCEventFormDialog.js +9 -0
- package/lib/cjs/components/SCGroups.d.ts +8 -0
- package/lib/cjs/components/SCGroups.js +8 -0
- package/lib/cjs/index.d.ts +20 -0
- package/lib/esm/components/SCComposer.d.ts +3 -0
- package/lib/esm/components/SCComposer.js +4 -1
- package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.js +9 -0
- package/lib/esm/components/SCGroups.d.ts +8 -0
- package/lib/esm/components/SCGroups.js +8 -0
- package/lib/esm/index.d.ts +20 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -184,7 +184,10 @@ const Component = {
|
|
|
184
184
|
marginBottom: theme.spacing(1),
|
|
185
185
|
'& .SCMediaFile-media': {
|
|
186
186
|
height: '60px !important',
|
|
187
|
-
maxWidth: 140
|
|
187
|
+
maxWidth: 140,
|
|
188
|
+
'& .SCMediaFile-title': {
|
|
189
|
+
maxWidth: '50% !important'
|
|
190
|
+
}
|
|
188
191
|
}
|
|
189
192
|
},
|
|
190
193
|
'& .SCMediaLink-preview-root': {
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
'& .MuiDialogContent-root': {
|
|
6
|
+
marginLeft: any;
|
|
7
|
+
marginRight: any;
|
|
8
|
+
};
|
|
9
|
+
'& .SCEventForm-actions': {
|
|
10
|
+
marginBottom: any;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
4
13
|
'& .MuiDialogTitle-root': {
|
|
5
14
|
'& span': {
|
|
6
15
|
flexGrow: number;
|
|
@@ -8,6 +8,15 @@ const Component = {
|
|
|
8
8
|
flexGrow: 1,
|
|
9
9
|
textAlign: 'center'
|
|
10
10
|
}
|
|
11
|
+
},
|
|
12
|
+
[theme.breakpoints.down('sm')]: {
|
|
13
|
+
'& .MuiDialogContent-root': {
|
|
14
|
+
marginLeft: theme.spacing(2),
|
|
15
|
+
marginRight: theme.spacing(2)
|
|
16
|
+
},
|
|
17
|
+
'& .SCEventForm-actions': {
|
|
18
|
+
marginBottom: theme.spacing(2)
|
|
19
|
+
}
|
|
11
20
|
}
|
|
12
21
|
})
|
|
13
22
|
}
|
|
@@ -13,6 +13,14 @@ declare const Component: {
|
|
|
13
13
|
marginTop: any;
|
|
14
14
|
marginBottom: any;
|
|
15
15
|
};
|
|
16
|
+
'& .SCGroups-search': {
|
|
17
|
+
'& .MuiButtonBase-root': {
|
|
18
|
+
minWidth: string;
|
|
19
|
+
'& .MuiButton-endIcon': {
|
|
20
|
+
margin: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
16
24
|
'& .SCGroups-groups': {
|
|
17
25
|
marginTop: any;
|
|
18
26
|
'& .SCGroups-item': {
|
|
@@ -15,6 +15,14 @@ const Component = {
|
|
|
15
15
|
marginTop: theme.spacing(),
|
|
16
16
|
marginBottom: theme.spacing(2)
|
|
17
17
|
},
|
|
18
|
+
'& .SCGroups-search': {
|
|
19
|
+
'& .MuiButtonBase-root': {
|
|
20
|
+
minWidth: '30px',
|
|
21
|
+
'& .MuiButton-endIcon': {
|
|
22
|
+
margin: 0
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
18
26
|
'& .SCGroups-groups': {
|
|
19
27
|
marginTop: theme.spacing(2),
|
|
20
28
|
'& .SCGroups-item': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1488,6 +1488,9 @@ declare const theme: {
|
|
|
1488
1488
|
'& .SCMediaFile-media': {
|
|
1489
1489
|
height: string;
|
|
1490
1490
|
maxWidth: number;
|
|
1491
|
+
'& .SCMediaFile-title': {
|
|
1492
|
+
maxWidth: string;
|
|
1493
|
+
};
|
|
1491
1494
|
};
|
|
1492
1495
|
};
|
|
1493
1496
|
'& .SCMediaLink-preview-root': {
|
|
@@ -5173,6 +5176,14 @@ declare const theme: {
|
|
|
5173
5176
|
marginTop: any;
|
|
5174
5177
|
marginBottom: any;
|
|
5175
5178
|
};
|
|
5179
|
+
'& .SCGroups-search': {
|
|
5180
|
+
'& .MuiButtonBase-root': {
|
|
5181
|
+
minWidth: string;
|
|
5182
|
+
'& .MuiButton-endIcon': {
|
|
5183
|
+
margin: number;
|
|
5184
|
+
};
|
|
5185
|
+
};
|
|
5186
|
+
};
|
|
5176
5187
|
'& .SCGroups-groups': {
|
|
5177
5188
|
marginTop: any;
|
|
5178
5189
|
'& .SCGroups-item': {
|
|
@@ -9329,6 +9340,15 @@ declare const theme: {
|
|
|
9329
9340
|
SCEventFormDialog: {
|
|
9330
9341
|
styleOverrides: {
|
|
9331
9342
|
root: ({ theme }: any) => {
|
|
9343
|
+
[x: number]: {
|
|
9344
|
+
'& .MuiDialogContent-root': {
|
|
9345
|
+
marginLeft: any;
|
|
9346
|
+
marginRight: any;
|
|
9347
|
+
};
|
|
9348
|
+
'& .SCEventForm-actions': {
|
|
9349
|
+
marginBottom: any;
|
|
9350
|
+
};
|
|
9351
|
+
};
|
|
9332
9352
|
'& .MuiDialogTitle-root': {
|
|
9333
9353
|
'& span': {
|
|
9334
9354
|
flexGrow: number;
|
|
@@ -182,7 +182,10 @@ const Component = {
|
|
|
182
182
|
marginBottom: theme.spacing(1),
|
|
183
183
|
'& .SCMediaFile-media': {
|
|
184
184
|
height: '60px !important',
|
|
185
|
-
maxWidth: 140
|
|
185
|
+
maxWidth: 140,
|
|
186
|
+
'& .SCMediaFile-title': {
|
|
187
|
+
maxWidth: '50% !important'
|
|
188
|
+
}
|
|
186
189
|
}
|
|
187
190
|
},
|
|
188
191
|
'& .SCMediaLink-preview-root': {
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
'& .MuiDialogContent-root': {
|
|
6
|
+
marginLeft: any;
|
|
7
|
+
marginRight: any;
|
|
8
|
+
};
|
|
9
|
+
'& .SCEventForm-actions': {
|
|
10
|
+
marginBottom: any;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
4
13
|
'& .MuiDialogTitle-root': {
|
|
5
14
|
'& span': {
|
|
6
15
|
flexGrow: number;
|
|
@@ -6,6 +6,15 @@ const Component = {
|
|
|
6
6
|
flexGrow: 1,
|
|
7
7
|
textAlign: 'center'
|
|
8
8
|
}
|
|
9
|
+
},
|
|
10
|
+
[theme.breakpoints.down('sm')]: {
|
|
11
|
+
'& .MuiDialogContent-root': {
|
|
12
|
+
marginLeft: theme.spacing(2),
|
|
13
|
+
marginRight: theme.spacing(2)
|
|
14
|
+
},
|
|
15
|
+
'& .SCEventForm-actions': {
|
|
16
|
+
marginBottom: theme.spacing(2)
|
|
17
|
+
}
|
|
9
18
|
}
|
|
10
19
|
})
|
|
11
20
|
}
|
|
@@ -13,6 +13,14 @@ declare const Component: {
|
|
|
13
13
|
marginTop: any;
|
|
14
14
|
marginBottom: any;
|
|
15
15
|
};
|
|
16
|
+
'& .SCGroups-search': {
|
|
17
|
+
'& .MuiButtonBase-root': {
|
|
18
|
+
minWidth: string;
|
|
19
|
+
'& .MuiButton-endIcon': {
|
|
20
|
+
margin: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
16
24
|
'& .SCGroups-groups': {
|
|
17
25
|
marginTop: any;
|
|
18
26
|
'& .SCGroups-item': {
|
|
@@ -13,6 +13,14 @@ const Component = {
|
|
|
13
13
|
marginTop: theme.spacing(),
|
|
14
14
|
marginBottom: theme.spacing(2)
|
|
15
15
|
},
|
|
16
|
+
'& .SCGroups-search': {
|
|
17
|
+
'& .MuiButtonBase-root': {
|
|
18
|
+
minWidth: '30px',
|
|
19
|
+
'& .MuiButton-endIcon': {
|
|
20
|
+
margin: 0
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
16
24
|
'& .SCGroups-groups': {
|
|
17
25
|
marginTop: theme.spacing(2),
|
|
18
26
|
'& .SCGroups-item': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1488,6 +1488,9 @@ declare const theme: {
|
|
|
1488
1488
|
'& .SCMediaFile-media': {
|
|
1489
1489
|
height: string;
|
|
1490
1490
|
maxWidth: number;
|
|
1491
|
+
'& .SCMediaFile-title': {
|
|
1492
|
+
maxWidth: string;
|
|
1493
|
+
};
|
|
1491
1494
|
};
|
|
1492
1495
|
};
|
|
1493
1496
|
'& .SCMediaLink-preview-root': {
|
|
@@ -5173,6 +5176,14 @@ declare const theme: {
|
|
|
5173
5176
|
marginTop: any;
|
|
5174
5177
|
marginBottom: any;
|
|
5175
5178
|
};
|
|
5179
|
+
'& .SCGroups-search': {
|
|
5180
|
+
'& .MuiButtonBase-root': {
|
|
5181
|
+
minWidth: string;
|
|
5182
|
+
'& .MuiButton-endIcon': {
|
|
5183
|
+
margin: number;
|
|
5184
|
+
};
|
|
5185
|
+
};
|
|
5186
|
+
};
|
|
5176
5187
|
'& .SCGroups-groups': {
|
|
5177
5188
|
marginTop: any;
|
|
5178
5189
|
'& .SCGroups-item': {
|
|
@@ -9329,6 +9340,15 @@ declare const theme: {
|
|
|
9329
9340
|
SCEventFormDialog: {
|
|
9330
9341
|
styleOverrides: {
|
|
9331
9342
|
root: ({ theme }: any) => {
|
|
9343
|
+
[x: number]: {
|
|
9344
|
+
'& .MuiDialogContent-root': {
|
|
9345
|
+
marginLeft: any;
|
|
9346
|
+
marginRight: any;
|
|
9347
|
+
};
|
|
9348
|
+
'& .SCEventForm-actions': {
|
|
9349
|
+
marginBottom: any;
|
|
9350
|
+
};
|
|
9351
|
+
};
|
|
9332
9352
|
'& .MuiDialogTitle-root': {
|
|
9333
9353
|
'& span': {
|
|
9334
9354
|
flexGrow: number;
|