phoenix_duskmoon 4.4.3 → 4.5.0
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 +1 -1
- package/priv/static/phoenix_duskmoon.css +72 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [4.5.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.4...v4.5.0) (2024-07-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Add new form module, async card. ([81cfba2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/81cfba2866351d3e249d567bdefb683a636ee66b))
|
|
7
|
+
|
|
8
|
+
## [4.4.4](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.3...v4.4.4) (2024-05-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Add stream support to table. ([6692ef5](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/6692ef5481d414d0d95aeb91b91e25f3548c0637))
|
|
14
|
+
* Add stream support to table. ([bdebd74](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/bdebd74b351befc5e79d695cb011aa6634024381))
|
|
15
|
+
|
|
1
16
|
## [4.4.3](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.2...v4.4.3) (2024-05-15)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -99,6 +99,22 @@
|
|
|
99
99
|
margin-bottom: 1rem;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
.mt-2 {
|
|
103
|
+
margin-top: 0.5rem;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.mt-3 {
|
|
107
|
+
margin-top: 0.75rem;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.mt-0\.5 {
|
|
111
|
+
margin-top: 0.125rem;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.mt-0 {
|
|
115
|
+
margin-top: 0px;
|
|
116
|
+
}
|
|
117
|
+
|
|
102
118
|
.mr-1 {
|
|
103
119
|
margin-right: 0.25rem;
|
|
104
120
|
}
|
|
@@ -147,14 +163,14 @@
|
|
|
147
163
|
height: 1rem;
|
|
148
164
|
}
|
|
149
165
|
|
|
150
|
-
.h-12 {
|
|
151
|
-
height: 3rem;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
166
|
.h-5 {
|
|
155
167
|
height: 1.25rem;
|
|
156
168
|
}
|
|
157
169
|
|
|
170
|
+
.h-12 {
|
|
171
|
+
height: 3rem;
|
|
172
|
+
}
|
|
173
|
+
|
|
158
174
|
.min-h-\[200px\] {
|
|
159
175
|
min-height: 200px;
|
|
160
176
|
}
|
|
@@ -181,6 +197,10 @@
|
|
|
181
197
|
width: 1rem;
|
|
182
198
|
}
|
|
183
199
|
|
|
200
|
+
.w-5 {
|
|
201
|
+
width: 1.25rem;
|
|
202
|
+
}
|
|
203
|
+
|
|
184
204
|
.w-16 {
|
|
185
205
|
width: 4rem;
|
|
186
206
|
}
|
|
@@ -189,22 +209,26 @@
|
|
|
189
209
|
width: 200px;
|
|
190
210
|
}
|
|
191
211
|
|
|
192
|
-
.w-5 {
|
|
193
|
-
width: 1.25rem;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
212
|
.min-w-\[420px\] {
|
|
197
213
|
min-width: 420px;
|
|
198
214
|
}
|
|
199
215
|
|
|
200
|
-
.
|
|
201
|
-
|
|
216
|
+
.max-w-xs {
|
|
217
|
+
max-width: 20rem;
|
|
202
218
|
}
|
|
203
219
|
|
|
204
220
|
.flex-none {
|
|
205
221
|
flex: none;
|
|
206
222
|
}
|
|
207
223
|
|
|
224
|
+
.flex-1 {
|
|
225
|
+
flex: 1 1 0%;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.shrink-0 {
|
|
229
|
+
flex-shrink: 0;
|
|
230
|
+
}
|
|
231
|
+
|
|
208
232
|
.table-fixed {
|
|
209
233
|
table-layout: fixed;
|
|
210
234
|
}
|
|
@@ -282,6 +306,14 @@
|
|
|
282
306
|
gap: 0.5rem;
|
|
283
307
|
}
|
|
284
308
|
|
|
309
|
+
.gap-6 {
|
|
310
|
+
gap: 1.5rem;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.gap-3 {
|
|
314
|
+
gap: 0.75rem;
|
|
315
|
+
}
|
|
316
|
+
|
|
285
317
|
.gap-x-2 {
|
|
286
318
|
-moz-column-gap: 0.5rem;
|
|
287
319
|
column-gap: 0.5rem;
|
|
@@ -301,6 +333,10 @@
|
|
|
301
333
|
align-self: center;
|
|
302
334
|
}
|
|
303
335
|
|
|
336
|
+
.rounded {
|
|
337
|
+
border-radius: 0.25rem;
|
|
338
|
+
}
|
|
339
|
+
|
|
304
340
|
.rounded-lg {
|
|
305
341
|
border-radius: 0.5rem;
|
|
306
342
|
}
|
|
@@ -357,6 +393,11 @@
|
|
|
357
393
|
border-style: solid;
|
|
358
394
|
}
|
|
359
395
|
|
|
396
|
+
.border-zinc-300 {
|
|
397
|
+
--tw-border-opacity: 1;
|
|
398
|
+
border-color: rgb(212 212 216 / var(--tw-border-opacity));
|
|
399
|
+
}
|
|
400
|
+
|
|
360
401
|
.border-gray-200 {
|
|
361
402
|
--tw-border-opacity: 1;
|
|
362
403
|
border-color: rgb(229 231 235 / var(--tw-border-opacity));
|
|
@@ -490,6 +531,11 @@
|
|
|
490
531
|
line-height: 1.75rem;
|
|
491
532
|
}
|
|
492
533
|
|
|
534
|
+
.text-sm {
|
|
535
|
+
font-size: 0.875rem;
|
|
536
|
+
line-height: 1.25rem;
|
|
537
|
+
}
|
|
538
|
+
|
|
493
539
|
.text-\[14px\] {
|
|
494
540
|
font-size: 14px;
|
|
495
541
|
}
|
|
@@ -499,11 +545,6 @@
|
|
|
499
545
|
line-height: 2rem;
|
|
500
546
|
}
|
|
501
547
|
|
|
502
|
-
.text-sm {
|
|
503
|
-
font-size: 0.875rem;
|
|
504
|
-
line-height: 1.25rem;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
548
|
.font-semibold {
|
|
508
549
|
font-weight: 600;
|
|
509
550
|
}
|
|
@@ -520,6 +561,16 @@
|
|
|
520
561
|
line-height: 1.5rem;
|
|
521
562
|
}
|
|
522
563
|
|
|
564
|
+
.text-zinc-600 {
|
|
565
|
+
--tw-text-opacity: 1;
|
|
566
|
+
color: rgb(82 82 91 / var(--tw-text-opacity));
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.text-zinc-900 {
|
|
570
|
+
--tw-text-opacity: 1;
|
|
571
|
+
color: rgb(24 24 27 / var(--tw-text-opacity));
|
|
572
|
+
}
|
|
573
|
+
|
|
523
574
|
.text-\[\#A1A7C4\] {
|
|
524
575
|
--tw-text-opacity: 1;
|
|
525
576
|
color: rgb(161 167 196 / var(--tw-text-opacity));
|
|
@@ -812,6 +863,12 @@
|
|
|
812
863
|
z-index: 20;
|
|
813
864
|
}
|
|
814
865
|
|
|
866
|
+
.focus\:ring-0:focus {
|
|
867
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
868
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
869
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
870
|
+
}
|
|
871
|
+
|
|
815
872
|
.peer:checked ~ .peer-checked\:flex {
|
|
816
873
|
display: flex;
|
|
817
874
|
}
|