@selfcommunity/react-theme-default 0.5.0-mui7.28 → 0.5.0-mui7.30

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.
Files changed (32) hide show
  1. package/lib/cjs/components/SCCourseInfoDetails.d.ts +2 -2
  2. package/lib/cjs/components/SCCourseInfoDetails.js +2 -2
  3. package/lib/cjs/components/SCEventInfoDetails.d.ts +2 -2
  4. package/lib/cjs/components/SCEventInfoDetails.js +2 -2
  5. package/lib/cjs/components/SCLightbox.d.ts +3 -3
  6. package/lib/cjs/components/SCLightbox.js +3 -3
  7. package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +2 -2
  8. package/lib/cjs/components/SCLiveStreamInfoDetails.js +2 -2
  9. package/lib/cjs/components/SCLiveStreamRoom.d.ts +1 -1
  10. package/lib/cjs/components/SCLiveStreamRoom.js +1 -1
  11. package/lib/cjs/components/SCMediaFile.d.ts +2 -2
  12. package/lib/cjs/components/SCMediaFile.js +2 -2
  13. package/lib/cjs/components/SCOnBoardingWidget.d.ts +3 -3
  14. package/lib/cjs/components/SCOnBoardingWidget.js +3 -3
  15. package/lib/cjs/index.d.ts +15 -21
  16. package/lib/esm/components/SCCourseInfoDetails.d.ts +2 -2
  17. package/lib/esm/components/SCCourseInfoDetails.js +2 -2
  18. package/lib/esm/components/SCEventInfoDetails.d.ts +2 -2
  19. package/lib/esm/components/SCEventInfoDetails.js +2 -2
  20. package/lib/esm/components/SCLightbox.d.ts +3 -3
  21. package/lib/esm/components/SCLightbox.js +3 -3
  22. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +2 -2
  23. package/lib/esm/components/SCLiveStreamInfoDetails.js +2 -2
  24. package/lib/esm/components/SCLiveStreamRoom.d.ts +1 -1
  25. package/lib/esm/components/SCLiveStreamRoom.js +1 -1
  26. package/lib/esm/components/SCMediaFile.d.ts +2 -2
  27. package/lib/esm/components/SCMediaFile.js +2 -2
  28. package/lib/esm/components/SCOnBoardingWidget.d.ts +3 -3
  29. package/lib/esm/components/SCOnBoardingWidget.js +3 -3
  30. package/lib/esm/index.d.ts +15 -21
  31. package/lib/umd/react-theme-default.js +1 -1
  32. package/package.json +2 -2
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCCourseInfoDetails-in-progress': {
@@ -21,8 +21,8 @@ const Component = {
21
21
  overflow: 'hidden',
22
22
  textOverflow: 'ellipsis',
23
23
  display: '-webkit-box',
24
- '-webkit-line-clamp': '1',
25
- '-webkit-box-orient': 'vertical'
24
+ WebkitLineClamp: '1',
25
+ WebkitBoxOrient: 'vertical'
26
26
  }
27
27
  },
28
28
  '& .SCCourseInfoDetails-in-progress': {
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCEventInfoDetails-join-live': {
@@ -21,8 +21,8 @@ const Component = {
21
21
  overflow: 'hidden',
22
22
  textOverflow: 'ellipsis',
23
23
  display: '-webkit-box',
24
- '-webkit-line-clamp': '1',
25
- '-webkit-box-orient': 'vertical'
24
+ WebkitLineClamp: '1',
25
+ WebkitBoxOrient: 'vertical'
26
26
  }
27
27
  },
