@selfcommunity/react-theme-default 0.1.50-events.76 → 0.1.50-events.78
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/SCEventMembersWidget.d.ts +4 -0
- package/lib/cjs/components/SCEventMembersWidget.js +4 -0
- package/lib/cjs/components/SCMyEventsWidget.d.ts +0 -1
- package/lib/cjs/components/SCMyEventsWidget.js +0 -1
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +16 -7
- package/lib/cjs/components/SCOnBoardingWidget.js +16 -7
- package/lib/cjs/index.d.ts +20 -8
- package/lib/esm/components/SCEventMembersWidget.d.ts +4 -0
- package/lib/esm/components/SCEventMembersWidget.js +4 -0
- package/lib/esm/components/SCMyEventsWidget.d.ts +0 -1
- package/lib/esm/components/SCMyEventsWidget.js +0 -1
- package/lib/esm/components/SCOnBoardingWidget.d.ts +16 -7
- package/lib/esm/components/SCOnBoardingWidget.js +16 -7
- package/lib/esm/index.d.ts +20 -8
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
borderRadius: any;
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[x: number]: {
|
|
7
7
|
width: string;
|
|
@@ -59,15 +59,24 @@ declare const Component: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
62
|
-
[x: number]: {
|
|
63
|
-
width: string;
|
|
64
|
-
};
|
|
65
62
|
boxShadow: string;
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
[x: number]: {
|
|
68
|
-
marginTop: any;
|
|
69
|
-
};
|
|
70
64
|
paddingLeft: number;
|
|
65
|
+
paddingRight: number;
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
[x: number]: {
|
|
69
|
+
'& .MuiListItem-root:first-of-type': {
|
|
70
|
+
paddingTop: any;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
padding: number;
|
|
74
|
+
'& .MuiList-root': {
|
|
75
|
+
paddingTop: number;
|
|
76
|
+
paddingBottom: any;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
71
80
|
};
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
|
73
82
|
backgroundColor: any;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
|
|
6
|
+
borderRadius: theme.shape.borderRadius,
|
|
7
7
|
'& .SCOnBoardingWidget-step-content': {
|
|
8
8
|
[theme.breakpoints.up('md')]: {
|
|
9
9
|
width: '70%'
|
|
@@ -49,7 +49,7 @@ const Component = {
|
|
|
49
49
|
backgroundColor: theme.palette.grey['A200']
|
|
50
50
|
},
|
|
51
51
|
'& .MuiButtonBase-root': {
|
|
52
|
-
height: theme.spacing(
|
|
52
|
+
height: theme.spacing(5),
|
|
53
53
|
'&:hover': {
|
|
54
54
|
backgroundColor: theme.palette.grey['A200']
|
|
55
55
|
},
|
|
@@ -62,13 +62,22 @@ const Component = {
|
|
|
62
62
|
}),
|
|
63
63
|
accordionRoot: ({ theme, expanded }) => ({
|
|
64
64
|
boxShadow: 'none',
|
|
65
|
-
[theme.breakpoints.up('sm')]: {
|
|
66
|
-
width: '600px'
|
|
67
|
-
},
|
|
68
65
|
'& .MuiAccordionDetails-root ': {
|
|
69
66
|
paddingLeft: 0,
|
|
70
|
-
|
|
71
|
-
|
|
67
|
+
paddingRight: 0,
|
|
68
|
+
'& .SCOnBoardingWidget-content': {
|
|
69
|
+
'& .MuiCardContent-root': {
|
|
70
|
+
padding: 0,
|
|
71
|
+
'& .MuiList-root': {
|
|
72
|
+
paddingTop: 0,
|
|
73
|
+
paddingBottom: theme.spacing(1)
|
|
74
|
+
},
|
|
75
|
+
[theme.breakpoints.down('md')]: {
|
|
76
|
+
'& .MuiListItem-root:first-of-type': {
|
|
77
|
+
paddingTop: theme.spacing(1)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
72
81
|
}
|
|
73
82
|
},
|
|
74
83
|
'& .MuiAccordionSummary-root': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -4884,7 +4884,7 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
borderRadius: any;
|
|
4888
4888
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4889
|
[x: number]: {
|
|
4890
4890
|
width: string;
|
|
@@ -4942,15 +4942,24 @@ declare const theme: {
|
|
|
4942
4942
|
};
|
|
4943
4943
|
};
|
|
4944
4944
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4945
|
-
[x: number]: {
|
|
4946
|
-
width: string;
|
|
4947
|
-
};
|
|
4948
4945
|
boxShadow: string;
|
|
4949
4946
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
[x: number]: {
|
|
4951
|
-
marginTop: any;
|
|
4952
|
-
};
|
|
4953
4947
|
paddingLeft: number;
|
|
4948
|
+
paddingRight: number;
|
|
4949
|
+
'& .SCOnBoardingWidget-content': {
|
|
4950
|
+
'& .MuiCardContent-root': {
|
|
4951
|
+
[x: number]: {
|
|
4952
|
+
'& .MuiListItem-root:first-of-type': {
|
|
4953
|
+
paddingTop: any;
|
|
4954
|
+
};
|
|
4955
|
+
};
|
|
4956
|
+
padding: number;
|
|
4957
|
+
'& .MuiList-root': {
|
|
4958
|
+
paddingTop: number;
|
|
4959
|
+
paddingBottom: any;
|
|
4960
|
+
};
|
|
4961
|
+
};
|
|
4962
|
+
};
|
|
4954
4963
|
};
|
|
4955
4964
|
'& .MuiAccordionSummary-root': {
|
|
4956
4965
|
backgroundColor: any;
|
|
@@ -7324,7 +7333,6 @@ declare const theme: {
|
|
|
7324
7333
|
'& .SCMyEventsWidget-arrows': {
|
|
7325
7334
|
width: string;
|
|
7326
7335
|
height: string;
|
|
7327
|
-
color: any;
|
|
7328
7336
|
};
|
|
7329
7337
|
'& .SCMyEventsWidget-action-button': {
|
|
7330
7338
|
color: any;
|
|
@@ -7544,6 +7552,10 @@ declare const theme: {
|
|
|
7544
7552
|
transform: string;
|
|
7545
7553
|
color: any;
|
|
7546
7554
|
};
|
|
7555
|
+
'& .SCEventMembersWidget-event-button': {
|
|
7556
|
+
left: string;
|
|
7557
|
+
transform: string;
|
|
7558
|
+
};
|
|
7547
7559
|
};
|
|
7548
7560
|
};
|
|
7549
7561
|
skeletonRoot: ({ theme }: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
borderRadius: any;
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[x: number]: {
|
|
7
7
|
width: string;
|
|
@@ -59,15 +59,24 @@ declare const Component: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
62
|
-
[x: number]: {
|
|
63
|
-
width: string;
|
|
64
|
-
};
|
|
65
62
|
boxShadow: string;
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
[x: number]: {
|
|
68
|
-
marginTop: any;
|
|
69
|
-
};
|
|
70
64
|
paddingLeft: number;
|
|
65
|
+
paddingRight: number;
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
[x: number]: {
|
|
69
|
+
'& .MuiListItem-root:first-of-type': {
|
|
70
|
+
paddingTop: any;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
padding: number;
|
|
74
|
+
'& .MuiList-root': {
|
|
75
|
+
paddingTop: number;
|
|
76
|
+
paddingBottom: any;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
71
80
|
};
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
|
73
82
|
backgroundColor: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
-
|
|
4
|
+
borderRadius: theme.shape.borderRadius,
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[theme.breakpoints.up('md')]: {
|
|
7
7
|
width: '70%'
|
|
@@ -47,7 +47,7 @@ const Component = {
|
|
|
47
47
|
backgroundColor: theme.palette.grey['A200']
|
|
48
48
|
},
|
|
49
49
|
'& .MuiButtonBase-root': {
|
|
50
|
-
height: theme.spacing(
|
|
50
|
+
height: theme.spacing(5),
|
|
51
51
|
'&:hover': {
|
|
52
52
|
backgroundColor: theme.palette.grey['A200']
|
|
53
53
|
},
|
|
@@ -60,13 +60,22 @@ const Component = {
|
|
|
60
60
|
}),
|
|
61
61
|
accordionRoot: ({ theme, expanded }) => ({
|
|
62
62
|
boxShadow: 'none',
|
|
63
|
-
[theme.breakpoints.up('sm')]: {
|
|
64
|
-
width: '600px'
|
|
65
|
-
},
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
64
|
paddingLeft: 0,
|
|
68
|
-
|
|
69
|
-
|
|
65
|
+
paddingRight: 0,
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
padding: 0,
|
|
69
|
+
'& .MuiList-root': {
|
|
70
|
+
paddingTop: 0,
|
|
71
|
+
paddingBottom: theme.spacing(1)
|
|
72
|
+
},
|
|
73
|
+
[theme.breakpoints.down('md')]: {
|
|
74
|
+
'& .MuiListItem-root:first-of-type': {
|
|
75
|
+
paddingTop: theme.spacing(1)
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
70
79
|
}
|
|
71
80
|
},
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -4884,7 +4884,7 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
borderRadius: any;
|
|
4888
4888
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4889
|
[x: number]: {
|
|
4890
4890
|
width: string;
|
|
@@ -4942,15 +4942,24 @@ declare const theme: {
|
|
|
4942
4942
|
};
|
|
4943
4943
|
};
|
|
4944
4944
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4945
|
-
[x: number]: {
|
|
4946
|
-
width: string;
|
|
4947
|
-
};
|
|
4948
4945
|
boxShadow: string;
|
|
4949
4946
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
[x: number]: {
|
|
4951
|
-
marginTop: any;
|
|
4952
|
-
};
|
|
4953
4947
|
paddingLeft: number;
|
|
4948
|
+
paddingRight: number;
|
|
4949
|
+
'& .SCOnBoardingWidget-content': {
|
|
4950
|
+
'& .MuiCardContent-root': {
|
|
4951
|
+
[x: number]: {
|
|
4952
|
+
'& .MuiListItem-root:first-of-type': {
|
|
4953
|
+
paddingTop: any;
|
|
4954
|
+
};
|
|
4955
|
+
};
|
|
4956
|
+
padding: number;
|
|
4957
|
+
'& .MuiList-root': {
|
|
4958
|
+
paddingTop: number;
|
|
4959
|
+
paddingBottom: any;
|
|
4960
|
+
};
|
|
4961
|
+
};
|
|
4962
|
+
};
|
|
4954
4963
|
};
|
|
4955
4964
|
'& .MuiAccordionSummary-root': {
|
|
4956
4965
|
backgroundColor: any;
|
|
@@ -7324,7 +7333,6 @@ declare const theme: {
|
|
|
7324
7333
|
'& .SCMyEventsWidget-arrows': {
|
|
7325
7334
|
width: string;
|
|
7326
7335
|
height: string;
|
|
7327
|
-
color: any;
|
|
7328
7336
|
};
|
|
7329
7337
|
'& .SCMyEventsWidget-action-button': {
|
|
7330
7338
|
color: any;
|
|
@@ -7544,6 +7552,10 @@ declare const theme: {
|
|
|
7544
7552
|
transform: string;
|
|
7545
7553
|
color: any;
|
|
7546
7554
|
};
|
|
7555
|
+
'& .SCEventMembersWidget-event-button': {
|
|
7556
|
+
left: string;
|
|
7557
|
+
transform: string;
|
|
7558
|
+
};
|
|
7547
7559
|
};
|
|
7548
7560
|
};
|
|
7549
7561
|
skeletonRoot: ({ theme }: {
|