phoenix_duskmoon 4.6.3 → 4.6.5
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 +18 -0
- package/package.json +1 -1
- package/priv/static/phoenix_duskmoon.css +95 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [4.6.5](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.4...v4.6.5) (2024-08-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add dm_pagination_thin with loading and jumper. ([d1c013a](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/d1c013ad2908746c514bb82e6bdaf3a2bbc1500d))
|
|
7
|
+
* Add flash. ([2c1594c](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/2c1594c5b307c0ce09fbc6654efcb905d536a6d8))
|
|
8
|
+
* Fix style. ([2e44767](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/2e44767209047eea69324f47dacc81341a4f6bed))
|
|
9
|
+
* Fix style. ([a9f8b9c](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a9f8b9c5f1c2404ec9212eea5d686a647e8929ca))
|
|
10
|
+
* Fix. ([a1bb3d0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a1bb3d03739819b25b9c2f94cb32f596ed07f714))
|
|
11
|
+
|
|
12
|
+
## [4.6.4](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.3...v4.6.4) (2024-07-10)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Fix table border. ([55d0596](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/55d0596e20372fedc7bf0d82f87694b9dc74d030))
|
|
18
|
+
|
|
1
19
|
## [4.6.3](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.2...v4.6.3) (2024-07-09)
|
|
2
20
|
|
|
3
21
|
|
package/package.json
CHANGED
|
@@ -70,6 +70,10 @@
|
|
|
70
70
|
z-index: 50;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
.z-\[1000\] {
|
|
74
|
+
z-index: 1000;
|
|
75
|
+
}
|
|
76
|
+
|
|
73
77
|
.mx-12 {
|
|
74
78
|
margin-left: 3rem;
|
|
75
79
|
margin-right: 3rem;
|
|
@@ -90,6 +94,10 @@
|
|
|
90
94
|
margin-bottom: 0.5rem;
|
|
91
95
|
}
|
|
92
96
|
|
|
97
|
+
.ml-1 {
|
|
98
|
+
margin-left: 0.25rem;
|
|
99
|
+
}
|
|
100
|
+
|
|
93
101
|
.mr-1 {
|
|
94
102
|
margin-right: 0.25rem;
|
|
95
103
|
}
|
|
@@ -110,6 +118,14 @@
|
|
|
110
118
|
margin-top: 0.75rem;
|
|
111
119
|
}
|
|
112
120
|
|
|
121
|
+
.block {
|
|
122
|
+
display: block;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.inline {
|
|
126
|
+
display: inline;
|
|
127
|
+
}
|
|
128
|
+
|
|
113
129
|
.flex {
|
|
114
130
|
display: flex;
|
|
115
131
|
}
|
|
@@ -150,6 +166,10 @@
|
|
|
150
166
|
height: 4rem;
|
|
151
167
|
}
|
|
152
168
|
|
|
169
|
+
.h-3 {
|
|
170
|
+
height: 0.75rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
153
173
|
.h-4 {
|
|
154
174
|
height: 1rem;
|
|
155
175
|
}
|
|
@@ -183,6 +203,10 @@
|
|
|
183
203
|
width: 4rem;
|
|
184
204
|
}
|
|
185
205
|
|
|
206
|
+
.w-3 {
|
|
207
|
+
width: 0.75rem;
|
|
208
|
+
}
|
|
209
|
+
|
|
186
210
|
.w-4 {
|
|
187
211
|
width: 1rem;
|
|
188
212
|
}
|
|
@@ -195,10 +219,18 @@
|
|
|
195
219
|
width: 2rem;
|
|
196
220
|
}
|
|
197
221
|
|
|
222
|
+
.w-80 {
|
|
223
|
+
width: 20rem;
|
|
224
|
+
}
|
|
225
|
+
|
|
198
226
|
.w-\[200px\] {
|
|
199
227
|
width: 200px;
|
|
200
228
|
}
|
|
201
229
|
|
|
230
|
+
.w-auto {
|
|
231
|
+
width: auto;
|
|
232
|
+
}
|
|
233
|
+
|
|
202
234
|
.w-full {
|
|
203
235
|
width: 100%;
|
|
204
236
|
}
|
|
@@ -233,10 +265,24 @@
|
|
|
233
265
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
234
266
|
}
|
|
235
267
|
|
|
268
|
+
@keyframes spin {
|
|
269
|
+
to {
|
|
270
|
+
transform: rotate(360deg);
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.animate-spin {
|
|
275
|
+
animation: spin 1s linear infinite;
|
|
276
|
+
}
|
|
277
|
+
|
|
236
278
|
.cursor-pointer {
|
|
237
279
|
cursor: pointer;
|
|
238
280
|
}
|
|
239
281
|
|
|
282
|
+
.cursor-wait {
|
|
283
|
+
cursor: wait;
|
|
284
|
+
}
|
|
285
|
+
|
|
240
286
|
.select-none {
|
|
241
287
|
-webkit-user-select: none;
|
|
242
288
|
-moz-user-select: none;
|
|
@@ -255,6 +301,14 @@
|
|
|
255
301
|
flex-direction: column;
|
|
256
302
|
}
|
|
257
303
|
|
|
304
|
+
.flex-wrap-reverse {
|
|
305
|
+
flex-wrap: wrap-reverse;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.flex-nowrap {
|
|
309
|
+
flex-wrap: nowrap;
|
|
310
|
+
}
|
|
311
|
+
|
|
258
312
|
.items-start {
|
|
259
313
|
align-items: flex-start;
|
|
260
314
|
}
|
|
@@ -279,6 +333,14 @@
|
|
|
279
333
|
justify-content: space-between;
|
|
280
334
|
}
|
|
281
335
|
|
|
336
|
+
.gap-1 {
|
|
337
|
+
gap: 0.25rem;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.gap-1\.5 {
|
|
341
|
+
gap: 0.375rem;
|
|
342
|
+
}
|
|
343
|
+
|
|
282
344
|
.gap-2 {
|
|
283
345
|
gap: 0.5rem;
|
|
284
346
|
}
|
|
@@ -305,6 +367,10 @@
|
|
|
305
367
|
align-self: center;
|
|
306
368
|
}
|
|
307
369
|
|
|
370
|
+
.whitespace-nowrap {
|
|
371
|
+
white-space: nowrap;
|
|
372
|
+
}
|
|
373
|
+
|
|
308
374
|
.rounded-lg {
|
|
309
375
|
border-radius: 0.5rem;
|
|
310
376
|
}
|
|
@@ -400,6 +466,11 @@
|
|
|
400
466
|
background-color: rgb(238 242 255 / var(--tw-bg-opacity));
|
|
401
467
|
}
|
|
402
468
|
|
|
469
|
+
.bg-primary {
|
|
470
|
+
--tw-bg-opacity: 1;
|
|
471
|
+
background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
|
|
472
|
+
}
|
|
473
|
+
|
|
403
474
|
.bg-slate-100 {
|
|
404
475
|
--tw-bg-opacity: 1;
|
|
405
476
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity));
|
|
@@ -472,6 +543,10 @@
|
|
|
472
543
|
text-align: center;
|
|
473
544
|
}
|
|
474
545
|
|
|
546
|
+
.text-right {
|
|
547
|
+
text-align: right;
|
|
548
|
+
}
|
|
549
|
+
|
|
475
550
|
.indent-2 {
|
|
476
551
|
text-indent: 0.5rem;
|
|
477
552
|
}
|
|
@@ -504,6 +579,11 @@
|
|
|
504
579
|
line-height: 1.75rem;
|
|
505
580
|
}
|
|
506
581
|
|
|
582
|
+
.text-xs {
|
|
583
|
+
font-size: 0.75rem;
|
|
584
|
+
line-height: 1rem;
|
|
585
|
+
}
|
|
586
|
+
|
|
507
587
|
.font-bold {
|
|
508
588
|
font-weight: 700;
|
|
509
589
|
}
|
|
@@ -516,6 +596,10 @@
|
|
|
516
596
|
font-weight: 600;
|
|
517
597
|
}
|
|
518
598
|
|
|
599
|
+
.leading-5 {
|
|
600
|
+
line-height: 1.25rem;
|
|
601
|
+
}
|
|
602
|
+
|
|
519
603
|
.leading-6 {
|
|
520
604
|
line-height: 1.5rem;
|
|
521
605
|
}
|
|
@@ -555,6 +639,11 @@
|
|
|
555
639
|
color: rgb(79 70 229 / var(--tw-text-opacity));
|
|
556
640
|
}
|
|
557
641
|
|
|
642
|
+
.text-primary-content {
|
|
643
|
+
--tw-text-opacity: 1;
|
|
644
|
+
color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
|
|
645
|
+
}
|
|
646
|
+
|
|
558
647
|
.text-teal-400 {
|
|
559
648
|
--tw-text-opacity: 1;
|
|
560
649
|
color: rgb(45 212 191 / var(--tw-text-opacity));
|
|
@@ -732,6 +821,12 @@
|
|
|
732
821
|
display: flex;
|
|
733
822
|
}
|
|
734
823
|
|
|
824
|
+
@media (min-width: 640px) {
|
|
825
|
+
.sm\:w-96 {
|
|
826
|
+
width: 24rem;
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
|
|
735
830
|
@media (min-width: 768px) {
|
|
736
831
|
.md\:flex {
|
|
737
832
|
display: flex;
|