earthnut 0.0.0 → 0.0.2

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 (90) hide show
  1. package/BackgroundRipple/index.cjs +1 -0
  2. package/BackgroundRipple/index.mjs +1 -0
  3. package/LICENSE +25 -0
  4. package/Layout/index.cjs +1 -0
  5. package/Layout/index.mjs +1 -0
  6. package/README.md +24 -5
  7. package/components/button/button.d.ts +5 -0
  8. package/components/button/index.d.ts +3 -0
  9. package/components/button/style/index.d.ts +1 -0
  10. package/components/index.d.ts +3 -0
  11. package/components/layout/content.d.ts +11 -0
  12. package/components/layout/footer.d.ts +16 -0
  13. package/components/layout/header.d.ts +18 -0
  14. package/components/layout/index.d.ts +2 -0
  15. package/components/layout/layout.d.ts +50 -0
  16. package/components/layout/sideBar.d.ts +24 -0
  17. package/components/layout/types.d.ts +71 -0
  18. package/components/menu/index.d.ts +0 -0
  19. package/components/menu/menu.d.ts +0 -0
  20. package/components/menu/style/index.d.ts +0 -0
  21. package/components/ripples/RipplesEle.d.ts +36 -0
  22. package/components/ripples/index.d.ts +4 -0
  23. package/components/ripples/style/index.d.ts +0 -0
  24. package/components/ripples/types.d.ts +11 -0
  25. package/components/ripples/useOptionUpdate.d.ts +5 -0
  26. package/customHooks/index.d.ts +5 -0
  27. package/customHooks/useAnimationFrame.d.ts +42 -0
  28. package/customHooks/useInputIsComposing.d.ts +46 -0
  29. package/customHooks/useRipples/buildBackground/create-background-color.d.ts +3 -0
  30. package/customHooks/useRipples/buildBackground/create-linear-gradient.d.ts +3 -0
  31. package/customHooks/useRipples/buildBackground/default-background/_createImageData.d.ts +7 -0
  32. package/customHooks/useRipples/buildBackground/default-background/circleDataList.d.ts +18 -0
  33. package/customHooks/useRipples/buildBackground/default-background/createCanvasElementBySize.d.ts +2 -0
  34. package/customHooks/useRipples/buildBackground/default-background/createDefault.d.ts +2 -0
  35. package/customHooks/useRipples/buildBackground/default-background/index.d.ts +10 -0
  36. package/customHooks/useRipples/buildBackground/loadImage.d.ts +13 -0
  37. package/customHooks/useRipples/buildBackground/runSide.d.ts +9 -0
  38. package/customHooks/useRipples/buildBackground/type.d.ts +31 -0
  39. package/customHooks/useRipples/buildBackground/utils/bindImage.d.ts +4 -0
  40. package/customHooks/useRipples/buildBackground/utils/createCanvasElement.d.ts +3 -0
  41. package/customHooks/useRipples/buildBackground/utils/createImageBySrc.d.ts +2 -0
  42. package/customHooks/useRipples/buildBackground/utils/getBackgroundStyle.d.ts +3 -0
  43. package/customHooks/useRipples/buildBackground/utils/hideCssBackground.d.ts +10 -0
  44. package/customHooks/useRipples/buildBackground/utils/restore-css-background.d.ts +7 -0
  45. package/customHooks/useRipples/callback/destroy.d.ts +3 -0
  46. package/customHooks/useRipples/callback/drop.d.ts +3 -0
  47. package/customHooks/useRipples/callback/fade.d.ts +3 -0
  48. package/customHooks/useRipples/callback/reload-background.d.ts +6 -0
  49. package/customHooks/useRipples/callback/scale.d.ts +2 -0
  50. package/customHooks/useRipples/index.d.ts +40 -0
  51. package/customHooks/useRipples/init/index.d.ts +5 -0
  52. package/customHooks/useRipples/init/initEvent.d.ts +5 -0
  53. package/customHooks/useRipples/init/initShaders.d.ts +7 -0
  54. package/customHooks/useRipples/init/initTexture.d.ts +7 -0
  55. package/customHooks/useRipples/render/computeTextureBoundaries.d.ts +3 -0
  56. package/customHooks/useRipples/render/draw.d.ts +7 -0
  57. package/customHooks/useRipples/render/drawQuad.d.ts +7 -0
  58. package/customHooks/useRipples/render/dropAtPointer.d.ts +7 -0
  59. package/customHooks/useRipples/render/index.d.ts +6 -0
  60. package/customHooks/useRipples/render/swapBufferIndices.d.ts +5 -0
  61. package/customHooks/useRipples/render/update.d.ts +5 -0
  62. package/customHooks/useRipples/rippersData/defaultData.d.ts +5 -0
  63. package/customHooks/useRipples/rippersData/fadeData.d.ts +43 -0
  64. package/customHooks/useRipples/rippersData/index.d.ts +40 -0
  65. package/customHooks/useRipples/rippersData/loadConfig.d.ts +19 -0
  66. package/customHooks/useRipples/rippersData/renderData.d.ts +74 -0
  67. package/customHooks/useRipples/rippersData/useOptions.d.ts +81 -0
  68. package/customHooks/useRipples/rippersData/vertexSource.d.ts +28 -0
  69. package/customHooks/useRipples/ripple.html.d.ts +6 -0
  70. package/customHooks/useRipples/ripplesClass.d.ts +51 -0
  71. package/customHooks/useRipples/tools.d.ts +31 -0
  72. package/customHooks/useRipples/types.d.ts +192 -0
  73. package/customHooks/useTimeId.d.ts +55 -0
  74. package/dog.d.ts +3 -0
  75. package/index.cjs +1 -0
  76. package/index.d.ts +5 -0
  77. package/index.js.LICENSE.txt +79 -0
  78. package/index.mjs +1 -0
  79. package/package.json +86 -14
  80. package/styles/common.css +360 -0
  81. package/styles/common.scss +444 -0
  82. package/useAnimationFrame/index.cjs +1 -0
  83. package/useAnimationFrame/index.mjs +1 -0
  84. package/useInputIsComposing/index.cjs +1 -0
  85. package/useInputIsComposing/index.mjs +1 -0
  86. package/useRipples/index.cjs +1 -0
  87. package/useRipples/index.mjs +1 -0
  88. package/useTimeId/index.cjs +1 -0
  89. package/useTimeId/index.mjs +1 -0
  90. package/index.js +0 -1
