@selfcommunity/react-theme-default 0.5.0-mui7.39 → 0.5.0-react-17.0.1.12
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/SCCourseInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCCourseInfoDetails.js +2 -2
- package/lib/cjs/components/SCEventInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCEventInfoDetails.js +2 -2
- package/lib/cjs/components/SCEventLocationWidget.d.ts +1 -1
- package/lib/cjs/components/SCEventLocationWidget.js +2 -2
- package/lib/cjs/components/SCLightbox.d.ts +3 -3
- package/lib/cjs/components/SCLightbox.js +3 -3
- package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +2 -2
- package/lib/cjs/components/SCLiveStreamInfoDetails.js +2 -2
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +1 -1
- package/lib/cjs/components/SCLiveStreamRoom.js +1 -1
- package/lib/cjs/components/SCMediaFile.d.ts +2 -6
- package/lib/cjs/components/SCMediaFile.js +3 -7
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +3 -3
- package/lib/cjs/components/SCOnBoardingWidget.js +3 -3
- package/lib/cjs/index.d.ts +22 -20
- package/lib/esm/components/SCCourseInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCCourseInfoDetails.js +2 -2
- package/lib/esm/components/SCEventInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCEventInfoDetails.js +2 -2
- package/lib/esm/components/SCEventLocationWidget.d.ts +1 -1
- package/lib/esm/components/SCEventLocationWidget.js +2 -2
- package/lib/esm/components/SCLightbox.d.ts +3 -3
- package/lib/esm/components/SCLightbox.js +3 -3
- package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +2 -2
- package/lib/esm/components/SCLiveStreamInfoDetails.js +2 -2
- package/lib/esm/components/SCLiveStreamRoom.d.ts +1 -1
- package/lib/esm/components/SCLiveStreamRoom.js +1 -1
- package/lib/esm/components/SCMediaFile.d.ts +2 -6
- package/lib/esm/components/SCMediaFile.js +3 -7
- package/lib/esm/components/SCOnBoardingWidget.d.ts +3 -3
- package/lib/esm/components/SCOnBoardingWidget.js +3 -3
- package/lib/esm/index.d.ts +22 -20
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +11 -10
|
@@ -33,7 +33,7 @@ declare const Component: {
|
|
|
33
33
|
'&::-webkit-scrollbar': {
|
|
34
34
|
display: string;
|
|
35
35
|
};
|
|
36
|
-
|
|
36
|
+
'-webkit-overflow-scrolling': 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: () => {
|
|
66
|
+
dialogRoot: ({ theme }: any) => {
|
|
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: () => {};
|
|
81
|
+
actionsDrawerRoot: ({ theme }: any) => {};
|
|
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
|
-
|
|
36
|
+
'-webkit-overflow-scrolling': '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: () => ({
|
|
66
|
+
dialogRoot: ({ theme }) => ({
|
|
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: () => ({}),
|
|
81
|
+
actionsDrawerRoot: ({ theme }) => ({}),
|
|
82
82
|
accordionRoot: ({ theme, expanded }) => ({
|
|
83
83
|
boxShadow: 'none',
|
|
84
84
|
'& .MuiAccordionDetails-root ': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2920,6 +2920,9 @@ declare const theme: {
|
|
|
2920
2920
|
root: ({ theme }: {
|
|
2921
2921
|
theme: any;
|
|
2922
2922
|
}) => {
|
|
2923
|
+
/**
|
|
2924
|
+
* Style fragments - Imports - Start
|
|
2925
|
+
*/
|
|
2923
2926
|
gap: any;
|
|
2924
2927
|
'& .SCCourseInfoDetails-icon-text-wrapper': {
|
|
2925
2928
|
flexDirection: string;
|
|
@@ -2938,8 +2941,8 @@ declare const theme: {
|
|
|
2938
2941
|
overflow: string;
|
|
2939
2942
|
textOverflow: string;
|
|
2940
2943
|
display: string;
|
|
2941
|
-
|
|
2942
|
-
|
|
2944
|
+
'-webkit-line-clamp': string;
|
|
2945
|
+
'-webkit-box-orient': string;
|
|
2943
2946
|
};
|
|
2944
2947
|
};
|
|
2945
2948
|
'& .SCCourseInfoDetails-in-progress': {
|
|
@@ -6092,11 +6095,11 @@ declare const theme: {
|
|
|
6092
6095
|
width: string;
|
|
6093
6096
|
zIndex: number;
|
|
6094
6097
|
"& .PhotoView__Spinner": {
|
|
6095
|
-
|
|
6098
|
+
'-webkit-animation': string;
|
|
6096
6099
|
animation: string;
|
|
6097
6100
|
};
|
|
6098
6101
|
"& .PhotoView__Spinner svg": {
|
|
6099
|
-
|
|
6102
|
+
'-webkit-animation': string;
|
|
6100
6103
|
animation: string;
|
|
6101
6104
|
};
|
|
6102
6105
|
"& .PhotoView__Photo": {
|
|
@@ -6158,7 +6161,7 @@ declare const theme: {
|
|
|
6158
6161
|
zIndex: number;
|
|
6159
6162
|
};
|
|
6160
6163
|
"& .PhotoView-Slider__fadeIn": {
|
|
6161
|
-
|
|
6164
|
+
'-webkit-animation': string;
|
|
6162
6165
|
animation: string;
|
|
6163
6166
|
opacity: number;
|
|
6164
6167
|
};
|
|
@@ -6631,7 +6634,6 @@ declare const theme: {
|
|
|
6631
6634
|
flexBasis: number;
|
|
6632
6635
|
flexGrow: number;
|
|
6633
6636
|
flexShrink: number;
|
|
6634
|
-
cursor: string;
|
|
6635
6637
|
'& .SCMediaFile-title': {
|
|
6636
6638
|
position: string;
|
|
6637
6639
|
left: any;
|
|
@@ -6668,9 +6670,6 @@ declare const theme: {
|
|
|
6668
6670
|
display: string;
|
|
6669
6671
|
flexDirection: string;
|
|
6670
6672
|
gap: any;
|
|
6671
|
-
'& > .SCMediaFile-doc': {
|
|
6672
|
-
cursor: string;
|
|
6673
|
-
};
|
|
6674
6673
|
};
|
|
6675
6674
|
};
|
|
6676
6675
|
triggerRoot: () => {};
|
|
@@ -6701,8 +6700,8 @@ declare const theme: {
|
|
|
6701
6700
|
'& .SCMediaFile-title': {
|
|
6702
6701
|
textAlign: string;
|
|
6703
6702
|
display: string;
|
|
6704
|
-
|
|
6705
|
-
|
|
6703
|
+
'-webkit-line-clamp': string;
|
|
6704
|
+
'-webkit-box-orient': string;
|
|
6706
6705
|
overflow: string;
|
|
6707
6706
|
};
|
|
6708
6707
|
'& .SCMediaFile-subtitle': {
|
|
@@ -7620,7 +7619,7 @@ declare const theme: {
|
|
|
7620
7619
|
'&::-webkit-scrollbar': {
|
|
7621
7620
|
display: string;
|
|
7622
7621
|
};
|
|
7623
|
-
|
|
7622
|
+
'-webkit-overflow-scrolling': string;
|
|
7624
7623
|
'& .MuiButtonBase-root, .MuiListItem-root': {
|
|
7625
7624
|
marginRight: any;
|
|
7626
7625
|
padding: number;
|
|
@@ -7650,7 +7649,7 @@ declare const theme: {
|
|
|
7650
7649
|
};
|
|
7651
7650
|
};
|
|
7652
7651
|
};
|
|
7653
|
-
dialogRoot: () => {
|
|
7652
|
+
dialogRoot: ({ theme }: any) => {
|
|
7654
7653
|
'& .SCOnBoardingWidget-dialog-content': {
|
|
7655
7654
|
whiteSpace: string;
|
|
7656
7655
|
fontSize: string;
|
|
@@ -7665,7 +7664,7 @@ declare const theme: {
|
|
|
7665
7664
|
};
|
|
7666
7665
|
};
|
|
7667
7666
|
};
|
|
7668
|
-
actionsDrawerRoot: () => {};
|
|
7667
|
+
actionsDrawerRoot: ({ theme }: any) => {};
|
|
7669
7668
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
7670
7669
|
boxShadow: string;
|
|
7671
7670
|
'& .MuiAccordionDetails-root ': {
|
|
@@ -9632,7 +9631,7 @@ declare const theme: {
|
|
|
9632
9631
|
};
|
|
9633
9632
|
'& .SCEventLocationWidget-map': {
|
|
9634
9633
|
marginBottom: any;
|
|
9635
|
-
|
|
9634
|
+
minHeight: number;
|
|
9636
9635
|
width: string;
|
|
9637
9636
|
};
|
|
9638
9637
|
};
|
|
@@ -10282,8 +10281,8 @@ declare const theme: {
|
|
|
10282
10281
|
overflow: string;
|
|
10283
10282
|
textOverflow: string;
|
|
10284
10283
|
display: string;
|
|
10285
|
-
|
|
10286
|
-
|
|
10284
|
+
'-webkit-line-clamp': string;
|
|
10285
|
+
'-webkit-box-orient': string;
|
|
10287
10286
|
};
|
|
10288
10287
|
};
|
|
10289
10288
|
'& .SCEventInfoDetails-join-live': {
|
|
@@ -11345,6 +11344,9 @@ declare const theme: {
|
|
|
11345
11344
|
root: ({ theme }: {
|
|
11346
11345
|
theme: any;
|
|
11347
11346
|
}) => {
|
|
11347
|
+
/**
|
|
11348
|
+
* Style fragments - Imports - Start
|
|
11349
|
+
*/
|
|
11348
11350
|
gap: any;
|
|
11349
11351
|
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
|
|
11350
11352
|
flexDirection: string;
|
|
@@ -11363,8 +11365,8 @@ declare const theme: {
|
|
|
11363
11365
|
overflow: string;
|
|
11364
11366
|
textOverflow: string;
|
|
11365
11367
|
display: string;
|
|
11366
|
-
|
|
11367
|
-
|
|
11368
|
+
'-webkit-line-clamp': string;
|
|
11369
|
+
'-webkit-box-orient': string;
|
|
11368
11370
|
};
|
|
11369
11371
|
};
|
|
11370
11372
|
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
@@ -11692,7 +11694,7 @@ declare const theme: {
|
|
|
11692
11694
|
backgroundColor: any;
|
|
11693
11695
|
'& textarea': {
|
|
11694
11696
|
color: any;
|
|
11695
|
-
|
|
11697
|
+
'-webkit-text-fill-color': any;
|
|
11696
11698
|
};
|
|
11697
11699
|
};
|
|
11698
11700
|
"& .SCLiveStreamRoom-conference": {
|