@selfcommunity/react-theme-default 0.1.0-alpha.220 → 0.1.0-alpha.221
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/SCLightbox.d.ts +130 -311
- package/lib/cjs/components/SCLightbox.d.ts.map +1 -1
- package/lib/cjs/components/SCLightbox.js +151 -326
- package/lib/cjs/components/SCLightbox.js.map +1 -1
- package/lib/cjs/index.d.ts +128 -311
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/components/SCLightbox.d.ts +130 -311
- package/lib/esm/components/SCLightbox.d.ts.map +1 -1
- package/lib/esm/components/SCLightbox.js +151 -326
- package/lib/esm/components/SCLightbox.js.map +1 -1
- package/lib/esm/index.d.ts +128 -311
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/umd/react-theme-default.js +19 -14
- package/lib/umd/react-theme-default.js.LICENSE.txt +0 -8
- package/lib/umd/react-theme-default.js.map +1 -1
- package/package.json +4 -4
|
@@ -4,379 +4,204 @@ const react_1 = require("@emotion/react");
|
|
|
4
4
|
const Component = {
|
|
5
5
|
styleOverrides: {
|
|
6
6
|
root: ({ theme }) => {
|
|
7
|
-
const
|
|
7
|
+
const PhotoViewRotate = (0, react_1.keyframes) `
|
|
8
8
|
0% {
|
|
9
|
-
|
|
9
|
+
transform: rotate(0deg)
|
|
10
10
|
}
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
to {
|
|
12
|
+
transform: rotate(1turn)
|
|
13
13
|
}`;
|
|
14
|
-
const
|
|
15
|
-
0%,
|
|
16
|
-
|
|
14
|
+
const PhotoViewDelayIn = (0, react_1.keyframes) `
|
|
15
|
+
0%, 50% {
|
|
16
|
+
opacity: 0
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
17
19
|
opacity: 1
|
|
20
|
+
}`;
|
|
21
|
+
const PhotoViewFade = (0, react_1.keyframes) `
|
|
22
|
+
0% {
|
|
23
|
+
opacity: 0
|
|
18
24
|
}
|
|
19
|
-
|
|
20
|
-
opacity:
|
|
25
|
+
to {
|
|
26
|
+
opacity: 1
|
|
21
27
|
}`;
|
|
22
28
|
return {
|
|
29
|
+
height: '100%',
|
|
30
|
+
left: 0,
|
|
31
|
+
overflow: 'hidden',
|
|
32
|
+
position: 'fixed',
|
|
33
|
+
top: 0,
|
|
34
|
+
touchAction: 'none',
|
|
35
|
+
width: '100%',
|
|
23
36
|
zIndex: 2000,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
outline: 'none',
|
|
28
|
-
top: 0,
|
|
29
|
-
left: 0,
|
|
30
|
-
right: 0,
|
|
31
|
-
bottom: 0,
|
|
32
|
-
zIndex: 1000,
|
|
33
|
-
width: '100%',
|
|
34
|
-
height: '100vh',
|
|
35
|
-
msContentZooming: 'none',
|
|
36
|
-
msUserSelect: 'none',
|
|
37
|
-
msTouchSelect: 'none',
|
|
38
|
-
touchAction: 'none'
|
|
37
|
+
['& .PhotoView__Spinner']: {
|
|
38
|
+
'-webkit-animation': `${PhotoViewDelayIn} .4s linear both`,
|
|
39
|
+
animation: `${PhotoViewDelayIn} .4s linear both`
|
|
39
40
|
},
|
|
40
|
-
'& .
|
|
41
|
-
|
|
41
|
+
['& .PhotoView__Spinner svg']: {
|
|
42
|
+
'-webkit-animation': `${PhotoViewRotate} .6s linear infinite`,
|
|
43
|
+
animation: `${PhotoViewRotate} .6s linear infinite`
|
|
42
44
|
},
|
|
43
|
-
'& .
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
left: 0,
|
|
47
|
-
right: 0,
|
|
48
|
-
bottom: 0
|
|
45
|
+
['& .PhotoView__Photo']: {
|
|
46
|
+
cursor: 'grab',
|
|
47
|
+
maxWidth: 'none'
|
|
49
48
|
},
|
|
50
|
-
'& .
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
left: 0,
|
|
54
|
-
right: 0,
|
|
55
|
-
bottom: 0,
|
|
56
|
-
margin: 'auto',
|
|
57
|
-
maxWidth: 'none',
|
|
58
|
-
msContentZooming: 'none',
|
|
59
|
-
msUserSelect: 'none',
|
|
60
|
-
msTouchSelect: 'none',
|
|
61
|
-
touchAction: 'none'
|
|
62
|
-
},
|
|
63
|
-
'& .SCLightbox-ril-image-discourager': {
|
|
64
|
-
backgroundRepeat: 'no-repeat',
|
|
65
|
-
backgroundPosition: 'center',
|
|
66
|
-
backgroundSize: 'contain'
|
|
67
|
-
},
|
|
68
|
-
'& .SCLightbox-ril-nav-buttons': {
|
|
69
|
-
border: 'none',
|
|
70
|
-
position: 'absolute',
|
|
71
|
-
top: 0,
|
|
72
|
-
bottom: 0,
|
|
73
|
-
width: 20,
|
|
74
|
-
height: 34,
|
|
75
|
-
padding: '40px 30px',
|
|
76
|
-
margin: 'auto',
|
|
77
|
-
cursor: 'pointer',
|
|
78
|
-
opacity: 0.7,
|
|
79
|
-
'&:hover': {
|
|
80
|
-
opacity: 1
|
|
81
|
-
},
|
|
82
|
-
'&:active': {
|
|
49
|
+
['& .PhotoView__Photo:active']: {
|
|
50
|
+
cursor: 'grabbing',
|
|
51
|
+
['&:active']: {
|
|
83
52
|
opacity: 1
|
|
84
53
|
}
|
|
85
54
|
},
|
|
86
|
-
'& .
|
|
55
|
+
['& .PhotoView__icon']: {
|
|
56
|
+
display: 'inline-block',
|
|
87
57
|
left: 0,
|
|
88
|
-
background: 'rgba(0, 0, 0, 0.2)',
|
|
89
|
-
borderRadius: 0,
|
|
90
|
-
color: '#FFF',
|
|
91
|
-
'& span': {
|
|
92
|
-
fontSize: 39
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
'& .SCLightbox-ril-nav-button-next': {
|
|
96
|
-
right: 0,
|
|
97
|
-
background: 'rgba(0, 0, 0, 0.2)',
|
|
98
|
-
borderRadius: 0,
|
|
99
|
-
color: '#FFF',
|
|
100
|
-
'& span': {
|
|
101
|
-
fontSize: 39
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
'& .SCLightbox-ril-download-blocker': {
|
|
105
58
|
position: 'absolute',
|
|
106
59
|
top: 0,
|
|
107
|
-
|
|
108
|
-
right: 0,
|
|
109
|
-
bottom: 0,
|
|
110
|
-
backgroundImage: "url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');",
|
|
111
|
-
backgroundSize: 'cover'
|
|
60
|
+
transform: 'translate(-50%, -50%)'
|
|
112
61
|
},
|
|
113
|
-
'& .
|
|
114
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
115
|
-
position: 'absolute',
|
|
116
|
-
left: 0,
|
|
117
|
-
right: 0,
|
|
118
|
-
display: 'flex',
|
|
119
|
-
justifyContent: 'space-between',
|
|
62
|
+
['& .PhotoView__PhotoBox']: {
|
|
120
63
|
bottom: 0,
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
},
|
|
124
|
-
'& .SCLightbox-ril-toolbar': {
|
|
125
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
64
|
+
direction: 'ltr',
|
|
65
|
+
left: 0,
|
|
126
66
|
position: 'absolute',
|
|
67
|
+
right: 0,
|
|
127
68
|
top: 0,
|
|
69
|
+
touchAction: 'none',
|
|
70
|
+
width: '100%',
|
|
71
|
+
transformOrigin: 'left top'
|
|
72
|
+
},
|
|
73
|
+
['& .PhotoView__PhotoWrap']: {
|
|
74
|
+
bottom: 0,
|
|
75
|
+
direction: 'ltr',
|
|
128
76
|
left: 0,
|
|
77
|
+
position: 'absolute',
|
|
129
78
|
right: 0,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
79
|
+
top: 0,
|
|
80
|
+
touchAction: 'none',
|
|
81
|
+
width: '100%',
|
|
82
|
+
overflow: 'hidden',
|
|
83
|
+
zIndex: 10
|
|
133
84
|
},
|
|
134
|
-
'& .
|
|
135
|
-
|
|
136
|
-
color: '#fff'
|
|
85
|
+
['& .PhotoView-Slider__clean .PhotoView-Slider__ArrowLeft, .PhotoView-Slider__clean .PhotoView-Slider__ArrowRight, .PhotoView-Slider__clean .PhotoView-Slider__BannerWrap, .PhotoView-Slider__clean .PhotoView-Slider__Overlay, .PhotoView-Slider__willClose .PhotoView-Slider__BannerWrap:hover']: {
|
|
86
|
+
opacity: 0
|
|
137
87
|
},
|
|
138
|
-
'& .
|
|
139
|
-
|
|
140
|
-
|
|
88
|
+
['& .PhotoView-Slider__Backdrop']: {
|
|
89
|
+
background: '#000',
|
|
90
|
+
height: '100%',
|
|
91
|
+
left: 0,
|
|
92
|
+
position: 'absolute',
|
|
93
|
+
top: 0,
|
|
94
|
+
transitionProperty: 'background-color',
|
|
95
|
+
width: '100%',
|
|
96
|
+
zIndex: -1
|
|
141
97
|
},
|
|
142
|
-
'& .
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
overflow: 'hidden',
|
|
147
|
-
textOverflow: 'ellipsis'
|
|
98
|
+
['& .PhotoView-Slider__fadeIn']: {
|
|
99
|
+
'-webkit-animation': `${PhotoViewFade} linear both`,
|
|
100
|
+
animation: `${PhotoViewFade} linear both`,
|
|
101
|
+
opacity: 0
|
|
148
102
|
},
|
|
149
|
-
'& .
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
flex: '0 0 auto'
|
|
103
|
+
['& .PhotoView-Slider__fadeOut']: {
|
|
104
|
+
animation: `${PhotoViewFade} linear reverse both`,
|
|
105
|
+
opacity: 0
|
|
153
106
|
},
|
|
154
|
-
'& .
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
padding: 0,
|
|
107
|
+
['& .PhotoView-Slider__BannerWrap']: {
|
|
108
|
+
alignItems: 'center',
|
|
109
|
+
backgroundColor: 'rgba(0, 0, 0, .5)',
|
|
158
110
|
color: '#fff',
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
width: 40,
|
|
170
|
-
height: 35,
|
|
171
|
-
cursor: 'pointer',
|
|
172
|
-
border: 'none',
|
|
173
|
-
opacity: 0.7,
|
|
174
|
-
'&:hover': {
|
|
111
|
+
display: 'flex',
|
|
112
|
+
height: 44,
|
|
113
|
+
justifyContent: 'space-between',
|
|
114
|
+
left: 0,
|
|
115
|
+
position: 'absolute',
|
|
116
|
+
top: 0,
|
|
117
|
+
transition: 'opacity .2s ease-out',
|
|
118
|
+
width: '100%',
|
|
119
|
+
zIndex: 20,
|
|
120
|
+
['&:hover']: {
|
|
175
121
|
opacity: 1
|
|
176
|
-
},
|
|
177
|
-
'&:active': {
|
|
178
|
-
outline: 'none'
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
'& .SCLightbox-ril-builtin-button-disabled': {
|
|
182
|
-
cursor: 'default',
|
|
183
|
-
opacity: 0.5,
|
|
184
|
-
'&:hover': {
|
|
185
|
-
opacity: 0.5
|
|
186
122
|
}
|
|
187
123
|
},
|
|
188
|
-
'& .
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
fontSize: 32
|
|
193
|
-
}
|
|
194
|
-
},
|
|
195
|
-
'& .SCLightbox-ril-zoom-in-button': {
|
|
196
|
-
background: 'rgba(0, 0, 0, 0.2)',
|
|
197
|
-
marginRight: theme.spacing(3),
|
|
198
|
-
'& span': {
|
|
199
|
-
color: '#FFF',
|
|
200
|
-
fontSize: 32
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
'& .SCLightbox-ril-zoom-out-button': {
|
|
204
|
-
background: 'rgba(0, 0, 0, 0.2)',
|
|
205
|
-
marginRight: theme.spacing(5),
|
|
206
|
-
'& span': {
|
|
207
|
-
color: '#FFF',
|
|
208
|
-
fontSize: 32
|
|
209
|
-
}
|
|
124
|
+
['& .PhotoView-Slider__Counter']: {
|
|
125
|
+
fontSize: '14px',
|
|
126
|
+
opacity: 0,
|
|
127
|
+
padding: '0 10px'
|
|
210
128
|
},
|
|
211
|
-
'& .
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
color: '#FFF',
|
|
216
|
-
fontSize: 32
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
'& .SCLightbox-ril-outer-animating': {
|
|
220
|
-
animationName: `${closeWindow}`
|
|
221
|
-
},
|
|
222
|
-
'& .SCLightbox-ril-loading-circle': {
|
|
223
|
-
width: 60,
|
|
224
|
-
height: 60,
|
|
225
|
-
position: 'relative'
|
|
129
|
+
['& .PhotoView-Slider__BannerRight']: {
|
|
130
|
+
alignItems: 'center',
|
|
131
|
+
display: 'flex',
|
|
132
|
+
height: '100%'
|
|
226
133
|
},
|
|
227
|
-
'& .
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
'
|
|
234
|
-
content: '""',
|
|
235
|
-
display: 'block',
|
|
236
|
-
margin: '0 auto',
|
|
237
|
-
width: '11%',
|
|
238
|
-
height: '30%',
|
|
239
|
-
backgroundColor: '#fff',
|
|
240
|
-
borderRadius: '30%',
|
|
241
|
-
animation: `${pointFade} 800ms infinite ease-in-out both`
|
|
242
|
-
},
|
|
243
|
-
'&:nth-of-type(1)': {
|
|
244
|
-
transform: 'rotate(0deg)',
|
|
245
|
-
'&:before': {
|
|
246
|
-
animationDelay: '-800ms'
|
|
247
|
-
}
|
|
248
|
-
},
|
|
249
|
-
'&:nth-of-type(7)': {
|
|
250
|
-
transform: 'rotate(180deg)',
|
|
251
|
-
'&:before': {
|
|
252
|
-
animationDelay: '-800ms'
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
'&:nth-of-type(2)': {
|
|
256
|
-
transform: 'rotate(30deg)',
|
|
257
|
-
'&:before': {
|
|
258
|
-
animationDelay: '-666ms'
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
'&:nth-of-type(8)': {
|
|
262
|
-
transform: 'rotate(210deg)',
|
|
263
|
-
'&:before': {
|
|
264
|
-
animationDelay: '-666ms'
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
'&:nth-of-type(3)': {
|
|
268
|
-
transform: 'rotate(60deg)',
|
|
269
|
-
'&:before': {
|
|
270
|
-
animationDelay: '-533ms'
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
'&:nth-of-type(9)': {
|
|
274
|
-
transform: 'rotate(240deg)',
|
|
275
|
-
'&:before': {
|
|
276
|
-
animationDelay: '-533ms'
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
'&:nth-of-type(4)': {
|
|
280
|
-
transform: 'rotate(90deg)',
|
|
281
|
-
'&:before': {
|
|
282
|
-
animationDelay: '-400ms'
|
|
283
|
-
}
|
|
284
|
-
},
|
|
285
|
-
'&:nth-of-type(10)': {
|
|
286
|
-
transform: 'rotate(270deg)',
|
|
287
|
-
'&:before': {
|
|
288
|
-
animationDelay: '-400ms'
|
|
289
|
-
}
|
|
290
|
-
},
|
|
291
|
-
'&:nth-of-type(5)': {
|
|
292
|
-
transform: 'rotate(120deg)',
|
|
293
|
-
'&:before': {
|
|
294
|
-
animationDelay: '-266ms'
|
|
295
|
-
}
|
|
296
|
-
},
|
|
297
|
-
'&:nth-of-type(11)': {
|
|
298
|
-
transform: 'rotate(300deg)',
|
|
299
|
-
'&:before': {
|
|
300
|
-
animationDelay: '-266ms'
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
'&:nth-of-type(6)': {
|
|
304
|
-
transform: 'rotate(150deg)',
|
|
305
|
-
'&:before': {
|
|
306
|
-
animationDelay: '-133ms'
|
|
307
|
-
}
|
|
308
|
-
},
|
|
309
|
-
'&:nth-of-type(12)': {
|
|
310
|
-
transform: 'rotate(330deg)',
|
|
311
|
-
'&:before': {
|
|
312
|
-
animationDelay: '-133ms'
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
|
-
'&:nth-of-type(13)': {
|
|
316
|
-
transform: 'rotate(360deg)',
|
|
317
|
-
'&:before': {
|
|
318
|
-
animationDelay: '0ms'
|
|
319
|
-
}
|
|
320
|
-
}
|
|
134
|
+
['& .PhotoView-Slider__toolbarIcon']: {
|
|
135
|
+
fill: '#fff',
|
|
136
|
+
boxSizing: 'border-box',
|
|
137
|
+
cursor: 'pointer',
|
|
138
|
+
opacity: 0.75,
|
|
139
|
+
padding: '10px',
|
|
140
|
+
transition: 'opacity .2s linear'
|
|
321
141
|
},
|
|
322
|
-
'& .
|
|
323
|
-
|
|
324
|
-
top: 0,
|
|
325
|
-
right: 0,
|
|
326
|
-
bottom: 0,
|
|
327
|
-
left: 0
|
|
142
|
+
['& .PhotoView-Slider__toolbarIcon:hover']: {
|
|
143
|
+
opacity: 1
|
|
328
144
|
},
|
|
329
|
-
'& .
|
|
330
|
-
|
|
331
|
-
top: 0,
|
|
332
|
-
right: 0,
|
|
145
|
+
['& .PhotoView-Slider__ArrowLeft']: {
|
|
146
|
+
alignItems: 'center',
|
|
333
147
|
bottom: 0,
|
|
334
|
-
|
|
148
|
+
cursor: 'pointer',
|
|
335
149
|
display: 'flex',
|
|
336
|
-
|
|
150
|
+
height: 100,
|
|
337
151
|
justifyContent: 'center',
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
'& .SCLightbox-ril-loading-container-icon': {
|
|
341
|
-
color: '#fff',
|
|
342
|
-
position: 'absolute',
|
|
343
|
-
top: '50%',
|
|
344
|
-
left: '50%',
|
|
345
|
-
transform: 'translateX(-50%) translateY(-50%)'
|
|
346
|
-
},
|
|
347
|
-
'& .SCLightbox-ril-image-prev': {
|
|
152
|
+
margin: 'auto',
|
|
153
|
+
opacity: 0.75,
|
|
348
154
|
position: 'absolute',
|
|
349
155
|
top: 0,
|
|
156
|
+
transition: 'opacity .2s linear',
|
|
157
|
+
'-webkit-user-select': 'none',
|
|
158
|
+
'-moz-user-select': 'none',
|
|
159
|
+
'-ms-user-select': 'none',
|
|
160
|
+
userSelect: 'none',
|
|
161
|
+
width: 70,
|
|
162
|
+
zIndex: 20,
|
|
350
163
|
left: 0,
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
'
|
|
360
|
-
|
|
164
|
+
['& svg']: {
|
|
165
|
+
fill: '#fff',
|
|
166
|
+
background: 'rgba(0, 0, 0, .3)',
|
|
167
|
+
boxSizing: 'content-box',
|
|
168
|
+
height: 24,
|
|
169
|
+
padding: 10,
|
|
170
|
+
width: 24
|
|
171
|
+
},
|
|
172
|
+
['&:hover']: {
|
|
173
|
+
opacity: 1
|
|
361
174
|
}
|
|
362
175
|
},
|
|
363
|
-
'& .
|
|
176
|
+
['& .PhotoView-Slider__ArrowRight']: {
|
|
177
|
+
alignItems: 'center',
|
|
178
|
+
bottom: 0,
|
|
179
|
+
cursor: 'pointer',
|
|
180
|
+
display: 'flex',
|
|
181
|
+
height: 100,
|
|
182
|
+
justifyContent: 'center',
|
|
183
|
+
margin: 'auto',
|
|
184
|
+
opacity: 0.75,
|
|
364
185
|
position: 'absolute',
|
|
365
186
|
top: 0,
|
|
366
|
-
|
|
187
|
+
transition: 'opacity .2s linear',
|
|
188
|
+
'-webkit-user-select': 'none',
|
|
189
|
+
'-moz-user-select': 'none',
|
|
190
|
+
'-ms-user-select': 'none',
|
|
191
|
+
userSelect: 'none',
|
|
192
|
+
width: 70,
|
|
193
|
+
zIndex: 20,
|
|
367
194
|
right: 0,
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
'& .SCLightbox-ril-error-container': {
|
|
379
|
-
display: 'none'
|
|
195
|
+
['& svg']: {
|
|
196
|
+
fill: '#fff',
|
|
197
|
+
background: 'rgba(0, 0, 0, .3)',
|
|
198
|
+
boxSizing: 'content-box',
|
|
199
|
+
height: 24,
|
|
200
|
+
padding: 10,
|
|
201
|
+
width: 24
|
|
202
|
+
},
|
|
203
|
+
['&:hover']: {
|
|
204
|
+
opacity: 1
|
|
380
205
|
}
|
|
381
206
|
}
|
|
382
207
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCLightbox.js","sourceRoot":"","sources":["../../../src/components/SCLightbox.tsx"],"names":[],"mappings":";;AAAA,0CAAyC;AAEzC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE;YACrB,MAAM,
|
|
1
|
+
{"version":3,"file":"SCLightbox.js","sourceRoot":"","sources":["../../../src/components/SCLightbox.tsx"],"names":[],"mappings":"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"}
|