@@ -0,0 +1,444 @@
1
+ @mixin light {
2
+ // 基色
3
+ --primary-white: #ffffff;
4
+ --primary-black: #1b1b1b;
5
+ --primary-dust: #6f6f6f;
6
+ --primary-red: #d30038;
7
+ --primary-green: #007936;
8
+ --primary-blue: #0069c2;
9
+ --primary-yellow: #746a00;
10
+ --primary-super-yellow: #ffff00;
11
+ // 文本色
12
+ --text-primary: #1b1b1b;
13
+ --text-secondary: #4e4e4e;
14
+ --text-invert: var(--primary-white); // 文本反转色
15
+ --text-muted: var(--primary-dust); // 温和文本色
16
+ // 链接文本色
17
+ --text-link: #0069c2;
18
+ --text-visited: #551a8b;
19
+ --text-hover: var(--primary-red);
20
+ --text-visited: #551a8b;
21
+ --text-active: #858585;
22
+ --text-inactive: #9e9e9ea6; // 无效链接色
23
+ // 背景色
24
+ --background-primary: var(--primary-white);
25
+ --background-tab-level-1: var(--primary-black);
26
+ --background-tab-level-2: var(--primary-dust);
27
+ --background-tab-transparent: #6666;
28
+ --table-border-color: #000;
29
+ --curriculum-shadow: 4px 4px 8px 0 #b3b3b32e, -4px 4px 8px 0 #b3b3b326;
30
+ --curriculum-shadow-landing-about-ul: 0 4px 10px 0 #e3642a0f, 0 -2px 4px 0 #b25c350f;
31
+ --box-shadow: 1px 1px 12px #6666;
32
+ --box-shadow-primary: 1px 1px 12px #6666;
33
+ --box-shadow-primary-small: 1px 1px 3px #6666;
34
+ --box-shadow-primary-large: 1px 1px 24px #6666;
35
+ color-scheme: light;
36
+ }
37
+
38
+ @mixin dark {
39
+ // 基色
40
+ --primary-white: #ffffff;
41
+ --primary-black: #1b1b1b;
42
+ --primary-dust: #858585;
43
+ --primary-red: #ff97a0;
44
+ --primary-green: #00d061;
45
+ --primary-blue: #8cb4ff;
46
+ --primary-yellow: #c7b700;
47
+ // 文本色
48
+ --text-primary: #fff;
49
+ --text-secondary: #cdcdcd;
50
+ --text-invert: var(--primary-black); // 文本反转色
51
+ --text-muted: var(--primary-dust); // 温和文本色
52
+ // 普通链接文本色
53
+ --text-link: #8cb4ff;
54
+ --text-visited: #ffadff;
55
+ --text-hover: var(--primary-red);
56
+ --text-active: #858585;
57
+ --text-inactive: #cdcdcda6; // 无效链接色
58
+ // 背景色
59
+ --background-primary: var(--primary-black);
60
+ --background-tab-level-1: #666666;
61
+ --background-tab-level-2: var(--primary-dust);
62
+ --background-tab-transparent: #6666;
63
+ --table-border-color: #ff3663;
64
+ --box-shadow: 1px 1px 12px #6666;
65
+ --box-shadow-primary: 1px 1px 12px #6666;
66
+ --box-shadow-primary-small: 1px 1px 3px #6666;
67
+ --box-shadow-primary-large: 1px 1px 24px #6666;
68
+ color-scheme: dark;
69
+ }
70
+
71
+ :root {
72
+ @include light();
73
+ }
74
+
75
+ @media (prefers-color-scheme: light) {
76
+ :root:not(.en-light):not(.en-dark) {
77
+ @include light();
78
+ }
79
+ }
80
+ @media (prefers-color-scheme: dark) {
81
+ :root:not(.en-light):not(.en-dark) {
82
+ @include dark();
83
+ }
84
+ }
85
+
86
+ .en-light {
87
+ @include light();
88
+ }
89
+
90
+ .en-dark {
91
+ @include dark();
92
+ }
93
+
94
+ .en-center {
95
+ position: absolute;
96
+ left: 50%;
97
+ top: 50%;
98
+ transform: translate(-50%, -50%);
99
+ }
100
+
101
+ /** 文本显示一行,超出点点点 */
102
+ .en-text-in-one-line {
103
+ white-space: nowrap;
104
+ text-overflow: ellipsis;
105
+ overflow: hidden;
106
+ word-break: break-all;
107
+ }
108
+
109
+ .en-text-in-one-line-hide {
110
+ white-space: nowrap;
111
+ text-overflow: clip;
112
+ overflow: hidden;
113
+ word-break: break-all;
114
+ }
115
+
116
+ /** 文本显示两行,超出点点点 */
117
+ .en-text-in-two-line {
118
+ overflow: hidden;
119
+ text-overflow: ellipsis;
120
+ display: -webkit-box;
121
+ -webkit-line-clamp: 2;
122
+ line-clamp: 2;
123
+ -webkit-box-orient: vertical;
124
+ }
125
+
126
+ /* 彩色字 */
127
+ .en-color-text {
128
+ color: transparent;
129
+ background-image: linear-gradient(45deg, #ff0, #0f0, #f00, #0ff, #00f, #f0f, #ff0);
130
+ background-position: 0% 0%;
131
+ background-size: 400% 200%;
132
+ background-clip: text;
133
+ animation: 6s ease-in 0s infinite colorText alternate;
134
+ }
135
+
136
+ .en-red-bg {
137
+ background-color: #f12;
138
+ }
139
+
140
+ .en-float-left {
141
+ float: left;
142
+ }
143
+
144
+ .en-float-right,
145
+ .en-float {
146
+ float: right;
147
+ }
148
+
149
+ .en-clear-float,
150
+ .en-clear {
151
+ clear: both;
152
+ }
153
+
154
+ .en-loading {
155
+ position: relative;
156
+ width: 100%;
157
+ height: 100%;
158
+ background-color: transparent;
159
+ background-image:
160
+ radial-gradient(#f00, #f00 50%, transparent 50%, transparent),
161
+ radial-gradient(#af1, #af1 50%, transparent 50%, transparent),
162
+ radial-gradient(#0ff, #0ff 50%, transparent 50%, transparent),
163
+ radial-gradient(#f0f, #f0f 50%, transparent 50%, transparent);
164
+ background-repeat: no-repeat;
165
+ animation: 2.4s ease-in-out 0s infinite loading;
166
+ }
167
+
168
+ // 文本剧中
169
+ .en-text-center {
170
+ text-align: center;
171
+ }
172
+
173
+ // 文本靠右
174
+ .en-text-right {
175
+ text-align: end;
176
+ }
177
+ //小文本
178
+ .en-text-small {
179
+ font-size: 0.6rem;
180
+ }
181
+ @keyframes loading {
182
+ // 45 - 25 * Math.sin((Math.PI * 5) / 12)
183
+ // 位置公式 35 - 25 * Math.cos((Math.PI * 5) / 12)
184
+
185
+ 100%,
186
+ 0% {
187
+ background-size:
188
+ 10% 10%,
189
+ 10% 10%,
190
+ 10% 10%,
191
+ 10% 10%;
192
+ background-position:
193
+ 25% 45%,
194
+ 41.7% 45%,
195
+ 58.3% 45%,
196
+ 75% 45%;
197
+ }
198
+
199
+ 20%,
200
+ 80% {
201
+ background-size: 2.5% 2.5%;
202
+ background-position: 25% 45%;
203
+ }
204
+
205
+ 22% {
206
+ background-size:
207
+ 3.75% 3.75%,
208
+ 2.5% 2.5%,
209
+ 2.5% 2.5%,
210
+ 2.5% 2.5%;
211
+ background-position:
212
+ // 位置 1
213
+ 25.85% 38.53%,
214
+ 25% 45%,
215
+ 25% 45%,
216
+ 25% 45%;
217
+ }
218
+
219
+ 24% {
220
+ background-size:
221
+ 5% 5%,
222
+ 2.5% 2.5%,
223
+ 2.5% 2.5%,
224
+ 2.5% 2.5%;
225
+ background-position:
226
+ // 位置 2
227
+ 28.35% 32.5%,
228
+ 25% 45%,
229
+ 25% 45%,
230
+ 25% 45%;
231
+ }
232
+
233
+ 26% {
234
+ background-size:
235
+ 6.25% 6.25%,
236
+ 2.5% 2.5%,
237
+ 2.5% 2.5%,
238
+ 2.5% 2.5%;
239
+ background-position:
240
+ // 位置 3
241
+ 32.32% 27.32%,
242
+ 25% 45%,
243
+ 25% 45%,
244
+ 25% 45%;
245
+ }
246
+
247
+ 28% {
248
+ background-size:
249
+ 7.5% 7.5%,
250
+ 3.75% 3.75%,
251
+ 2.5% 2.5%,
252
+ 2.5% 2.5%;
253
+ background-position:
254
+ // 位置 4
255
+ 37.5% 23.35%,
256
+ // 位置 1
257
+ 25.85% 38.53%,
258
+ 25% 45%,
259
+ 25% 45%;
260
+ }
261
+
262
+ 30% {
263
+ background-size:
264
+ 8.75% 8.75%,
265
+ 5% 5%,
266
+ 2.5% 2.5%,
267
+ 2.5% 2.5%;
268
+ background-position:
269
+ // 位置 5
270
+ 43.53% 20.85%,
271
+ // 位置 2
272
+ 28.35% 32.5%,
273
+ 25% 45%,
274
+ 25% 45%;
275
+ }
276
+
277
+ 32% {
278
+ background-size:
279
+ 10% 10%,
280
+ 6.25% 6.25%,
281
+ 3.75% 3.75%,
282
+ 2.5% 2.5%;
283
+ background-position:
284
+ // 位置 6
285
+ 50% 20%,
286
+ // 位置 3
287
+ 32.32% 27.32%,
288
+ // 位置 1
289
+ 25.85% 38.53%,
290
+ 25% 45%;
291
+ }
292
+
293
+ 34% {
294
+ background-size:
295
+ 10% 10%,
296
+ 7.5% 7.5%,
297
+ 5% 5%,
298
+ 2.5% 2.5%;
299
+ background-position:
300
+ // 位置 7
301
+ 56.47% 20.85%,
302
+ // 位置 4
303
+ 37.32% 23.35%,
304
+ // 位置 2
305
+ 28.35% 32.5%,
306
+ // 位置 1
307
+ 25.85% 38.53%;
308
+ }
309
+
310
+ $Pi: 3.1415926;
311
+
312
+ @for $i from 18 through 33 {
313
+ #{calc($i / 50 * 100%)} {
314
+ background-position:
315
+ #{(50 - (25 * cos(($Pi * ($i - 10)) / 12))) *
316
+ 1%}
317
+ #{(45 - 25 * sin(($Pi * ($i - 10)) / 12)) *
318
+ 1%},
319
+ #{(50 - (25 * cos(($Pi * ($i - 13)) / 12))) *
320
+ 1%}
321
+ #{(45 - 25 * sin(($Pi * ($i - 13)) / 12)) *
322
+ 1%},
323
+ #{(50 - (25 * cos(($Pi * ($i - 15)) / 12))) *
324
+ 1%}
325
+ #{(45 - 25 * sin(($Pi * ($i - 15)) / 12)) *
326
+ 1%},
327
+ #{(50 - (25 * cos(($Pi * ($i - 17)) / 12))) *
328
+ 1%}
329
+ #{(45 - 25 * sin(($Pi * ($i - 17)) / 12)) *
330
+ 1%};
331
+ }
332
+ }
333
+
334
+ 68% {
335
+ background-size:
336
+ 10% 10%,
337
+ 7.5% 7.5%,
338
+ 5% 5%,
339
+ 2.5% 2.5%;
340
+ background-position:
341
+ // 位置 0
342
+ 25% 45%,
343
+ // 位置 22
344
+ 28.35% 57.45%,
345
+ // 位置 20
346
+ 37.45% 66.65%,
347
+ // 位置 18
348
+ 48% 70%;
349
+ }
350
+
351
+ 70% {
352
+ background-size:
353
+ 8.75% 8.75%,
354
+ 7.5% 7.5%,
355
+ 5% 5%,
356
+ 2.5% 2.5%;
357
+ background-position:
358
+ // 位置 0
359
+ 25% 45%,
360
+ // 位置 23
361
+ 25.85% 51.47%,
362
+ // 位置 21
363
+ 32.32% 62.68%,
364
+ // 位置 19
365
+ 43.53% 69.15%;
366
+ }
367
+
368
+ 72% {
369
+ background-size:
370
+ 7.5% 7.5%,
371
+ 7.5% 7.5%,
372
+ 5% 5%,
373
+ 2.5% 2.5%;
374
+ background-position:
375
+ // 位置 0
376
+ 25% 45%,
377
+ // 位置 0
378
+ 25% 45%,
379
+ // 位置 22
380
+ 28.35% 57.45%,
381
+ // 位置 20
382
+ 37.45% 66.65%;
383
+ }
384
+ 74% {
385
+ background-size:
386
+ 6.25% 6.25%,
387
+ 6.25% 6.25%,
388
+ 5% 5%,
389
+ 2.5% 2.5%;
390
+ background-position:
391
+ // 位置 0
392
+ 25% 45%,
393
+ // 位置 0
394
+ 25% 45%,
395
+ // 位置 23
396
+ 25.85% 51.47%,
397
+ // 位置 21
398
+ 32.32% 62.68%;
399
+ }
400
+
401
+ 76% {
402
+ background-size:
403
+ 5% 5%,
404
+ 5% 5%,
405
+ 5% 5%,
406
+ 2.5% 2.5%;
407
+ background-position:
408
+ // 位置 0
409
+ 25% 45%,
410
+ // 位置 0
411
+ 25% 45%,
412
+ // 位置 0
413
+ 25% 45%,
414
+ // 位置 22
415
+ 28.35% 57.45%;
416
+ }
417
+
418
+ 78% {
419
+ background-size:
420
+ 3.75% 3.75%,
421
+ 3.75% 3.75%,
422
+ 3.75% 3.75%,
423
+ 2.5% 2.5%;
424
+ background-position:
425
+ // 位置 0
426
+ 25% 45%,
427
+ // 位置 0
428
+ 25% 45%,
429
+ // 位置 0
430
+ 25% 45%,
431
+ // 位置 23
432
+ 25.85% 51.47%;
433
+ }
434
+ }
435
+
436
+ @keyframes colorText {
437
+ 0% {
438
+ background-position: 400% 0%;
439
+ }
440
+
441
+ 100% {
442
+ background-position: 0% 0%;
443
+ }
444
+ }
@@ -0,0 +1 @@
1
+ (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(o){var n=r[o];if(void 0!==n)return n.exports;var u=r[o]={exports:{}};return e[o](u,u.exports,t),u.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var o in r)t.o(r,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{useAnimationFrameId:()=>u});var n=t(953);function u(){var e=(0,n.useRef)(0);return(0,n.useEffect)((function(){return function(){e.current&&window.cancelAnimationFrame(e.current)}}),[]),e}module.exports.earthnut=o})();
@@ -0,0 +1 @@
1
+ import*as e from"react";var r={649:(r,t,n)=>{var o,a;r.exports=(o={useEffect:()=>e.useEffect,useRef:()=>e.useRef},a={},n.d(a,o),a)}},t={};function n(e){var o=t[e];if(void 0!==o)return o.exports;var a=t[e]={exports:{}};return r[e](a,a.exports,n),a.exports}n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r);var o={};n.d(o,{M:()=>u});var a=n(649);function u(){var e=(0,a.useRef)(0);return(0,a.useEffect)((function(){return function(){e.current&&window.cancelAnimationFrame(e.current)}}),[]),e}const f=o.M;export{f as useAnimationFrameId};
@@ -0,0 +1 @@
1
+ (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(n){var o=r[n];if(void 0!==o)return o.exports;var u=r[n]={exports:{}};return e[n](u,u.exports,t),u.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var n in r)t.o(r,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:r[n]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};t.r(n),t.d(n,{useInputIsComposing:()=>u});var o=t(953);function u(e){var r=(0,o.useRef)(!1);return(0,o.useEffect)((function(){var t=e.current;if(t){var n=function(){return r.current=!0},o=function(){return r.current=!1};return t.addEventListener("compositionstart",n),t.addEventListener("compositionend",o),function(){t.removeEventListener("compositionstart",n),t.removeEventListener("compositionend",o)}}}),[]),r}module.exports.earthnut=n})();
@@ -0,0 +1 @@
1
+ import*as e from"react";var t={649:(t,r,n)=>{var o,s;t.exports=(o={useEffect:()=>e.useEffect,useRef:()=>e.useRef},s={},n.d(s,o),s)}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var s=r[e]={exports:{}};return t[e](s,s.exports,n),s.exports}n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var o={};n.d(o,{t:()=>i});var s=n(649);function i(e){var t=(0,s.useRef)(!1);return(0,s.useEffect)((function(){var r=e.current;if(r){var n=function(){return t.current=!0},o=function(){return t.current=!1};return r.addEventListener("compositionstart",n),r.addEventListener("compositionend",o),function(){r.removeEventListener("compositionstart",n),r.removeEventListener("compositionend",o)}}}),[]),t}const u=o.t;export{u as useInputIsComposing};
@@ -0,0 +1 @@
1
+ (()=>{"use strict";var t={570:t=>{t.exports=require("a-type-of-js")},953:t=>{t.exports=require("react")}},e={};function r(n){var i=e[n];if(void 0!==i)return i.exports;var o=e[n]={exports:{}};return t[n](o,o.exports,r),o.exports}r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};r.r(n),r.d(n,{useRipples:()=>Ht});var i=r(953);const o=require("a-element-inline-style");var a=r(570);function l(t,e,r,n){function i(t,e){var n=r.createShader(t);if(r.shaderSource(n,e),r.compileShader(n),!r.getShaderParameter(n,r.COMPILE_STATUS))throw new Error("compile error: "+r.getShaderInfoLog(n));return n}var o,l={id:r.createProgram(),uniforms:{},locations:{}};if(r.attachShader(l.id,i(r.VERTEX_SHADER,t)),r.attachShader(l.id,i(r.FRAGMENT_SHADER,e)),r.linkProgram(l.id),!r.getProgramParameter(l.id,r.LINK_STATUS))throw new Error("link error: "+r.getProgramInfoLog(l.id));r.useProgram(l.id),r.enableVertexAttribArray(0);for(var u=t+e,s=/uniform (\w+) (\w+)/g;!(0,a.isNull)(o=s.exec(u));){var c=o[2];l.locations[c]=r.getUniformLocation(l.id,c)}return l}function u(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=this.gl;r.activeTexture(r.TEXTURE0+(e||0)),r.bindTexture(r.TEXTURE_2D,t)}function s(t){return"rgba(0, 0, 0, 0)"===t||"#ffffffff"===t||"transport"===t}function c(t){return"none"===t||""===t}function f(){var t=this,e=function(){return t.initState=!1,null};if(!this.gl)return e();var r=this.gl,n=Object.fromEntries(["OES_texture_float","OES_texture_half_float","OES_texture_float_linear","OES_texture_half_float_linear"].reduce((function(t,e){var n=r.getExtension(e);return n&&t.push([e,n]),t}),[]));if(!n.OES_texture_float)return e();var i=[];function o(t,e,r){var i="OES_texture_"+t,o=i+"_linear",a=o in n;return{type:e,linearSupport:a,arrayType:r,extensions:a?[i,o]:[i]}}i.push(o("float",r.FLOAT,Float32Array)),n.OES_texture_half_float&&i.push(o("half_float",n.OES_texture_half_float.HALF_FLOAT_OES,null));var a=r.createTexture(),l=r.createFramebuffer();r.bindFramebuffer(r.FRAMEBUFFER,l),r.bindTexture(r.TEXTURE_2D,a),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE);for(var u=null,s=0;s<i.length;s++)if(r.texImage2D(r.TEXTURE_2D,0,r.RGBA,32,32,0,r.RGBA,i[s].type,null),r.framebufferTexture2D(r.FRAMEBUFFER,r.COLOR_ATTACHMENT0,r.TEXTURE_2D,a,0),r.checkFramebufferStatus(r.FRAMEBUFFER)===r.FRAMEBUFFER_COMPLETE){u=i[s];break}return u}function h(t){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h(t)}function p(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,m(n.key),n)}}function d(t,e,r){return e&&p(t.prototype,e),r&&p(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function g(t,e,r){return(e=m(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function m(t){var e=function(t){if("object"!=h(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=h(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==h(e)?e:e+""}var v=d((function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),g(this,"canvas",void 0),g(this,"gl",void 0),g(this,"config",void 0),g(this,"initState",!0),this.canvas=e;var r=e.getContext("webgl");if((0,a.isNull)(r))return this.initState=!1,void(this.config=null);this.gl=r,this.config=Reflect.apply(f,this,[])}));const y=require("a-js-tools");var b,E={imgUrl:"",resolution:360,dropRadius:12,perturbance:.01,interactive:!0,crossOrigin:"no-cors",playingState:!0,accelerating:1,raindropsTimeInterval:3600,idleFluctuations:!0};function w(t){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},w(t)}function R(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,T(n.key),n)}}function T(t){var e=function(t){if("object"!=w(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=w(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==w(e)?e:e+""}function S(t){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},S(t)}function P(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,x(n.key),n)}}function x(t){var e=function(t){if("object"!=S(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=S(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==S(e)?e:e+""}function k(t,e,r){return t.set(D(t,e),r),r}function _(t,e){return t.get(D(t,e))}function D(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}function O(t){return function(t){if(Array.isArray(t))return I(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return I(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?I(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function I(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}Object.freeze(E),new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t);var e=function(){};return Object.setPrototypeOf(e,this),Object.defineProperties(e,{info:{value:function(){},configurable:!1,writable:!1},warn:{value:function(){},configurable:!1,writable:!1},error:{value:function(){},configurable:!1,writable:!1},type:{value:!1,configurable:!1,writable:!1}}),e},(e=[{key:"clear",value:function(){}}])&&R(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}())({name:"earthnut",type:!1});var A=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e={list:[],diameter:48,radius:0,cells:0};e.diameter%2!=0&&e.diameter++;var r=e.diameter,n=e.list,i=r/2;e.radius=i,e.cells=Math.pow(r,2);for(var o=0;o<r;o++){n[o]=[];for(var a=0;a<r;a++)n[o][a]=[0,0,0,0]}for(var l=0;l<=i;l++)for(var u=l;u<=i;u++){var s=n[l][u],c=function(){return(0,y.getRandomInt)(255,190)};s[0]=c(),s[1]=c(),s[2]=c(),s[3]=Math.ceil(Math.sqrt(Math.pow(l,2)+Math.pow(u,2)))<=i?(0,y.getRandomInt)(120,180):(0,y.getRandomInt)(160,240)}for(var f=0;f<=i;f++)for(var h=0;h<=f;h++)n[f][h]=n[h][f];for(var p=i;p<r;p++)for(var d=0;d<=i;d++)n[p][d]=n[r-p][d];for(var g=0;g<i;g++)for(var m=i;m<r;m++)n[g][m]=n[g][r-m];for(var v=i;v<r;v++)for(var b=i;b<r;b++)n[v][b]=n[v][r-b];var E=t%r;return e.list=[].concat(O(n.slice(E)),O(n.slice(0,E))),e},F=new(b=new WeakMap,function(){return t=function t(){var e,r,n;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),function(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}(this,b,1),e=this,r="data",n=A(),(r=x(r))in e?Object.defineProperty(e,r,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[r]=n},(e=[{key:"build",value:function(){_(b,this)>100&&k(b,this,0),this.data=A(k(b,this,_(b,this)+3))}}])&&P(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());function U(t,e){var r=document.createElement("canvas"),n=document.createElement("canvas"),i=r.getContext("2d"),o=n.getContext("2d");return(0,a.isNull)(i)||(0,a.isNull)(o)?r:(r.width=n.width=t,r.height=n.height=e,i.clearRect(0,0,t,e),o.clearRect(0,0,t,e),i.globalAlpha=1,i.putImageData(function(t,e){Date.now();for(var r=new ImageData(t,e),n=r.data,i=F.data,o=i.diameter,a=i.list,l=t*o,u=0;u<n.length;u+=4){var s=u/4%l,c=s%t%o,f=Math.floor(s/t),h=a[c][f];n[u]=h[0],n[u+1]=h[1],n[u+2]=h[2],n[u+3]=h[3]}return r}(t,e),0,0),o.fillStyle="#ffffff",o.fillRect(0,0,t,e),o.drawImage(r,0,0,t,e),o.globalCompositeOperation="source-over",n)}function j(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=this.fadeData,r=e.backgroundInfo,n=e.toBeList,i=r.width,o=r.height,a=(0,y.getRandomString)({length:8,includeNumbers:!0,includeUppercaseLetters:!0});F.build(),n.push({resource:U(i,o),width:i,height:o,kind:"default",tag:a}),t&&e.run()}function C(){var t=this.renderData,e=this.fadeData,r=this.options;if((0,a.isNull)(t))return Reflect.apply(j,this,[]);var n=t.originStyle;if(s(n.backgroundColor)&&(!(0,a.isArray)(r.imgUrl)||1!==r.imgUrl.length))return Reflect.apply(j,this,[]);var i=document.createElement("canvas"),o=i.getContext("2d");if((0,a.isNull)(o))return Reflect.apply(j,this,[]);var l=e.backgroundInfo,u=l.width,c=l.height;i.width=u,i.height=c,o.clearRect(0,0,u,c);var f=(0,a.isArray)(r.imgUrl)&&1===r.imgUrl.length&&r.imgUrl[0]||n.backgroundColor;o.beginPath(),o.fillStyle=f,o.fillRect(0,0,u,c),o.fill(),e.isTransitioning?e.toBeList=[e.toBeList[0]]:e.toBeList=[];var h={resource:i,kind:"background-color",tag:f,width:u,height:c};e.toBeList.push(h),e.run()}function N(){var t=this.fadeData,e=this.renderData,r=this.options;if((0,a.isNull)(e))return Reflect.apply(C,this,[]);var n=e.originStyle;if(!/linear-gradient\(.*\)/.test(n.backgroundImage)&&!(0,a.isArray)(r.imgUrl))return Reflect.apply(C,this,[]);var i=(0,a.isArray)(r.imgUrl)&&r.imgUrl.length>1&&r.imgUrl||n.backgroundImage.replace(/^.*linear-gradient\((.*)\).*$/,"$1").split("),").map((function(t){return(t=t.trim()).endsWith(")")||(t+=")"),t})).filter((function(t){return t.startsWith("rgb")||t.startsWith("#")}));if(i.length<2)return Reflect.apply(C,this,[]);var o=document.createElement("canvas"),l=o.getContext("2d");if((0,a.isNull)(l))return Reflect.apply(C,this,[]);var u=t.backgroundInfo,s=u.width,c=u.height;o.width=s,o.height=c,l.fillStyle="#fff",l.fillRect(0,0,s,c);var f=l.createLinearGradient(0,0,0,c);i.forEach((function(t,e){return f.addColorStop(e/(i.length-1),t)})),l.fillStyle=f,l.fillRect(0,0,s,c),t.isTransitioning?t.toBeList=[t.toBeList[0]]:t.toBeList=[],t.toBeList.push({resource:o,kind:"linear-gradient",tag:i.join("_"),width:s,height:c}),t.run()}function L(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function B(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if((0,a.isNull)(e))Reflect.apply(N,this,[]);else{var i,o,l=e.lastUseStyle,u=n.backgroundInfo,s=u.width,c=u.height,f=(0,a.isString)(r.imgUrl)&&r.imgUrl||(i=l.backgroundImage,o=/url\(["']?([^"']*)["']?\)/.exec(i),(0,a.isNull)(o)?null:o[1]);if(e.imageSource=f,f){var h=function(t,e,r){var n=new Image(e,r);return n.width=e,n.height=r,n.src=t,n}(f,s,c);h.onload=function(){var t;clearTimeout(n.transparentId),n.isTransitioning?n.toBeList=[n.toBeList[0]].concat(function(t){if(Array.isArray(t))return L(t)}(t=n.toBeList.slice(1).filter((function(t){return"image"===t.kind&&(Math.abs(t.width-s)>2||Math.abs(t.height-c)>2||t.tag!==f)})))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return L(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?L(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()):n.toBeList=[],n.toBeList.push({resource:h,width:s,height:c,kind:"image",tag:f}),n.run()},h.onerror=function(){Reflect.apply(N,t,[])},h.crossOrigin=r.crossOrigin}else Reflect.apply(N,this,[])}}function M(){var t=this.renderData;if(!(0,a.isNull)(t)){var e=t.parentElement;e&&[["background-image","none"],["background-color","transparent"]].forEach((function(t){return e.style.setProperty(t[0],t[1],"important")}))}}function X(t){var e=window.getComputedStyle(t),r=t.style;return{inlineBackground:r.background,inlineBackgroundColor:r.backgroundColor,inlineBackgroundImage:r.backgroundImage,backgroundColor:e.backgroundColor,backgroundImage:e.backgroundImage,backgroundSize:e.backgroundSize,backgroundPosition:e.backgroundPosition,backgroundRepeat:e.backgroundRepeat,backgroundClip:e.backgroundClip,backgroundOrigin:e.backgroundOrigin,backgroundAttachment:e.backgroundAttachment,position:e.position,width:parseInt(e.width),height:parseInt(e.height)}}function W(){var t=this.renderData;if(!(0,a.isNull)(t)){var e=t.parentElement,r=t.originStyle;e.style.setProperty("background-image",r.inlineBackgroundImage),e.style.setProperty("background-color",r.inlineBackgroundColor)}}function G(t){return G="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},G(t)}function z(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,q(n.key),n)}}function H(t,e,r){return(e=q(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function q(t){var e=function(t){if("object"!=G(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=G(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==G(e)?e:e+""}var Y=function(){return t=function t(e,r,n){var i,o=this;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),H(this,"quad",null),H(this,"lastRaindropsFallTime",0),H(this,"parentElement",void 0),H(this,"mutationObserver",void 0),H(this,"resizeObserver",void 0),H(this,"renderProgram",void 0),H(this,"imageSource",""),H(this,"dropProgram",void 0),H(this,"updateProgram",void 0),H(this,"textures",[]),H(this,"backgroundTexture",[]),H(this,"textureDelta",void 0),H(this,"framebuffers",[]),H(this,"bufferWriteIndex",0),H(this,"bufferReadIndex",1),H(this,"originStyle",void 0),H(this,"lastUseStyle",void 0),H(this,"events",{}),H(this,"animationFrameId",0),this.parentElement=null!==(i=e.parentElement)&&void 0!==i?i:document.body,Reflect.apply(M,n,[]),this.originStyle=this.lastUseStyle=X(this.parentElement),this.mutationObserver=new MutationObserver((function(t){t.forEach((function(t){if(t.target===o.parentElement&&"attributes"===t.type&&n.options.visible){var e=Object.values(o.lastUseStyle),i=X(o.parentElement),l=Object.values(i);if((0,a.isEmptyArray)(y.enArr.difference(e,l)))return;var u=c(i.backgroundImage),f=s(i.backgroundColor);if(u&&f)return;o.lastUseStyle=i,Reflect.apply(r,n,[]),Reflect.apply(M,n,[])}}))})),this.mutationObserver.observe(this.parentElement,{subtree:!0,attributes:!0,attributeFilter:["class","style"]}),this.resizeObserver=new ResizeObserver((function(t){t.forEach((function(t){if(t.target===o.parentElement){var e=X(o.parentElement);Math.abs(e.width-o.originStyle.width)<3&&Math.abs(e.height-o.originStyle.height)<3||Reflect.apply(r,n,[])}}))})),this.resizeObserver.observe(this.parentElement)},e=[{key:"destroy",value:function(){if(this.animationFrameId&&window.cancelAnimationFrame(this.animationFrameId),Reflect.apply(W,{renderData:this},[]),this.parentElement&&this.events){var t,e,r,n=this.parentElement,i=this.events;Object.keys(i).forEach((function(t){return n.removeEventListener&&n.removeEventListener(t,i[t])})),n.removeAttribute&&n.removeAttribute("data-ripples"),null===(t=this.mutationObserver)||void 0===t||t.takeRecords(),null===(e=this.mutationObserver)||void 0===e||e.disconnect(),this.mutationObserver=null,null===(r=this.resizeObserver)||void 0===r||r.disconnect(),this.resizeObserver=null}}}],e&&z(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function $(){var t=this.renderData,e=this.fadeData;if(!(0,a.isNull)(t)){var r,n,i,o=t.parentElement,l=window.getComputedStyle(o),u=l.backgroundSize,s=l.backgroundAttachment,c=l.backgroundPosition,f=/\s+/.test(r=c)?r.replace(/center/,"50%").replace(/top|left/,"0%").replace(/bottom/,"100%").replace(/\s+/," ").split(" "):K(r)?[r,"50%"]:{center:["50%","50%"],top:["50%","0%"],bottom:["50%","100%"],left:["0%","50%"],right:["100%","50%"]}[r],h={left:0,top:0,width:0,height:0};"fixed"===s?(h.height=window.innerHeight,h.left=window.screenX,h.top=window.screenY,h.width=window.innerWidth):(h.left=0,h.top=0,h.width=o.scrollWidth,h.height=o.scrollHeight);var p=e.backgroundInfo||{width:100,height:100},d=p.width,g=p.height;if("cover"===u){var m=Math.max(h.width/d,h.height/g);n=d*m,i=g*m}else if("contain"===u){var v=Math.min(h.width/d,h.height/g);n=d*v,i=g*v}else{var y=u.split(" ");n=y[0]||"",i=y[1]||n,K(n)?n=h.width*parseFloat(n)/100:"auto"!==n&&(n=parseFloat(n)),K(i)?i=h.height*parseFloat(i)/100:"auto"!==i&&(i=parseFloat(i)),"auto"===n&&"auto"===i?(n=d,i=g):("auto"===n&&(n=d*(Number(i)/g)),"auto"===i&&(i=g*(Number(n)/d)))}var b=f&&f[0]||"0%",E=f&&f[1]||"0%";b=K(b)?(h.left+(h.width-Number(n))*parseFloat(b)/100).toString():(h.left+parseFloat(b)).toString(),E=K(E)?(h.top+(h.height-Number(i))*parseFloat(E)/100).toString():(h.top+parseFloat(E)).toString(),t.renderProgram.uniforms.topLeft=new Float32Array([(o.offsetLeft-Number(b))/n,(o.offsetTop-Number(E))/i]),t.renderProgram.uniforms.bottomRight=new Float32Array([t.renderProgram.uniforms.topLeft[0]+o.clientWidth/n,t.renderProgram.uniforms.topLeft[1]+o.clientHeight/i]);var w=Math.max(this.canvas.width,this.canvas.height);t.renderProgram.uniforms.containerRatio=new Float32Array([this.canvas.width/w,this.canvas.height/w])}}function K(t){return t.endsWith("%")}function V(){var t=this.gl,e=this.renderData;(0,a.isNull)(e)||(t.bindBuffer(t.ARRAY_BUFFER,e.quad),t.vertexAttribPointer(0,2,t.FLOAT,!1,0,0),t.drawArrays(t.TRIANGLE_FAN,0,4))}function Z(){var t=this.gl,e=this.renderData,r=this.options;if(!(0,a.isNull)(e)){var n=e.textures,i=e.backgroundTexture,o=r.perturbance;t.bindFramebuffer(t.FRAMEBUFFER,null),t.viewport(0,0,this.canvas.width,this.canvas.height),t.enable(t.BLEND),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT),t.useProgram(e.renderProgram.id),Reflect.apply(u,this,[i,0]),Reflect.apply(u,this,[n[0],1]),t.uniform1f(e.renderProgram.locations.perturbance,o),t.uniform2fv(e.renderProgram.locations.topLeft,e.renderProgram.uniforms.topLeft),t.uniform2fv(e.renderProgram.locations.bottomRight,e.renderProgram.uniforms.bottomRight),t.uniform2fv(e.renderProgram.locations.containerRatio,e.renderProgram.uniforms.containerRatio),t.uniform1i(e.renderProgram.locations.samplerBackground,0),t.uniform1i(e.renderProgram.locations.samplerRipples,1),Reflect.apply(V,this,[]),t.disable(t.BLEND)}}function J(){var t=this.renderData;if(!(0,a.isNull)(t)){var e=t.bufferWriteIndex,r=t.bufferReadIndex;t.bufferWriteIndex=1-e,t.bufferReadIndex=1-r}}function Q(){var t=this.gl,e=this.renderData,r=this.options;if(!(0,a.isNull)(e)){var n=e.updateProgram,i=e.textures,o=e.framebuffers,l=e.bufferWriteIndex,s=e.bufferReadIndex,c=r.resolution;t.viewport(0,0,c,c),t.bindFramebuffer(t.FRAMEBUFFER,o[l]),Reflect.apply(u,this,[i[s]]),t.useProgram(n.id),Reflect.apply(V,this,[]),Reflect.apply(J,this,[])}}function tt(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if(!(0,a.isNull)(e)){var i=e.parentElement,o=n.isTransitioning,l=r.running,u=r.idleFluctuations,s=r.lastRunningState,c=getComputedStyle(i);n.backgroundInfo={width:parseInt(c.width),height:parseInt(c.height)},Reflect.apply($,this,[]),l?(s||(r.lastRunningState=!0,this.show()),u&&this.raindropsFall(),o&&this.fade(),Reflect.apply(Q,this,[]),Reflect.apply(Z,this,[])):s&&(r.lastRunningState=!1,this.hide()),e.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(tt,t,[])}))}}function et(t,e,r){var n=this.renderData;if(!(0,a.isNull)(n)){var i=n.parentElement,o=window.getComputedStyle(i),l=parseInt(o.borderLeftWidth)||0,u=parseInt(o.borderTopWidth)||0,s=i.getBoundingClientRect(),c=t.clientX-s.left-l,f=t.clientY-s.top-u;this.drop(c,f,e,r)}}function rt(){var t=this,e=this.renderData,r=this.options;if(!(0,a.isNull)(e)){var n=e.parentElement,i=e.events,o=function(n){var i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];r.visible&&r.running&&r.interactive&&(e.lastRaindropsFallTime=Date.now(),Reflect.apply(et,t,[n,r.dropRadius*(i?1.5:1),i?.03:.01]))};i.mousemove=function(t){for(var e=r.accelerating;e--;)o(t)},i.touchmove=i.touchstart=function(t){for(var e=t.touches,r=0;r<e.length;r++)o(e[r])},i.mousedown=function(t){return o(t,!0)},Object.keys(i).forEach((function(t){return null==n?void 0:n.addEventListener(t,i[t],{passive:!0})}))}}var nt="\n attribute vec2 vertex;\n varying vec2 coord;\n void main() {\n coord = vertex * 0.5 + 0.5;\n gl_Position = vec4(vertex, 0.0, 1.0);\n }";function it(){var t=this.gl,e=this.renderData;if(!(0,a.isNull)(e)){var r=e.textureDelta;e.dropProgram=l(nt,"precision highp float;\n\n const float PI = 3.141592653589793;\n uniform sampler2D texture;\n uniform vec2 center;\n uniform float radius;\n uniform float strength;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n\n float drop = max(0.0, 1.0 - length(center * 0.5 + 0.5 - coord) / radius);\n drop = 0.5 - cos(drop * PI) * 0.5;\n info.r += drop * strength;\n gl_FragColor = info;\n }",t);var n=e.updateProgram=l(nt,"\n precision highp float;\n\n uniform sampler2D texture;\n uniform vec2 delta;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n \n vec2 dx = vec2(delta.x, 0.0);\n vec2 dy = vec2(0.0, delta.y);\n \n float average = (\n texture2D(texture, coord - dx).r +\n texture2D(texture, coord - dy).r +\n texture2D(texture, coord + dx).r +\n texture2D(texture, coord + dy).r\n ) * 0.25;\n \n info.g += (average - info.r) * 2.0;\n info.g *= 0.995;\n info.r += info.g;\n \n gl_FragColor = info;\n }\n ",this.gl);t.uniform2fv(n.locations.delta,r),e.renderProgram=l("\n precision highp float;\n\n attribute vec2 vertex;\n uniform vec2 topLeft;\n uniform vec2 bottomRight;\n uniform vec2 containerRatio;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n void main() {\n backgroundCoord = mix(topLeft, bottomRight, vertex * 0.5 + 0.5);\n backgroundCoord.y = 1.0 - backgroundCoord.y;\n ripplesCoord = vec2(vertex.x, -vertex.y) * containerRatio * 0.5 + 0.5;\n gl_Position = vec4(vertex.x, -vertex.y, 0.0, 1.0);\n }\n ","\n precision highp float;\n\n uniform sampler2D samplerBackground;\n uniform sampler2D samplerRipples;\n uniform vec2 delta;\n\n uniform float perturbance;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n\n void main() {\n float height = texture2D(samplerRipples, ripplesCoord).r;\n float heightX = texture2D(samplerRipples, vec2(ripplesCoord.x + delta.x, ripplesCoord.y)).r;\n float heightY = texture2D(samplerRipples, vec2(ripplesCoord.x, ripplesCoord.y + delta.y)).r;\n vec3 dx = vec3(delta.x, heightX - height, 0.0);\n vec3 dy = vec3(0.0, heightY - height, delta.y);\n vec2 offset = -normalize(cross(dy, dx)).xz;\n float specular = pow(max(0.0, dot(offset, normalize(vec2(-0.6, 1.0)))), 4.0);\n gl_FragColor = texture2D(samplerBackground, backgroundCoord + offset * perturbance) + specular;\n }",t),t.uniform2fv(e.renderProgram.locations.delta,r)}}function ot(){var t=this.gl,e=this.renderData;if(!(0,a.isNull)(e)){var r=e.backgroundTexture=t.createTexture();t.bindTexture(t.TEXTURE_2D,r),t.pixelStorei(t.UNPACK_FLIP_Y_WEBGL,1),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR)}}function at(t){var e=this.gl,r=this.renderData,n=this.fadeData;if(!(0,a.isNull)(r)){var i=r.backgroundTexture,o=n.backgroundInfo,l=o.width,u=o.height,s=function(t){return(0,a.isZero)(t&t-1)},c=s(l)&&s(u)?e.REPEAT:e.CLAMP_TO_EDGE;e.bindTexture(e.TEXTURE_2D,i),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,c),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,c),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,t.resource)}}function lt(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if(!(0,a.isNull)(e)&&this.config){var i=e.textures,o=e.framebuffers,l=r.resolution,u=this.gl,s=1/l;e.textureDelta=new Float32Array([s,s]),this.config.extensions.forEach((function(t){return u.getExtension(t)}));for(var c=this.config.arrayType,f=c?new c(l*l*4):null,h=this.config,p=0;p<2;p++){var d=u.createTexture(),g=u.createFramebuffer();u.bindFramebuffer(u.FRAMEBUFFER,g),u.bindTexture(u.TEXTURE_2D,d),u.texParameteri(u.TEXTURE_2D,u.TEXTURE_MIN_FILTER,h.linearSupport?u.LINEAR:u.NEAREST),u.texParameteri(u.TEXTURE_2D,u.TEXTURE_MAG_FILTER,h.linearSupport?u.LINEAR:u.NEAREST),u.texParameteri(u.TEXTURE_2D,u.TEXTURE_WRAP_S,u.CLAMP_TO_EDGE),u.texParameteri(u.TEXTURE_2D,u.TEXTURE_WRAP_T,u.CLAMP_TO_EDGE),u.texImage2D(u.TEXTURE_2D,0,u.RGBA,l,l,0,u.RGBA,h.type,f),u.framebufferTexture2D(u.FRAMEBUFFER,u.COLOR_ATTACHMENT0,u.TEXTURE_2D,d,0),i.push(d),o.push(g)}e.quad=u.createBuffer(),u.bindBuffer(u.ARRAY_BUFFER,e.quad),u.bufferData(u.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,1,1,-1,1]),u.STATIC_DRAW),Reflect.apply(it,this,[]),Reflect.apply(ot,this,[]),Reflect.apply(B,this,[]),u.clearColor(0,0,0,0),u.blendFunc(u.SRC_ALPHA,u.ONE_MINUS_SRC_ALPHA),r.visible=!0,r.running=!0,Reflect.apply(rt,this,[]),Reflect.apply(at,this,[n.lastDrawImage]),e.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(tt,t,[])}))}}function ut(){var t=this.renderData,e=this.fadeData;if(!(0,a.isNull)(t)){var r=t.parentElement,n=e.backgroundInfo,i=r.offsetWidth,o=r.offsetHeight;this.canvas.width=n.width=i,this.canvas.height=n.height=o,Reflect.apply(B,this,[])}}function st(){var t=this.renderData,e=this.fadeData;(0,a.isNull)(t)||(t.destroy(),Object.keys(t).forEach((function(e){return t[e]=null})),this.renderData=null),e.destroy(),Object.keys(e).forEach((function(t){return e[t]=null})),this.fadeData=null,this.gl&&(this.gl=null)}function ct(t,e,r,n){var i=this.renderData,o=this.options,l=this.gl;if(!(0,a.isNull)(i)){var s=i.parentElement,c=i.dropProgram,f=i.textures,h=i.framebuffers,p=i.bufferWriteIndex,d=i.bufferReadIndex,g=o.resolution,m=s.offsetWidth,v=s.offsetHeight,y=Math.max(m,v);r/=y;var b=new Float32Array([(2*t-m)/y,(v-2*e)/y]);l.viewport(0,0,g,g),l.bindFramebuffer(l.FRAMEBUFFER,h[p]),Reflect.apply(u,this,[f[d]]),l.useProgram(c.id),l.uniform2fv(c.locations.center,b),l.uniform1f(c.locations.radius,r),l.uniform1f(c.locations.strength,n),Reflect.apply(V,this,[]),Reflect.apply(J,this,[])}}function ft(t){return ft="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ft(t)}function ht(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,dt(n.key),n)}}function pt(t,e,r){return(e=dt(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function dt(t){var e=function(t){if("object"!=ft(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ft(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ft(e)?e:e+""}function gt(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}function mt(t,e){return t.get(yt(t,e))}function vt(t,e,r){return t.set(yt(t,e),r),r}function yt(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}var bt=new WeakMap,Et=new WeakMap,wt=new WeakMap,Rt=new WeakMap,Tt=new WeakMap,St=new WeakMap,Pt=new WeakMap,xt=function(){return t=function t(e){var r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),gt(this,bt,E.accelerating),gt(this,Et,E.interactive),gt(this,wt,E.resolution),gt(this,Rt,E.perturbance),gt(this,Tt,E.dropRadius),pt(this,"imgUrl",E.imgUrl),gt(this,St,E.idleFluctuations),gt(this,Pt,E.raindropsTimeInterval),pt(this,"crossOrigin","no-cors"),pt(this,"visible",!1),pt(this,"running",!1),pt(this,"lastRunningState",!1),this.perturbance=e.perturbance,this.resolution=e.resolution,this.raindropsTimeInterval=e.raindropsTimeInterval,this.accelerating=e.accelerating,this.interactive=e.interactive,this.dropRadius=e.dropRadius,this.imgUrl=e.imgUrl,this.idleFluctuations=e.idleFluctuations,this.running=Boolean(null===(r=e.playingState)||void 0===r||r),this.crossOrigin=e.crossOrigin},(e=[{key:"accelerating",get:function(){return mt(bt,this)},set:function(t){t>100||t<2||vt(bt,this,t)}},{key:"interactive",get:function(){return mt(Et,this)},set:function(t){(0,a.isBoolean)(t)&&vt(Et,this,t)}},{key:"resolution",get:function(){return mt(wt,this)},set:function(t){t<100||t>550||vt(wt,this,t)}},{key:"perturbance",get:function(){return mt(Rt,this)},set:function(t){t<1e-4||t>1||vt(Rt,this,t)}},{key:"dropRadius",get:function(){return mt(Tt,this)},set:function(t){!isFinite(t)||t<10||vt(Tt,this,t)}},{key:"idleFluctuations",get:function(){return mt(St,this)},set:function(t){(0,a.isBoolean)(t)&&vt(St,this,t)}},{key:"raindropsTimeInterval",get:function(){return mt(Pt,this)},set:function(t){t<10||t>12e3||vt(Pt,this,t)}},{key:"playingState",get:function(){return this.running},set:function(t){this.running=Boolean(null==t||t)}}])&&ht(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function kt(){var t=this,e=this.options,r=this.fadeData;r.transparentId=setTimeout((function(){if(clearTimeout(r.transparentId),r.isTransitioning)return Reflect.apply(kt,t,[]);"image"!==r.lastDrawImage.kind&&r.run()}),2*e.raindropsTimeInterval)}function _t(){var t=this.renderData,e=this.fadeData,r=this.options,n=e.toBeList;if((0,a.isNull)(t))return e.isTransitioning=!1,void Reflect.apply(kt,this,[]);if((0,a.isEmptyArray)(n))return e.isTransitioning=!1,void Reflect.apply(kt,this,[]);if(0===e.drawProgress&&n.forEach((function(t){})),e.drawProgress>1e3)if(e.isTransitioning=!1,e.lastDrawImage=n.shift(),Reflect.apply(at,this,[e.lastDrawImage]),(0,a.isEmptyArray)(n)){var i=t.lastUseStyle;(0,a.isNull)(r.imgUrl)&&s(i.backgroundColor)&&c(i.backgroundImage)&&(Reflect.apply(j,this,[!1]),Reflect.apply(kt,this,[]))}else Reflect.apply(kt,this,[]);else{var o=e.lastDrawImage,l=e.backgroundInfo;e.drawProgress+=18;var u=document.createElement("canvas"),f=u.getContext("2d");if(!((0,a.isNull)(f)||(0,a.isNull)(o.resource)||(0,a.isEmptyArray)(n))){var h=l.width,p=l.height;u.width=h,u.height=p,f.clearRect(0,0,h,p),f.drawImage(o.resource,0,0,h,p),f.globalAlpha=e.drawProgress/1e3,f.drawImage(n[0].resource,0,0,h,p),f.globalAlpha=1;var d={resource:u,width:h,height:p,kind:"mix",tag:"".concat(o.tag," >> ").concat(n[0].tag)};Reflect.apply(at,this,[d]),n.length>1&&(e.lastDrawImage=d,n.shift(),e.drawProgress=0)}}}function Dt(t){return Dt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dt(t)}function Ot(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,At(n.key),n)}}function It(t,e,r){return(e=At(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function At(t){var e=function(t){if("object"!=Dt(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Dt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Dt(e)?e:e+""}var Ft=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),It(this,"backgroundInfo",{width:0,height:0}),It(this,"transparentId",setTimeout(Boolean)),It(this,"lastDrawImage",void 0),It(this,"toBeList",[]),It(this,"drawProgress",0),It(this,"isTransitioning",!1);var r,n,i=e.renderData;if((0,a.isNull)(i))r=10,n=10;else{var o=getComputedStyle(i.parentElement);r=parseInt(o.width),n=parseInt(o.height)}this.backgroundInfo={width:r,height:n},this.lastDrawImage={resource:U(r,n),width:r,height:n,kind:"default",tag:""}},(e=[{key:"run",value:function(){this.isTransitioning||(this.drawProgress=0,this.isTransitioning=!0)}},{key:"destroy",value:function(){this.transparentId&&clearTimeout(this.transparentId)}}])&&Ot(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ut(t){return Ut="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ut(t)}function jt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ct(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?jt(Object(r),!0).forEach((function(e){Xt(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):jt(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Nt(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Wt(n.key),n)}}function Lt(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Lt=function(){return!!t})()}function Bt(t){return Bt=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Bt(t)}function Mt(t,e){return Mt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Mt(t,e)}function Xt(t,e,r){return(e=Wt(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Wt(t){var e=function(t){if("object"!=Ut(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ut(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ut(e)?e:e+""}var Gt=new WeakMap,zt=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Xt(n=function(t,e,r){return e=Bt(e),function(t,e){if(e&&("object"==Ut(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Lt()?Reflect.construct(e,r||[],Bt(t).constructor):e.apply(t,r))}(this,e,[t]),"renderData",null),Xt(n,"options",void 0),Xt(n,"fadeData",void 0),Xt(n,"defaults",E),Xt(n,"initialized",!1),function(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}(n,Gt,(0,y.debounce)(ut,{this:n})),Object.defineProperties(n,{defaults:{value:n.defaults,writable:!1,enumerable:!1,configurable:!1}}),n.options=new xt(Ct(Ct({},n.defaults),r)),n.renderData=new Y(t,n.reloadBackground,n),n.fadeData=new Ft(n),(0,a.isFalse)(n.initState)||(0,a.isNull)(t.parentElement)||(0,a.isNull)(n.config)||(0,a.isNull)(n.gl)?n.initState=!1:(function(t){var e=t.parentElement;t.width=e.clientWidth,t.height=e.clientHeight,(0,o.setStyle)(t,{position:"absolute",left:0,top:0,right:0,bottom:0,zIndex:-1,pointerEvents:"none"})}(t),Reflect.apply(lt,n,[])),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Mt(t,e)}(e,t),r=e,(n=[{key:"raindropsFall",value:function(){var t=this.renderData,e=this.options,r=this.fadeData;if(!(0,a.isNull)(t)){var n=r.backgroundInfo,i=t.lastRaindropsFallTime,o=e.raindropsTimeInterval,l=e.dropRadius,u=Date.now();if(!(u-i<o)){t.lastRaindropsFallTime=u;var s=function(t){return(0,y.getRandomInt)(t)},c=n.width,f=n.height;this.drop(s(c),s(f),l,.03)}}}},{key:"drop",value:function(t,e,r,n){Reflect.apply(ct,this,[t,e,r,n])}},{key:"fade",value:function(){Reflect.apply(_t,this,[])}},{key:"reloadBackground",value:function(){var t,e;(t=Gt,e=this,t.get(function(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}(t,e))).call(this)}},{key:"destroy",value:function(){Reflect.apply(st,this,[])}},{key:"show",value:function(){this.options.visible=!0,this.canvas.style.visibility="visible",Reflect.apply(M,this,[])}},{key:"hide",value:function(){this.options.visible=!1,this.canvas.style.visibility="hidden",Reflect.apply(W,this,[])}},{key:"pause",value:function(){this.options.running=!1}},{key:"play",value:function(){this.options.running=!0}},{key:"changePlayingState",value:function(){var t=this.options;t.running=!t.running}},{key:"set",value:function(t,e){"imgUrl"===t?(this.options.imgUrl=e,Reflect.apply(B,this,[])):this.options[t]=e}}])&&Nt(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(v);function Ht(t,e){var r=(0,i.useRef)(null);return(0,i.useEffect)((function(){if(!(0,a.isNull)(t.current))return r.current=new zt(t.current,e&&e.option),function(){var t,e;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.destroy())&&void 0!==t?t:void 0}}),[]),r}module.exports.earthnut=n})();
@@ -0,0 +1 @@
1
+ import*as t from"a-type-of-js";import*as e from"react";import*as r from"a-element-inline-style";import*as n from"a-js-tools";var i={362:(e,r,n)=>{var i,o;e.exports=(i={isArray:()=>t.isArray,isBoolean:()=>t.isBoolean,isEmptyArray:()=>t.isEmptyArray,isFalse:()=>t.isFalse,isNull:()=>t.isNull,isString:()=>t.isString,isZero:()=>t.isZero},o={},n.d(o,i),o)},649:(t,r,n)=>{var i,o;t.exports=(i={useEffect:()=>e.useEffect,useRef:()=>e.useRef},o={},n.d(o,i),o)}},o={};function a(t){var e=o[t];if(void 0!==e)return e.exports;var r=o[t]={exports:{}};return i[t](r,r.exports,a),r.exports}a.d=(t,e)=>{for(var r in e)a.o(e,r)&&!a.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var l={};a.d(l,{n:()=>Vt});var s=a(649);const u=(c={setStyle:()=>r.setStyle},f={},a.d(f,c),f);var c,f,h=a(362);function p(t,e,r,n){function i(t,e){var n=r.createShader(t);if(r.shaderSource(n,e),r.compileShader(n),!r.getShaderParameter(n,r.COMPILE_STATUS))throw new Error("compile error: "+r.getShaderInfoLog(n));return n}var o,a={id:r.createProgram(),uniforms:{},locations:{}};if(r.attachShader(a.id,i(r.VERTEX_SHADER,t)),r.attachShader(a.id,i(r.FRAGMENT_SHADER,e)),r.linkProgram(a.id),!r.getProgramParameter(a.id,r.LINK_STATUS))throw new Error("link error: "+r.getProgramInfoLog(a.id));r.useProgram(a.id),r.enableVertexAttribArray(0);for(var l=t+e,s=/uniform (\w+) (\w+)/g;!(0,h.isNull)(o=s.exec(l));){var u=o[2];a.locations[u]=r.getUniformLocation(a.id,u)}return a}function d(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=this.gl;r.activeTexture(r.TEXTURE0+(e||0)),r.bindTexture(r.TEXTURE_2D,t)}function g(t){return"rgba(0, 0, 0, 0)"===t||"#ffffffff"===t||"transport"===t}function m(t){return"none"===t||""===t}function v(){var t=this,e=function(){return t.initState=!1,null};if(!this.gl)return e();var r=this.gl,n=Object.fromEntries(["OES_texture_float","OES_texture_half_float","OES_texture_float_linear","OES_texture_half_float_linear"].reduce((function(t,e){var n=r.getExtension(e);return n&&t.push([e,n]),t}),[]));if(!n.OES_texture_float)return e();var i=[];function o(t,e,r){var i="OES_texture_"+t,o=i+"_linear",a=o in n;return{type:e,linearSupport:a,arrayType:r,extensions:a?[i,o]:[i]}}i.push(o("float",r.FLOAT,Float32Array)),n.OES_texture_half_float&&i.push(o("half_float",n.OES_texture_half_float.HALF_FLOAT_OES,null));var a=r.createTexture(),l=r.createFramebuffer();r.bindFramebuffer(r.FRAMEBUFFER,l),r.bindTexture(r.TEXTURE_2D,a),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE);for(var s=null,u=0;u<i.length;u++)if(r.texImage2D(r.TEXTURE_2D,0,r.RGBA,32,32,0,r.RGBA,i[u].type,null),r.framebufferTexture2D(r.FRAMEBUFFER,r.COLOR_ATTACHMENT0,r.TEXTURE_2D,a,0),r.checkFramebufferStatus(r.FRAMEBUFFER)===r.FRAMEBUFFER_COMPLETE){s=i[u];break}return s}function y(t){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},y(t)}function b(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,w(n.key),n)}}function E(t,e,r){return e&&b(t.prototype,e),r&&b(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function R(t,e,r){return(e=w(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function w(t){var e=function(t){if("object"!=y(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==y(e)?e:e+""}var T=E((function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),R(this,"canvas",void 0),R(this,"gl",void 0),R(this,"config",void 0),R(this,"initState",!0),this.canvas=e;var r=e.getContext("webgl");if((0,h.isNull)(r))return this.initState=!1,void(this.config=null);this.gl=r,this.config=Reflect.apply(v,this,[])}));const S=(t=>{var e={};return a.d(e,t),e})({debounce:()=>n.debounce,enArr:()=>n.enArr,getRandomInt:()=>n.getRandomInt,getRandomString:()=>n.getRandomString});var P,x={imgUrl:"",resolution:360,dropRadius:12,perturbance:.01,interactive:!0,crossOrigin:"no-cors",playingState:!0,accelerating:1,raindropsTimeInterval:3600,idleFluctuations:!0};function k(t){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},k(t)}function _(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,D(n.key),n)}}function D(t){var e=function(t){if("object"!=k(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=k(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==k(e)?e:e+""}function A(t){return A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},A(t)}function O(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,I(n.key),n)}}function I(t){var e=function(t){if("object"!=A(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=A(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==A(e)?e:e+""}function F(t,e,r){return t.set(j(t,e),r),r}function U(t,e){return t.get(j(t,e))}function j(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}function C(t){return function(t){if(Array.isArray(t))return N(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return N(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?N(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}Object.freeze(x),new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t);var e=function(){};return Object.setPrototypeOf(e,this),Object.defineProperties(e,{info:{value:function(){},configurable:!1,writable:!1},warn:{value:function(){},configurable:!1,writable:!1},error:{value:function(){},configurable:!1,writable:!1},type:{value:!1,configurable:!1,writable:!1}}),e},(e=[{key:"clear",value:function(){}}])&&_(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}())({name:"earthnut",type:!1});var B=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e={list:[],diameter:48,radius:0,cells:0};e.diameter%2!=0&&e.diameter++;var r=e.diameter,n=e.list,i=r/2;e.radius=i,e.cells=Math.pow(r,2);for(var o=0;o<r;o++){n[o]=[];for(var a=0;a<r;a++)n[o][a]=[0,0,0,0]}for(var l=0;l<=i;l++)for(var s=l;s<=i;s++){var u=n[l][s],c=function(){return(0,S.getRandomInt)(255,190)};u[0]=c(),u[1]=c(),u[2]=c(),u[3]=Math.ceil(Math.sqrt(Math.pow(l,2)+Math.pow(s,2)))<=i?(0,S.getRandomInt)(120,180):(0,S.getRandomInt)(160,240)}for(var f=0;f<=i;f++)for(var h=0;h<=f;h++)n[f][h]=n[h][f];for(var p=i;p<r;p++)for(var d=0;d<=i;d++)n[p][d]=n[r-p][d];for(var g=0;g<i;g++)for(var m=i;m<r;m++)n[g][m]=n[g][r-m];for(var v=i;v<r;v++)for(var y=i;y<r;y++)n[v][y]=n[v][r-y];var b=t%r;return e.list=[].concat(C(n.slice(b)),C(n.slice(0,b))),e},L=new(P=new WeakMap,function(){return t=function t(){var e,r,n;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),function(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}(this,P,1),e=this,r="data",n=B(),(r=I(r))in e?Object.defineProperty(e,r,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[r]=n},(e=[{key:"build",value:function(){U(P,this)>100&&F(P,this,0),this.data=B(F(P,this,U(P,this)+3))}}])&&O(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());function M(t,e){var r=document.createElement("canvas"),n=document.createElement("canvas"),i=r.getContext("2d"),o=n.getContext("2d");return(0,h.isNull)(i)||(0,h.isNull)(o)?r:(r.width=n.width=t,r.height=n.height=e,i.clearRect(0,0,t,e),o.clearRect(0,0,t,e),i.globalAlpha=1,i.putImageData(function(t,e){Date.now();for(var r=new ImageData(t,e),n=r.data,i=L.data,o=i.diameter,a=i.list,l=t*o,s=0;s<n.length;s+=4){var u=s/4%l,c=u%t%o,f=Math.floor(u/t),h=a[c][f];n[s]=h[0],n[s+1]=h[1],n[s+2]=h[2],n[s+3]=h[3]}return r}(t,e),0,0),o.fillStyle="#ffffff",o.fillRect(0,0,t,e),o.drawImage(r,0,0,t,e),o.globalCompositeOperation="source-over",n)}function X(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=this.fadeData,r=e.backgroundInfo,n=e.toBeList,i=r.width,o=r.height,a=(0,S.getRandomString)({length:8,includeNumbers:!0,includeUppercaseLetters:!0});L.build(),n.push({resource:M(i,o),width:i,height:o,kind:"default",tag:a}),t&&e.run()}function W(){var t=this.renderData,e=this.fadeData,r=this.options;if((0,h.isNull)(t))return Reflect.apply(X,this,[]);var n=t.originStyle;if(g(n.backgroundColor)&&(!(0,h.isArray)(r.imgUrl)||1!==r.imgUrl.length))return Reflect.apply(X,this,[]);var i=document.createElement("canvas"),o=i.getContext("2d");if((0,h.isNull)(o))return Reflect.apply(X,this,[]);var a=e.backgroundInfo,l=a.width,s=a.height;i.width=l,i.height=s,o.clearRect(0,0,l,s);var u=(0,h.isArray)(r.imgUrl)&&1===r.imgUrl.length&&r.imgUrl[0]||n.backgroundColor;o.beginPath(),o.fillStyle=u,o.fillRect(0,0,l,s),o.fill(),e.isTransitioning?e.toBeList=[e.toBeList[0]]:e.toBeList=[];var c={resource:i,kind:"background-color",tag:u,width:l,height:s};e.toBeList.push(c),e.run()}function G(){var t=this.fadeData,e=this.renderData,r=this.options;if((0,h.isNull)(e))return Reflect.apply(W,this,[]);var n=e.originStyle;if(!/linear-gradient\(.*\)/.test(n.backgroundImage)&&!(0,h.isArray)(r.imgUrl))return Reflect.apply(W,this,[]);var i=(0,h.isArray)(r.imgUrl)&&r.imgUrl.length>1&&r.imgUrl||n.backgroundImage.replace(/^.*linear-gradient\((.*)\).*$/,"$1").split("),").map((function(t){return(t=t.trim()).endsWith(")")||(t+=")"),t})).filter((function(t){return t.startsWith("rgb")||t.startsWith("#")}));if(i.length<2)return Reflect.apply(W,this,[]);var o=document.createElement("canvas"),a=o.getContext("2d");if((0,h.isNull)(a))return Reflect.apply(W,this,[]);var l=t.backgroundInfo,s=l.width,u=l.height;o.width=s,o.height=u,a.fillStyle="#fff",a.fillRect(0,0,s,u);var c=a.createLinearGradient(0,0,0,u);i.forEach((function(t,e){return c.addColorStop(e/(i.length-1),t)})),a.fillStyle=c,a.fillRect(0,0,s,u),t.isTransitioning?t.toBeList=[t.toBeList[0]]:t.toBeList=[],t.toBeList.push({resource:o,kind:"linear-gradient",tag:i.join("_"),width:s,height:u}),t.run()}function z(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function H(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if((0,h.isNull)(e))Reflect.apply(G,this,[]);else{var i,o,a=e.lastUseStyle,l=n.backgroundInfo,s=l.width,u=l.height,c=(0,h.isString)(r.imgUrl)&&r.imgUrl||(i=a.backgroundImage,o=/url\(["']?([^"']*)["']?\)/.exec(i),(0,h.isNull)(o)?null:o[1]);if(e.imageSource=c,c){var f=function(t,e,r){var n=new Image(e,r);return n.width=e,n.height=r,n.src=t,n}(c,s,u);f.onload=function(){var t;clearTimeout(n.transparentId),n.isTransitioning?n.toBeList=[n.toBeList[0]].concat(function(t){if(Array.isArray(t))return z(t)}(t=n.toBeList.slice(1).filter((function(t){return"image"===t.kind&&(Math.abs(t.width-s)>2||Math.abs(t.height-u)>2||t.tag!==c)})))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return z(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?z(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()):n.toBeList=[],n.toBeList.push({resource:f,width:s,height:u,kind:"image",tag:c}),n.run()},f.onerror=function(){Reflect.apply(G,t,[])},f.crossOrigin=r.crossOrigin}else Reflect.apply(G,this,[])}}function Y(){var t=this.renderData;if(!(0,h.isNull)(t)){var e=t.parentElement;e&&[["background-image","none"],["background-color","transparent"]].forEach((function(t){return e.style.setProperty(t[0],t[1],"important")}))}}function q(t){var e=window.getComputedStyle(t),r=t.style;return{inlineBackground:r.background,inlineBackgroundColor:r.backgroundColor,inlineBackgroundImage:r.backgroundImage,backgroundColor:e.backgroundColor,backgroundImage:e.backgroundImage,backgroundSize:e.backgroundSize,backgroundPosition:e.backgroundPosition,backgroundRepeat:e.backgroundRepeat,backgroundClip:e.backgroundClip,backgroundOrigin:e.backgroundOrigin,backgroundAttachment:e.backgroundAttachment,position:e.position,width:parseInt(e.width),height:parseInt(e.height)}}function $(){var t=this.renderData;if(!(0,h.isNull)(t)){var e=t.parentElement,r=t.originStyle;e.style.setProperty("background-image",r.inlineBackgroundImage),e.style.setProperty("background-color",r.inlineBackgroundColor)}}function Z(t){return Z="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Z(t)}function K(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,J(n.key),n)}}function V(t,e,r){return(e=J(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function J(t){var e=function(t){if("object"!=Z(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Z(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Z(e)?e:e+""}var Q=function(){return t=function t(e,r,n){var i,o=this;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),V(this,"quad",null),V(this,"lastRaindropsFallTime",0),V(this,"parentElement",void 0),V(this,"mutationObserver",void 0),V(this,"resizeObserver",void 0),V(this,"renderProgram",void 0),V(this,"imageSource",""),V(this,"dropProgram",void 0),V(this,"updateProgram",void 0),V(this,"textures",[]),V(this,"backgroundTexture",[]),V(this,"textureDelta",void 0),V(this,"framebuffers",[]),V(this,"bufferWriteIndex",0),V(this,"bufferReadIndex",1),V(this,"originStyle",void 0),V(this,"lastUseStyle",void 0),V(this,"events",{}),V(this,"animationFrameId",0),this.parentElement=null!==(i=e.parentElement)&&void 0!==i?i:document.body,Reflect.apply(Y,n,[]),this.originStyle=this.lastUseStyle=q(this.parentElement),this.mutationObserver=new MutationObserver((function(t){t.forEach((function(t){if(t.target===o.parentElement&&"attributes"===t.type&&n.options.visible){var e=Object.values(o.lastUseStyle),i=q(o.parentElement),a=Object.values(i);if((0,h.isEmptyArray)(S.enArr.difference(e,a)))return;var l=m(i.backgroundImage),s=g(i.backgroundColor);if(l&&s)return;o.lastUseStyle=i,Reflect.apply(r,n,[]),Reflect.apply(Y,n,[])}}))})),this.mutationObserver.observe(this.parentElement,{subtree:!0,attributes:!0,attributeFilter:["class","style"]}),this.resizeObserver=new ResizeObserver((function(t){t.forEach((function(t){if(t.target===o.parentElement){var e=q(o.parentElement);Math.abs(e.width-o.originStyle.width)<3&&Math.abs(e.height-o.originStyle.height)<3||Reflect.apply(r,n,[])}}))})),this.resizeObserver.observe(this.parentElement)},e=[{key:"destroy",value:function(){if(this.animationFrameId&&window.cancelAnimationFrame(this.animationFrameId),Reflect.apply($,{renderData:this},[]),this.parentElement&&this.events){var t,e,r,n=this.parentElement,i=this.events;Object.keys(i).forEach((function(t){return n.removeEventListener&&n.removeEventListener(t,i[t])})),n.removeAttribute&&n.removeAttribute("data-ripples"),null===(t=this.mutationObserver)||void 0===t||t.takeRecords(),null===(e=this.mutationObserver)||void 0===e||e.disconnect(),this.mutationObserver=null,null===(r=this.resizeObserver)||void 0===r||r.disconnect(),this.resizeObserver=null}}}],e&&K(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function tt(){var t=this.renderData,e=this.fadeData;if(!(0,h.isNull)(t)){var r,n,i,o=t.parentElement,a=window.getComputedStyle(o),l=a.backgroundSize,s=a.backgroundAttachment,u=a.backgroundPosition,c=/\s+/.test(r=u)?r.replace(/center/,"50%").replace(/top|left/,"0%").replace(/bottom/,"100%").replace(/\s+/," ").split(" "):et(r)?[r,"50%"]:{center:["50%","50%"],top:["50%","0%"],bottom:["50%","100%"],left:["0%","50%"],right:["100%","50%"]}[r],f={left:0,top:0,width:0,height:0};"fixed"===s?(f.height=window.innerHeight,f.left=window.screenX,f.top=window.screenY,f.width=window.innerWidth):(f.left=0,f.top=0,f.width=o.scrollWidth,f.height=o.scrollHeight);var p=e.backgroundInfo||{width:100,height:100},d=p.width,g=p.height;if("cover"===l){var m=Math.max(f.width/d,f.height/g);n=d*m,i=g*m}else if("contain"===l){var v=Math.min(f.width/d,f.height/g);n=d*v,i=g*v}else{var y=l.split(" ");n=y[0]||"",i=y[1]||n,et(n)?n=f.width*parseFloat(n)/100:"auto"!==n&&(n=parseFloat(n)),et(i)?i=f.height*parseFloat(i)/100:"auto"!==i&&(i=parseFloat(i)),"auto"===n&&"auto"===i?(n=d,i=g):("auto"===n&&(n=d*(Number(i)/g)),"auto"===i&&(i=g*(Number(n)/d)))}var b=c&&c[0]||"0%",E=c&&c[1]||"0%";b=et(b)?(f.left+(f.width-Number(n))*parseFloat(b)/100).toString():(f.left+parseFloat(b)).toString(),E=et(E)?(f.top+(f.height-Number(i))*parseFloat(E)/100).toString():(f.top+parseFloat(E)).toString(),t.renderProgram.uniforms.topLeft=new Float32Array([(o.offsetLeft-Number(b))/n,(o.offsetTop-Number(E))/i]),t.renderProgram.uniforms.bottomRight=new Float32Array([t.renderProgram.uniforms.topLeft[0]+o.clientWidth/n,t.renderProgram.uniforms.topLeft[1]+o.clientHeight/i]);var R=Math.max(this.canvas.width,this.canvas.height);t.renderProgram.uniforms.containerRatio=new Float32Array([this.canvas.width/R,this.canvas.height/R])}}function et(t){return t.endsWith("%")}function rt(){var t=this.gl,e=this.renderData;(0,h.isNull)(e)||(t.bindBuffer(t.ARRAY_BUFFER,e.quad),t.vertexAttribPointer(0,2,t.FLOAT,!1,0,0),t.drawArrays(t.TRIANGLE_FAN,0,4))}function nt(){var t=this.gl,e=this.renderData,r=this.options;if(!(0,h.isNull)(e)){var n=e.textures,i=e.backgroundTexture,o=r.perturbance;t.bindFramebuffer(t.FRAMEBUFFER,null),t.viewport(0,0,this.canvas.width,this.canvas.height),t.enable(t.BLEND),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT),t.useProgram(e.renderProgram.id),Reflect.apply(d,this,[i,0]),Reflect.apply(d,this,[n[0],1]),t.uniform1f(e.renderProgram.locations.perturbance,o),t.uniform2fv(e.renderProgram.locations.topLeft,e.renderProgram.uniforms.topLeft),t.uniform2fv(e.renderProgram.locations.bottomRight,e.renderProgram.uniforms.bottomRight),t.uniform2fv(e.renderProgram.locations.containerRatio,e.renderProgram.uniforms.containerRatio),t.uniform1i(e.renderProgram.locations.samplerBackground,0),t.uniform1i(e.renderProgram.locations.samplerRipples,1),Reflect.apply(rt,this,[]),t.disable(t.BLEND)}}function it(){var t=this.renderData;if(!(0,h.isNull)(t)){var e=t.bufferWriteIndex,r=t.bufferReadIndex;t.bufferWriteIndex=1-e,t.bufferReadIndex=1-r}}function ot(){var t=this.gl,e=this.renderData,r=this.options;if(!(0,h.isNull)(e)){var n=e.updateProgram,i=e.textures,o=e.framebuffers,a=e.bufferWriteIndex,l=e.bufferReadIndex,s=r.resolution;t.viewport(0,0,s,s),t.bindFramebuffer(t.FRAMEBUFFER,o[a]),Reflect.apply(d,this,[i[l]]),t.useProgram(n.id),Reflect.apply(rt,this,[]),Reflect.apply(it,this,[])}}function at(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if(!(0,h.isNull)(e)){var i=e.parentElement,o=n.isTransitioning,a=r.running,l=r.idleFluctuations,s=r.lastRunningState,u=getComputedStyle(i);n.backgroundInfo={width:parseInt(u.width),height:parseInt(u.height)},Reflect.apply(tt,this,[]),a?(s||(r.lastRunningState=!0,this.show()),l&&this.raindropsFall(),o&&this.fade(),Reflect.apply(ot,this,[]),Reflect.apply(nt,this,[])):s&&(r.lastRunningState=!1,this.hide()),e.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(at,t,[])}))}}function lt(t,e,r){var n=this.renderData;if(!(0,h.isNull)(n)){var i=n.parentElement,o=window.getComputedStyle(i),a=parseInt(o.borderLeftWidth)||0,l=parseInt(o.borderTopWidth)||0,s=i.getBoundingClientRect(),u=t.clientX-s.left-a,c=t.clientY-s.top-l;this.drop(u,c,e,r)}}function st(){var t=this,e=this.renderData,r=this.options;if(!(0,h.isNull)(e)){var n=e.parentElement,i=e.events,o=function(n){var i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];r.visible&&r.running&&r.interactive&&(e.lastRaindropsFallTime=Date.now(),Reflect.apply(lt,t,[n,r.dropRadius*(i?1.5:1),i?.03:.01]))};i.mousemove=function(t){for(var e=r.accelerating;e--;)o(t)},i.touchmove=i.touchstart=function(t){for(var e=t.touches,r=0;r<e.length;r++)o(e[r])},i.mousedown=function(t){return o(t,!0)},Object.keys(i).forEach((function(t){return null==n?void 0:n.addEventListener(t,i[t],{passive:!0})}))}}var ut="\n attribute vec2 vertex;\n varying vec2 coord;\n void main() {\n coord = vertex * 0.5 + 0.5;\n gl_Position = vec4(vertex, 0.0, 1.0);\n }";function ct(){var t=this.gl,e=this.renderData;if(!(0,h.isNull)(e)){var r=e.textureDelta;e.dropProgram=p(ut,"precision highp float;\n\n const float PI = 3.141592653589793;\n uniform sampler2D texture;\n uniform vec2 center;\n uniform float radius;\n uniform float strength;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n\n float drop = max(0.0, 1.0 - length(center * 0.5 + 0.5 - coord) / radius);\n drop = 0.5 - cos(drop * PI) * 0.5;\n info.r += drop * strength;\n gl_FragColor = info;\n }",t);var n=e.updateProgram=p(ut,"\n precision highp float;\n\n uniform sampler2D texture;\n uniform vec2 delta;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n \n vec2 dx = vec2(delta.x, 0.0);\n vec2 dy = vec2(0.0, delta.y);\n \n float average = (\n texture2D(texture, coord - dx).r +\n texture2D(texture, coord - dy).r +\n texture2D(texture, coord + dx).r +\n texture2D(texture, coord + dy).r\n ) * 0.25;\n \n info.g += (average - info.r) * 2.0;\n info.g *= 0.995;\n info.r += info.g;\n \n gl_FragColor = info;\n }\n ",this.gl);t.uniform2fv(n.locations.delta,r),e.renderProgram=p("\n precision highp float;\n\n attribute vec2 vertex;\n uniform vec2 topLeft;\n uniform vec2 bottomRight;\n uniform vec2 containerRatio;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n void main() {\n backgroundCoord = mix(topLeft, bottomRight, vertex * 0.5 + 0.5);\n backgroundCoord.y = 1.0 - backgroundCoord.y;\n ripplesCoord = vec2(vertex.x, -vertex.y) * containerRatio * 0.5 + 0.5;\n gl_Position = vec4(vertex.x, -vertex.y, 0.0, 1.0);\n }\n ","\n precision highp float;\n\n uniform sampler2D samplerBackground;\n uniform sampler2D samplerRipples;\n uniform vec2 delta;\n\n uniform float perturbance;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n\n void main() {\n float height = texture2D(samplerRipples, ripplesCoord).r;\n float heightX = texture2D(samplerRipples, vec2(ripplesCoord.x + delta.x, ripplesCoord.y)).r;\n float heightY = texture2D(samplerRipples, vec2(ripplesCoord.x, ripplesCoord.y + delta.y)).r;\n vec3 dx = vec3(delta.x, heightX - height, 0.0);\n vec3 dy = vec3(0.0, heightY - height, delta.y);\n vec2 offset = -normalize(cross(dy, dx)).xz;\n float specular = pow(max(0.0, dot(offset, normalize(vec2(-0.6, 1.0)))), 4.0);\n gl_FragColor = texture2D(samplerBackground, backgroundCoord + offset * perturbance) + specular;\n }",t),t.uniform2fv(e.renderProgram.locations.delta,r)}}function ft(){var t=this.gl,e=this.renderData;if(!(0,h.isNull)(e)){var r=e.backgroundTexture=t.createTexture();t.bindTexture(t.TEXTURE_2D,r),t.pixelStorei(t.UNPACK_FLIP_Y_WEBGL,1),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR)}}function ht(t){var e=this.gl,r=this.renderData,n=this.fadeData;if(!(0,h.isNull)(r)){var i=r.backgroundTexture,o=n.backgroundInfo,a=o.width,l=o.height,s=function(t){return(0,h.isZero)(t&t-1)},u=s(a)&&s(l)?e.REPEAT:e.CLAMP_TO_EDGE;e.bindTexture(e.TEXTURE_2D,i),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,u),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,u),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,t.resource)}}function pt(){var t=this,e=this.renderData,r=this.options,n=this.fadeData;if(!(0,h.isNull)(e)&&this.config){var i=e.textures,o=e.framebuffers,a=r.resolution,l=this.gl,s=1/a;e.textureDelta=new Float32Array([s,s]),this.config.extensions.forEach((function(t){return l.getExtension(t)}));for(var u=this.config.arrayType,c=u?new u(a*a*4):null,f=this.config,p=0;p<2;p++){var d=l.createTexture(),g=l.createFramebuffer();l.bindFramebuffer(l.FRAMEBUFFER,g),l.bindTexture(l.TEXTURE_2D,d),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MIN_FILTER,f.linearSupport?l.LINEAR:l.NEAREST),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_MAG_FILTER,f.linearSupport?l.LINEAR:l.NEAREST),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_S,l.CLAMP_TO_EDGE),l.texParameteri(l.TEXTURE_2D,l.TEXTURE_WRAP_T,l.CLAMP_TO_EDGE),l.texImage2D(l.TEXTURE_2D,0,l.RGBA,a,a,0,l.RGBA,f.type,c),l.framebufferTexture2D(l.FRAMEBUFFER,l.COLOR_ATTACHMENT0,l.TEXTURE_2D,d,0),i.push(d),o.push(g)}e.quad=l.createBuffer(),l.bindBuffer(l.ARRAY_BUFFER,e.quad),l.bufferData(l.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,1,1,-1,1]),l.STATIC_DRAW),Reflect.apply(ct,this,[]),Reflect.apply(ft,this,[]),Reflect.apply(H,this,[]),l.clearColor(0,0,0,0),l.blendFunc(l.SRC_ALPHA,l.ONE_MINUS_SRC_ALPHA),r.visible=!0,r.running=!0,Reflect.apply(st,this,[]),Reflect.apply(ht,this,[n.lastDrawImage]),e.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(at,t,[])}))}}function dt(){var t=this.renderData,e=this.fadeData;if(!(0,h.isNull)(t)){var r=t.parentElement,n=e.backgroundInfo,i=r.offsetWidth,o=r.offsetHeight;this.canvas.width=n.width=i,this.canvas.height=n.height=o,Reflect.apply(H,this,[])}}function gt(){var t=this.renderData,e=this.fadeData;(0,h.isNull)(t)||(t.destroy(),Object.keys(t).forEach((function(e){return t[e]=null})),this.renderData=null),e.destroy(),Object.keys(e).forEach((function(t){return e[t]=null})),this.fadeData=null,this.gl&&(this.gl=null)}function mt(t,e,r,n){var i=this.renderData,o=this.options,a=this.gl;if(!(0,h.isNull)(i)){var l=i.parentElement,s=i.dropProgram,u=i.textures,c=i.framebuffers,f=i.bufferWriteIndex,p=i.bufferReadIndex,g=o.resolution,m=l.offsetWidth,v=l.offsetHeight,y=Math.max(m,v);r/=y;var b=new Float32Array([(2*t-m)/y,(v-2*e)/y]);a.viewport(0,0,g,g),a.bindFramebuffer(a.FRAMEBUFFER,c[f]),Reflect.apply(d,this,[u[p]]),a.useProgram(s.id),a.uniform2fv(s.locations.center,b),a.uniform1f(s.locations.radius,r),a.uniform1f(s.locations.strength,n),Reflect.apply(rt,this,[]),Reflect.apply(it,this,[])}}function vt(t){return vt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},vt(t)}function yt(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Et(n.key),n)}}function bt(t,e,r){return(e=Et(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Et(t){var e=function(t){if("object"!=vt(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=vt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==vt(e)?e:e+""}function Rt(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}function wt(t,e){return t.get(St(t,e))}function Tt(t,e,r){return t.set(St(t,e),r),r}function St(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}var Pt=new WeakMap,xt=new WeakMap,kt=new WeakMap,_t=new WeakMap,Dt=new WeakMap,At=new WeakMap,Ot=new WeakMap,It=function(){return t=function t(e){var r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),Rt(this,Pt,x.accelerating),Rt(this,xt,x.interactive),Rt(this,kt,x.resolution),Rt(this,_t,x.perturbance),Rt(this,Dt,x.dropRadius),bt(this,"imgUrl",x.imgUrl),Rt(this,At,x.idleFluctuations),Rt(this,Ot,x.raindropsTimeInterval),bt(this,"crossOrigin","no-cors"),bt(this,"visible",!1),bt(this,"running",!1),bt(this,"lastRunningState",!1),this.perturbance=e.perturbance,this.resolution=e.resolution,this.raindropsTimeInterval=e.raindropsTimeInterval,this.accelerating=e.accelerating,this.interactive=e.interactive,this.dropRadius=e.dropRadius,this.imgUrl=e.imgUrl,this.idleFluctuations=e.idleFluctuations,this.running=Boolean(null===(r=e.playingState)||void 0===r||r),this.crossOrigin=e.crossOrigin},(e=[{key:"accelerating",get:function(){return wt(Pt,this)},set:function(t){t>100||t<2||Tt(Pt,this,t)}},{key:"interactive",get:function(){return wt(xt,this)},set:function(t){(0,h.isBoolean)(t)&&Tt(xt,this,t)}},{key:"resolution",get:function(){return wt(kt,this)},set:function(t){t<100||t>550||Tt(kt,this,t)}},{key:"perturbance",get:function(){return wt(_t,this)},set:function(t){t<1e-4||t>1||Tt(_t,this,t)}},{key:"dropRadius",get:function(){return wt(Dt,this)},set:function(t){!isFinite(t)||t<10||Tt(Dt,this,t)}},{key:"idleFluctuations",get:function(){return wt(At,this)},set:function(t){(0,h.isBoolean)(t)&&Tt(At,this,t)}},{key:"raindropsTimeInterval",get:function(){return wt(Ot,this)},set:function(t){t<10||t>12e3||Tt(Ot,this,t)}},{key:"playingState",get:function(){return this.running},set:function(t){this.running=Boolean(null==t||t)}}])&&yt(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ft(){var t=this,e=this.options,r=this.fadeData;r.transparentId=setTimeout((function(){if(clearTimeout(r.transparentId),r.isTransitioning)return Reflect.apply(Ft,t,[]);"image"!==r.lastDrawImage.kind&&r.run()}),2*e.raindropsTimeInterval)}function Ut(){var t=this.renderData,e=this.fadeData,r=this.options,n=e.toBeList;if((0,h.isNull)(t))return e.isTransitioning=!1,void Reflect.apply(Ft,this,[]);if((0,h.isEmptyArray)(n))return e.isTransitioning=!1,void Reflect.apply(Ft,this,[]);if(0===e.drawProgress&&n.forEach((function(t){})),e.drawProgress>1e3)if(e.isTransitioning=!1,e.lastDrawImage=n.shift(),Reflect.apply(ht,this,[e.lastDrawImage]),(0,h.isEmptyArray)(n)){var i=t.lastUseStyle;(0,h.isNull)(r.imgUrl)&&g(i.backgroundColor)&&m(i.backgroundImage)&&(Reflect.apply(X,this,[!1]),Reflect.apply(Ft,this,[]))}else Reflect.apply(Ft,this,[]);else{var o=e.lastDrawImage,a=e.backgroundInfo;e.drawProgress+=18;var l=document.createElement("canvas"),s=l.getContext("2d");if(!((0,h.isNull)(s)||(0,h.isNull)(o.resource)||(0,h.isEmptyArray)(n))){var u=a.width,c=a.height;l.width=u,l.height=c,s.clearRect(0,0,u,c),s.drawImage(o.resource,0,0,u,c),s.globalAlpha=e.drawProgress/1e3,s.drawImage(n[0].resource,0,0,u,c),s.globalAlpha=1;var f={resource:l,width:u,height:c,kind:"mix",tag:"".concat(o.tag," >> ").concat(n[0].tag)};Reflect.apply(ht,this,[f]),n.length>1&&(e.lastDrawImage=f,n.shift(),e.drawProgress=0)}}}function jt(t){return jt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},jt(t)}function Ct(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Bt(n.key),n)}}function Nt(t,e,r){return(e=Bt(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Bt(t){var e=function(t){if("object"!=jt(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=jt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==jt(e)?e:e+""}var Lt=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),Nt(this,"backgroundInfo",{width:0,height:0}),Nt(this,"transparentId",setTimeout(Boolean)),Nt(this,"lastDrawImage",void 0),Nt(this,"toBeList",[]),Nt(this,"drawProgress",0),Nt(this,"isTransitioning",!1);var r,n,i=e.renderData;if((0,h.isNull)(i))r=10,n=10;else{var o=getComputedStyle(i.parentElement);r=parseInt(o.width),n=parseInt(o.height)}this.backgroundInfo={width:r,height:n},this.lastDrawImage={resource:M(r,n),width:r,height:n,kind:"default",tag:""}},(e=[{key:"run",value:function(){this.isTransitioning||(this.drawProgress=0,this.isTransitioning=!0)}},{key:"destroy",value:function(){this.transparentId&&clearTimeout(this.transparentId)}}])&&Ct(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Mt(t){return Mt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Mt(t)}function Xt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Wt(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Xt(Object(r),!0).forEach((function(e){qt(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Xt(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Gt(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,$t(n.key),n)}}function zt(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(zt=function(){return!!t})()}function Ht(t){return Ht=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ht(t)}function Yt(t,e){return Yt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Yt(t,e)}function qt(t,e,r){return(e=$t(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function $t(t){var e=function(t){if("object"!=Mt(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Mt(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Mt(e)?e:e+""}var Zt=new WeakMap,Kt=function(){function t(e,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),qt(n=function(t,e,r){return e=Ht(e),function(t,e){if(e&&("object"==Mt(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,zt()?Reflect.construct(e,r||[],Ht(t).constructor):e.apply(t,r))}(this,t,[e]),"renderData",null),qt(n,"options",void 0),qt(n,"fadeData",void 0),qt(n,"defaults",x),qt(n,"initialized",!1),function(t,e,r){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,r)}(n,Zt,(0,S.debounce)(dt,{this:n})),Object.defineProperties(n,{defaults:{value:n.defaults,writable:!1,enumerable:!1,configurable:!1}}),n.options=new It(Wt(Wt({},n.defaults),r)),n.renderData=new Q(e,n.reloadBackground,n),n.fadeData=new Lt(n),(0,h.isFalse)(n.initState)||(0,h.isNull)(e.parentElement)||(0,h.isNull)(n.config)||(0,h.isNull)(n.gl)?n.initState=!1:(function(t){var e=t.parentElement;t.width=e.clientWidth,t.height=e.clientHeight,(0,u.setStyle)(t,{position:"absolute",left:0,top:0,right:0,bottom:0,zIndex:-1,pointerEvents:"none"})}(e),Reflect.apply(pt,n,[])),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Yt(t,e)}(t,T),e=t,r=[{key:"raindropsFall",value:function(){var t=this.renderData,e=this.options,r=this.fadeData;if(!(0,h.isNull)(t)){var n=r.backgroundInfo,i=t.lastRaindropsFallTime,o=e.raindropsTimeInterval,a=e.dropRadius,l=Date.now();if(!(l-i<o)){t.lastRaindropsFallTime=l;var s=function(t){return(0,S.getRandomInt)(t)},u=n.width,c=n.height;this.drop(s(u),s(c),a,.03)}}}},{key:"drop",value:function(t,e,r,n){Reflect.apply(mt,this,[t,e,r,n])}},{key:"fade",value:function(){Reflect.apply(Ut,this,[])}},{key:"reloadBackground",value:function(){var t,e;(t=Zt,e=this,t.get(function(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}(t,e))).call(this)}},{key:"destroy",value:function(){Reflect.apply(gt,this,[])}},{key:"show",value:function(){this.options.visible=!0,this.canvas.style.visibility="visible",Reflect.apply(Y,this,[])}},{key:"hide",value:function(){this.options.visible=!1,this.canvas.style.visibility="hidden",Reflect.apply($,this,[])}},{key:"pause",value:function(){this.options.running=!1}},{key:"play",value:function(){this.options.running=!0}},{key:"changePlayingState",value:function(){var t=this.options;t.running=!t.running}},{key:"set",value:function(t,e){"imgUrl"===t?(this.options.imgUrl=e,Reflect.apply(H,this,[])):this.options[t]=e}}],r&&Gt(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,r}();function Vt(t,e){var r=(0,s.useRef)(null);return(0,s.useEffect)((function(){if(!(0,h.isNull)(t.current))return r.current=new Kt(t.current,e&&e.option),function(){var t,e;return null!==(t=null===(e=r.current)||void 0===e?void 0:e.destroy())&&void 0!==t?t:void 0}}),[]),r}const Jt=l.n;export{Jt as useRipples};
@@ -0,0 +1 @@
1
+ (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(o){var n=r[o];if(void 0!==n)return n.exports;var u=r[o]={exports:{}};return e[o](u,u.exports,t),u.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var o in r)t.o(r,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{useTimeId:()=>u});var n=t(953);function u(){var e=(0,n.useRef)(void 0);return(0,n.useEffect)((function(){return function(){e.current&&clearTimeout(e.current)}}),[]),e}module.exports.earthnut=o})();
@@ -0,0 +1 @@
1
+ import*as e from"react";var r={649:(r,t,o)=>{var n,u;r.exports=(n={useEffect:()=>e.useEffect,useRef:()=>e.useRef},u={},o.d(u,n),u)}},t={};function o(e){var n=t[e];if(void 0!==n)return n.exports;var u=t[e]={exports:{}};return r[e](u,u.exports,o),u.exports}o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r);var n={};o.d(n,{O:()=>f});var u=o(649);function f(){var e=(0,u.useRef)(void 0);return(0,u.useEffect)((function(){return function(){e.current&&clearTimeout(e.current)}}),[]),e}const s=n.O;export{s as useTimeId};