@selfcommunity/react-theme-default 0.4.5-payments.205 → 0.4.5-payments.207

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.
@@ -1,6 +1,9 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
5
+ overflow: string;
6
+ };
4
7
  '& .SCCourses-filters': {
5
8
  alignItems: string;
6
9
  marginTop: any;
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
7
+ overflow: 'visible !important'
8
+ },
6
9
  '& .SCCourses-filters': {
7
10
  alignItems: 'center',
8
11
  marginTop: theme.spacing(),
@@ -3,19 +3,41 @@ declare const Component: {
3
3
  root: ({ theme }: any) => {
4
4
  '& .SCPaymentOrders-content': {
5
5
  position: string;
6
- padding: string;
6
+ margin: any;
7
7
  '& table': {
8
8
  '& tr': {
9
9
  '& th': {
10
10
  zIndex: number;
11
11
  };
12
12
  };
13
+ '& .SCGroup-root, .SCCategory-root': {
14
+ borderRadius: any;
15
+ maxWidth: string;
16
+ };
17
+ '& .SCPaymentProduct-root': {
18
+ borderRadius: string;
19
+ border: string;
20
+ boxShadow: string;
21
+ color: any;
22
+ '& .MuiAccordionSummary-root': {
23
+ backgroundColor: any;
24
+ opacity: number;
25
+ borderRadius: any;
26
+ };
27
+ };
28
+ };
29
+ '& .MuiCircularProgress-root': {
30
+ display: string;
31
+ margin: string;
13
32
  };
14
33
  };
15
34
  '& .SCPaymentOrders-filters': {
35
+ [x: number]: {
36
+ width: string;
37
+ };
16
38
  alignItems: string;
17
- marginTop: any;
18
- marginBottom: any;
39
+ margin: any;
40
+ width: string;
19
41
  '& .SCPaymentOrders-search': {
20
42
  '& .MuiInputBase-root': {
21
43
  paddingRight: number;
@@ -5,19 +5,41 @@ const Component = {
5
5
  root: ({ theme }) => ({
6
6
  '& .SCPaymentOrders-content': {
7
7
  position: 'relative',
8
- padding: '30px 10px',
8
+ margin: theme.spacing(1, 2),
9
9
  '& table': {
10
10
  '& tr': {
11
11
  '& th': {
12
12
  zIndex: 1
13
13
  }
14
+ },
15
+ '& .SCGroup-root, .SCCategory-root': {
16
+ borderRadius: theme.shape.borderRadius,
17
+ maxWidth: '96%'
18
+ },
19
+ '& .SCPaymentProduct-root': {
20
+ borderRadius: `${theme.shape.borderRadius}px !important`,
21
+ border: '1px solid #e5e5e5',
22
+ boxShadow: 'none',
23
+ color: theme.palette.text.primary,
24
+ '& .MuiAccordionSummary-root': {
25
+ backgroundColor: theme.palette.background.paper,
26
+ opacity: 1,
27
+ borderRadius: theme.shape.borderRadius
28
+ }
14
29
  }
30
+ },
31
+ '& .MuiCircularProgress-root': {
32
+ display: 'block',
33
+ margin: `${theme.spacing(7)} auto`
15
34
  }
16
35
  },
17
36
  '& .SCPaymentOrders-filters': {
18
37
  alignItems: 'center',
19
- marginTop: theme.spacing(),
20
- marginBottom: theme.spacing(2),
38
+ margin: theme.spacing(2),
39
+ width: '94%',
40
+ [theme.breakpoints.down('sm')]: {
41
+ width: '90%'
42
+ },
21
43
  '& .SCPaymentOrders-search': {
22
44
  '& .MuiInputBase-root': {
23
45
  paddingRight: 0,
@@ -2469,6 +2469,9 @@ declare const theme: {
2469
2469
  SCCourses: {
2470
2470
  styleOverrides: {
2471
2471
  root: ({ theme }: any) => {
2472
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
2473
+ overflow: string;
2474
+ };
2472
2475
  '& .SCCourses-filters': {
2473
2476
  alignItems: string;
2474
2477
  marginTop: any;
@@ -12076,19 +12079,41 @@ declare const theme: {
12076
12079
  root: ({ theme }: any) => {
12077
12080
  '& .SCPaymentOrders-content': {
12078
12081
  position: string;
12079
- padding: string;
12082
+ margin: any;
12080
12083
  '& table': {
12081
12084
  '& tr': {
12082
12085
  '& th': {
12083
12086
  zIndex: number;
12084
12087
  };
12085
12088
  };
12089
+ '& .SCGroup-root, .SCCategory-root': {
12090
+ borderRadius: any;
12091
+ maxWidth: string;
12092
+ };
12093
+ '& .SCPaymentProduct-root': {
12094
+ borderRadius: string;
12095
+ border: string;
12096
+ boxShadow: string;
12097
+ color: any;
12098
+ '& .MuiAccordionSummary-root': {
12099
+ backgroundColor: any;
12100
+ opacity: number;
12101
+ borderRadius: any;
12102
+ };
12103
+ };
12104
+ };
12105
+ '& .MuiCircularProgress-root': {
12106
+ display: string;
12107
+ margin: string;
12086
12108
  };
12087
12109
  };
12088
12110
  '& .SCPaymentOrders-filters': {
12111
+ [x: number]: {
12112
+ width: string;
12113
+ };
12089
12114
  alignItems: string;
12090
- marginTop: any;
12091
- marginBottom: any;
12115
+ margin: any;
12116
+ width: string;
12092
12117
  '& .SCPaymentOrders-search': {
12093
12118
  '& .MuiInputBase-root': {
12094
12119
  paddingRight: number;
@@ -1,6 +1,9 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
5
+ overflow: string;
6
+ };
4
7
  '& .SCCourses-filters': {
5
8
  alignItems: string;
6
9
  marginTop: any;
@@ -1,6 +1,9 @@
1
1
  const Component = {
2
2
  styleOverrides: {
3
3
  root: ({ theme }) => ({
4
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
5
+ overflow: 'visible !important'
6
+ },
4
7
  '& .SCCourses-filters': {
5
8
  alignItems: 'center',
6
9
  marginTop: theme.spacing(),
@@ -3,19 +3,41 @@ declare const Component: {
3
3
  root: ({ theme }: any) => {
4
4
  '& .SCPaymentOrders-content': {
5
5
  position: string;
6
- padding: string;
6
+ margin: any;
7
7
  '& table': {
8
8
  '& tr': {
9
9
  '& th': {
10
10
  zIndex: number;
11
11
  };
12
12
  };
13
+ '& .SCGroup-root, .SCCategory-root': {
14
+ borderRadius: any;
15
+ maxWidth: string;
16
+ };
17
+ '& .SCPaymentProduct-root': {
18
+ borderRadius: string;
19
+ border: string;
20
+ boxShadow: string;
21
+ color: any;
22
+ '& .MuiAccordionSummary-root': {
23
+ backgroundColor: any;
24
+ opacity: number;
25
+ borderRadius: any;
26
+ };
27
+ };
28
+ };
29
+ '& .MuiCircularProgress-root': {
30
+ display: string;
31
+ margin: string;
13
32
  };
14
33
  };
15
34
  '& .SCPaymentOrders-filters': {
35
+ [x: number]: {
36
+ width: string;
37
+ };
16
38
  alignItems: string;
17
- marginTop: any;
18
- marginBottom: any;
39
+ margin: any;
40
+ width: string;
19
41
  '& .SCPaymentOrders-search': {
20
42
  '& .MuiInputBase-root': {
21
43
  paddingRight: number;
@@ -3,19 +3,41 @@ const Component = {
3
3
  root: ({ theme }) => ({
4
4
  '& .SCPaymentOrders-content': {
5
5
  position: 'relative',
6
- padding: '30px 10px',
6
+ margin: theme.spacing(1, 2),
7
7
  '& table': {
8
8
  '& tr': {
9
9
  '& th': {
10
10
  zIndex: 1
11
11
  }
12
+ },
13
+ '& .SCGroup-root, .SCCategory-root': {
14
+ borderRadius: theme.shape.borderRadius,
15
+ maxWidth: '96%'
16
+ },
17
+ '& .SCPaymentProduct-root': {
18
+ borderRadius: `${theme.shape.borderRadius}px !important`,
19
+ border: '1px solid #e5e5e5',
20
+ boxShadow: 'none',
21
+ color: theme.palette.text.primary,
22
+ '& .MuiAccordionSummary-root': {
23
+ backgroundColor: theme.palette.background.paper,
24
+ opacity: 1,
25
+ borderRadius: theme.shape.borderRadius
26
+ }
12
27
  }
28
+ },
29
+ '& .MuiCircularProgress-root': {
30
+ display: 'block',
31
+ margin: `${theme.spacing(7)} auto`
13
32
  }
14
33
  },
15
34
  '& .SCPaymentOrders-filters': {
16
35
  alignItems: 'center',
17
- marginTop: theme.spacing(),
18
- marginBottom: theme.spacing(2),
36
+ margin: theme.spacing(2),
37
+ width: '94%',
38
+ [theme.breakpoints.down('sm')]: {
39
+ width: '90%'
40
+ },
19
41
  '& .SCPaymentOrders-search': {
20
42
  '& .MuiInputBase-root': {
21
43
  paddingRight: 0,
@@ -2469,6 +2469,9 @@ declare const theme: {
2469
2469
  SCCourses: {
2470
2470
  styleOverrides: {
2471
2471
  root: ({ theme }: any) => {
2472
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
2473
+ overflow: string;
2474
+ };
2472
2475
  '& .SCCourses-filters': {
2473
2476
  alignItems: string;
2474
2477
  marginTop: any;
@@ -12076,19 +12079,41 @@ declare const theme: {
12076
12079
  root: ({ theme }: any) => {
12077
12080
  '& .SCPaymentOrders-content': {
12078
12081
  position: string;
12079
- padding: string;
12082
+ margin: any;
12080
12083
  '& table': {
12081
12084
  '& tr': {
12082
12085
  '& th': {
12083
12086
  zIndex: number;
12084
12087
  };
12085
12088
  };
12089
+ '& .SCGroup-root, .SCCategory-root': {
12090
+ borderRadius: any;
12091
+ maxWidth: string;
12092
+ };
12093
+ '& .SCPaymentProduct-root': {
12094
+ borderRadius: string;
12095
+ border: string;
12096
+ boxShadow: string;
12097
+ color: any;
12098
+ '& .MuiAccordionSummary-root': {
12099
+ backgroundColor: any;
12100
+ opacity: number;
12101
+ borderRadius: any;
12102
+ };
12103
+ };
12104
+ };
12105
+ '& .MuiCircularProgress-root': {
12106
+ display: string;
12107
+ margin: string;
12086
12108
  };
12087
12109
  };
12088
12110
  '& .SCPaymentOrders-filters': {
12111
+ [x: number]: {
12112
+ width: string;
12113
+ };
12089
12114
  alignItems: string;
12090
- marginTop: any;
12091
- marginBottom: any;
12115
+ margin: any;
12116
+ width: string;
12092
12117
  '& .SCPaymentOrders-search': {
12093
12118
  '& .MuiInputBase-root': {
12094
12119
  paddingRight: number;