@selfcommunity/react-theme-default 0.1.50-events.101 → 0.1.50-events.102
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/SCFeedUpdatesWidget.js +1 -1
- package/lib/cjs/components/SCNotification.d.ts +3 -0
- package/lib/cjs/components/SCNotification.js +3 -0
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +23 -1
- package/lib/cjs/components/SCOnBoardingWidget.js +23 -1
- package/lib/cjs/components/SCProgressBar.d.ts +4 -0
- package/lib/cjs/components/SCProgressBar.js +5 -1
- package/lib/cjs/index.d.ts +30 -1
- package/lib/esm/components/SCFeedUpdatesWidget.js +1 -1
- package/lib/esm/components/SCNotification.d.ts +3 -0
- package/lib/esm/components/SCNotification.js +3 -0
- package/lib/esm/components/SCOnBoardingWidget.d.ts +23 -1
- package/lib/esm/components/SCOnBoardingWidget.js +23 -1
- package/lib/esm/components/SCProgressBar.d.ts +4 -0
- package/lib/esm/components/SCProgressBar.js +5 -1
- package/lib/esm/index.d.ts +30 -1
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -292,6 +292,9 @@ declare const Component: {
|
|
|
292
292
|
'& .SCNotification-snippet-time': {
|
|
293
293
|
paddingLeft: any;
|
|
294
294
|
};
|
|
295
|
+
'& .SCEvent-snippet-root': {
|
|
296
|
+
backgroundColor: string;
|
|
297
|
+
};
|
|
295
298
|
};
|
|
296
299
|
groupRoot: ({ theme }: any) => {};
|
|
297
300
|
undeletedForRoot: ({ theme }: any) => {
|
|
@@ -161,6 +161,16 @@ declare const Component: {
|
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
163
|
contentRoot: ({ theme }: any) => {
|
|
164
|
+
[x: number]: {
|
|
165
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
166
|
+
display: string;
|
|
167
|
+
alignItems: string;
|
|
168
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
169
|
+
height: string;
|
|
170
|
+
width: string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
164
174
|
'& .SCOnBoardingWidget-content-title': {
|
|
165
175
|
fontWeight: any;
|
|
166
176
|
};
|
|
@@ -178,6 +188,16 @@ declare const Component: {
|
|
|
178
188
|
};
|
|
179
189
|
};
|
|
180
190
|
categoryRoot: ({ theme }: any) => {
|
|
191
|
+
[x: number]: {
|
|
192
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
193
|
+
display: string;
|
|
194
|
+
alignItems: string;
|
|
195
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
196
|
+
height: string;
|
|
197
|
+
width: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
};
|
|
181
201
|
'& .SCOnBoardingWidget-category-title': {
|
|
182
202
|
fontWeight: any;
|
|
183
203
|
};
|
|
@@ -187,7 +207,9 @@ declare const Component: {
|
|
|
187
207
|
'& .SCOnBoardingWidget-category-action': {
|
|
188
208
|
display: string;
|
|
189
209
|
justifyContent: string;
|
|
190
|
-
|
|
210
|
+
'& .MuiButton-root': {
|
|
211
|
+
marginTop: any;
|
|
212
|
+
};
|
|
191
213
|
};
|
|
192
214
|
'& .SCProgressBar-message': {
|
|
193
215
|
marginBottom: any;
|
|
@@ -177,6 +177,16 @@ const Component = {
|
|
|
177
177
|
},
|
|
178
178
|
'& .SCProgressBar-message': {
|
|
179
179
|
marginBottom: theme.spacing(0.5)
|
|
180
|
+
},
|
|
181
|
+
[theme.breakpoints.up('sm')]: {
|
|
182
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
183
|
+
display: 'flex',
|
|
184
|
+
alignItems: 'center',
|
|
185
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
186
|
+
height: '250px',
|
|
187
|
+
width: '250px'
|
|
188
|
+
}
|
|
189
|
+
}
|
|
180
190
|
}
|
|
181
191
|
}),
|
|
182
192
|
categoryRoot: ({ theme }) => ({
|
|
@@ -189,10 +199,22 @@ const Component = {
|
|
|
189
199
|
'& .SCOnBoardingWidget-category-action': {
|
|
190
200
|
display: 'flex',
|
|
191
201
|
justifyContent: 'center',
|
|
192
|
-
|
|
202
|
+
'& .MuiButton-root': {
|
|
203
|
+
marginTop: theme.spacing(3)
|
|
204
|
+
}
|
|
193
205
|
},
|
|
194
206
|
'& .SCProgressBar-message': {
|
|
195
207
|
marginBottom: theme.spacing(0.5)
|
|
208
|
+
},
|
|
209
|
+
[theme.breakpoints.up('sm')]: {
|
|
210
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
211
|
+
display: 'flex',
|
|
212
|
+
alignItems: 'center',
|
|
213
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
214
|
+
height: '250px',
|
|
215
|
+
width: '250px'
|
|
216
|
+
}
|
|
217
|
+
}
|
|
196
218
|
}
|
|
197
219
|
}),
|
|
198
220
|
appearanceRoot: ({ theme }) => ({
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -4720,6 +4720,9 @@ declare const theme: {
|
|
|
4720
4720
|
'& .SCNotification-snippet-time': {
|
|
4721
4721
|
paddingLeft: any;
|
|
4722
4722
|
};
|
|
4723
|
+
'& .SCEvent-snippet-root': {
|
|
4724
|
+
backgroundColor: string;
|
|
4725
|
+
};
|
|
4723
4726
|
};
|
|
4724
4727
|
groupRoot: ({ theme }: any) => {};
|
|
4725
4728
|
undeletedForRoot: ({ theme }: any) => {
|
|
@@ -5043,6 +5046,16 @@ declare const theme: {
|
|
|
5043
5046
|
};
|
|
5044
5047
|
};
|
|
5045
5048
|
contentRoot: ({ theme }: any) => {
|
|
5049
|
+
[x: number]: {
|
|
5050
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
5051
|
+
display: string;
|
|
5052
|
+
alignItems: string;
|
|
5053
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
5054
|
+
height: string;
|
|
5055
|
+
width: string;
|
|
5056
|
+
};
|
|
5057
|
+
};
|
|
5058
|
+
};
|
|
5046
5059
|
'& .SCOnBoardingWidget-content-title': {
|
|
5047
5060
|
fontWeight: any;
|
|
5048
5061
|
};
|
|
@@ -5060,6 +5073,16 @@ declare const theme: {
|
|
|
5060
5073
|
};
|
|
5061
5074
|
};
|
|
5062
5075
|
categoryRoot: ({ theme }: any) => {
|
|
5076
|
+
[x: number]: {
|
|
5077
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
5078
|
+
display: string;
|
|
5079
|
+
alignItems: string;
|
|
5080
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
5081
|
+
height: string;
|
|
5082
|
+
width: string;
|
|
5083
|
+
};
|
|
5084
|
+
};
|
|
5085
|
+
};
|
|
5063
5086
|
'& .SCOnBoardingWidget-category-title': {
|
|
5064
5087
|
fontWeight: any;
|
|
5065
5088
|
};
|
|
@@ -5069,7 +5092,9 @@ declare const theme: {
|
|
|
5069
5092
|
'& .SCOnBoardingWidget-category-action': {
|
|
5070
5093
|
display: string;
|
|
5071
5094
|
justifyContent: string;
|
|
5072
|
-
|
|
5095
|
+
'& .MuiButton-root': {
|
|
5096
|
+
marginTop: any;
|
|
5097
|
+
};
|
|
5073
5098
|
};
|
|
5074
5099
|
'& .SCProgressBar-message': {
|
|
5075
5100
|
marginBottom: any;
|
|
@@ -6048,6 +6073,10 @@ declare const theme: {
|
|
|
6048
6073
|
};
|
|
6049
6074
|
'& .SCProgressBar-progress': {
|
|
6050
6075
|
marginTop: any;
|
|
6076
|
+
h4: {
|
|
6077
|
+
fontWeight: any;
|
|
6078
|
+
fontSize: string;
|
|
6079
|
+
};
|
|
6051
6080
|
};
|
|
6052
6081
|
};
|
|
6053
6082
|
};
|
|
@@ -292,6 +292,9 @@ declare const Component: {
|
|
|
292
292
|
'& .SCNotification-snippet-time': {
|
|
293
293
|
paddingLeft: any;
|
|
294
294
|
};
|
|
295
|
+
'& .SCEvent-snippet-root': {
|
|
296
|
+
backgroundColor: string;
|
|
297
|
+
};
|
|
295
298
|
};
|
|
296
299
|
groupRoot: ({ theme }: any) => {};
|
|
297
300
|
undeletedForRoot: ({ theme }: any) => {
|
|
@@ -161,6 +161,16 @@ declare const Component: {
|
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
163
|
contentRoot: ({ theme }: any) => {
|
|
164
|
+
[x: number]: {
|
|
165
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
166
|
+
display: string;
|
|
167
|
+
alignItems: string;
|
|
168
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
169
|
+
height: string;
|
|
170
|
+
width: string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
164
174
|
'& .SCOnBoardingWidget-content-title': {
|
|
165
175
|
fontWeight: any;
|
|
166
176
|
};
|
|
@@ -178,6 +188,16 @@ declare const Component: {
|
|
|
178
188
|
};
|
|
179
189
|
};
|
|
180
190
|
categoryRoot: ({ theme }: any) => {
|
|
191
|
+
[x: number]: {
|
|
192
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
193
|
+
display: string;
|
|
194
|
+
alignItems: string;
|
|
195
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
196
|
+
height: string;
|
|
197
|
+
width: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
};
|
|
181
201
|
'& .SCOnBoardingWidget-category-title': {
|
|
182
202
|
fontWeight: any;
|
|
183
203
|
};
|
|
@@ -187,7 +207,9 @@ declare const Component: {
|
|
|
187
207
|
'& .SCOnBoardingWidget-category-action': {
|
|
188
208
|
display: string;
|
|
189
209
|
justifyContent: string;
|
|
190
|
-
|
|
210
|
+
'& .MuiButton-root': {
|
|
211
|
+
marginTop: any;
|
|
212
|
+
};
|
|
191
213
|
};
|
|
192
214
|
'& .SCProgressBar-message': {
|
|
193
215
|
marginBottom: any;
|
|
@@ -175,6 +175,16 @@ const Component = {
|
|
|
175
175
|
},
|
|
176
176
|
'& .SCProgressBar-message': {
|
|
177
177
|
marginBottom: theme.spacing(0.5)
|
|
178
|
+
},
|
|
179
|
+
[theme.breakpoints.up('sm')]: {
|
|
180
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
181
|
+
display: 'flex',
|
|
182
|
+
alignItems: 'center',
|
|
183
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
184
|
+
height: '250px',
|
|
185
|
+
width: '250px'
|
|
186
|
+
}
|
|
187
|
+
}
|
|
178
188
|
}
|
|
179
189
|
}),
|
|
180
190
|
categoryRoot: ({ theme }) => ({
|
|
@@ -187,10 +197,22 @@ const Component = {
|
|
|
187
197
|
'& .SCOnBoardingWidget-category-action': {
|
|
188
198
|
display: 'flex',
|
|
189
199
|
justifyContent: 'center',
|
|
190
|
-
|
|
200
|
+
'& .MuiButton-root': {
|
|
201
|
+
marginTop: theme.spacing(3)
|
|
202
|
+
}
|
|
191
203
|
},
|
|
192
204
|
'& .SCProgressBar-message': {
|
|
193
205
|
marginBottom: theme.spacing(0.5)
|
|
206
|
+
},
|
|
207
|
+
[theme.breakpoints.up('sm')]: {
|
|
208
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
209
|
+
display: 'flex',
|
|
210
|
+
alignItems: 'center',
|
|
211
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
212
|
+
height: '250px',
|
|
213
|
+
width: '250px'
|
|
214
|
+
}
|
|
215
|
+
}
|
|
194
216
|
}
|
|
195
217
|
}),
|
|
196
218
|
appearanceRoot: ({ theme }) => ({
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -4720,6 +4720,9 @@ declare const theme: {
|
|
|
4720
4720
|
'& .SCNotification-snippet-time': {
|
|
4721
4721
|
paddingLeft: any;
|
|
4722
4722
|
};
|
|
4723
|
+
'& .SCEvent-snippet-root': {
|
|
4724
|
+
backgroundColor: string;
|
|
4725
|
+
};
|
|
4723
4726
|
};
|
|
4724
4727
|
groupRoot: ({ theme }: any) => {};
|
|
4725
4728
|
undeletedForRoot: ({ theme }: any) => {
|
|
@@ -5043,6 +5046,16 @@ declare const theme: {
|
|
|
5043
5046
|
};
|
|
5044
5047
|
};
|
|
5045
5048
|
contentRoot: ({ theme }: any) => {
|
|
5049
|
+
[x: number]: {
|
|
5050
|
+
'& .SCOnBoardingWidget-content-progress': {
|
|
5051
|
+
display: string;
|
|
5052
|
+
alignItems: string;
|
|
5053
|
+
'& .SCOnBoardingWidget-content-animation-progress': {
|
|
5054
|
+
height: string;
|
|
5055
|
+
width: string;
|
|
5056
|
+
};
|
|
5057
|
+
};
|
|
5058
|
+
};
|
|
5046
5059
|
'& .SCOnBoardingWidget-content-title': {
|
|
5047
5060
|
fontWeight: any;
|
|
5048
5061
|
};
|
|
@@ -5060,6 +5073,16 @@ declare const theme: {
|
|
|
5060
5073
|
};
|
|
5061
5074
|
};
|
|
5062
5075
|
categoryRoot: ({ theme }: any) => {
|
|
5076
|
+
[x: number]: {
|
|
5077
|
+
'& .SCOnBoardingWidget-category-progress': {
|
|
5078
|
+
display: string;
|
|
5079
|
+
alignItems: string;
|
|
5080
|
+
'& .SCOnBoardingWidget-category-animation-progress': {
|
|
5081
|
+
height: string;
|
|
5082
|
+
width: string;
|
|
5083
|
+
};
|
|
5084
|
+
};
|
|
5085
|
+
};
|
|
5063
5086
|
'& .SCOnBoardingWidget-category-title': {
|
|
5064
5087
|
fontWeight: any;
|
|
5065
5088
|
};
|
|
@@ -5069,7 +5092,9 @@ declare const theme: {
|
|
|
5069
5092
|
'& .SCOnBoardingWidget-category-action': {
|
|
5070
5093
|
display: string;
|
|
5071
5094
|
justifyContent: string;
|
|
5072
|
-
|
|
5095
|
+
'& .MuiButton-root': {
|
|
5096
|
+
marginTop: any;
|
|
5097
|
+
};
|
|
5073
5098
|
};
|
|
5074
5099
|
'& .SCProgressBar-message': {
|
|
5075
5100
|
marginBottom: any;
|
|
@@ -6048,6 +6073,10 @@ declare const theme: {
|
|
|
6048
6073
|
};
|
|
6049
6074
|
'& .SCProgressBar-progress': {
|
|
6050
6075
|
marginTop: any;
|
|
6076
|
+
h4: {
|
|
6077
|
+
fontWeight: any;
|
|
6078
|
+
fontSize: string;
|
|
6079
|
+
};
|
|
6051
6080
|
};
|
|
6052
6081
|
};
|
|
6053
6082
|
};
|