@selfcommunity/react-theme-default 0.1.0-alpha.121 → 0.1.0-alpha.123

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 (48) hide show
  1. package/lib/cjs/components/SCLightbox.d.ts +350 -0
  2. package/lib/cjs/components/SCLightbox.d.ts.map +1 -1
  3. package/lib/cjs/components/SCLightbox.js +371 -3
  4. package/lib/cjs/components/SCLightbox.js.map +1 -1
  5. package/lib/cjs/components/SCNavigationToolbar.d.ts +3 -0
  6. package/lib/cjs/components/SCNavigationToolbar.d.ts.map +1 -1
  7. package/lib/cjs/components/SCNavigationToolbar.js +4 -1
  8. package/lib/cjs/components/SCNavigationToolbar.js.map +1 -1
  9. package/lib/cjs/components/SCUserProfileHeader.d.ts +0 -3
  10. package/lib/cjs/components/SCUserProfileHeader.d.ts.map +1 -1
  11. package/lib/cjs/components/SCUserProfileHeader.js +1 -4
  12. package/lib/cjs/components/SCUserProfileHeader.js.map +1 -1
  13. package/lib/cjs/fonts/community/icons.eot +0 -0
  14. package/lib/cjs/fonts/community/icons.svg +195 -177
  15. package/lib/cjs/fonts/community/icons.ttf +0 -0
  16. package/lib/cjs/fonts/community/icons.woff +0 -0
  17. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  18. package/lib/cjs/fonts/community-icons.css +43 -16
  19. package/lib/cjs/index.d.ts +353 -3
  20. package/lib/cjs/index.d.ts.map +1 -1
  21. package/lib/esm/components/SCLightbox.d.ts +350 -0
  22. package/lib/esm/components/SCLightbox.d.ts.map +1 -1
  23. package/lib/esm/components/SCLightbox.js +371 -3
  24. package/lib/esm/components/SCLightbox.js.map +1 -1
  25. package/lib/esm/components/SCNavigationToolbar.d.ts +3 -0
  26. package/lib/esm/components/SCNavigationToolbar.d.ts.map +1 -1
  27. package/lib/esm/components/SCNavigationToolbar.js +4 -1
  28. package/lib/esm/components/SCNavigationToolbar.js.map +1 -1
  29. package/lib/esm/components/SCUserProfileHeader.d.ts +0 -3
  30. package/lib/esm/components/SCUserProfileHeader.d.ts.map +1 -1
  31. package/lib/esm/components/SCUserProfileHeader.js +1 -4
  32. package/lib/esm/components/SCUserProfileHeader.js.map +1 -1
  33. package/lib/esm/fonts/community/icons.eot +0 -0
  34. package/lib/esm/fonts/community/icons.svg +195 -177
  35. package/lib/esm/fonts/community/icons.ttf +0 -0
  36. package/lib/esm/fonts/community/icons.woff +0 -0
  37. package/lib/esm/fonts/community/icons.woff2 +0 -0
  38. package/lib/esm/fonts/community-icons.css +43 -16
  39. package/lib/esm/index.d.ts +353 -3
  40. package/lib/esm/index.d.ts.map +1 -1
  41. package/lib/umd/community/icons.eot +0 -0
  42. package/lib/umd/community/icons.svg +195 -177
  43. package/lib/umd/community/icons.ttf +0 -0
  44. package/lib/umd/community/icons.woff +0 -0
  45. package/lib/umd/community/icons.woff2 +0 -0
  46. package/lib/umd/react-theme-default.js +32 -19
  47. package/lib/umd/react-theme-default.js.map +1 -1
  48. package/package.json +4 -4
@@ -2,6 +2,356 @@ declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
4
  zIndex: number;
