@quintype/arrow 3.15.1-perf.8 → 3.15.1-perf.9

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.
@@ -1,4 +1,4 @@
1
- @import "../../../../node_modules/react-image-lightbox/style.css";
1
+ @import "../../../stylesheets/react-image-lightbox-styles.css";
2
2
 
3
3
  .arr--image-lightbox {
4
4
  .icon.loader {
@@ -0,0 +1,344 @@
1
+ @keyframes closeWindow {
2
+ 0% {
3
+ opacity: 1;
4
+ }
5
+ 100% {
6
+ opacity: 0;
7
+ }
8
+ }
9
+
10
+ .ril__outer {
11
+ background-color: rgba(0, 0, 0, 0.85);
12
+ outline: none;
13
+ top: 0;
14
+ left: 0;
15
+ right: 0;
16
+ bottom: 0;
17
+ z-index: 1000;
18
+ width: 100%;
19
+ height: 100%;
20
+ -ms-content-zooming: none;
21
+ -ms-user-select: none;
22
+ -ms-touch-select: none;
23
+ touch-action: none;
24
+ }
25
+
26
+ .ril__outerClosing {
27
+ opacity: 0;
28
+ }
29
+
30
+ .ril__inner {
31
+ position: absolute;
32
+ top: 0;
33
+ left: 0;
34
+ right: 0;
35
+ bottom: 0;
36
+ }
37
+
38
+ .ril__image,
39
+ .ril__imagePrev,
40
+ .ril__imageNext {
41
+ position: absolute;
42
+ top: 0;
43
+ right: 0;
44
+ bottom: 0;
45
+ left: 0;
46
+ margin: auto;
47
+ max-width: none;
48
+ -ms-content-zooming: none;
49
+ -ms-user-select: none;
50
+ -ms-touch-select: none;
51
+ touch-action: none;
52
+ }
53
+
54
+ .ril__imageDiscourager {
55
+ background-repeat: no-repeat;
56
+ background-position: center;
57
+ background-size: contain;
58
+ }
59
+
60
+ .ril__navButtons {
61
+ border: none;
62
+ position: absolute;
63
+ top: 0;
64
+ bottom: 0;
65
+ width: 20px;
66
+ height: 34px;
67
+ padding: 40px 30px;
68
+ margin: auto;
69
+ cursor: pointer;
70
+ opacity: 0.7;
71
+ }
72
+ .ril__navButtons:hover {
73
+ opacity: 1;
74
+ }
75
+ .ril__navButtons:active {
76
+ opacity: 0.7;
77
+ }
78
+
79
+ .ril__navButtonPrev {
80
+ left: 0;
81
+ background: rgba(0, 0, 0, 0.2)
82
+ url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==')
83
+ no-repeat center;
84
+ }
85
+
86
+ .ril__navButtonNext {
87
+ right: 0;
88
+ background: rgba(0, 0, 0, 0.2)
89
+ url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+')
90
+ no-repeat center;
91
+ }
92
+
93
+ .ril__downloadBlocker {
94
+ position: absolute;
95
+ top: 0;
96
+ left: 0;
97
+ right: 0;
98
+ bottom: 0;
99
+ background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
100
+ background-size: cover;
101
+ }
102
+
103
+ .ril__caption,
104
+ .ril__toolbar {
105
+ background-color: rgba(0, 0, 0, 0.5);
106
+ position: absolute;
107
+ left: 0;
108
+ right: 0;
109
+ display: flex;
110
+ justify-content: space-between;
111
+ }
112
+
113
+ .ril__caption {
114
+ bottom: 0;
115
+ max-height: 150px;
116
+ overflow: auto;
117
+ }
118
+
119
+ .ril__captionContent {
120
+ padding: 10px 20px;
121
+ color: #fff;
122
+ }
123
+
124
+ .ril__toolbar {
125
+ top: 0;
126
+ height: 50px;
127
+ }
128
+
129
+ .ril__toolbarSide {
130
+ height: 50px;
131
+ margin: 0;
132
+ }
133
+
134
+ .ril__toolbarLeftSide {
135
+ padding-left: 20px;
136
+ padding-right: 0;
137
+ flex: 0 1 auto;
138
+ overflow: hidden;
139
+ text-overflow: ellipsis;
140
+ }
141
+
142
+ .ril__toolbarRightSide {
143
+ padding-left: 0;
144
+ padding-right: 20px;
145
+ flex: 0 0 auto;
146
+ }
147
+
148
+ .ril__toolbarItem {
149
+ display: inline-block;
150
+ line-height: 50px;
151
+ padding: 0;
152
+ color: #fff;
153
+ font-size: 120%;
154
+ max-width: 100%;
155
+ overflow: hidden;
156
+ text-overflow: ellipsis;
157
+ white-space: nowrap;
158
+ }
159
+
160
+ .ril__toolbarItemChild {
161
+ vertical-align: middle;
162
+ }
163
+
164
+ .ril__builtinButton {
165
+ width: 40px;
166
+ height: 35px;
167
+ cursor: pointer;
168
+ border: none;
169
+ opacity: 0.7;
170
+ }
171
+ .ril__builtinButton:hover {
172
+ opacity: 1;
173
+ }
174
+ .ril__builtinButton:active {
175
+ outline: none;
176
+ }
177
+
178
+ .ril__builtinButtonDisabled {
179
+ cursor: default;
180
+ opacity: 0.5;
181
+ }
182
+ .ril__builtinButtonDisabled:hover {
183
+ opacity: 0.5;
184
+ }
185
+
186
+ .ril__closeButton {
187
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=')
188
+ no-repeat center;
189
+ }
190
+
191
+ .ril__zoomInButton {
192
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+')
193
+ no-repeat center;
194
+ }
195
+
196
+ .ril__zoomOutButton {
197
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=')
198
+ no-repeat center;
199
+ }
200
+
201
+ .ril__outerAnimating {
202
+ animation-name: closeWindow;
203
+ }
204
+
205
+ @keyframes pointFade {
206
+ 0%,
207
+ 19.999%,
208
+ 100% {
209
+ opacity: 0;
210
+ }
211
+ 20% {
212
+ opacity: 1;
213
+ }
214
+ }
215
+
216
+ .ril__loadingCircle {
217
+ width: 60px;
218
+ height: 60px;
219
+ position: relative;
220
+ }
221
+
222
+ .ril__loadingCirclePoint {
223
+ width: 100%;
224
+ height: 100%;
225
+ position: absolute;
226
+ left: 0;
227
+ top: 0;
228
+ }
229
+ .ril__loadingCirclePoint::before {
230
+ content: '';
231
+ display: block;
232
+ margin: 0 auto;
233
+ width: 11%;
234
+ height: 30%;
235
+ background-color: #fff;
236
+ border-radius: 30%;
237
+ animation: pointFade 800ms infinite ease-in-out both;
238
+ }
239
+ .ril__loadingCirclePoint:nth-of-type(1) {
240
+ transform: rotate(0deg);
241
+ }
242
+ .ril__loadingCirclePoint:nth-of-type(7) {
243
+ transform: rotate(180deg);
244
+ }
245
+ .ril__loadingCirclePoint:nth-of-type(1)::before,
246
+ .ril__loadingCirclePoint:nth-of-type(7)::before {
247
+ animation-delay: -800ms;
248
+ }
249
+ .ril__loadingCirclePoint:nth-of-type(2) {
250
+ transform: rotate(30deg);
251
+ }
252
+ .ril__loadingCirclePoint:nth-of-type(8) {
253
+ transform: rotate(210deg);
254
+ }
255
+ .ril__loadingCirclePoint:nth-of-type(2)::before,
256
+ .ril__loadingCirclePoint:nth-of-type(8)::before {
257
+ animation-delay: -666ms;
258
+ }
259
+ .ril__loadingCirclePoint:nth-of-type(3) {
260
+ transform: rotate(60deg);
261
+ }
262
+ .ril__loadingCirclePoint:nth-of-type(9) {
263
+ transform: rotate(240deg);
264
+ }
265
+ .ril__loadingCirclePoint:nth-of-type(3)::before,
266
+ .ril__loadingCirclePoint:nth-of-type(9)::before {
267
+ animation-delay: -533ms;
268
+ }
269
+ .ril__loadingCirclePoint:nth-of-type(4) {
270
+ transform: rotate(90deg);
271
+ }
272
+ .ril__loadingCirclePoint:nth-of-type(10) {
273
+ transform: rotate(270deg);
274
+ }
275
+ .ril__loadingCirclePoint:nth-of-type(4)::before,
276
+ .ril__loadingCirclePoint:nth-of-type(10)::before {
277
+ animation-delay: -400ms;
278
+ }
279
+ .ril__loadingCirclePoint:nth-of-type(5) {
280
+ transform: rotate(120deg);
281
+ }
282
+ .ril__loadingCirclePoint:nth-of-type(11) {
283
+ transform: rotate(300deg);
284
+ }
285
+ .ril__loadingCirclePoint:nth-of-type(5)::before,
286
+ .ril__loadingCirclePoint:nth-of-type(11)::before {
287
+ animation-delay: -266ms;
288
+ }
289
+ .ril__loadingCirclePoint:nth-of-type(6) {
290
+ transform: rotate(150deg);
291
+ }
292
+ .ril__loadingCirclePoint:nth-of-type(12) {
293
+ transform: rotate(330deg);
294
+ }
295
+ .ril__loadingCirclePoint:nth-of-type(6)::before,
296
+ .ril__loadingCirclePoint:nth-of-type(12)::before {
297
+ animation-delay: -133ms;
298
+ }
299
+ .ril__loadingCirclePoint:nth-of-type(7) {
300
+ transform: rotate(180deg);
301
+ }
302
+ .ril__loadingCirclePoint:nth-of-type(13) {
303
+ transform: rotate(360deg);
304
+ }
305
+ .ril__loadingCirclePoint:nth-of-type(7)::before,
306
+ .ril__loadingCirclePoint:nth-of-type(13)::before {
307
+ animation-delay: 0ms;
308
+ }
309
+
310
+ .ril__loadingContainer {
311
+ position: absolute;
312
+ top: 0;
313
+ right: 0;
314
+ bottom: 0;
315
+ left: 0;
316
+ }
317
+ .ril__imagePrev .ril__loadingContainer,
318
+ .ril__imageNext .ril__loadingContainer {
319
+ display: none;
320
+ }
321
+
322
+ .ril__errorContainer {
323
+ position: absolute;
324
+ top: 0;
325
+ right: 0;
326
+ bottom: 0;
327
+ left: 0;
328
+ display: flex;
329
+ align-items: center;
330
+ justify-content: center;
331
+ color: #fff;
332
+ }
333
+ .ril__imagePrev .ril__errorContainer,
334
+ .ril__imageNext .ril__errorContainer {
335
+ display: none;
336
+ }
337
+
338
+ .ril__loadingContainer__icon {
339
+ color: #fff;
340
+ position: absolute;
341
+ top: 50%;
342
+ left: 50%;
343
+ transform: translateX(-50%) translateY(-50%);
344
+ }
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@quintype/arrow","version":"3.15.1-perf.8","engines":{"node":">=12.0.0"},"description":"Quintype's UI Component Library for Publisher Apps","main":"cjs/index.js","module":"esm/index.js","repository":{"type":"git","url":"git+https://github.com/quintype/quintype-node-arrow.git"},"author":"dev-core@quintype.com","license":"ISC","bugs":{"url":"https://github.com/quintype/quintype-node-arrow/issues"},"peerDependencies":{"@babel/runtime":"^7.18.3","date-fns":"^2.28.0","date-fns-tz":"^1.3.1","lodash":"^4.0.0","react":">= 16.8.0","react-dom":">= 16.8.0","react-redux":">= 7.0.0","axios":"^0.23.0","@quintype/components":"^3.0.0","intersection-observer":"^0.11.0","react-image-lightbox":"^5.1.4","react-timeago":"^4.4.0"},"dependencies":{},"homepage":"https://github.com/quintype/quintype-node-arrow#readme"}
1
+ {"name":"@quintype/arrow","version":"3.15.1-perf.9","engines":{"node":">=12.0.0"},"description":"Quintype's UI Component Library for Publisher Apps","main":"cjs/index.js","module":"esm/index.js","repository":{"type":"git","url":"git+https://github.com/quintype/quintype-node-arrow.git"},"author":"dev-core@quintype.com","license":"ISC","bugs":{"url":"https://github.com/quintype/quintype-node-arrow/issues"},"peerDependencies":{"@babel/runtime":"^7.18.3","date-fns":"^2.28.0","date-fns-tz":"^1.3.1","lodash":"^4.0.0","react":">= 16.8.0","react-dom":">= 16.8.0","react-redux":">= 7.0.0","axios":"^0.23.0","@quintype/components":"^3.0.0","intersection-observer":"^0.11.0","react-image-lightbox":"^5.1.4","react-timeago":"^4.4.0"},"dependencies":{},"homepage":"https://github.com/quintype/quintype-node-arrow#readme"}