@selfcommunity/react-theme-default 0.5.0-alpha.4 → 0.5.0-alpha.5
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/SCPaywallsConfigurator.d.ts +3 -0
- package/lib/cjs/components/SCPaywallsConfigurator.js +6 -3
- package/lib/cjs/components/SCVoteAudienceButton.js +2 -2
- package/lib/cjs/components/SCVoteButton.d.ts +1 -1
- package/lib/cjs/components/SCVoteButton.js +2 -2
- package/lib/cjs/index.d.ts +4 -1
- package/lib/esm/components/SCPaywallsConfigurator.d.ts +3 -0
- package/lib/esm/components/SCPaywallsConfigurator.js +6 -3
- package/lib/esm/components/SCVoteAudienceButton.js +2 -2
- package/lib/esm/components/SCVoteButton.d.ts +1 -1
- package/lib/esm/components/SCVoteButton.js +2 -2
- package/lib/esm/index.d.ts +4 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -75,15 +75,18 @@ const Component = {
|
|
|
75
75
|
margin: '3px 5px 0px -1px'
|
|
76
76
|
},
|
|
77
77
|
[`& .SCPaywallsConfigurator-product-card-icon`]: {
|
|
78
|
-
width:
|
|
79
|
-
height:
|
|
78
|
+
width: 20,
|
|
79
|
+
height: 20,
|
|
80
80
|
flexShrink: 0,
|
|
81
81
|
borderRadius: '3px',
|
|
82
82
|
marginRight: theme.spacing(),
|
|
83
83
|
marginTop: '2px',
|
|
84
84
|
padding: '3px',
|
|
85
85
|
backgroundColor: 'red',
|
|
86
|
-
color: 'white'
|
|
86
|
+
color: 'white',
|
|
87
|
+
[`& > .community-icons`]: {
|
|
88
|
+
fontSize: '20px'
|
|
89
|
+
}
|
|
87
90
|
},
|
|
88
91
|
[`& .SCPaywallsConfigurator-product-content`]: {
|
|
89
92
|
flexGrow: 1,
|
|
@@ -28,8 +28,8 @@ const Component = {
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
'& .SCVoteAudienceButton-dialog-vote-badge': {
|
|
31
|
-
width: theme.
|
|
32
|
-
height: theme.
|
|
31
|
+
width: theme.spacing(2),
|
|
32
|
+
height: theme.spacing(2),
|
|
33
33
|
backgroundColor: theme.palette.background.paper,
|
|
34
34
|
border: `1px solid ${theme.palette.background.paper}`
|
|
35
35
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -10841,7 +10841,7 @@ declare const theme: {
|
|
|
10841
10841
|
};
|
|
10842
10842
|
};
|
|
10843
10843
|
};
|
|
10844
|
-
popperRoot: (
|
|
10844
|
+
popperRoot: () => {
|
|
10845
10845
|
zIndex: number;
|
|
10846
10846
|
'& .SCVoteButton-reaction .MuiIcon-root': {
|
|
10847
10847
|
fontSize: string;
|
|
@@ -12150,6 +12150,9 @@ declare const theme: {
|
|
|
12150
12150
|
padding: string;
|
|
12151
12151
|
backgroundColor: string;
|
|
12152
12152
|
color: string;
|
|
12153
|
+
"& > .community-icons": {
|
|
12154
|
+
fontSize: string;
|
|
12155
|
+
};
|
|
12153
12156
|
};
|
|
12154
12157
|
"& .SCPaywallsConfigurator-product-content": {
|
|
12155
12158
|
flexGrow: number;
|
|
@@ -73,15 +73,18 @@ const Component = {
|
|
|
73
73
|
margin: '3px 5px 0px -1px'
|
|
74
74
|
},
|
|
75
75
|
[`& .SCPaywallsConfigurator-product-card-icon`]: {
|
|
76
|
-
width:
|
|
77
|
-
height:
|
|
76
|
+
width: 20,
|
|
77
|
+
height: 20,
|
|
78
78
|
flexShrink: 0,
|
|
79
79
|
borderRadius: '3px',
|
|
80
80
|
marginRight: theme.spacing(),
|
|
81
81
|
marginTop: '2px',
|
|
82
82
|
padding: '3px',
|
|
83
83
|
backgroundColor: 'red',
|
|
84
|
-
color: 'white'
|
|
84
|
+
color: 'white',
|
|
85
|
+
[`& > .community-icons`]: {
|
|
86
|
+
fontSize: '20px'
|
|
87
|
+
}
|
|
85
88
|
},
|
|
86
89
|
[`& .SCPaywallsConfigurator-product-content`]: {
|
|
87
90
|
flexGrow: 1,
|
|
@@ -26,8 +26,8 @@ const Component = {
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
'& .SCVoteAudienceButton-dialog-vote-badge': {
|
|
29
|
-
width: theme.
|
|
30
|
-
height: theme.
|
|
29
|
+
width: theme.spacing(2),
|
|
30
|
+
height: theme.spacing(2),
|
|
31
31
|
backgroundColor: theme.palette.background.paper,
|
|
32
32
|
border: `1px solid ${theme.palette.background.paper}`
|
|
33
33
|
}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -10841,7 +10841,7 @@ declare const theme: {
|
|
|
10841
10841
|
};
|
|
10842
10842
|
};
|
|
10843
10843
|
};
|
|
10844
|
-
popperRoot: (
|
|
10844
|
+
popperRoot: () => {
|
|
10845
10845
|
zIndex: number;
|
|
10846
10846
|
'& .SCVoteButton-reaction .MuiIcon-root': {
|
|
10847
10847
|
fontSize: string;
|
|
@@ -12150,6 +12150,9 @@ declare const theme: {
|
|
|
12150
12150
|
padding: string;
|
|
12151
12151
|
backgroundColor: string;
|
|
12152
12152
|
color: string;
|
|
12153
|
+
"& > .community-icons": {
|
|
12154
|
+
fontSize: string;
|
|
12155
|
+
};
|
|
12153
12156
|
};
|
|
12154
12157
|
"& .SCPaywallsConfigurator-product-content": {
|
|
12155
12158
|
flexGrow: number;
|