phoenix_duskmoon 4.5.0 → 4.5.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.
- package/CHANGELOG.md +15 -0
- package/package.json +11 -8
- package/priv/static/phoenix_duskmoon.css +180 -252
- package/priv/static/phoenix_duskmoon.js +9 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [4.5.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.5.1...v4.5.2) (2024-07-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add expand to table. ([1dd3282](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/1dd3282fc47bdda7b955881bad45f65607c2aa75))
|
|
7
|
+
* Fix style. ([f7a5624](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/f7a56244514e4814ec0daa0ed0650ea255d8bfb1))
|
|
8
|
+
|
|
9
|
+
## [4.5.1](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.5.0...v4.5.1) (2024-07-04)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Fix tailwindcss. ([f675f86](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/f675f86df77a8b08e634e5238767d2e0cd0dad27))
|
|
15
|
+
|
|
1
16
|
# [4.5.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.4...v4.5.0) (2024-07-04)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phoenix_duskmoon",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.2",
|
|
4
4
|
"main": "./priv/static/phoenix_duskmoon.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./priv/static/phoenix_duskmoon.js",
|
|
@@ -23,14 +23,17 @@
|
|
|
23
23
|
"registry": "https://registry.npmjs.org/"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@gsmlg/lit": "1.
|
|
27
|
-
"lit": "^
|
|
28
|
-
"lit-element": "^
|
|
29
|
-
"lit-html": "^
|
|
26
|
+
"@gsmlg/lit": "1.30.3",
|
|
27
|
+
"lit": "^3.1.4",
|
|
28
|
+
"lit-element": "^4.0.6",
|
|
29
|
+
"lit-html": "^3.1.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@babel/core": "^7.
|
|
33
|
-
"@babel/preset-env": "^7.
|
|
32
|
+
"@babel/core": "^7.24.7",
|
|
33
|
+
"@babel/preset-env": "^7.24.7",
|
|
34
|
+
"@tailwindcss/typography": "^0.5.13",
|
|
35
|
+
"daisyui": "^4.12.10",
|
|
36
|
+
"postcss": "^8.4.39"
|
|
34
37
|
},
|
|
35
38
|
"peerDependencies": {
|
|
36
39
|
"@gsmlg/lit": "1.29.5",
|
|
@@ -38,4 +41,4 @@
|
|
|
38
41
|
"lit-element": "^3.2.2",
|
|
39
42
|
"lit-html": "^2.4.0"
|
|
40
43
|
}
|
|
41
|
-
}
|
|
44
|
+
}
|
|
@@ -27,50 +27,49 @@
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.sticky {
|
|
30
|
-
position: -webkit-sticky;
|
|
31
30
|
position: sticky;
|
|
32
31
|
}
|
|
33
32
|
|
|
34
|
-
.
|
|
35
|
-
|
|
33
|
+
.left-0 {
|
|
34
|
+
left: 0px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.right-0 {
|
|
38
|
+
right: 0px;
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
.right-2 {
|
|
39
42
|
right: 0.5rem;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
|
-
.top-
|
|
43
|
-
top:
|
|
45
|
+
.top-0 {
|
|
46
|
+
top: 0px;
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
.top-12 {
|
|
47
50
|
top: 3rem;
|
|
48
51
|
}
|
|
49
52
|
|
|
50
|
-
.
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.right-0 {
|
|
55
|
-
right: 0px;
|
|
53
|
+
.top-14 {
|
|
54
|
+
top: 3.5rem;
|
|
56
55
|
}
|
|
57
56
|
|
|
58
|
-
.top-
|
|
59
|
-
top:
|
|
57
|
+
.top-2 {
|
|
58
|
+
top: 0.5rem;
|
|
60
59
|
}
|
|
61
60
|
|
|
62
61
|
.isolate {
|
|
63
62
|
isolation: isolate;
|
|
64
63
|
}
|
|
65
64
|
|
|
66
|
-
.z-50 {
|
|
67
|
-
z-index: 50;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
65
|
.z-10 {
|
|
71
66
|
z-index: 10;
|
|
72
67
|
}
|
|
73
68
|
|
|
69
|
+
.z-50 {
|
|
70
|
+
z-index: 50;
|
|
71
|
+
}
|
|
72
|
+
|
|
74
73
|
.m-4 {
|
|
75
74
|
margin: 1rem;
|
|
76
75
|
}
|
|
@@ -80,9 +79,9 @@
|
|
|
80
79
|
margin-right: 3rem;
|
|
81
80
|
}
|
|
82
81
|
|
|
83
|
-
.
|
|
84
|
-
margin-
|
|
85
|
-
margin-
|
|
82
|
+
.mx-8 {
|
|
83
|
+
margin-left: 2rem;
|
|
84
|
+
margin-right: 2rem;
|
|
86
85
|
}
|
|
87
86
|
|
|
88
87
|
.mx-auto {
|
|
@@ -90,33 +89,33 @@
|
|
|
90
89
|
margin-right: auto;
|
|
91
90
|
}
|
|
92
91
|
|
|
93
|
-
.
|
|
94
|
-
margin-
|
|
95
|
-
margin-
|
|
92
|
+
.my-2 {
|
|
93
|
+
margin-top: 0.5rem;
|
|
94
|
+
margin-bottom: 0.5rem;
|
|
96
95
|
}
|
|
97
96
|
|
|
98
97
|
.mb-4 {
|
|
99
98
|
margin-bottom: 1rem;
|
|
100
99
|
}
|
|
101
100
|
|
|
102
|
-
.
|
|
103
|
-
margin-
|
|
101
|
+
.mr-1 {
|
|
102
|
+
margin-right: 0.25rem;
|
|
104
103
|
}
|
|
105
104
|
|
|
106
|
-
.mt-
|
|
107
|
-
margin-top:
|
|
105
|
+
.mt-0 {
|
|
106
|
+
margin-top: 0px;
|
|
108
107
|
}
|
|
109
108
|
|
|
110
109
|
.mt-0\.5 {
|
|
111
110
|
margin-top: 0.125rem;
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
.mt-
|
|
115
|
-
margin-top:
|
|
113
|
+
.mt-2 {
|
|
114
|
+
margin-top: 0.5rem;
|
|
116
115
|
}
|
|
117
116
|
|
|
118
|
-
.
|
|
119
|
-
margin-
|
|
117
|
+
.mt-3 {
|
|
118
|
+
margin-top: 0.75rem;
|
|
120
119
|
}
|
|
121
120
|
|
|
122
121
|
.flex {
|
|
@@ -131,6 +130,10 @@
|
|
|
131
130
|
display: table;
|
|
132
131
|
}
|
|
133
132
|
|
|
133
|
+
.table-row {
|
|
134
|
+
display: table-row;
|
|
135
|
+
}
|
|
136
|
+
|
|
134
137
|
.grid {
|
|
135
138
|
display: grid;
|
|
136
139
|
}
|
|
@@ -139,24 +142,20 @@
|
|
|
139
142
|
display: none;
|
|
140
143
|
}
|
|
141
144
|
|
|
142
|
-
.h-
|
|
143
|
-
height:
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.h-14 {
|
|
147
|
-
height: 3.5rem;
|
|
145
|
+
.h-10 {
|
|
146
|
+
height: 2.5rem;
|
|
148
147
|
}
|
|
149
148
|
|
|
150
|
-
.h-
|
|
151
|
-
height:
|
|
149
|
+
.h-12 {
|
|
150
|
+
height: 3rem;
|
|
152
151
|
}
|
|
153
152
|
|
|
154
|
-
.h-
|
|
155
|
-
height:
|
|
153
|
+
.h-14 {
|
|
154
|
+
height: 3.5rem;
|
|
156
155
|
}
|
|
157
156
|
|
|
158
|
-
.h-
|
|
159
|
-
height:
|
|
157
|
+
.h-16 {
|
|
158
|
+
height: 4rem;
|
|
160
159
|
}
|
|
161
160
|
|
|
162
161
|
.h-4 {
|
|
@@ -167,8 +166,16 @@
|
|
|
167
166
|
height: 1.25rem;
|
|
168
167
|
}
|
|
169
168
|
|
|
170
|
-
.h-
|
|
171
|
-
height:
|
|
169
|
+
.h-8 {
|
|
170
|
+
height: 2rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.h-full {
|
|
174
|
+
height: 100%;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.min-h-32 {
|
|
178
|
+
min-height: 8rem;
|
|
172
179
|
}
|
|
173
180
|
|
|
174
181
|
.min-h-\[200px\] {
|
|
@@ -176,21 +183,16 @@
|
|
|
176
183
|
}
|
|
177
184
|
|
|
178
185
|
.min-h-fit {
|
|
179
|
-
min-height: -webkit-fit-content;
|
|
180
186
|
min-height: -moz-fit-content;
|
|
181
187
|
min-height: fit-content;
|
|
182
188
|
}
|
|
183
189
|
|
|
184
|
-
.w-full {
|
|
185
|
-
width: 100%;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
190
|
.w-10 {
|
|
189
191
|
width: 2.5rem;
|
|
190
192
|
}
|
|
191
193
|
|
|
192
|
-
.w-
|
|
193
|
-
width:
|
|
194
|
+
.w-16 {
|
|
195
|
+
width: 4rem;
|
|
194
196
|
}
|
|
195
197
|
|
|
196
198
|
.w-4 {
|
|
@@ -201,14 +203,18 @@
|
|
|
201
203
|
width: 1.25rem;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
|
-
.w-
|
|
205
|
-
width:
|
|
206
|
+
.w-8 {
|
|
207
|
+
width: 2rem;
|
|
206
208
|
}
|
|
207
209
|
|
|
208
210
|
.w-\[200px\] {
|
|
209
211
|
width: 200px;
|
|
210
212
|
}
|
|
211
213
|
|
|
214
|
+
.w-full {
|
|
215
|
+
width: 100%;
|
|
216
|
+
}
|
|
217
|
+
|
|
212
218
|
.min-w-\[420px\] {
|
|
213
219
|
min-width: 420px;
|
|
214
220
|
}
|
|
@@ -217,20 +223,16 @@
|
|
|
217
223
|
max-width: 20rem;
|
|
218
224
|
}
|
|
219
225
|
|
|
220
|
-
.flex-none {
|
|
221
|
-
flex: none;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
226
|
.flex-1 {
|
|
225
227
|
flex: 1 1 0%;
|
|
226
228
|
}
|
|
227
229
|
|
|
228
|
-
.
|
|
229
|
-
flex
|
|
230
|
+
.flex-none {
|
|
231
|
+
flex: none;
|
|
230
232
|
}
|
|
231
233
|
|
|
232
|
-
.
|
|
233
|
-
|
|
234
|
+
.shrink-0 {
|
|
235
|
+
flex-shrink: 0;
|
|
234
236
|
}
|
|
235
237
|
|
|
236
238
|
.border-collapse {
|
|
@@ -254,7 +256,6 @@
|
|
|
254
256
|
.select-none {
|
|
255
257
|
-webkit-user-select: none;
|
|
256
258
|
-moz-user-select: none;
|
|
257
|
-
-ms-user-select: none;
|
|
258
259
|
user-select: none;
|
|
259
260
|
}
|
|
260
261
|
|
|
@@ -298,22 +299,22 @@
|
|
|
298
299
|
justify-content: space-between;
|
|
299
300
|
}
|
|
300
301
|
|
|
301
|
-
.gap-4 {
|
|
302
|
-
gap: 1rem;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
302
|
.gap-2 {
|
|
306
303
|
gap: 0.5rem;
|
|
307
304
|
}
|
|
308
305
|
|
|
309
|
-
.gap-6 {
|
|
310
|
-
gap: 1.5rem;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
306
|
.gap-3 {
|
|
314
307
|
gap: 0.75rem;
|
|
315
308
|
}
|
|
316
309
|
|
|
310
|
+
.gap-4 {
|
|
311
|
+
gap: 1rem;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.gap-6 {
|
|
315
|
+
gap: 1.5rem;
|
|
316
|
+
}
|
|
317
|
+
|
|
317
318
|
.gap-x-2 {
|
|
318
319
|
-moz-column-gap: 0.5rem;
|
|
319
320
|
column-gap: 0.5rem;
|
|
@@ -369,14 +370,6 @@
|
|
|
369
370
|
border-bottom-width: 0px;
|
|
370
371
|
}
|
|
371
372
|
|
|
372
|
-
.border-t {
|
|
373
|
-
border-top-width: 1px;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.border-t-0 {
|
|
377
|
-
border-top-width: 0px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
373
|
.border-b {
|
|
381
374
|
border-bottom-width: 1px;
|
|
382
375
|
}
|
|
@@ -389,13 +382,26 @@
|
|
|
389
382
|
border-right-width: 1px;
|
|
390
383
|
}
|
|
391
384
|
|
|
385
|
+
.border-t {
|
|
386
|
+
border-top-width: 1px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.border-t-0 {
|
|
390
|
+
border-top-width: 0px;
|
|
391
|
+
}
|
|
392
|
+
|
|
392
393
|
.border-solid {
|
|
393
394
|
border-style: solid;
|
|
394
395
|
}
|
|
395
396
|
|
|
396
|
-
.border-
|
|
397
|
+
.border-blue-400 {
|
|
397
398
|
--tw-border-opacity: 1;
|
|
398
|
-
border-color: rgb(
|
|
399
|
+
border-color: rgb(96 165 250 / var(--tw-border-opacity));
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.border-error {
|
|
403
|
+
--tw-border-opacity: 1;
|
|
404
|
+
border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
|
|
399
405
|
}
|
|
400
406
|
|
|
401
407
|
.border-gray-200 {
|
|
@@ -413,9 +419,9 @@
|
|
|
413
419
|
border-color: rgb(99 102 241 / var(--tw-border-opacity));
|
|
414
420
|
}
|
|
415
421
|
|
|
416
|
-
.border-
|
|
422
|
+
.border-zinc-300 {
|
|
417
423
|
--tw-border-opacity: 1;
|
|
418
|
-
border-color: rgb(
|
|
424
|
+
border-color: rgb(212 212 216 / var(--tw-border-opacity));
|
|
419
425
|
}
|
|
420
426
|
|
|
421
427
|
.bg-\[rgba\(255\2c 255\2c 255\2c \.7\)\] {
|
|
@@ -427,11 +433,6 @@
|
|
|
427
433
|
background-color: rgb(219 234 254 / var(--tw-bg-opacity));
|
|
428
434
|
}
|
|
429
435
|
|
|
430
|
-
.bg-white {
|
|
431
|
-
--tw-bg-opacity: 1;
|
|
432
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
433
|
-
}
|
|
434
|
-
|
|
435
436
|
.bg-indigo-50 {
|
|
436
437
|
--tw-bg-opacity: 1;
|
|
437
438
|
background-color: rgb(238 242 255 / var(--tw-bg-opacity));
|
|
@@ -442,17 +443,32 @@
|
|
|
442
443
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity));
|
|
443
444
|
}
|
|
444
445
|
|
|
445
|
-
.bg-
|
|
446
|
+
.bg-white {
|
|
446
447
|
--tw-bg-opacity: 1;
|
|
447
|
-
background-color: rgb(
|
|
448
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.p-4 {
|
|
452
|
+
padding: 1rem;
|
|
448
453
|
}
|
|
449
454
|
|
|
450
455
|
.p-6 {
|
|
451
456
|
padding: 1.5rem;
|
|
452
457
|
}
|
|
453
458
|
|
|
454
|
-
.
|
|
455
|
-
padding:
|
|
459
|
+
.px-10 {
|
|
460
|
+
padding-left: 2.5rem;
|
|
461
|
+
padding-right: 2.5rem;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.px-12 {
|
|
465
|
+
padding-left: 3rem;
|
|
466
|
+
padding-right: 3rem;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.px-2 {
|
|
470
|
+
padding-left: 0.5rem;
|
|
471
|
+
padding-right: 0.5rem;
|
|
456
472
|
}
|
|
457
473
|
|
|
458
474
|
.px-4 {
|
|
@@ -460,24 +476,19 @@
|
|
|
460
476
|
padding-right: 1rem;
|
|
461
477
|
}
|
|
462
478
|
|
|
463
|
-
.py-2 {
|
|
464
|
-
padding-top: 0.5rem;
|
|
465
|
-
padding-bottom: 0.5rem;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
479
|
.px-6 {
|
|
469
480
|
padding-left: 1.5rem;
|
|
470
481
|
padding-right: 1.5rem;
|
|
471
482
|
}
|
|
472
483
|
|
|
473
|
-
.px-
|
|
474
|
-
padding-left:
|
|
475
|
-
padding-right:
|
|
484
|
+
.px-8 {
|
|
485
|
+
padding-left: 2rem;
|
|
486
|
+
padding-right: 2rem;
|
|
476
487
|
}
|
|
477
488
|
|
|
478
|
-
.py-
|
|
479
|
-
padding-top:
|
|
480
|
-
padding-bottom:
|
|
489
|
+
.py-2 {
|
|
490
|
+
padding-top: 0.5rem;
|
|
491
|
+
padding-bottom: 0.5rem;
|
|
481
492
|
}
|
|
482
493
|
|
|
483
494
|
.py-20 {
|
|
@@ -485,24 +496,14 @@
|
|
|
485
496
|
padding-bottom: 5rem;
|
|
486
497
|
}
|
|
487
498
|
|
|
488
|
-
.px-8 {
|
|
489
|
-
padding-left: 2rem;
|
|
490
|
-
padding-right: 2rem;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.px-12 {
|
|
494
|
-
padding-left: 3rem;
|
|
495
|
-
padding-right: 3rem;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
499
|
.py-3 {
|
|
499
500
|
padding-top: 0.75rem;
|
|
500
501
|
padding-bottom: 0.75rem;
|
|
501
502
|
}
|
|
502
503
|
|
|
503
|
-
.
|
|
504
|
-
padding-
|
|
505
|
-
padding-
|
|
504
|
+
.py-4 {
|
|
505
|
+
padding-top: 1rem;
|
|
506
|
+
padding-bottom: 1rem;
|
|
506
507
|
}
|
|
507
508
|
|
|
508
509
|
.pt-4 {
|
|
@@ -513,17 +514,21 @@
|
|
|
513
514
|
text-align: center;
|
|
514
515
|
}
|
|
515
516
|
|
|
517
|
+
.indent-2 {
|
|
518
|
+
text-indent: 0.5rem;
|
|
519
|
+
}
|
|
520
|
+
|
|
516
521
|
.indent-2\.5 {
|
|
517
522
|
text-indent: 0.625rem;
|
|
518
523
|
}
|
|
519
524
|
|
|
520
|
-
.
|
|
521
|
-
|
|
525
|
+
.text-2xl {
|
|
526
|
+
font-size: 1.5rem;
|
|
527
|
+
line-height: 2rem;
|
|
522
528
|
}
|
|
523
529
|
|
|
524
|
-
.text
|
|
525
|
-
font-size:
|
|
526
|
-
line-height: 1.75rem;
|
|
530
|
+
.text-\[14px\] {
|
|
531
|
+
font-size: 14px;
|
|
527
532
|
}
|
|
528
533
|
|
|
529
534
|
.text-lg {
|
|
@@ -536,17 +541,9 @@
|
|
|
536
541
|
line-height: 1.25rem;
|
|
537
542
|
}
|
|
538
543
|
|
|
539
|
-
.text
|
|
540
|
-
font-size:
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
.text-2xl {
|
|
544
|
-
font-size: 1.5rem;
|
|
545
|
-
line-height: 2rem;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.font-semibold {
|
|
549
|
-
font-weight: 600;
|
|
544
|
+
.text-xl {
|
|
545
|
+
font-size: 1.25rem;
|
|
546
|
+
line-height: 1.75rem;
|
|
550
547
|
}
|
|
551
548
|
|
|
552
549
|
.font-bold {
|
|
@@ -557,23 +554,22 @@
|
|
|
557
554
|
font-weight: 500;
|
|
558
555
|
}
|
|
559
556
|
|
|
560
|
-
.
|
|
561
|
-
|
|
557
|
+
.font-semibold {
|
|
558
|
+
font-weight: 600;
|
|
562
559
|
}
|
|
563
560
|
|
|
564
|
-
.
|
|
565
|
-
|
|
566
|
-
color: rgb(82 82 91 / var(--tw-text-opacity));
|
|
561
|
+
.leading-6 {
|
|
562
|
+
line-height: 1.5rem;
|
|
567
563
|
}
|
|
568
564
|
|
|
569
|
-
.text
|
|
565
|
+
.text-\[\#A1A7C4\] {
|
|
570
566
|
--tw-text-opacity: 1;
|
|
571
|
-
color: rgb(
|
|
567
|
+
color: rgb(161 167 196 / var(--tw-text-opacity));
|
|
572
568
|
}
|
|
573
569
|
|
|
574
|
-
.text
|
|
570
|
+
.text-blue-400 {
|
|
575
571
|
--tw-text-opacity: 1;
|
|
576
|
-
color: rgb(
|
|
572
|
+
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
577
573
|
}
|
|
578
574
|
|
|
579
575
|
.text-blue-500 {
|
|
@@ -581,9 +577,9 @@
|
|
|
581
577
|
color: rgb(59 130 246 / var(--tw-text-opacity));
|
|
582
578
|
}
|
|
583
579
|
|
|
584
|
-
.text-
|
|
580
|
+
.text-error {
|
|
585
581
|
--tw-text-opacity: 1;
|
|
586
|
-
color:
|
|
582
|
+
color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
|
|
587
583
|
}
|
|
588
584
|
|
|
589
585
|
.text-gray-500 {
|
|
@@ -591,14 +587,19 @@
|
|
|
591
587
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
592
588
|
}
|
|
593
589
|
|
|
590
|
+
.text-gray-700 {
|
|
591
|
+
--tw-text-opacity: 1;
|
|
592
|
+
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
593
|
+
}
|
|
594
|
+
|
|
594
595
|
.text-indigo-600 {
|
|
595
596
|
--tw-text-opacity: 1;
|
|
596
597
|
color: rgb(79 70 229 / var(--tw-text-opacity));
|
|
597
598
|
}
|
|
598
599
|
|
|
599
|
-
.text-
|
|
600
|
+
.text-teal-400 {
|
|
600
601
|
--tw-text-opacity: 1;
|
|
601
|
-
color: rgb(
|
|
602
|
+
color: rgb(45 212 191 / var(--tw-text-opacity));
|
|
602
603
|
}
|
|
603
604
|
|
|
604
605
|
.text-teal-600 {
|
|
@@ -606,14 +607,18 @@
|
|
|
606
607
|
color: rgb(13 148 136 / var(--tw-text-opacity));
|
|
607
608
|
}
|
|
608
609
|
|
|
609
|
-
.text-
|
|
610
|
+
.text-zinc-600 {
|
|
610
611
|
--tw-text-opacity: 1;
|
|
611
|
-
color: rgb(
|
|
612
|
+
color: rgb(82 82 91 / var(--tw-text-opacity));
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.text-zinc-900 {
|
|
616
|
+
--tw-text-opacity: 1;
|
|
617
|
+
color: rgb(24 24 27 / var(--tw-text-opacity));
|
|
612
618
|
}
|
|
613
619
|
|
|
614
620
|
.underline {
|
|
615
|
-
|
|
616
|
-
text-decoration-line: underline;
|
|
621
|
+
text-decoration-line: underline;
|
|
617
622
|
}
|
|
618
623
|
|
|
619
624
|
.shadow {
|
|
@@ -671,14 +676,6 @@
|
|
|
671
676
|
cursor: pointer;
|
|
672
677
|
}
|
|
673
678
|
|
|
674
|
-
.modal::-webkit-backdrop {
|
|
675
|
-
opacity: 0;
|
|
676
|
-
isolation: isolate;
|
|
677
|
-
/* display: none; */
|
|
678
|
-
-webkit-transition: all 0s;
|
|
679
|
-
transition: all 0s;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
679
|
.modal::backdrop {
|
|
683
680
|
opacity: 0;
|
|
684
681
|
isolation: isolate;
|
|
@@ -686,13 +683,6 @@
|
|
|
686
683
|
transition: all 0s;
|
|
687
684
|
}
|
|
688
685
|
|
|
689
|
-
.modal.backdrop::-webkit-backdrop {
|
|
690
|
-
opacity: 0;
|
|
691
|
-
display: initial;
|
|
692
|
-
-webkit-transition: all 0s;
|
|
693
|
-
transition: all 0s;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
686
|
.modal.backdrop::backdrop {
|
|
697
687
|
opacity: 0;
|
|
698
688
|
display: initial;
|
|
@@ -700,10 +690,7 @@
|
|
|
700
690
|
}
|
|
701
691
|
|
|
702
692
|
.modal[open] {
|
|
703
|
-
|
|
704
|
-
fade-in var(--delay) forwards var(--animation-timing-func),
|
|
705
|
-
fly-in var(--delay) forwards var(--animation-timing-func);
|
|
706
|
-
animation:
|
|
693
|
+
animation:
|
|
707
694
|
fade-in var(--delay) forwards var(--animation-timing-func),
|
|
708
695
|
fly-in var(--delay) forwards var(--animation-timing-func);
|
|
709
696
|
pointer-events: auto;
|
|
@@ -711,10 +698,7 @@
|
|
|
711
698
|
}
|
|
712
699
|
|
|
713
700
|
.modal[closing] {
|
|
714
|
-
|
|
715
|
-
fade-out var(--delay) forwards var(--animation-timing-func),
|
|
716
|
-
fly-out var(--delay) forwards var(--animation-timing-func);
|
|
717
|
-
animation:
|
|
701
|
+
animation:
|
|
718
702
|
fade-out var(--delay) forwards var(--animation-timing-func),
|
|
719
703
|
fly-out var(--delay) forwards var(--animation-timing-func);
|
|
720
704
|
display: block;
|
|
@@ -722,38 +706,14 @@
|
|
|
722
706
|
pointer-events: none;
|
|
723
707
|
}
|
|
724
708
|
|
|
725
|
-
.modal[open]::-webkit-backdrop {
|
|
726
|
-
transform: none !important;
|
|
727
|
-
-webkit-animation: fade-in 500ms forwards;
|
|
728
|
-
animation: fade-in 500ms forwards;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
709
|
.modal[open]::backdrop {
|
|
732
710
|
transform: none !important;
|
|
733
|
-
|
|
734
|
-
animation: fade-in 500ms forwards;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.modal[closing]::-webkit-backdrop {
|
|
738
|
-
transform: none !important;
|
|
739
|
-
-webkit-animation: fade-out 500ms forwards;
|
|
740
|
-
animation: fade-out 500ms forwards;
|
|
711
|
+
animation: fade-in 500ms forwards;
|
|
741
712
|
}
|
|
742
713
|
|
|
743
714
|
.modal[closing]::backdrop {
|
|
744
715
|
transform: none !important;
|
|
745
|
-
|
|
746
|
-
animation: fade-out 500ms forwards;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
@-webkit-keyframes fade-in {
|
|
750
|
-
0% {
|
|
751
|
-
opacity: 0;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
100% {
|
|
755
|
-
opacity: 1;
|
|
756
|
-
}
|
|
716
|
+
animation: fade-out 500ms forwards;
|
|
757
717
|
}
|
|
758
718
|
|
|
759
719
|
@keyframes fade-in {
|
|
@@ -766,16 +726,6 @@
|
|
|
766
726
|
}
|
|
767
727
|
}
|
|
768
728
|
|
|
769
|
-
@-webkit-keyframes fade-out {
|
|
770
|
-
100% {
|
|
771
|
-
opacity: 0;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
0% {
|
|
775
|
-
opacity: 1;
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
|
-
|
|
779
729
|
@keyframes fade-out {
|
|
780
730
|
100% {
|
|
781
731
|
opacity: 0;
|
|
@@ -786,17 +736,6 @@
|
|
|
786
736
|
}
|
|
787
737
|
}
|
|
788
738
|
|
|
789
|
-
@-webkit-keyframes fly-in {
|
|
790
|
-
0% {
|
|
791
|
-
transform: translate3d(var(--x), var(--y), -200px) scale(0.01)
|
|
792
|
-
perspective(6em);
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
100% {
|
|
796
|
-
transform: translate3d(0%, 0%, 0px) scale(1) perspective(1em);
|
|
797
|
-
}
|
|
798
|
-
}
|
|
799
|
-
|
|
800
739
|
@keyframes fly-in {
|
|
801
740
|
0% {
|
|
802
741
|
transform: translate3d(var(--x), var(--y), -200px) scale(0.01)
|
|
@@ -808,17 +747,6 @@
|
|
|
808
747
|
}
|
|
809
748
|
}
|
|
810
749
|
|
|
811
|
-
@-webkit-keyframes fly-out {
|
|
812
|
-
0% {
|
|
813
|
-
transform: translate3d(0%, 0%, 0px) scale(1) perspective(1em);
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
100% {
|
|
817
|
-
transform: translate3d(var(--x), var(--y), -200px) scale(0.01)
|
|
818
|
-
perspective(6em);
|
|
819
|
-
}
|
|
820
|
-
}
|
|
821
|
-
|
|
822
750
|
@keyframes fly-out {
|
|
823
751
|
0% {
|
|
824
752
|
transform: translate3d(0%, 0%, 0px) scale(1) perspective(1em);
|
|
@@ -845,11 +773,6 @@
|
|
|
845
773
|
content: var(--tw-content);
|
|
846
774
|
}
|
|
847
775
|
|
|
848
|
-
.even\:bg-white:nth-child(even) {
|
|
849
|
-
--tw-bg-opacity: 1;
|
|
850
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
851
|
-
}
|
|
852
|
-
|
|
853
776
|
.hover\:bg-gray-50:hover {
|
|
854
777
|
--tw-bg-opacity: 1;
|
|
855
778
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
@@ -863,6 +786,11 @@
|
|
|
863
786
|
z-index: 20;
|
|
864
787
|
}
|
|
865
788
|
|
|
789
|
+
.focus\:border-error:focus {
|
|
790
|
+
--tw-border-opacity: 1;
|
|
791
|
+
border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
|
|
792
|
+
}
|
|
793
|
+
|
|
866
794
|
.focus\:ring-0:focus {
|
|
867
795
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
868
796
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -873,23 +801,6 @@
|
|
|
873
801
|
display: flex;
|
|
874
802
|
}
|
|
875
803
|
|
|
876
|
-
@media (prefers-color-scheme: dark) {
|
|
877
|
-
.dark\:bg-blue-900 {
|
|
878
|
-
--tw-bg-opacity: 1;
|
|
879
|
-
background-color: rgb(30 58 138 / var(--tw-bg-opacity));
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.dark\:text-blue-100 {
|
|
883
|
-
--tw-text-opacity: 1;
|
|
884
|
-
color: rgb(219 234 254 / var(--tw-text-opacity));
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.dark\:shadow-slate-600 {
|
|
888
|
-
--tw-shadow-color: #475569;
|
|
889
|
-
--tw-shadow: var(--tw-shadow-colored);
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
|
|
893
804
|
@media (min-width: 768px) {
|
|
894
805
|
.md\:flex {
|
|
895
806
|
display: flex;
|
|
@@ -934,3 +845,20 @@
|
|
|
934
845
|
display: none;
|
|
935
846
|
}
|
|
936
847
|
}
|
|
848
|
+
|
|
849
|
+
@media (prefers-color-scheme: dark) {
|
|
850
|
+
.dark\:bg-blue-900 {
|
|
851
|
+
--tw-bg-opacity: 1;
|
|
852
|
+
background-color: rgb(30 58 138 / var(--tw-bg-opacity));
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.dark\:text-blue-100 {
|
|
856
|
+
--tw-text-opacity: 1;
|
|
857
|
+
color: rgb(219 234 254 / var(--tw-text-opacity));
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.dark\:shadow-slate-600 {
|
|
861
|
+
--tw-shadow-color: #475569;
|
|
862
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
863
|
+
}
|
|
864
|
+
}
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
modal.showModal();
|
|
12
12
|
modal.addEventListener("modal:close", (evt2) => {
|
|
13
13
|
modal.setAttribute("closing", "");
|
|
14
|
-
modal.addEventListener(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
modal.addEventListener(
|
|
15
|
+
"animationend",
|
|
16
|
+
() => {
|
|
17
|
+
modal.removeAttribute("closing");
|
|
18
|
+
modal.close();
|
|
19
|
+
},
|
|
20
|
+
{ once: true }
|
|
21
|
+
);
|
|
18
22
|
}, {
|
|
19
23
|
once: true
|
|
20
24
|
});
|
|
@@ -45,7 +49,7 @@
|
|
|
45
49
|
}
|
|
46
50
|
});
|
|
47
51
|
}
|
|
48
|
-
if (attrs[i].name
|
|
52
|
+
if ("darkmoon-receive" === attrs[i].name) {
|
|
49
53
|
const [phxEvent, callbackName] = attrs[i].value.split(";");
|
|
50
54
|
this.handleEvent(phxEvent, (payload) => {
|
|
51
55
|
this.el[callbackName]?.(payload);
|