@selfcommunity/react-theme-default 0.4.5-alpha.19 → 0.4.5-alpha.20
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/components/SCGroupForm.d.ts +3 -0
- package/lib/cjs/components/SCGroupForm.js +3 -0
- package/lib/cjs/index.d.ts +12 -0
- package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.js +9 -0
- package/lib/esm/components/SCGroupForm.d.ts +3 -0
- package/lib/esm/components/SCGroupForm.js +3 -0
- package/lib/esm/index.d.ts +12 -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
|
@@ -3118,6 +3118,9 @@ declare const theme: {
|
|
|
3118
3118
|
height: any;
|
|
3119
3119
|
width: any;
|
|
3120
3120
|
};
|
|
3121
|
+
'& .MuiIcon-root': {
|
|
3122
|
+
color: any;
|
|
3123
|
+
};
|
|
3121
3124
|
};
|
|
3122
3125
|
};
|
|
3123
3126
|
'& .SCChangeGroupPictureButton-root': {
|
|
@@ -7145,6 +7148,15 @@ declare const theme: {
|
|
|
7145
7148
|
SCEventFormDialog: {
|
|
7146
7149
|
styleOverrides: {
|
|
7147
7150
|
root: ({ theme }: any) => {
|
|
7151
|
+
[x: number]: {
|
|
7152
|
+
'& .MuiDialogContent-root': {
|
|
7153
|
+
marginLeft: any;
|
|
7154
|
+
marginRight: any;
|
|
7155
|
+
};
|
|
7156
|
+
'& .SCEventForm-actions': {
|
|
7157
|
+
marginBottom: any;
|
|
7158
|
+
};
|
|
7159
|
+
};
|
|
7148
7160
|
'& .MuiDialogTitle-root': {
|
|
7149
7161
|
'& span': {
|
|
7150
7162
|
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
|
@@ -3118,6 +3118,9 @@ declare const theme: {
|
|
|
3118
3118
|
height: any;
|
|
3119
3119
|
width: any;
|
|
3120
3120
|
};
|
|
3121
|
+
'& .MuiIcon-root': {
|
|
3122
|
+
color: any;
|
|
3123
|
+
};
|
|
3121
3124
|
};
|
|
3122
3125
|
};
|
|
3123
3126
|
'& .SCChangeGroupPictureButton-root': {
|
|
@@ -7145,6 +7148,15 @@ declare const theme: {
|
|
|
7145
7148
|
SCEventFormDialog: {
|
|
7146
7149
|
styleOverrides: {
|
|
7147
7150
|
root: ({ theme }: any) => {
|
|
7151
|
+
[x: number]: {
|
|
7152
|
+
'& .MuiDialogContent-root': {
|
|
7153
|
+
marginLeft: any;
|
|
7154
|
+
marginRight: any;
|
|
7155
|
+
};
|
|
7156
|
+
'& .SCEventForm-actions': {
|
|
7157
|
+
marginBottom: any;
|
|
7158
|
+
};
|
|
7159
|
+
};
|
|
7148
7160
|
'& .MuiDialogTitle-root': {
|
|
7149
7161
|
'& span': {
|
|
7150
7162
|
flexGrow: number;
|