@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.
@@ -23,6 +23,10 @@ declare const Component: {
23
23
  transform: string;
24
24
  color: any;
25
25
  };
26
+ '& .SCEventMembersWidget-event-button': {
27
+ left: string;
28
+ transform: string;
29
+ };
26
30
  };
27
31
  };
28
32
  skeletonRoot: ({ theme }: {
@@ -22,6 +22,10 @@ const Component = {
22
22
  left: '50%',
23
23
  transform: 'translate(-50%)',
24
24
  color: theme.palette.primary.main
25
+ },
26
+ '& .SCEventMembersWidget-event-button': {
27
+ left: '50%',
28
+ transform: 'translate(-50%)'
25
29
  }
26
30
  }
27
31
  }),
@@ -13,7 +13,6 @@ declare const Component: {
13
13
  '& .SCMyEventsWidget-arrows': {
14
14
  width: string;
15
15
  height: string;
16
- color: any;
17
16
  };
18
17
  '& .SCMyEventsWidget-action-button': {
19
18
  color: any;
@@ -13,7 +13,6 @@ const Component = {
13
13
  '& .SCMyEventsWidget-arrows': {
14
14
  width: '24px',
15
15
  height: '24px',
16
- color: theme.palette.primary.main
17
16
  },
18
17
  '& .SCMyEventsWidget-action-button': {
19
18
  color: theme.palette.primary.main,
@@ -1,7 +1,7 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
- maxHeight: string;
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
- maxHeight: 'inherit',
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(4),
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
- [theme.breakpoints.up('md')]: {
71
- marginTop: theme.spacing(2)
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': {
@@ -4884,7 +4884,7 @@ declare const theme: {
4884
4884
  SCOnBoardingWidget: {
4885
4885
  styleOverrides: {
4886
4886
  root: ({ theme }: any) => {
4887
- maxHeight: string;
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 }: {
@@ -23,6 +23,10 @@ declare const Component: {
23
23
  transform: string;
24
24
  color: any;
25
25
  };
26
+ '& .SCEventMembersWidget-event-button': {
27
+ left: string;
28
+ transform: string;
29
+ };
26
30
  };
27
31
  };
28
32
  skeletonRoot: ({ theme }: {
@@ -20,6 +20,10 @@ const Component = {
20
20
  left: '50%',
21
21
  transform: 'translate(-50%)',
22
22
  color: theme.palette.primary.main
23
+ },
24
+ '& .SCEventMembersWidget-event-button': {
25
+ left: '50%',
26
+ transform: 'translate(-50%)'
23
27
  }
24
28
  }
25
29
  }),
@@ -13,7 +13,6 @@ declare const Component: {
13
13
  '& .SCMyEventsWidget-arrows': {
14
14
  width: string;
15
15
  height: string;
16
- color: any;
17
16
  };
18
17
  '& .SCMyEventsWidget-action-button': {
19
18
  color: any;
@@ -11,7 +11,6 @@ const Component = {
11
11
  '& .SCMyEventsWidget-arrows': {
12
12
  width: '24px',
13
13
  height: '24px',
14
- color: theme.palette.primary.main
15
14
  },
16
15
  '& .SCMyEventsWidget-action-button': {
17
16
  color: theme.palette.primary.main,
@@ -1,7 +1,7 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
- maxHeight: string;
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
- maxHeight: 'inherit',
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(4),
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
- [theme.breakpoints.up('md')]: {
69
- marginTop: theme.spacing(2)
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': {
@@ -4884,7 +4884,7 @@ declare const theme: {
4884
4884
  SCOnBoardingWidget: {
4885
4885
  styleOverrides: {
4886
4886
  root: ({ theme }: any) => {
4887
- maxHeight: string;
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 }: {