5
+ backgroundColor: string;
6
+ '& .SCLightbox-ril-outer': {
7
+ backgroundColor: string;
8
+ outline: string;
9
+ top: number;
10
+ left: number;
11
+ right: number;
12
+ bottom: number;
13
+ zIndex: number;
14
+ width: string;
15
+ height: string;
16
+ msContentZooming: string;
17
+ msUserSelect: string;
18
+ msTouchSelect: string;
19
+ touchAction: string;
20
+ };
21
+ '& .SCLightbox-ril-outer-closing': {
22
+ opacity: number;
23
+ };
24
+ '& .SCLightbox-ril-inner': {
25
+ position: string;
26
+ top: number;
27
+ left: number;
28
+ right: number;
29
+ bottom: number;
30
+ };
31
+ '& .SCLightbox-ril-image': {
32
+ position: string;
33
+ top: number;
34
+ left: number;
35
+ right: number;
36
+ bottom: number;
37
+ margin: string;
38
+ maxWidth: string;
39
+ msContentZooming: string;
40
+ msUserSelect: string;
41
+ msTouchSelect: string;
42
+ touchAction: string;
43
+ };
44
+ '& .SCLightbox-ril-image-discourager': {
45
+ backgroundRepeat: string;
46
+ backgroundPosition: string;
47
+ backgroundSize: string;
48
+ };
49
+ '& .SCLightbox-ril-nav-buttons': {
50
+ border: string;
51
+ position: string;
52
+ top: number;
53
+ bottom: number;
54
+ width: number;
55
+ height: number;
56
+ padding: string;
57
+ margin: string;
58
+ cursor: string;
59
+ opacity: number;
60
+ '&:hover': {
61
+ opacity: number;
62
+ };
63
+ '&:active': {
64
+ opacity: number;
65
+ };
66
+ };
67
+ '& .SCLightbox-ril-nav-button-prev': {
68
+ left: number;
69
+ background: string;
70
+ borderRadius: number;
71
+ color: string;
72
+ '& span': {
73
+ fontSize: number;
74
+ };
75
+ };
76
+ '& .SCLightbox-ril-nav-button-next': {
77
+ right: number;
78
+ background: string;
79
+ borderRadius: number;
80
+ color: string;
81
+ '& span': {
82
+ fontSize: number;
83
+ };
84
+ };
85
+ '& .SCLightbox-ril-download-blocker': {
86
+ position: string;
87
+ top: number;
88
+ left: number;
89
+ right: number;
90
+ bottom: number;
91
+ backgroundImage: string;
92
+ backgroundSize: string;
93
+ };
94
+ '& .SCLightbox-ril-caption': {
95
+ backgroundColor: string;
96
+ position: string;
97
+ left: number;
98
+ right: number;
99
+ display: string;
100
+ justifyContent: string;
101
+ bottom: number;
102
+ maxHeight: number;
103
+ overflow: string;
104
+ };
105
+ '& .SCLightbox-ril-toolbar': {
106
+ backgroundColor: string;
107
+ position: string;
108
+ top: number;
109
+ left: number;
110
+ right: number;
111
+ display: string;
112
+ justifyContent: string;
113
+ height: number;
114
+ };
115
+ '& .SCLightbox-ril-caption-content': {
116
+ padding: string;
117
+ color: string;
118
+ };
119
+ '& .SCLightbox-ril-toolbar-side': {
120
+ height: number;
121
+ margin: number;
122
+ };
123
+ '& .SCLightbox-ril-toolbar-left-side': {
124
+ paddingLeft: number;
125
+ paddingRight: number;
126
+ flex: string;
127
+ overflow: string;
128
+ textOverflow: string;
129
+ };
130
+ '& .SCLightbox-ril-toolbar-right-side': {
131
+ paddingLeft: number;
132
+ paddingRight: number;
133
+ flex: string;
134
+ };
135
+ '& .SCLightbox-ril-toolbar-item': {
136
+ display: string;
137
+ lineHeight: string;
138
+ padding: number;
139
+ color: string;
140
+ fontSize: string;
141
+ maxWidth: string;
142
+ overflow: string;
143
+ textOverflow: string;
144
+ whiteSpace: string;
145
+ };
146
+ '& .SCLightbox-ril-toolbar-item-child': {
147
+ verticalAlign: string;
148
+ };
149
+ '& .SCLightbox-ril-builtin-button': {
150
+ width: number;
151
+ height: number;
152
+ cursor: string;
153
+ border: string;
154
+ opacity: number;
155
+ '&:hover': {
156
+ opacity: number;
157
+ };
158
+ '&:active': {
159
+ outline: string;
160
+ };
161
+ };
162
+ '& .SCLightbox-ril-builtin-button-disabled': {
163
+ cursor: string;
164
+ opacity: number;
165
+ '&:hover': {
166
+ opacity: number;
167
+ };
168
+ };
169
+ '& .SCLightbox-ril-close-button': {
170
+ background: string;
171
+ '& span': {
172
+ color: string;
173
+ fontSize: number;
174
+ };
175
+ };
176
+ '& .SCLightbox-ril-zoom-in-button': {
177
+ background: string;
178
+ marginRight: any;
179
+ '& span': {
180
+ color: string;
181
+ fontSize: number;
182
+ };
183
+ };
184
+ '& .SCLightbox-ril-zoom-out-button': {
185
+ background: string;
186
+ marginRight: any;
187
+ '& span': {
188
+ color: string;
189
+ fontSize: number;
190
+ };
191
+ };
192
+ '& .SCLightbox-ril-outer-animating': {
193
+ animationName: string;
194
+ };
195
+ '& .SCLightbox-ril-loading-circle': {
196
+ width: number;
197
+ height: number;
198
+ position: string;
199
+ };
200
+ '& .SCLightbox-ril-loading-circle-point': {
201
+ width: string;
202
+ height: string;
203
+ position: string;
204
+ left: number;
205
+ top: number;
206
+ '&:before': {
207
+ content: string;
208
+ display: string;
209
+ margin: string;
210
+ width: string;
211
+ height: string;
212
+ backgroundColor: string;
213
+ borderRadius: string;
214
+ animation: string;
215
+ };
216
+ '&:nth-of-type(1)': {
217
+ transform: string;
218
+ '&:before': {
219
+ animationDelay: string;
220
+ };
221
+ };
222
+ '&:nth-of-type(7)': {
223
+ transform: string;
224
+ '&:before': {
225
+ animationDelay: string;
226
+ };
227
+ };
228
+ '&:nth-of-type(2)': {
229
+ transform: string;
230
+ '&:before': {
231
+ animationDelay: string;
232
+ };
233
+ };
234
+ '&:nth-of-type(8)': {
235
+ transform: string;
236
+ '&:before': {
237
+ animationDelay: string;
238
+ };
239
+ };
240
+ '&:nth-of-type(3)': {
241
+ transform: string;
242
+ '&:before': {
243
+ animationDelay: string;
244
+ };
245
+ };
246
+ '&:nth-of-type(9)': {
247
+ transform: string;
248
+ '&:before': {
249
+ animationDelay: string;
250
+ };
251
+ };
252
+ '&:nth-of-type(4)': {
253
+ transform: string;
254
+ '&:before': {
255
+ animationDelay: string;
256
+ };
257
+ };
258
+ '&:nth-of-type(10)': {
259
+ transform: string;
260
+ '&:before': {
261
+ animationDelay: string;
262
+ };
263
+ };
264
+ '&:nth-of-type(5)': {
265
+ transform: string;
266
+ '&:before': {
267
+ animationDelay: string;
268
+ };
269
+ };
270
+ '&:nth-of-type(11)': {
271
+ transform: string;
272
+ '&:before': {
273
+ animationDelay: string;
274
+ };
275
+ };
276
+ '&:nth-of-type(6)': {
277
+ transform: string;
278
+ '&:before': {
279
+ animationDelay: string;
280
+ };
281
+ };
282
+ '&:nth-of-type(12)': {
283
+ transform: string;
284
+ '&:before': {
285
+ animationDelay: string;
286
+ };
287
+ };
288
+ '&:nth-of-type(13)': {
289
+ transform: string;
290
+ '&:before': {
291
+ animationDelay: string;
292
+ };
293
+ };
294
+ };
295
+ '& .SCLightbox-ril-loading-container': {
296
+ position: string;
297
+ top: number;
298
+ right: number;
299
+ bottom: number;
300
+ left: number;
301
+ };
302
+ '& .SCLightbox-ril-error-container': {
303
+ position: string;
304
+ top: number;
305
+ right: number;
306
+ bottom: number;
307
+ left: number;
308
+ display: string;
309
+ alignItems: string;
310
+ justifyContent: string;
311
+ color: string;
312
+ };
313
+ '& .SCLightbox-ril-loading-container-icon': {
314
+ color: string;
315
+ position: string;
316
+ top: string;
317
+ left: string;
318
+ transform: string;
319
+ };
320
+ '& .SCLightbox-ril-image-prev': {
321
+ position: string;
322
+ top: number;
323
+ left: number;
324
+ right: number;
325
+ bottom: number;
326
+ margin: string;
327
+ maxWidth: string;
328
+ msContentZooming: string;
329
+ msUserSelect: string;
330
+ msTouchSelect: string;
331
+ touchAction: string;
332
+ '& .SCLightbox-ril-loading-container': {
333
+ display: string;
334
+ };
335
+ };
336
+ '& .SCLightbox-ril-image-next': {
337
+ position: string;
338
+ top: number;
339
+ left: number;
340
+ right: number;
341
+ bottom: number;
342
+ margin: string;
343
+ maxWidth: string;
344
+ msContentZooming: string;
345
+ msUserSelect: string;
346
+ msTouchSelect: string;
347
+ touchAction: string;
348
+ '& .SCLightbox-ril-loading-container': {
349
+ display: string;
350
+ };
351
+ '& .SCLightbox-ril-error-container': {
352
+ display: string;
353
+ };
354
+ };
5
355
  };
6
356
  };
7
357
  };
@@ -1 +1 @@
1
- {"version":3,"file":"SCLightbox.d.ts","sourceRoot":"","sources":["../../../src/components/SCLightbox.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;CAItB,CAAC;AAEF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"SCLightbox.d.ts","sourceRoot":"","sources":["../../../src/components/SCLightbox.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwXtB,CAAC;AAEF,eAAe,SAAS,CAAC"}