@selfcommunity/react-theme-default 0.1.50-events.87 → 0.1.50-events.89
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/SCEventHeader.d.ts +4 -1
- package/lib/cjs/components/SCEventHeader.js +4 -1
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +5 -4
- package/lib/cjs/components/SCOnBoardingWidget.js +6 -5
- package/lib/cjs/index.d.ts +9 -5
- package/lib/esm/components/SCEventHeader.d.ts +4 -1
- package/lib/esm/components/SCEventHeader.js +4 -1
- package/lib/esm/components/SCOnBoardingWidget.d.ts +5 -4
- package/lib/esm/components/SCOnBoardingWidget.js +6 -5
- package/lib/esm/index.d.ts +9 -5
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -42,7 +42,10 @@ const Component = {
|
|
|
42
42
|
},
|
|
43
43
|
'& .SCEventHeader-chip': {
|
|
44
44
|
marginLeft: theme.spacing(2),
|
|
45
|
-
|
|
45
|
+
marginBottom: '5px',
|
|
46
|
+
'& .SCEventHeader-chip-icon': {
|
|
47
|
+
marginLeft: theme.spacing(1)
|
|
48
|
+
}
|
|
46
49
|
},
|
|
47
50
|
'& .SCEventHeader-time': {
|
|
48
51
|
textTransform: 'uppercase',
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
[x: number]: {
|
|
5
|
+
borderRadius: any;
|
|
6
|
+
};
|
|
5
7
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
8
|
[x: number]: {
|
|
7
9
|
width: string;
|
|
@@ -64,8 +66,7 @@ declare const Component: {
|
|
|
64
66
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
65
67
|
boxShadow: string;
|
|
66
68
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
|
|
68
|
-
paddingRight: number;
|
|
69
|
+
padding: number;
|
|
69
70
|
'& .SCOnBoardingWidget-content': {
|
|
70
71
|
'& .MuiCardContent-root': {
|
|
71
72
|
[x: number]: {
|
|
@@ -82,7 +83,7 @@ declare const Component: {
|
|
|
82
83
|
};
|
|
83
84
|
};
|
|
84
85
|
'& .MuiAccordionSummary-root': {
|
|
85
|
-
|
|
86
|
+
borderBottom: string;
|
|
86
87
|
borderRadius: any;
|
|
87
88
|
borderBottomLeftRadius: any;
|
|
88
89
|
borderBottomRightRadius: any;
|
|
@@ -3,12 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
|
|
6
|
+
[theme.breakpoints.up('md')]: {
|
|
7
|
+
borderRadius: theme.shape.borderRadius
|
|
8
|
+
},
|
|
7
9
|
'& .SCOnBoardingWidget-step-content': {
|
|
8
10
|
[theme.breakpoints.up('md')]: {
|
|
9
11
|
width: '70%'
|
|
10
12
|
},
|
|
11
|
-
padding: theme.spacing(
|
|
13
|
+
padding: theme.spacing(1, 2, 2, 2)
|
|
12
14
|
},
|
|
13
15
|
'& .SCOnBoardingWidget-logo': {
|
|
14
16
|
width: 'auto'
|
|
@@ -66,8 +68,7 @@ const Component = {
|
|
|
66
68
|
accordionRoot: ({ theme, expanded }) => ({
|
|
67
69
|
boxShadow: 'none',
|
|
68
70
|
'& .MuiAccordionDetails-root ': {
|
|
69
|
-
|
|
70
|
-
paddingRight: 0,
|
|
71
|
+
padding: 0,
|
|
71
72
|
'& .SCOnBoardingWidget-content': {
|
|
72
73
|
'& .MuiCardContent-root': {
|
|
73
74
|
padding: 0,
|
|
@@ -84,7 +85,7 @@ const Component = {
|
|
|
84
85
|
}
|
|
85
86
|
},
|
|
86
87
|
'& .MuiAccordionSummary-root': {
|
|
87
|
-
|
|
88
|
+
borderBottom: `1px solid ${theme.palette.grey[200]}`,
|
|
88
89
|
borderRadius: theme.shape.borderRadius,
|
|
89
90
|
borderBottomLeftRadius: expanded ? 0 : theme.shape.borderRadius,
|
|
90
91
|
borderBottomRightRadius: expanded ? 0 : theme.shape.borderRadius,
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -4884,7 +4884,9 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
[x: number]: {
|
|
4888
|
+
borderRadius: any;
|
|
4889
|
+
};
|
|
4888
4890
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4891
|
[x: number]: {
|
|
4890
4892
|
width: string;
|
|
@@ -4947,8 +4949,7 @@ declare const theme: {
|
|
|
4947
4949
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4948
4950
|
boxShadow: string;
|
|
4949
4951
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
|
|
4951
|
-
paddingRight: number;
|
|
4952
|
+
padding: number;
|
|
4952
4953
|
'& .SCOnBoardingWidget-content': {
|
|
4953
4954
|
'& .MuiCardContent-root': {
|
|
4954
4955
|
[x: number]: {
|
|
@@ -4965,7 +4966,7 @@ declare const theme: {
|
|
|
4965
4966
|
};
|
|
4966
4967
|
};
|
|
4967
4968
|
'& .MuiAccordionSummary-root': {
|
|
4968
|
-
|
|
4969
|
+
borderBottom: string;
|
|
4969
4970
|
borderRadius: any;
|
|
4970
4971
|
borderBottomLeftRadius: any;
|
|
4971
4972
|
borderBottomRightRadius: any;
|
|
@@ -7114,7 +7115,10 @@ declare const theme: {
|
|
|
7114
7115
|
};
|
|
7115
7116
|
'& .SCEventHeader-chip': {
|
|
7116
7117
|
marginLeft: any;
|
|
7117
|
-
|
|
7118
|
+
marginBottom: string;
|
|
7119
|
+
'& .SCEventHeader-chip-icon': {
|
|
7120
|
+
marginLeft: any;
|
|
7121
|
+
};
|
|
7118
7122
|
};
|
|
7119
7123
|
'& .SCEventHeader-time': {
|
|
7120
7124
|
textTransform: string;
|
|
@@ -40,7 +40,10 @@ const Component = {
|
|
|
40
40
|
},
|
|
41
41
|
'& .SCEventHeader-chip': {
|
|
42
42
|
marginLeft: theme.spacing(2),
|
|
43
|
-
|
|
43
|
+
marginBottom: '5px',
|
|
44
|
+
'& .SCEventHeader-chip-icon': {
|
|
45
|
+
marginLeft: theme.spacing(1)
|
|
46
|
+
}
|
|
44
47
|
},
|
|
45
48
|
'& .SCEventHeader-time': {
|
|
46
49
|
textTransform: 'uppercase',
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
[x: number]: {
|
|
5
|
+
borderRadius: any;
|
|
6
|
+
};
|
|
5
7
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
8
|
[x: number]: {
|
|
7
9
|
width: string;
|
|
@@ -64,8 +66,7 @@ declare const Component: {
|
|
|
64
66
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
65
67
|
boxShadow: string;
|
|
66
68
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
|
|
68
|
-
paddingRight: number;
|
|
69
|
+
padding: number;
|
|
69
70
|
'& .SCOnBoardingWidget-content': {
|
|
70
71
|
'& .MuiCardContent-root': {
|
|
71
72
|
[x: number]: {
|
|
@@ -82,7 +83,7 @@ declare const Component: {
|
|
|
82
83
|
};
|
|
83
84
|
};
|
|
84
85
|
'& .MuiAccordionSummary-root': {
|
|
85
|
-
|
|
86
|
+
borderBottom: string;
|
|
86
87
|
borderRadius: any;
|
|
87
88
|
borderBottomLeftRadius: any;
|
|
88
89
|
borderBottomRightRadius: any;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
-
|
|
4
|
+
[theme.breakpoints.up('md')]: {
|
|
5
|
+
borderRadius: theme.shape.borderRadius
|
|
6
|
+
},
|
|
5
7
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
8
|
[theme.breakpoints.up('md')]: {
|
|
7
9
|
width: '70%'
|
|
8
10
|
},
|
|
9
|
-
padding: theme.spacing(
|
|
11
|
+
padding: theme.spacing(1, 2, 2, 2)
|
|
10
12
|
},
|
|
11
13
|
'& .SCOnBoardingWidget-logo': {
|
|
12
14
|
width: 'auto'
|
|
@@ -64,8 +66,7 @@ const Component = {
|
|
|
64
66
|
accordionRoot: ({ theme, expanded }) => ({
|
|
65
67
|
boxShadow: 'none',
|
|
66
68
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
|
|
68
|
-
paddingRight: 0,
|
|
69
|
+
padding: 0,
|
|
69
70
|
'& .SCOnBoardingWidget-content': {
|
|
70
71
|
'& .MuiCardContent-root': {
|
|
71
72
|
padding: 0,
|
|
@@ -82,7 +83,7 @@ const Component = {
|
|
|
82
83
|
}
|
|
83
84
|
},
|
|
84
85
|
'& .MuiAccordionSummary-root': {
|
|
85
|
-
|
|
86
|
+
borderBottom: `1px solid ${theme.palette.grey[200]}`,
|
|
86
87
|
borderRadius: theme.shape.borderRadius,
|
|
87
88
|
borderBottomLeftRadius: expanded ? 0 : theme.shape.borderRadius,
|
|
88
89
|
borderBottomRightRadius: expanded ? 0 : theme.shape.borderRadius,
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -4884,7 +4884,9 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
[x: number]: {
|
|
4888
|
+
borderRadius: any;
|
|
4889
|
+
};
|
|
4888
4890
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4891
|
[x: number]: {
|
|
4890
4892
|
width: string;
|
|
@@ -4947,8 +4949,7 @@ declare const theme: {
|
|
|
4947
4949
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4948
4950
|
boxShadow: string;
|
|
4949
4951
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
|
|
4951
|
-
paddingRight: number;
|
|
4952
|
+
padding: number;
|
|
4952
4953
|
'& .SCOnBoardingWidget-content': {
|
|
4953
4954
|
'& .MuiCardContent-root': {
|
|
4954
4955
|
[x: number]: {
|
|
@@ -4965,7 +4966,7 @@ declare const theme: {
|
|
|
4965
4966
|
};
|
|
4966
4967
|
};
|
|
4967
4968
|
'& .MuiAccordionSummary-root': {
|
|
4968
|
-
|
|
4969
|
+
borderBottom: string;
|
|
4969
4970
|
borderRadius: any;
|
|
4970
4971
|
borderBottomLeftRadius: any;
|
|
4971
4972
|
borderBottomRightRadius: any;
|
|
@@ -7114,7 +7115,10 @@ declare const theme: {
|
|
|
7114
7115
|
};
|
|
7115
7116
|
'& .SCEventHeader-chip': {
|
|
7116
7117
|
marginLeft: any;
|
|
7117
|
-
|
|
7118
|
+
marginBottom: string;
|
|
7119
|
+
'& .SCEventHeader-chip-icon': {
|
|
7120
|
+
marginLeft: any;
|
|
7121
|
+
};
|
|
7118
7122
|
};
|
|
7119
7123
|
'& .SCEventHeader-time': {
|
|
7120
7124
|
textTransform: string;
|