@selfcommunity/react-theme-default 0.4.2-courses.207 → 0.4.2-courses.208
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/SCEventFormDialog.d.ts +9 -0
- package/lib/cjs/components/SCEventFormDialog.js +9 -0
- package/lib/cjs/index.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.js +9 -0
- package/lib/esm/index.d.ts +9 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -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
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9329,6 +9329,15 @@ declare const theme: {
|
|
|
9329
9329
|
SCEventFormDialog: {
|
|
9330
9330
|
styleOverrides: {
|
|
9331
9331
|
root: ({ theme }: any) => {
|
|
9332
|
+
[x: number]: {
|
|
9333
|
+
'& .MuiDialogContent-root': {
|
|
9334
|
+
marginLeft: any;
|
|
9335
|
+
marginRight: any;
|
|
9336
|
+
};
|
|
9337
|
+
'& .SCEventForm-actions': {
|
|
9338
|
+
marginBottom: any;
|
|
9339
|
+
};
|
|
9340
|
+
};
|
|
9332
9341
|
'& .MuiDialogTitle-root': {
|
|
9333
9342
|
'& span': {
|
|
9334
9343
|
flexGrow: number;
|
|
@@ -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
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9329,6 +9329,15 @@ declare const theme: {
|
|
|
9329
9329
|
SCEventFormDialog: {
|
|
9330
9330
|
styleOverrides: {
|
|
9331
9331
|
root: ({ theme }: any) => {
|
|
9332
|
+
[x: number]: {
|
|
9333
|
+
'& .MuiDialogContent-root': {
|
|
9334
|
+
marginLeft: any;
|
|
9335
|
+
marginRight: any;
|
|
9336
|
+
};
|
|
9337
|
+
'& .SCEventForm-actions': {
|
|
9338
|
+
marginBottom: any;
|
|
9339
|
+
};
|
|
9340
|
+
};
|
|
9332
9341
|
'& .MuiDialogTitle-root': {
|
|
9333
9342
|
'& span': {
|
|
9334
9343
|
flexGrow: number;
|