@selfcommunity/react-theme-default 0.1.50-events.53 → 0.1.50-events.55
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/SCEventForm.d.ts +0 -1
- package/lib/cjs/components/SCEventForm.js +1 -2
- package/lib/cjs/components/SCEventHeader.d.ts +5 -5
- package/lib/cjs/components/SCEventHeader.js +4 -4
- package/lib/cjs/components/SCEvents.d.ts +7 -0
- package/lib/cjs/components/SCEvents.js +7 -0
- package/lib/cjs/index.d.ts +12 -6
- package/lib/esm/components/SCEventForm.d.ts +0 -1
- package/lib/esm/components/SCEventForm.js +1 -2
- package/lib/esm/components/SCEventHeader.d.ts +5 -5
- package/lib/esm/components/SCEventHeader.js +4 -4
- package/lib/esm/components/SCEvents.d.ts +7 -0
- package/lib/esm/components/SCEvents.js +7 -0
- package/lib/esm/index.d.ts +12 -6
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -88,13 +88,12 @@ const Component = {
|
|
|
88
88
|
backgroundColor: theme.palette.grey['A200'],
|
|
89
89
|
borderRadius: 5,
|
|
90
90
|
'& .SCEventForm-event-address-tabs': {
|
|
91
|
-
padding: theme.spacing(
|
|
91
|
+
padding: theme.spacing(0, 2, 0, 2),
|
|
92
92
|
'& .MuiTabs-indicator': {
|
|
93
93
|
bottom: theme.spacing(1.5)
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
'& .SCEventForm-event-address-tab': {
|
|
97
|
-
minHeight: 0,
|
|
98
97
|
textTransform: 'none'
|
|
99
98
|
},
|
|
100
99
|
'& .SCEventForm-event-address-tab-content': {
|
|
@@ -18,6 +18,8 @@ declare const Component: {
|
|
|
18
18
|
color: any;
|
|
19
19
|
};
|
|
20
20
|
'& .SCEventHeader-info': {
|
|
21
|
+
paddingRight: any;
|
|
22
|
+
paddingLeft: any;
|
|
21
23
|
marginTop: any;
|
|
22
24
|
'& .SCEventHeader-name': {
|
|
23
25
|
fontSize: string;
|
|
@@ -57,14 +59,12 @@ declare const Component: {
|
|
|
57
59
|
};
|
|
58
60
|
maxWidth: string;
|
|
59
61
|
'& .SCEventHeader-multi-actions': {
|
|
60
|
-
[x: number]: {
|
|
61
|
-
'& .SCEventInviteButton-root': {
|
|
62
|
-
marginRight: any;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
62
|
display: string;
|
|
66
63
|
justifyContent: string;
|
|
67
64
|
alignItems: string;
|
|
65
|
+
'& .SCEventInviteButton-root': {
|
|
66
|
+
marginRight: any;
|
|
67
|
+
};
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
70
|
};
|
|
@@ -21,6 +21,8 @@ const Component = {
|
|
|
21
21
|
color: theme.palette.text.secondary
|
|
22
22
|
},
|
|
23
23
|
'& .SCEventHeader-info': {
|
|
24
|
+
paddingRight: theme.spacing(2),
|
|
25
|
+
paddingLeft: theme.spacing(2),
|
|
24
26
|
marginTop: theme.spacing(6),
|
|
25
27
|
'& .SCEventHeader-name': {
|
|
26
28
|
fontSize: '1.857rem',
|
|
@@ -63,10 +65,8 @@ const Component = {
|
|
|
63
65
|
display: 'flex',
|
|
64
66
|
justifyContent: 'space-between',
|
|
65
67
|
alignItems: 'center',
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
marginRight: theme.spacing(1)
|
|
69
|
-
}
|
|
68
|
+
'& .SCEventInviteButton-root': {
|
|
69
|
+
marginRight: theme.spacing(1)
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -14,6 +14,13 @@ declare const Component: {
|
|
|
14
14
|
'& .SCEvent-skeleton-root': {
|
|
15
15
|
padding: any;
|
|
16
16
|
};
|
|
17
|
+
'& .SCBaseItem-root': {
|
|
18
|
+
display: string;
|
|
19
|
+
justifyContent: string;
|
|
20
|
+
};
|
|
21
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
22
|
+
maxWidth: string;
|
|
23
|
+
};
|
|
17
24
|
};
|
|
18
25
|
'& .SCEvents-no-results': {
|
|
19
26
|
maxWidth: string;
|
|
@@ -15,6 +15,13 @@ const Component = {
|
|
|
15
15
|
},
|
|
16
16
|
'& .SCEvent-skeleton-root': {
|
|
17
17
|
padding: theme.spacing(0.5, 0, 0.5, 0)
|
|
18
|
+
},
|
|
19
|
+
'& .SCBaseItem-root': {
|
|
20
|
+
display: 'flex',
|
|
21
|
+
justifyContent: 'space-between'
|
|
22
|
+
},
|
|
23
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
24
|
+
maxWidth: '70%'
|
|
18
25
|
}
|
|
19
26
|
},
|
|
20
27
|
'& .SCEvents-no-results': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -6390,7 +6390,6 @@ declare const theme: {
|
|
|
6390
6390
|
};
|
|
6391
6391
|
};
|
|
6392
6392
|
'& .SCEventForm-event-address-tab': {
|
|
6393
|
-
minHeight: number;
|
|
6394
6393
|
textTransform: string;
|
|
6395
6394
|
};
|
|
6396
6395
|
'& .SCEventForm-event-address-tab-content': {
|
|
@@ -6648,6 +6647,13 @@ declare const theme: {
|
|
|
6648
6647
|
'& .SCEvent-skeleton-root': {
|
|
6649
6648
|
padding: any;
|
|
6650
6649
|
};
|
|
6650
|
+
'& .SCBaseItem-root': {
|
|
6651
|
+
display: string;
|
|
6652
|
+
justifyContent: string;
|
|
6653
|
+
};
|
|
6654
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
6655
|
+
maxWidth: string;
|
|
6656
|
+
};
|
|
6651
6657
|
};
|
|
6652
6658
|
'& .SCEvents-no-results': {
|
|
6653
6659
|
maxWidth: string;
|
|
@@ -6761,6 +6767,8 @@ declare const theme: {
|
|
|
6761
6767
|
color: any;
|
|
6762
6768
|
};
|
|
6763
6769
|
'& .SCEventHeader-info': {
|
|
6770
|
+
paddingRight: any;
|
|
6771
|
+
paddingLeft: any;
|
|
6764
6772
|
marginTop: any;
|
|
6765
6773
|
'& .SCEventHeader-name': {
|
|
6766
6774
|
fontSize: string;
|
|
@@ -6800,14 +6808,12 @@ declare const theme: {
|
|
|
6800
6808
|
};
|
|
6801
6809
|
maxWidth: string;
|
|
6802
6810
|
'& .SCEventHeader-multi-actions': {
|
|
6803
|
-
[x: number]: {
|
|
6804
|
-
'& .SCEventInviteButton-root': {
|
|
6805
|
-
marginRight: any;
|
|
6806
|
-
};
|
|
6807
|
-
};
|
|
6808
6811
|
display: string;
|
|
6809
6812
|
justifyContent: string;
|
|
6810
6813
|
alignItems: string;
|
|
6814
|
+
'& .SCEventInviteButton-root': {
|
|
6815
|
+
marginRight: any;
|
|
6816
|
+
};
|
|
6811
6817
|
};
|
|
6812
6818
|
};
|
|
6813
6819
|
};
|
|
@@ -86,13 +86,12 @@ const Component = {
|
|
|
86
86
|
backgroundColor: theme.palette.grey['A200'],
|
|
87
87
|
borderRadius: 5,
|
|
88
88
|
'& .SCEventForm-event-address-tabs': {
|
|
89
|
-
padding: theme.spacing(
|
|
89
|
+
padding: theme.spacing(0, 2, 0, 2),
|
|
90
90
|
'& .MuiTabs-indicator': {
|
|
91
91
|
bottom: theme.spacing(1.5)
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
'& .SCEventForm-event-address-tab': {
|
|
95
|
-
minHeight: 0,
|
|
96
95
|
textTransform: 'none'
|
|
97
96
|
},
|
|
98
97
|
'& .SCEventForm-event-address-tab-content': {
|
|
@@ -18,6 +18,8 @@ declare const Component: {
|
|
|
18
18
|
color: any;
|
|
19
19
|
};
|
|
20
20
|
'& .SCEventHeader-info': {
|
|
21
|
+
paddingRight: any;
|
|
22
|
+
paddingLeft: any;
|
|
21
23
|
marginTop: any;
|
|
22
24
|
'& .SCEventHeader-name': {
|
|
23
25
|
fontSize: string;
|
|
@@ -57,14 +59,12 @@ declare const Component: {
|
|
|
57
59
|
};
|
|
58
60
|
maxWidth: string;
|
|
59
61
|
'& .SCEventHeader-multi-actions': {
|
|
60
|
-
[x: number]: {
|
|
61
|
-
'& .SCEventInviteButton-root': {
|
|
62
|
-
marginRight: any;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
62
|
display: string;
|
|
66
63
|
justifyContent: string;
|
|
67
64
|
alignItems: string;
|
|
65
|
+
'& .SCEventInviteButton-root': {
|
|
66
|
+
marginRight: any;
|
|
67
|
+
};
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
70
|
};
|
|
@@ -19,6 +19,8 @@ const Component = {
|
|
|
19
19
|
color: theme.palette.text.secondary
|
|
20
20
|
},
|
|
21
21
|
'& .SCEventHeader-info': {
|
|
22
|
+
paddingRight: theme.spacing(2),
|
|
23
|
+
paddingLeft: theme.spacing(2),
|
|
22
24
|
marginTop: theme.spacing(6),
|
|
23
25
|
'& .SCEventHeader-name': {
|
|
24
26
|
fontSize: '1.857rem',
|
|
@@ -61,10 +63,8 @@ const Component = {
|
|
|
61
63
|
display: 'flex',
|
|
62
64
|
justifyContent: 'space-between',
|
|
63
65
|
alignItems: 'center',
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
marginRight: theme.spacing(1)
|
|
67
|
-
}
|
|
66
|
+
'& .SCEventInviteButton-root': {
|
|
67
|
+
marginRight: theme.spacing(1)
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -14,6 +14,13 @@ declare const Component: {
|
|
|
14
14
|
'& .SCEvent-skeleton-root': {
|
|
15
15
|
padding: any;
|
|
16
16
|
};
|
|
17
|
+
'& .SCBaseItem-root': {
|
|
18
|
+
display: string;
|
|
19
|
+
justifyContent: string;
|
|
20
|
+
};
|
|
21
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
22
|
+
maxWidth: string;
|
|
23
|
+
};
|
|
17
24
|
};
|
|
18
25
|
'& .SCEvents-no-results': {
|
|
19
26
|
maxWidth: string;
|
|
@@ -13,6 +13,13 @@ const Component = {
|
|
|
13
13
|
},
|
|
14
14
|
'& .SCEvent-skeleton-root': {
|
|
15
15
|
padding: theme.spacing(0.5, 0, 0.5, 0)
|
|
16
|
+
},
|
|
17
|
+
'& .SCBaseItem-root': {
|
|
18
|
+
display: 'flex',
|
|
19
|
+
justifyContent: 'space-between'
|
|
20
|
+
},
|
|
21
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
22
|
+
maxWidth: '70%'
|
|
16
23
|
}
|
|
17
24
|
},
|
|
18
25
|
'& .SCEvents-no-results': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -6390,7 +6390,6 @@ declare const theme: {
|
|
|
6390
6390
|
};
|
|
6391
6391
|
};
|
|
6392
6392
|
'& .SCEventForm-event-address-tab': {
|
|
6393
|
-
minHeight: number;
|
|
6394
6393
|
textTransform: string;
|
|
6395
6394
|
};
|
|
6396
6395
|
'& .SCEventForm-event-address-tab-content': {
|
|
@@ -6648,6 +6647,13 @@ declare const theme: {
|
|
|
6648
6647
|
'& .SCEvent-skeleton-root': {
|
|
6649
6648
|
padding: any;
|
|
6650
6649
|
};
|
|
6650
|
+
'& .SCBaseItem-root': {
|
|
6651
|
+
display: string;
|
|
6652
|
+
justifyContent: string;
|
|
6653
|
+
};
|
|
6654
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
6655
|
+
maxWidth: string;
|
|
6656
|
+
};
|
|
6651
6657
|
};
|
|
6652
6658
|
'& .SCEvents-no-results': {
|
|
6653
6659
|
maxWidth: string;
|
|
@@ -6761,6 +6767,8 @@ declare const theme: {
|
|
|
6761
6767
|
color: any;
|
|
6762
6768
|
};
|
|
6763
6769
|
'& .SCEventHeader-info': {
|
|
6770
|
+
paddingRight: any;
|
|
6771
|
+
paddingLeft: any;
|
|
6764
6772
|
marginTop: any;
|
|
6765
6773
|
'& .SCEventHeader-name': {
|
|
6766
6774
|
fontSize: string;
|
|
@@ -6800,14 +6808,12 @@ declare const theme: {
|
|
|
6800
6808
|
};
|
|
6801
6809
|
maxWidth: string;
|
|
6802
6810
|
'& .SCEventHeader-multi-actions': {
|
|
6803
|
-
[x: number]: {
|
|
6804
|
-
'& .SCEventInviteButton-root': {
|
|
6805
|
-
marginRight: any;
|
|
6806
|
-
};
|
|
6807
|
-
};
|
|
6808
6811
|
display: string;
|
|
6809
6812
|
justifyContent: string;
|
|
6810
6813
|
alignItems: string;
|
|
6814
|
+
'& .SCEventInviteButton-root': {
|
|
6815
|
+
marginRight: any;
|
|
6816
|
+
};
|
|
6811
6817
|
};
|
|
6812
6818
|
};
|
|
6813
6819
|
};
|