@selfcommunity/react-theme-default 0.1.50-events.43 → 0.1.50-events.46
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/SCCalendar.d.ts +24 -0
- package/lib/cjs/components/SCCalendar.js +24 -0
- package/lib/cjs/components/SCCreateEventWidget.d.ts +56 -0
- package/lib/cjs/components/SCCreateEventWidget.js +54 -0
- package/lib/cjs/components/SCEventPartecipantsButton.d.ts +11 -0
- package/lib/cjs/components/SCEventPartecipantsButton.js +11 -0
- package/lib/cjs/components/SCEvents.d.ts +3 -1
- package/lib/cjs/components/SCEvents.js +3 -1
- package/lib/cjs/components/SCMyEventsWidget.d.ts +64 -0
- package/lib/cjs/components/SCMyEventsWidget.js +62 -0
- package/lib/cjs/index.d.ts +166 -1
- package/lib/cjs/index.js +9 -3
- package/lib/esm/components/SCCalendar.d.ts +24 -0
- package/lib/esm/components/SCCalendar.js +22 -0
- package/lib/esm/components/SCCreateEventWidget.d.ts +56 -0
- package/lib/esm/components/SCCreateEventWidget.js +52 -0
- package/lib/esm/components/SCEventPartecipantsButton.d.ts +11 -0
- package/lib/esm/components/SCEventPartecipantsButton.js +9 -0
- package/lib/esm/components/SCEvents.d.ts +3 -1
- package/lib/esm/components/SCEvents.js +3 -1
- package/lib/esm/components/SCMyEventsWidget.d.ts +64 -0
- package/lib/esm/components/SCMyEventsWidget.js +60 -0
- package/lib/esm/index.d.ts +166 -1
- package/lib/esm/index.js +9 -3
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
gap: string;
|
|
7
|
+
position: string;
|
|
8
|
+
bottom: string;
|
|
9
|
+
left: string;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
borderRadius: string;
|
|
13
|
+
boxShadow: string;
|
|
14
|
+
backgroundColor: any;
|
|
15
|
+
overflow: string;
|
|
16
|
+
'& .SCCalendar-header': {
|
|
17
|
+
width: string;
|
|
18
|
+
height: string;
|
|
19
|
+
backgroundColor: any;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export default Component;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
gap: '7px',
|
|
7
|
+
position: 'absolute',
|
|
8
|
+
bottom: '-36px',
|
|
9
|
+
left: '24px',
|
|
10
|
+
width: '60px',
|
|
11
|
+
height: '60px',
|
|
12
|
+
borderRadius: '5px',
|
|
13
|
+
boxShadow: '0px 3px 8px #00000040',
|
|
14
|
+
backgroundColor: theme.palette.common.white,
|
|
15
|
+
overflow: 'hidden',
|
|
16
|
+
'& .SCCalendar-header': {
|
|
17
|
+
width: '100%',
|
|
18
|
+
height: '16px',
|
|
19
|
+
backgroundColor: theme.palette.error.dark
|
|
20
|
+
}
|
|
21
|
+
})
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.default = Component;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
'& .SCCreateEventWidget-image': {
|
|
7
|
+
height: string;
|
|
8
|
+
};
|
|
9
|
+
'& .SCCreateEventWidget-calendar': {
|
|
10
|
+
position: string;
|
|
11
|
+
top: string;
|
|
12
|
+
left: string;
|
|
13
|
+
transform: string;
|
|
14
|
+
color: any;
|
|
15
|
+
};
|
|
16
|
+
'& .SCCreateEventWidget-content': {
|
|
17
|
+
padding: string;
|
|
18
|
+
'& .SCCreateEventWidget-title': {
|
|
19
|
+
textAlign: string;
|
|
20
|
+
marginBottom: any;
|
|
21
|
+
};
|
|
22
|
+
'& .SCCreateEventWidget-spacing': {
|
|
23
|
+
marginBottom: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
'& .SCCreateEventWidget-actions': {
|
|
27
|
+
padding: string;
|
|
28
|
+
justifyContent: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
skeletonRoot: ({ theme }: {
|
|
32
|
+
theme: any;
|
|
33
|
+
}) => {
|
|
34
|
+
'& .SCCreateEventWidget-calendar': {
|
|
35
|
+
position: string;
|
|
36
|
+
top: string;
|
|
37
|
+
left: string;
|
|
38
|
+
transform: string;
|
|
39
|
+
};
|
|
40
|
+
'& .SCCreateEventWidget-content': {
|
|
41
|
+
padding: string;
|
|
42
|
+
'& .SCCreateEventWidget-title': {
|
|
43
|
+
textAlign: string;
|
|
44
|
+
};
|
|
45
|
+
'& .SCCreateEventWidget-spacing': {
|
|
46
|
+
marginBottom: any;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
'& .SCCreateEventWidget-actions': {
|
|
50
|
+
padding: string;
|
|
51
|
+
justifyContent: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default Component;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCCreateEventWidget-image': {
|
|
7
|
+
height: '110px'
|
|
8
|
+
},
|
|
9
|
+
'& .SCCreateEventWidget-calendar': {
|
|
10
|
+
position: 'absolute',
|
|
11
|
+
top: '50%',
|
|
12
|
+
left: '50%',
|
|
13
|
+
transform: 'translate(-50%, -50%)',
|
|
14
|
+
color: theme.palette.common.white
|
|
15
|
+
},
|
|
16
|
+
'& .SCCreateEventWidget-content': {
|
|
17
|
+
padding: `${theme.spacing(2)} ${theme.spacing(2)} 0 !important`,
|
|
18
|
+
'& .SCCreateEventWidget-title': {
|
|
19
|
+
textAlign: 'center',
|
|
20
|
+
marginBottom: theme.spacing(2)
|
|
21
|
+
},
|
|
22
|
+
'& .SCCreateEventWidget-spacing': {
|
|
23
|
+
marginBottom: theme.spacing(2)
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
'& .SCCreateEventWidget-actions': {
|
|
27
|
+
padding: `0 ${theme.spacing(2)} ${theme.spacing(2)}`,
|
|
28
|
+
justifyContent: 'center'
|
|
29
|
+
}
|
|
30
|
+
}),
|
|
31
|
+
skeletonRoot: ({ theme }) => ({
|
|
32
|
+
'& .SCCreateEventWidget-calendar': {
|
|
33
|
+
position: 'absolute',
|
|
34
|
+
top: '50%',
|
|
35
|
+
left: '50%',
|
|
36
|
+
transform: 'translate(-50%, -50%)'
|
|
37
|
+
},
|
|
38
|
+
'& .SCCreateEventWidget-content': {
|
|
39
|
+
padding: `${theme.spacing(2)} ${theme.spacing(2)} 0 !important`,
|
|
40
|
+
'& .SCCreateEventWidget-title': {
|
|
41
|
+
textAlign: 'center'
|
|
42
|
+
},
|
|
43
|
+
'& .SCCreateEventWidget-spacing': {
|
|
44
|
+
marginBottom: theme.spacing(2)
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
'& .SCCreateEventWidget-actions': {
|
|
48
|
+
padding: `0 ${theme.spacing(2)} ${theme.spacing(2)}`,
|
|
49
|
+
justifyContent: 'center'
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
exports.default = Component;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
'& .SCMyEventsWidget-title-wrapper': {
|
|
7
|
+
padding: string;
|
|
8
|
+
};
|
|
9
|
+
'& .SCMyEventsWidget-content': {
|
|
10
|
+
padding: string;
|
|
11
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
12
|
+
marginTop: string;
|
|
13
|
+
marginBottom: string;
|
|
14
|
+
};
|
|
15
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
16
|
+
marginTop: string;
|
|
17
|
+
marginBottom: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
'& .SCMyEventsWidget-actions': {
|
|
21
|
+
padding: string;
|
|
22
|
+
justifyContent: string;
|
|
23
|
+
gap: string;
|
|
24
|
+
'& .SCMyEventsWidget-arrows': {
|
|
25
|
+
width: string;
|
|
26
|
+
height: string;
|
|
27
|
+
color: any;
|
|
28
|
+
};
|
|
29
|
+
'& .SCMyEventsWidget-action-button': {
|
|
30
|
+
color: any;
|
|
31
|
+
textDecoration: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
skeletonRoot: ({ theme }: {
|
|
36
|
+
theme: any;
|
|
37
|
+
}) => {
|
|
38
|
+
'& .SCMyEventsWidget-calendar': {
|
|
39
|
+
position: string;
|
|
40
|
+
bottom: string;
|
|
41
|
+
left: string;
|
|
42
|
+
boxShadow: string;
|
|
43
|
+
};
|
|
44
|
+
'& .SCMyEventsWidget-content': {
|
|
45
|
+
padding: string;
|
|
46
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
47
|
+
marginTop: string;
|
|
48
|
+
marginBottom: any;
|
|
49
|
+
};
|
|
50
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
51
|
+
marginTop: any;
|
|
52
|
+
marginBottom: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
'& .SCMyEventsWidget-actions': {
|
|
56
|
+
height: string;
|
|
57
|
+
padding: string;
|
|
58
|
+
justifyContent: string;
|
|
59
|
+
gap: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export default Component;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCMyEventsWidget-title-wrapper': {
|
|
7
|
+
padding: `12px ${theme.spacing(2)}`
|
|
8
|
+
},
|
|
9
|
+
'& .SCMyEventsWidget-content': {
|
|
10
|
+
padding: `52px ${theme.spacing(3)} 0 !important`,
|
|
11
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
12
|
+
marginTop: '18px',
|
|
13
|
+
marginBottom: '16px'
|
|
14
|
+
},
|
|
15
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
16
|
+
marginTop: '16px',
|
|
17
|
+
marginBottom: '18px'
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
'& .SCMyEventsWidget-actions': {
|
|
21
|
+
padding: `0 ${theme.spacing(3)} 18px`,
|
|
22
|
+
justifyContent: 'center',
|
|
23
|
+
gap: '56px',
|
|
24
|
+
'& .SCMyEventsWidget-arrows': {
|
|
25
|
+
width: '24px',
|
|
26
|
+
height: '24px',
|
|
27
|
+
color: theme.palette.primary.main
|
|
28
|
+
},
|
|
29
|
+
'& .SCMyEventsWidget-action-button': {
|
|
30
|
+
color: theme.palette.primary.main,
|
|
31
|
+
textDecoration: 'none'
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}),
|
|
35
|
+
skeletonRoot: ({ theme }) => ({
|
|
36
|
+
'& .SCMyEventsWidget-calendar': {
|
|
37
|
+
position: 'absolute',
|
|
38
|
+
bottom: '-36px',
|
|
39
|
+
left: '24px',
|
|
40
|
+
boxShadow: '0px 3px 8px #00000040'
|
|
41
|
+
},
|
|
42
|
+
'& .SCMyEventsWidget-content': {
|
|
43
|
+
padding: `52px ${theme.spacing(3)} 0 !important`,
|
|
44
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
45
|
+
marginTop: '18px',
|
|
46
|
+
marginBottom: theme.spacing(2)
|
|
47
|
+
},
|
|
48
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
49
|
+
marginTop: theme.spacing(2),
|
|
50
|
+
marginBottom: '18px'
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
'& .SCMyEventsWidget-actions': {
|
|
54
|
+
height: '50px',
|
|
55
|
+
padding: `0 ${theme.spacing(3)} 18px`,
|
|
56
|
+
justifyContent: 'center',
|
|
57
|
+
gap: '56px'
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
exports.default = Component;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -6482,7 +6482,9 @@ declare const theme: {
|
|
|
6482
6482
|
};
|
|
6483
6483
|
'& .SCEvents-events': {
|
|
6484
6484
|
marginTop: any;
|
|
6485
|
-
'& .SCEvents-item': {
|
|
6485
|
+
'& .SCEvents-item': {
|
|
6486
|
+
paddingTop: any;
|
|
6487
|
+
};
|
|
6486
6488
|
'& .SCEvent-skeleton-root': {
|
|
6487
6489
|
padding: any;
|
|
6488
6490
|
};
|
|
@@ -6814,6 +6816,169 @@ declare const theme: {
|
|
|
6814
6816
|
};
|
|
6815
6817
|
};
|
|
6816
6818
|
};
|
|
6819
|
+
SCEventPartecipantsButton: {
|
|
6820
|
+
styleOverrides: {
|
|
6821
|
+
root: ({ theme }: {
|
|
6822
|
+
theme: any;
|
|
6823
|
+
}) => {
|
|
6824
|
+
/**
|
|
6825
|
+
* Style fragments - Imports - Start
|
|
6826
|
+
*/
|
|
6827
|
+
gap: any;
|
|
6828
|
+
};
|
|
6829
|
+
dialogRoot: () => {};
|
|
6830
|
+
};
|
|
6831
|
+
};
|
|
6832
|
+
SCMyEventsWidget: {
|
|
6833
|
+
styleOverrides: {
|
|
6834
|
+
root: ({ theme }: {
|
|
6835
|
+
theme: any;
|
|
6836
|
+
}) => {
|
|
6837
|
+
/**
|
|
6838
|
+
* Style fragments - Imports - Start
|
|
6839
|
+
*/
|
|
6840
|
+
'& .SCMyEventsWidget-title-wrapper': {
|
|
6841
|
+
padding: string;
|
|
6842
|
+
};
|
|
6843
|
+
'& .SCMyEventsWidget-content': {
|
|
6844
|
+
padding: string;
|
|
6845
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
6846
|
+
marginTop: string;
|
|
6847
|
+
marginBottom: string;
|
|
6848
|
+
};
|
|
6849
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
6850
|
+
marginTop: string;
|
|
6851
|
+
marginBottom: string;
|
|
6852
|
+
};
|
|
6853
|
+
};
|
|
6854
|
+
'& .SCMyEventsWidget-actions': {
|
|
6855
|
+
padding: string;
|
|
6856
|
+
justifyContent: string;
|
|
6857
|
+
gap: string;
|
|
6858
|
+
'& .SCMyEventsWidget-arrows': {
|
|
6859
|
+
width: string;
|
|
6860
|
+
height: string;
|
|
6861
|
+
color: any;
|
|
6862
|
+
};
|
|
6863
|
+
'& .SCMyEventsWidget-action-button': {
|
|
6864
|
+
color: any;
|
|
6865
|
+
textDecoration: string;
|
|
6866
|
+
};
|
|
6867
|
+
};
|
|
6868
|
+
};
|
|
6869
|
+
skeletonRoot: ({ theme }: {
|
|
6870
|
+
theme: any;
|
|
6871
|
+
}) => {
|
|
6872
|
+
'& .SCMyEventsWidget-calendar': {
|
|
6873
|
+
position: string;
|
|
6874
|
+
bottom: string;
|
|
6875
|
+
left: string;
|
|
6876
|
+
boxShadow: string;
|
|
6877
|
+
};
|
|
6878
|
+
'& .SCMyEventsWidget-content': {
|
|
6879
|
+
padding: string;
|
|
6880
|
+
'& .SCMyEventsWidget-first-divider': {
|
|
6881
|
+
marginTop: string;
|
|
6882
|
+
marginBottom: any;
|
|
6883
|
+
};
|
|
6884
|
+
'& .SCMyEventsWidget-second-divider': {
|
|
6885
|
+
marginTop: any;
|
|
6886
|
+
marginBottom: string;
|
|
6887
|
+
};
|
|
6888
|
+
};
|
|
6889
|
+
'& .SCMyEventsWidget-actions': {
|
|
6890
|
+
height: string;
|
|
6891
|
+
padding: string;
|
|
6892
|
+
justifyContent: string;
|
|
6893
|
+
gap: string;
|
|
6894
|
+
};
|
|
6895
|
+
};
|
|
6896
|
+
};
|
|
6897
|
+
};
|
|
6898
|
+
SCCalendar: {
|
|
6899
|
+
styleOverrides: {
|
|
6900
|
+
root: ({ theme }: {
|
|
6901
|
+
theme: any;
|
|
6902
|
+
}) => {
|
|
6903
|
+
/**
|
|
6904
|
+
* Style fragments - Imports - Start
|
|
6905
|
+
*/
|
|
6906
|
+
gap: string;
|
|
6907
|
+
position: string;
|
|
6908
|
+
bottom: string;
|
|
6909
|
+
left: string;
|
|
6910
|
+
width: string;
|
|
6911
|
+
height: string;
|
|
6912
|
+
borderRadius: string;
|
|
6913
|
+
boxShadow: string;
|
|
6914
|
+
backgroundColor: any;
|
|
6915
|
+
overflow: string;
|
|
6916
|
+
'& .SCCalendar-header': {
|
|
6917
|
+
width: string;
|
|
6918
|
+
height: string;
|
|
6919
|
+
backgroundColor: any;
|
|
6920
|
+
};
|
|
6921
|
+
};
|
|
6922
|
+
};
|
|
6923
|
+
};
|
|
6924
|
+
SCCreateEventWidget: {
|
|
6925
|
+
styleOverrides: {
|
|
6926
|
+
root: ({ theme }: {
|
|
6927
|
+
theme: any;
|
|
6928
|
+
}) => {
|
|
6929
|
+
/**
|
|
6930
|
+
* Style fragments - Imports - Start
|
|
6931
|
+
*/
|
|
6932
|
+
'& .SCCreateEventWidget-image': {
|
|
6933
|
+
height: string;
|
|
6934
|
+
};
|
|
6935
|
+
'& .SCCreateEventWidget-calendar': {
|
|
6936
|
+
position: string;
|
|
6937
|
+
top: string;
|
|
6938
|
+
left: string;
|
|
6939
|
+
transform: string;
|
|
6940
|
+
color: any;
|
|
6941
|
+
};
|
|
6942
|
+
'& .SCCreateEventWidget-content': {
|
|
6943
|
+
padding: string;
|
|
6944
|
+
'& .SCCreateEventWidget-title': {
|
|
6945
|
+
textAlign: string;
|
|
6946
|
+
marginBottom: any;
|
|
6947
|
+
};
|
|
6948
|
+
'& .SCCreateEventWidget-spacing': {
|
|
6949
|
+
marginBottom: any;
|
|
6950
|
+
};
|
|
6951
|
+
};
|
|
6952
|
+
'& .SCCreateEventWidget-actions': {
|
|
6953
|
+
padding: string;
|
|
6954
|
+
justifyContent: string;
|
|
6955
|
+
};
|
|
6956
|
+
};
|
|
6957
|
+
skeletonRoot: ({ theme }: {
|
|
6958
|
+
theme: any;
|
|
6959
|
+
}) => {
|
|
6960
|
+
'& .SCCreateEventWidget-calendar': {
|
|
6961
|
+
position: string;
|
|
6962
|
+
top: string;
|
|
6963
|
+
left: string;
|
|
6964
|
+
transform: string;
|
|
6965
|
+
};
|
|
6966
|
+
'& .SCCreateEventWidget-content': {
|
|
6967
|
+
padding: string;
|
|
6968
|
+
'& .SCCreateEventWidget-title': {
|
|
6969
|
+
textAlign: string;
|
|
6970
|
+
};
|
|
6971
|
+
'& .SCCreateEventWidget-spacing': {
|
|
6972
|
+
marginBottom: any;
|
|
6973
|
+
};
|
|
6974
|
+
};
|
|
6975
|
+
'& .SCCreateEventWidget-actions': {
|
|
6976
|
+
padding: string;
|
|
6977
|
+
justifyContent: string;
|
|
6978
|
+
};
|
|
6979
|
+
};
|
|
6980
|
+
};
|
|
6981
|
+
};
|
|
6817
6982
|
};
|
|
6818
6983
|
selfcommunity: {
|
|
6819
6984
|
user: {
|
package/lib/cjs/index.js
CHANGED
|
@@ -30,6 +30,7 @@ const SCBaseItemButton_1 = tslib_1.__importDefault(require("./components/SCBaseI
|
|
|
30
30
|
const SCBottomNavigation_1 = tslib_1.__importDefault(require("./components/SCBottomNavigation"));
|
|
31
31
|
const SCBroadcastMessages_1 = tslib_1.__importDefault(require("./components/SCBroadcastMessages"));
|
|
32
32
|
const SCBullet_1 = tslib_1.__importDefault(require("./components/SCBullet"));
|
|
33
|
+
const SCCalendar_1 = tslib_1.__importDefault(require("./components/SCCalendar"));
|
|
33
34
|
const SCCategories_1 = tslib_1.__importDefault(require("./components/SCCategories"));
|
|
34
35
|
const SCCategoriesPopularWidget_1 = tslib_1.__importDefault(require("./components/SCCategoriesPopularWidget"));
|
|
35
36
|
const SCCategoriesSuggestionWidget_1 = tslib_1.__importDefault(require("./components/SCCategoriesSuggestionWidget"));
|
|
@@ -54,6 +55,7 @@ const SCComposer_1 = tslib_1.__importDefault(require("./components/SCComposer"))
|
|
|
54
55
|
const SCConsentSolution_1 = tslib_1.__importDefault(require("./components/SCConsentSolution"));
|
|
55
56
|
const SCContributionActionsMenu_1 = tslib_1.__importDefault(require("./components/SCContributionActionsMenu"));
|
|
56
57
|
const SCCreateEventButton_1 = tslib_1.__importDefault(require("./components/SCCreateEventButton"));
|
|
58
|
+
const SCCreateEventWidget_1 = tslib_1.__importDefault(require("./components/SCCreateEventWidget"));
|
|
57
59
|
const SCCreateGroupButton_1 = tslib_1.__importDefault(require("./components/SCCreateGroupButton"));
|
|
58
60
|
const SCCustomAdv_1 = tslib_1.__importDefault(require("./components/SCCustomAdv"));
|
|
59
61
|
const SCCustomSnackMessage_1 = tslib_1.__importDefault(require("./components/SCCustomSnackMessage"));
|
|
@@ -69,6 +71,7 @@ const SCEventInfoDetails_1 = tslib_1.__importDefault(require("./components/SCEve
|
|
|
69
71
|
const SCEventInfoWidget_1 = tslib_1.__importDefault(require("./components/SCEventInfoWidget"));
|
|
70
72
|
const SCEventInviteButton_1 = tslib_1.__importDefault(require("./components/SCEventInviteButton"));
|
|
71
73
|
const SCEventLocationWidget_1 = tslib_1.__importDefault(require("./components/SCEventLocationWidget"));
|
|
74
|
+
const SCEventPartecipantsButton_1 = tslib_1.__importDefault(require("./components/SCEventPartecipantsButton"));
|
|
72
75
|
const SCEvents_1 = tslib_1.__importDefault(require("./components/SCEvents"));
|
|
73
76
|
const SCEventSubscribeButton_1 = tslib_1.__importDefault(require("./components/SCEventSubscribeButton"));
|
|
74
77
|
const SCExploreFeedTemplate_1 = tslib_1.__importDefault(require("./components/SCExploreFeedTemplate"));
|
|
@@ -104,7 +107,7 @@ const SCLoyaltyProgramWidget_1 = tslib_1.__importDefault(require("./components/S
|
|
|
104
107
|
const SCMainFeedTemplate_1 = tslib_1.__importDefault(require("./components/SCMainFeedTemplate"));
|
|
105
108
|
const SCMediaFile_1 = tslib_1.__importDefault(require("./components/SCMediaFile"));
|
|
106
109
|
const SCMediaLink_1 = tslib_1.__importDefault(require("./components/SCMediaLink"));
|
|
107
|
-
|
|
110
|
+
const SCMyEventsWidget_1 = tslib_1.__importDefault(require("./components/SCMyEventsWidget"));
|
|
108
111
|
const SCNavigationMenuIconButton_1 = tslib_1.__importDefault(require("./components/SCNavigationMenuIconButton"));
|
|
109
112
|
const SCNavigationSettingsIconButton_1 = tslib_1.__importDefault(require("./components/SCNavigationSettingsIconButton"));
|
|
110
113
|
const SCNavigationToolbar_1 = tslib_1.__importDefault(require("./components/SCNavigationToolbar"));
|
|
@@ -275,7 +278,6 @@ const theme = {
|
|
|
275
278
|
SCLoyaltyProgramDetailTemplate: SCLoyaltyProgramDetailTemplate_1.default,
|
|
276
279
|
SCMediaFile: SCMediaFile_1.default,
|
|
277
280
|
SCMediaLink: SCMediaLink_1.default,
|
|
278
|
-
// SCMyEventsWidget,
|
|
279
281
|
SCNavigationSettingsIconButton: SCNavigationSettingsIconButton_1.default,
|
|
280
282
|
SCDefaultHeaderContent: SCDefaultHeaderContent_1.default,
|
|
281
283
|
SCNavigationToolbar: SCNavigationToolbar_1.default,
|
|
@@ -363,7 +365,11 @@ const theme = {
|
|
|
363
365
|
SCEventHeader: SCEventHeader_1.default,
|
|
364
366
|
SCEventInfoWidget: SCEventInfoWidget_1.default,
|
|
365
367
|
SCEventInfoDetails: SCEventInfoDetails_1.default,
|
|
366
|
-
SCEventSubscribeButton: SCEventSubscribeButton_1.default
|
|
368
|
+
SCEventSubscribeButton: SCEventSubscribeButton_1.default,
|
|
369
|
+
SCEventPartecipantsButton: SCEventPartecipantsButton_1.default,
|
|
370
|
+
SCMyEventsWidget: SCMyEventsWidget_1.default,
|
|
371
|
+
SCCalendar: SCCalendar_1.default,
|
|
372
|
+
SCCreateEventWidget: SCCreateEventWidget_1.default
|
|
367
373
|
},
|
|
368
374
|
selfcommunity: {
|
|
369
375
|
user: {
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
gap: string;
|
|
7
|
+
position: string;
|
|
8
|
+
bottom: string;
|
|
9
|
+
left: string;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
borderRadius: string;
|
|
13
|
+
boxShadow: string;
|
|
14
|
+
backgroundColor: any;
|
|
15
|
+
overflow: string;
|
|
16
|
+
'& .SCCalendar-header': {
|
|
17
|
+
width: string;
|
|
18
|
+
height: string;
|
|
19
|
+
backgroundColor: any;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const Component = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }) => ({
|
|
4
|
+
gap: '7px',
|
|
5
|
+
position: 'absolute',
|
|
6
|
+
bottom: '-36px',
|
|
7
|
+
left: '24px',
|
|
8
|
+
width: '60px',
|
|
9
|
+
height: '60px',
|
|
10
|
+
borderRadius: '5px',
|
|
11
|
+
boxShadow: '0px 3px 8px #00000040',
|
|
12
|
+
backgroundColor: theme.palette.common.white,
|
|
13
|
+
overflow: 'hidden',
|
|
14
|
+
'& .SCCalendar-header': {
|
|
15
|
+
width: '100%',
|
|
16
|
+
height: '16px',
|
|
17
|
+
backgroundColor: theme.palette.error.dark
|
|
18
|
+
}
|
|
19
|
+
})
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
'& .SCCreateEventWidget-image': {
|
|
7
|
+
height: string;
|
|
8
|
+
};
|
|
9
|
+
'& .SCCreateEventWidget-calendar': {
|
|
10
|
+
position: string;
|
|
11
|
+
top: string;
|
|
12
|
+
left: string;
|
|
13
|
+
transform: string;
|
|
14
|
+
color: any;
|
|
15
|
+
};
|
|
16
|
+
'& .SCCreateEventWidget-content': {
|
|
17
|
+
padding: string;
|
|
18
|
+
'& .SCCreateEventWidget-title': {
|
|
19
|
+
textAlign: string;
|
|
20
|
+
marginBottom: any;
|
|
21
|
+
};
|
|
22
|
+
'& .SCCreateEventWidget-spacing': {
|
|
23
|
+
marginBottom: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
'& .SCCreateEventWidget-actions': {
|
|
27
|
+
padding: string;
|
|
28
|
+
justifyContent: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
skeletonRoot: ({ theme }: {
|
|
32
|
+
theme: any;
|
|
33
|
+
}) => {
|
|
34
|
+
'& .SCCreateEventWidget-calendar': {
|
|
35
|
+
position: string;
|
|
36
|
+
top: string;
|
|
37
|
+
left: string;
|
|
38
|
+
transform: string;
|
|
39
|
+
};
|
|
40
|
+
'& .SCCreateEventWidget-content': {
|
|
41
|
+
padding: string;
|
|
42
|
+
'& .SCCreateEventWidget-title': {
|
|
43
|
+
textAlign: string;
|
|
44
|
+
};
|
|
45
|
+
'& .SCCreateEventWidget-spacing': {
|
|
46
|
+
marginBottom: any;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
'& .SCCreateEventWidget-actions': {
|
|
50
|
+
padding: string;
|
|
51
|
+
justifyContent: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default Component;
|