28
28
  '& .SCEventInfoDetails-join-live': {
@@ -10,11 +10,11 @@ declare const Component: {
10
10
  width: string;
11
11
  zIndex: number;
12
12
  "& .PhotoView__Spinner": {
13
- '-webkit-animation': string;
13
+ WebkitAnimation: string;
14
14
  animation: string;
15
15
  };
16
16
  "& .PhotoView__Spinner svg": {
17
- '-webkit-animation': string;
17
+ WebkitAnimation: string;
18
18
  animation: string;
19
19
  };
20
20
  "& .PhotoView__Photo": {
@@ -76,7 +76,7 @@ declare const Component: {
76
76
  zIndex: number;
77
77
  };
78
78
  "& .PhotoView-Slider__fadeIn": {
79
- '-webkit-animation': string;
79
+ WebkitAnimation: string;
80
80
  animation: string;
81
81
  opacity: number;
82
82
  };
@@ -35,11 +35,11 @@ const Component = {
35
35
  width: '100%',
36
36
  zIndex: 2000,
37
37
  ['& .PhotoView__Spinner']: {
38
- '-webkit-animation': `${PhotoViewDelayIn} .4s linear both`,
38
+ WebkitAnimation: `${PhotoViewDelayIn} .4s linear both`,
39
39
  animation: `${PhotoViewDelayIn} .4s linear both`
40
40
  },
41
41
  ['& .PhotoView__Spinner svg']: {
42
- '-webkit-animation': `${PhotoViewRotate} .6s linear infinite`,
42
+ WebkitAnimation: `${PhotoViewRotate} .6s linear infinite`,
43
43
  animation: `${PhotoViewRotate} .6s linear infinite`
44
44
  },
45
45
  ['& .PhotoView__Photo']: {
@@ -101,7 +101,7 @@ const Component = {
101
101
  zIndex: -1
102
102
  },
103
103
  ['& .PhotoView-Slider__fadeIn']: {
104
- '-webkit-animation': `${PhotoViewFade} linear both`,
104
+ WebkitAnimation: `${PhotoViewFade} linear both`,
105
105
  animation: `${PhotoViewFade} linear both`,
106
106
  opacity: 0
107
107
  },
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCLiveStreamInfoDetails-in-progress': {
@@ -21,8 +21,8 @@ const Component = {
21
21
  overflow: 'hidden',
22
22
  textOverflow: 'ellipsis',
23
23
  display: '-webkit-box',
24
- '-webkit-line-clamp': '1',
25
- '-webkit-box-orient': 'vertical'
24
+ WebkitLineClamp: '1',
25
+ WebkitBoxOrient: 'vertical'
26
26
  }
27
27
  },
28
28
  '& .SCLiveStreamInfoDetails-in-progress': {
@@ -49,7 +49,7 @@ declare const Component: {
49
49
  backgroundColor: any;
50
50
  '& textarea': {
51
51
  color: any;
52
- '-webkit-text-fill-color': any;
52
+ WebkitTextFillColor: any;
53
53
  };
54
54
  };
55
55
  "& .SCLiveStreamRoom-conference": {
@@ -51,7 +51,7 @@ const Component = {
51
51
  backgroundColor: theme.palette.background.paper,
52
52
  '& textarea': {
53
53
  color: theme.palette.text.primary,
54
- '-webkit-text-fill-color': theme.palette.text.primary
54
+ WebkitTextFillColor: theme.palette.text.primary
55
55
  }
56
56
  },
57
57
  [`& .SCLiveStreamRoom-conference`]: {
@@ -182,8 +182,8 @@ declare const Component: {
182
182
  '& .SCMediaFile-title': {
183
183
  textAlign: string;
184
184
  display: string;
185
- '-webkit-line-clamp': string;
186
- '-webkit-box-orient': string;
185
+ WebkitLineClamp: string;
186
+ WebkitBoxOrient: string;
187
187
  overflow: string;
188
188
  };
189
189
  '& .SCMediaFile-subtitle': {
@@ -182,8 +182,8 @@ const Component = {
182
182
  '& .SCMediaFile-title': {
183
183
  textAlign: 'left',
184
184
  display: '-webkit-box',
185
- '-webkit-line-clamp': '1',
186
- '-webkit-box-orient': 'vertical',
185
+ WebkitLineClamp: '1',
186
+ WebkitBoxOrient: 'vertical',
187
187
  overflow: 'hidden'
188
188
  },
189
189
  '& .SCMediaFile-subtitle': {
@@ -33,7 +33,7 @@ declare const Component: {
33
33
  '&::-webkit-scrollbar': {
34
34
  display: string;
35
35
  };
36
- '-webkit-overflow-scrolling': string;
36
+ WebkitOverflowScrolling: string;
37
37
  '& .MuiButtonBase-root, .MuiListItem-root': {
38
38
  marginRight: any;
39
39
  padding: number;
@@ -63,7 +63,7 @@ declare const Component: {
63
63
  };
64
64
  };
65
65
  };
66
- dialogRoot: ({ theme }: any) => {
66
+ dialogRoot: () => {
67
67
  '& .SCOnBoardingWidget-dialog-content': {
68
68
  whiteSpace: string;
69
69
  fontSize: string;
@@ -78,7 +78,7 @@ declare const Component: {
78
78
  };
79
79
  };
80
80
  };
81
- actionsDrawerRoot: ({ theme }: any) => {};
81
+ actionsDrawerRoot: () => {};
82
82
  accordionRoot: ({ theme, expanded }: any) => {
83
83
  boxShadow: string;
84
84
  '& .MuiAccordionDetails-root ': {
@@ -35,7 +35,7 @@ const Component = {
35
35
  '&::-webkit-scrollbar': {
36
36
  display: 'none'
37
37
  },
38
- '-webkit-overflow-scrolling': 'touch',
38
+ WebkitOverflowScrolling: 'touch',
39
39
  '& .MuiButtonBase-root, .MuiListItem-root': {
40
40
  marginRight: theme.spacing(0.5),
41
41
  padding: 0,
@@ -65,7 +65,7 @@ const Component = {
65
65
  }
66
66
  }
67
67
  }),
68
- dialogRoot: ({ theme }) => ({
68
+ dialogRoot: () => ({
69
69
  '& .SCOnBoardingWidget-dialog-content': {
70
70
  whiteSpace: 'pre-line',
71
71
  fontSize: '1.143rem'
@@ -80,7 +80,7 @@ const Component = {
80
80
  }
81
81
  }
82
82
  }),
83
- actionsDrawerRoot: ({ theme }) => ({}),
83
+ actionsDrawerRoot: () => ({}),
84
84
  accordionRoot: ({ theme, expanded }) => ({
85
85
  boxShadow: 'none',
86
86
  '& .MuiAccordionDetails-root ': {
@@ -2920,9 +2920,6 @@ declare const theme: {
2920
2920
  root: ({ theme }: {
2921
2921
  theme: any;
2922
2922
  }) => {
2923
- /**
2924
- * Style fragments - Imports - Start
2925
- */
2926
2923
  gap: any;
2927
2924
  '& .SCCourseInfoDetails-icon-text-wrapper': {
2928
2925
  flexDirection: string;
@@ -2941,8 +2938,8 @@ declare const theme: {
2941
2938
  overflow: string;
2942
2939
  textOverflow: string;
2943
2940
  display: string;
2944
- '-webkit-line-clamp': string;
2945
- '-webkit-box-orient': string;
2941
+ WebkitLineClamp: string;
2942
+ WebkitBoxOrient: string;
2946
2943
  };
2947
2944
  };
2948
2945
  '& .SCCourseInfoDetails-in-progress': {
@@ -6095,11 +6092,11 @@ declare const theme: {
6095
6092
  width: string;
6096
6093
  zIndex: number;
6097
6094
  "& .PhotoView__Spinner": {
6098
- '-webkit-animation': string;
6095
+ WebkitAnimation: string;
6099
6096
  animation: string;
6100
6097
  };
6101
6098
  "& .PhotoView__Spinner svg": {
6102
- '-webkit-animation': string;
6099
+ WebkitAnimation: string;
6103
6100
  animation: string;
6104
6101
  };
6105
6102
  "& .PhotoView__Photo": {
@@ -6161,7 +6158,7 @@ declare const theme: {
6161
6158
  zIndex: number;
6162
6159
  };
6163
6160
  "& .PhotoView-Slider__fadeIn": {
6164
- '-webkit-animation': string;
6161
+ WebkitAnimation: string;
6165
6162
  animation: string;
6166
6163
  opacity: number;
6167
6164
  };
@@ -6700,8 +6697,8 @@ declare const theme: {
6700
6697
  '& .SCMediaFile-title': {
6701
6698
  textAlign: string;
6702
6699
  display: string;
6703
- '-webkit-line-clamp': string;
6704
- '-webkit-box-orient': string;
6700
+ WebkitLineClamp: string;
6701
+ WebkitBoxOrient: string;
6705
6702
  overflow: string;
6706
6703
  };
6707
6704
  '& .SCMediaFile-subtitle': {
@@ -7619,7 +7616,7 @@ declare const theme: {
7619
7616
  '&::-webkit-scrollbar': {
7620
7617
  display: string;
7621
7618
  };
7622
- '-webkit-overflow-scrolling': string;
7619
+ WebkitOverflowScrolling: string;
7623
7620
  '& .MuiButtonBase-root, .MuiListItem-root': {
7624
7621
  marginRight: any;
7625
7622
  padding: number;
@@ -7649,7 +7646,7 @@ declare const theme: {
7649
7646
  };
7650
7647
  };
7651
7648
  };
7652
- dialogRoot: ({ theme }: any) => {
7649
+ dialogRoot: () => {
7653
7650
  '& .SCOnBoardingWidget-dialog-content': {
7654
7651
  whiteSpace: string;
7655
7652
  fontSize: string;
@@ -7664,7 +7661,7 @@ declare const theme: {
7664
7661
  };
7665
7662
  };
7666
7663
  };
7667
- actionsDrawerRoot: ({ theme }: any) => {};
7664
+ actionsDrawerRoot: () => {};
7668
7665
  accordionRoot: ({ theme, expanded }: any) => {
7669
7666
  boxShadow: string;
7670
7667
  '& .MuiAccordionDetails-root ': {
@@ -10281,8 +10278,8 @@ declare const theme: {
10281
10278
  overflow: string;
10282
10279
  textOverflow: string;
10283
10280
  display: string;
10284
- '-webkit-line-clamp': string;
10285
- '-webkit-box-orient': string;
10281
+ WebkitLineClamp: string;
10282
+ WebkitBoxOrient: string;
10286
10283
  };
10287
10284
  };
10288
10285
  '& .SCEventInfoDetails-join-live': {
@@ -11344,9 +11341,6 @@ declare const theme: {
11344
11341
  root: ({ theme }: {
11345
11342
  theme: any;
11346
11343
  }) => {
11347
- /**
11348
- * Style fragments - Imports - Start
11349
- */
11350
11344
  gap: any;
11351
11345
  '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
11352
11346
  flexDirection: string;
@@ -11365,8 +11359,8 @@ declare const theme: {
11365
11359
  overflow: string;
11366
11360
  textOverflow: string;
11367
11361
  display: string;
11368
- '-webkit-line-clamp': string;
11369
- '-webkit-box-orient': string;
11362
+ WebkitLineClamp: string;
11363
+ WebkitBoxOrient: string;
11370
11364
  };
11371
11365
  };
11372
11366
  '& .SCLiveStreamInfoDetails-in-progress': {
@@ -11694,7 +11688,7 @@ declare const theme: {
11694
11688
  backgroundColor: any;
11695
11689
  '& textarea': {
11696
11690
  color: any;
11697
- '-webkit-text-fill-color': any;
11691
+ WebkitTextFillColor: any;
11698
11692
  };
11699
11693
  };
11700
11694
  "& .SCLiveStreamRoom-conference": {
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCCourseInfoDetails-in-progress': {
@@ -19,8 +19,8 @@ const Component = {
19
19
  overflow: 'hidden',
20
20
  textOverflow: 'ellipsis',
21
21
  display: '-webkit-box',
22
- '-webkit-line-clamp': '1',
23
- '-webkit-box-orient': 'vertical'
22
+ WebkitLineClamp: '1',
23
+ WebkitBoxOrient: 'vertical'
24
24
  }
25
25
  },
26
26
  '& .SCCourseInfoDetails-in-progress': {
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCEventInfoDetails-join-live': {
@@ -19,8 +19,8 @@ const Component = {
19
19
  overflow: 'hidden',
20
20
  textOverflow: 'ellipsis',
21
21
  display: '-webkit-box',
22
- '-webkit-line-clamp': '1',
23
- '-webkit-box-orient': 'vertical'
22
+ WebkitLineClamp: '1',
23
+ WebkitBoxOrient: 'vertical'
24
24
  }
25
25
  },
26
26
  '& .SCEventInfoDetails-join-live': {
@@ -10,11 +10,11 @@ declare const Component: {
10
10
  width: string;
11
11
  zIndex: number;
12
12
  "& .PhotoView__Spinner": {
13
- '-webkit-animation': string;
13
+ WebkitAnimation: string;
14
14
  animation: string;
15
15
  };
16
16
  "& .PhotoView__Spinner svg": {
17
- '-webkit-animation': string;
17
+ WebkitAnimation: string;
18
18
  animation: string;
19
19
  };
20
20
  "& .PhotoView__Photo": {
@@ -76,7 +76,7 @@ declare const Component: {
76
76
  zIndex: number;
77
77
  };
78
78
  "& .PhotoView-Slider__fadeIn": {
79
- '-webkit-animation': string;
79
+ WebkitAnimation: string;
80
80
  animation: string;
81
81
  opacity: number;
82
82
  };
@@ -33,11 +33,11 @@ const Component = {
33
33
  width: '100%',
34
34
  zIndex: 2000,
35
35
  ['& .PhotoView__Spinner']: {
36
- '-webkit-animation': `${PhotoViewDelayIn} .4s linear both`,
36
+ WebkitAnimation: `${PhotoViewDelayIn} .4s linear both`,
37
37
  animation: `${PhotoViewDelayIn} .4s linear both`
38
38
  },
39
39
  ['& .PhotoView__Spinner svg']: {
40
- '-webkit-animation': `${PhotoViewRotate} .6s linear infinite`,
40
+ WebkitAnimation: `${PhotoViewRotate} .6s linear infinite`,
41
41
  animation: `${PhotoViewRotate} .6s linear infinite`
42
42
  },
43
43
  ['& .PhotoView__Photo']: {
@@ -99,7 +99,7 @@ const Component = {
99
99
  zIndex: -1
100
100
  },
101
101
  ['& .PhotoView-Slider__fadeIn']: {
102
- '-webkit-animation': `${PhotoViewFade} linear both`,
102
+ WebkitAnimation: `${PhotoViewFade} linear both`,
103
103
  animation: `${PhotoViewFade} linear both`,
104
104
  opacity: 0
105
105
  },
@@ -21,8 +21,8 @@ declare const Component: {
21
21
  overflow: string;
22
22
  textOverflow: string;
23
23
  display: string;
24
- '-webkit-line-clamp': string;
25
- '-webkit-box-orient': string;
24
+ WebkitLineClamp: string;
25
+ WebkitBoxOrient: string;
26
26
  };
27
27
  };
28
28
  '& .SCLiveStreamInfoDetails-in-progress': {
@@ -19,8 +19,8 @@ const Component = {
19
19
  overflow: 'hidden',
20
20
  textOverflow: 'ellipsis',
21
21
  display: '-webkit-box',
22
- '-webkit-line-clamp': '1',
23
- '-webkit-box-orient': 'vertical'
22
+ WebkitLineClamp: '1',
23
+ WebkitBoxOrient: 'vertical'
24
24
  }
25
25
  },
26
26
  '& .SCLiveStreamInfoDetails-in-progress': {
@@ -49,7 +49,7 @@ declare const Component: {
49
49
  backgroundColor: any;
50
50
  '& textarea': {
51
51
  color: any;
52
- '-webkit-text-fill-color': any;
52
+ WebkitTextFillColor: any;
53
53
  };
54
54
  };
55
55
  "& .SCLiveStreamRoom-conference": {
@@ -49,7 +49,7 @@ const Component = {
49
49
  backgroundColor: theme.palette.background.paper,
50
50
  '& textarea': {
51
51
  color: theme.palette.text.primary,
52
- '-webkit-text-fill-color': theme.palette.text.primary
52
+ WebkitTextFillColor: theme.palette.text.primary
53
53
  }
54
54
  },
55
55
  [`& .SCLiveStreamRoom-conference`]: {
@@ -182,8 +182,8 @@ declare const Component: {
182
182
  '& .SCMediaFile-title': {
183
183
  textAlign: string;
184
184
  display: string;
185
- '-webkit-line-clamp': string;
186
- '-webkit-box-orient': string;
185
+ WebkitLineClamp: string;
186
+ WebkitBoxOrient: string;
187
187
  overflow: string;
188
188
  };
189
189
  '& .SCMediaFile-subtitle': {
@@ -180,8 +180,8 @@ const Component = {
180
180
  '& .SCMediaFile-title': {
181
181
  textAlign: 'left',
182
182
  display: '-webkit-box',
183
- '-webkit-line-clamp': '1',
184
- '-webkit-box-orient': 'vertical',
183
+ WebkitLineClamp: '1',
184
+ WebkitBoxOrient: 'vertical',
185
185
  overflow: 'hidden'
186
186
  },
187
187
  '& .SCMediaFile-subtitle': {
@@ -33,7 +33,7 @@ declare const Component: {
33
33
  '&::-webkit-scrollbar': {
34
34
  display: string;
35
35
  };
36
- '-webkit-overflow-scrolling': string;
36
+ WebkitOverflowScrolling: string;
37
37
  '& .MuiButtonBase-root, .MuiListItem-root': {
38
38
  marginRight: any;
39
39
  padding: number;
@@ -63,7 +63,7 @@ declare const Component: {
63
63
  };
64
64
  };
65
65
  };
66
- dialogRoot: ({ theme }: any) => {
66
+ dialogRoot: () => {
67
67
  '& .SCOnBoardingWidget-dialog-content': {
68
68
  whiteSpace: string;
69
69
  fontSize: string;
@@ -78,7 +78,7 @@ declare const Component: {
78
78
  };
79
79
  };
80
80
  };
81
- actionsDrawerRoot: ({ theme }: any) => {};
81
+ actionsDrawerRoot: () => {};
82
82
  accordionRoot: ({ theme, expanded }: any) => {
83
83
  boxShadow: string;
84
84
  '& .MuiAccordionDetails-root ': {
@@ -33,7 +33,7 @@ const Component = {
33
33
  '&::-webkit-scrollbar': {
34
34
  display: 'none'
35
35
  },
36
- '-webkit-overflow-scrolling': 'touch',
36
+ WebkitOverflowScrolling: 'touch',
37
37
  '& .MuiButtonBase-root, .MuiListItem-root': {
38
38
  marginRight: theme.spacing(0.5),
39
39
  padding: 0,
@@ -63,7 +63,7 @@ const Component = {
63
63
  }
64
64
  }
65
65
  }),
66
- dialogRoot: ({ theme }) => ({
66
+ dialogRoot: () => ({
67
67
  '& .SCOnBoardingWidget-dialog-content': {
68
68
  whiteSpace: 'pre-line',
69
69
  fontSize: '1.143rem'
@@ -78,7 +78,7 @@ const Component = {
78
78
  }
79
79
  }
80
80
  }),
81
- actionsDrawerRoot: ({ theme }) => ({}),
81
+ actionsDrawerRoot: () => ({}),
82
82
  accordionRoot: ({ theme, expanded }) => ({
83
83
  boxShadow: 'none',
84
84
  '& .MuiAccordionDetails-root ': {