phoenix_duskmoon 4.6.4 → 4.6.6
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 +24 -0
- package/package.json +1 -1
- package/priv/static/phoenix_duskmoon.css +94 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## [4.6.6](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.5...v4.6.6) (2024-08-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add input toggle and storybook. ([ad531ee](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/ad531eec357abbc04be954a12989df54fdd9ac22))
|
|
7
|
+
* Fix format. ([5da5d3e](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/5da5d3ed2ecc930b75f68dc05764858e5e64c7e3))
|
|
8
|
+
* Fix format. ([b8fbb53](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/b8fbb53f31ac6c0c88effc1b9ef05103f0da3cda))
|
|
9
|
+
* Fix leftmenu. ([0a9591f](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/0a9591f8c417b02620720fb7442187a63ca48c1c))
|
|
10
|
+
* Fix link and storybook. ([79b76fd](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/79b76fdd7cd7e1b7d417b472d070df495c5cd26e))
|
|
11
|
+
* Fix table. ([6ea2b1c](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/6ea2b1c5b75a51bf62b07959a30927ca25970bce))
|
|
12
|
+
* Ignore warning as error. ([4e839c0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/4e839c0017c1af1f990ad5a9473b51c61b4dbe07))
|
|
13
|
+
|
|
14
|
+
## [4.6.5](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.4...v4.6.5) (2024-08-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* Add dm_pagination_thin with loading and jumper. ([d1c013a](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/d1c013ad2908746c514bb82e6bdaf3a2bbc1500d))
|
|
20
|
+
* Add flash. ([2c1594c](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/2c1594c5b307c0ce09fbc6654efcb905d536a6d8))
|
|
21
|
+
* Fix style. ([2e44767](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/2e44767209047eea69324f47dacc81341a4f6bed))
|
|
22
|
+
* Fix style. ([a9f8b9c](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a9f8b9c5f1c2404ec9212eea5d686a647e8929ca))
|
|
23
|
+
* Fix. ([a1bb3d0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a1bb3d03739819b25b9c2f94cb32f596ed07f714))
|
|
24
|
+
|
|
1
25
|
## [4.6.4](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.6.3...v4.6.4) (2024-07-10)
|
|
2
26
|
|
|
3
27
|
|
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
|
}
|
|
@@ -166,10 +186,6 @@
|
|
|
166
186
|
height: 100%;
|
|
167
187
|
}
|
|
168
188
|
|
|
169
|
-
.min-h-\[200px\] {
|
|
170
|
-
min-height: 200px;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
189
|
.min-h-fit {
|
|
174
190
|
min-height: -moz-fit-content;
|
|
175
191
|
min-height: fit-content;
|
|
@@ -183,6 +199,10 @@
|
|
|
183
199
|
width: 4rem;
|
|
184
200
|
}
|
|
185
201
|
|
|
202
|
+
.w-3 {
|
|
203
|
+
width: 0.75rem;
|
|
204
|
+
}
|
|
205
|
+
|
|
186
206
|
.w-4 {
|
|
187
207
|
width: 1rem;
|
|
188
208
|
}
|
|
@@ -195,16 +215,24 @@
|
|
|
195
215
|
width: 2rem;
|
|
196
216
|
}
|
|
197
217
|
|
|
218
|
+
.w-80 {
|
|
219
|
+
width: 20rem;
|
|
220
|
+
}
|
|
221
|
+
|
|
198
222
|
.w-\[200px\] {
|
|
199
223
|
width: 200px;
|
|
200
224
|
}
|
|
201
225
|
|
|
226
|
+
.w-auto {
|
|
227
|
+
width: auto;
|
|
228
|
+
}
|
|
229
|
+
|
|
202
230
|
.w-full {
|
|
203
231
|
width: 100%;
|
|
204
232
|
}
|
|
205
233
|
|
|
206
|
-
.min-w
|
|
207
|
-
min-width:
|
|
234
|
+
.min-w-36 {
|
|
235
|
+
min-width: 9rem;
|
|
208
236
|
}
|
|
209
237
|
|
|
210
238
|
.flex-1 {
|
|
@@ -233,10 +261,24 @@
|
|
|
233
261
|
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
262
|
}
|
|
235
263
|
|
|
264
|
+
@keyframes spin {
|
|
265
|
+
to {
|
|
266
|
+
transform: rotate(360deg);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.animate-spin {
|
|
271
|
+
animation: spin 1s linear infinite;
|
|
272
|
+
}
|
|
273
|
+
|
|
236
274
|
.cursor-pointer {
|
|
237
275
|
cursor: pointer;
|
|
238
276
|
}
|
|
239
277
|
|
|
278
|
+
.cursor-wait {
|
|
279
|
+
cursor: wait;
|
|
280
|
+
}
|
|
281
|
+
|
|
240
282
|
.select-none {
|
|
241
283
|
-webkit-user-select: none;
|
|
242
284
|
-moz-user-select: none;
|
|
@@ -255,6 +297,14 @@
|
|
|
255
297
|
flex-direction: column;
|
|
256
298
|
}
|
|
257
299
|
|
|
300
|
+
.flex-wrap-reverse {
|
|
301
|
+
flex-wrap: wrap-reverse;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.flex-nowrap {
|
|
305
|
+
flex-wrap: nowrap;
|
|
306
|
+
}
|
|
307
|
+
|
|
258
308
|
.items-start {
|
|
259
309
|
align-items: flex-start;
|
|
260
310
|
}
|
|
@@ -279,6 +329,14 @@
|
|
|
279
329
|
justify-content: space-between;
|
|
280
330
|
}
|
|
281
331
|
|
|
332
|
+
.gap-1 {
|
|
333
|
+
gap: 0.25rem;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.gap-1\.5 {
|
|
337
|
+
gap: 0.375rem;
|
|
338
|
+
}
|
|
339
|
+
|
|
282
340
|
.gap-2 {
|
|
283
341
|
gap: 0.5rem;
|
|
284
342
|
}
|
|
@@ -305,6 +363,10 @@
|
|
|
305
363
|
align-self: center;
|
|
306
364
|
}
|
|
307
365
|
|
|
366
|
+
.whitespace-nowrap {
|
|
367
|
+
white-space: nowrap;
|
|
368
|
+
}
|
|
369
|
+
|
|
308
370
|
.rounded-lg {
|
|
309
371
|
border-radius: 0.5rem;
|
|
310
372
|
}
|
|
@@ -400,9 +462,9 @@
|
|
|
400
462
|
background-color: rgb(238 242 255 / var(--tw-bg-opacity));
|
|
401
463
|
}
|
|
402
464
|
|
|
403
|
-
.bg-
|
|
465
|
+
.bg-primary {
|
|
404
466
|
--tw-bg-opacity: 1;
|
|
405
|
-
background-color:
|
|
467
|
+
background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
|
|
406
468
|
}
|
|
407
469
|
|
|
408
470
|
.bg-white {
|
|
@@ -464,14 +526,14 @@
|
|
|
464
526
|
padding-bottom: 1rem;
|
|
465
527
|
}
|
|
466
528
|
|
|
467
|
-
.pt-4 {
|
|
468
|
-
padding-top: 1rem;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
529
|
.text-center {
|
|
472
530
|
text-align: center;
|
|
473
531
|
}
|
|
474
532
|
|
|
533
|
+
.text-right {
|
|
534
|
+
text-align: right;
|
|
535
|
+
}
|
|
536
|
+
|
|
475
537
|
.indent-2 {
|
|
476
538
|
text-indent: 0.5rem;
|
|
477
539
|
}
|
|
@@ -504,6 +566,11 @@
|
|
|
504
566
|
line-height: 1.75rem;
|
|
505
567
|
}
|
|
506
568
|
|
|
569
|
+
.text-xs {
|
|
570
|
+
font-size: 0.75rem;
|
|
571
|
+
line-height: 1rem;
|
|
572
|
+
}
|
|
573
|
+
|
|
507
574
|
.font-bold {
|
|
508
575
|
font-weight: 700;
|
|
509
576
|
}
|
|
@@ -516,6 +583,10 @@
|
|
|
516
583
|
font-weight: 600;
|
|
517
584
|
}
|
|
518
585
|
|
|
586
|
+
.leading-5 {
|
|
587
|
+
line-height: 1.25rem;
|
|
588
|
+
}
|
|
589
|
+
|
|
519
590
|
.leading-6 {
|
|
520
591
|
line-height: 1.5rem;
|
|
521
592
|
}
|
|
@@ -555,6 +626,11 @@
|
|
|
555
626
|
color: rgb(79 70 229 / var(--tw-text-opacity));
|
|
556
627
|
}
|
|
557
628
|
|
|
629
|
+
.text-primary-content {
|
|
630
|
+
--tw-text-opacity: 1;
|
|
631
|
+
color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
|
|
632
|
+
}
|
|
633
|
+
|
|
558
634
|
.text-teal-400 {
|
|
559
635
|
--tw-text-opacity: 1;
|
|
560
636
|
color: rgb(45 212 191 / var(--tw-text-opacity));
|
|
@@ -732,6 +808,12 @@
|
|
|
732
808
|
display: flex;
|
|
733
809
|
}
|
|
734
810
|
|
|
811
|
+
@media (min-width: 640px) {
|
|
812
|
+
.sm\:w-96 {
|
|
813
|
+
width: 24rem;
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
|
|
735
817
|
@media (min-width: 768px) {
|
|
736
818
|
.md\:flex {
|
|
737
819
|
display: flex;
|