phoenix_duskmoon 4.3.1 → 4.4.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 CHANGED
@@ -1,3 +1,18 @@
1
+ # [4.4.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.2...v4.4.0) (2023-04-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add responsive feature to table, fix let to :let, fix tab styles. ([037ca1b](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/037ca1bd87204b1b85a6fd98a6c7cf73cd2be679))
7
+ * Rename table rows to data, change actionbar struct. ([9cb0c85](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/9cb0c858a6c322a4c82d1cd5c58ee7b2691e3fe1))
8
+
9
+ ## [4.3.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.1...v4.3.2) (2023-04-17)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Fix docker. ([1cdcdce](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/1cdcdced71cf192347ae9fef9cd056e43629a1d0))
15
+
1
16
  ## [4.3.1](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.0...v4.3.1) (2023-04-17)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phoenix_duskmoon",
3
- "version": "4.3.1",
3
+ "version": "4.4.0",
4
4
  "main": "./priv/static/phoenix_duskmoon.js",
5
5
  "exports": {
6
6
  ".": "./priv/static/phoenix_duskmoon.js",
@@ -26,6 +26,11 @@
26
26
  position: relative;
27
27
  }
28
28
 
29
+ .sticky {
30
+ position: -webkit-sticky;
31
+ position: sticky;
32
+ }
33
+
29
34
  .top-14 {
30
35
  top: 3.5rem;
31
36
  }
@@ -38,6 +43,10 @@
38
43
  top: 0.5rem;
39
44
  }
40
45
 
46
+ .top-0 {
47
+ top: 0px;
48
+ }
49
+
41
50
  .isolate {
42
51
  isolation: isolate;
43
52
  }
@@ -94,6 +103,10 @@
94
103
  display: table;
95
104
  }
96
105
 
106
+ .grid {
107
+ display: grid;
108
+ }
109
+
97
110
  .hidden {
98
111
  display: none;
99
112
  }
@@ -130,14 +143,6 @@
130
143
  height: 1.25rem;
131
144
  }
132
145
 
133
- .h-\[34px\] {
134
- height: 34px;
135
- }
136
-
137
- .h-\[40px\] {
138
- height: 40px;
139
- }
140
-
141
146
  .min-h-\[200px\] {
142
147
  min-height: 200px;
143
148
  }
@@ -217,6 +222,10 @@
217
222
  user-select: none;
218
223
  }
219
224
 
225
+ .grid-cols-\[6em_auto\] {
226
+ grid-template-columns: 6em auto;
227
+ }
228
+
220
229
  .flex-row {
221
230
  flex-direction: row;
222
231
  }
@@ -257,6 +266,15 @@
257
266
  gap: 0.5rem;
258
267
  }
259
268
 
269
+ .gap-x-2 {
270
+ -moz-column-gap: 0.5rem;
271
+ column-gap: 0.5rem;
272
+ }
273
+
274
+ .gap-y-4 {
275
+ row-gap: 1rem;
276
+ }
277
+
260
278
  .-space-x-px > :not([hidden]) ~ :not([hidden]) {
261
279
  --tw-space-x-reverse: 0;
262
280
  margin-right: calc(-1px * var(--tw-space-x-reverse));
@@ -424,10 +442,6 @@
424
442
  padding-top: 1rem;
425
443
  }
426
444
 
427
- .text-left {
428
- text-align: left;
429
- }
430
-
431
445
  .text-center {
432
446
  text-align: center;
433
447
  }
@@ -510,6 +524,16 @@
510
524
  color: rgb(96 165 250 / var(--tw-text-opacity));
511
525
  }
512
526
 
527
+ .text-teal-600 {
528
+ --tw-text-opacity: 1;
529
+ color: rgb(13 148 136 / var(--tw-text-opacity));
530
+ }
531
+
532
+ .text-teal-400 {
533
+ --tw-text-opacity: 1;
534
+ color: rgb(45 212 191 / var(--tw-text-opacity));
535
+ }
536
+
513
537
  .underline {
514
538
  -webkit-text-decoration-line: underline;
515
539
  text-decoration-line: underline;
@@ -729,6 +753,16 @@
729
753
  }
730
754
  }
731
755
 
756
+ .before\:font-bold::before {
757
+ content: var(--tw-content);
758
+ font-weight: 700;
759
+ }
760
+
761
+ .before\:content-\[attr\(data-label\)\]::before {
762
+ --tw-content: attr(data-label);
763
+ content: var(--tw-content);
764
+ }
765
+
732
766
  .after\:content-\[\'\:\'\]::after {
733
767
  --tw-content: ':';
734
768
  content: var(--tw-content);
@@ -778,9 +812,22 @@
778
812
  display: inline-flex;
779
813
  }
780
814
 
815
+ .md\:table-cell {
816
+ display: table-cell;
817
+ }
818
+
819
+ .md\:table-header-group {
820
+ display: table-header-group;
821
+ }
822
+
781
823
  .md\:hidden {
782
824
  display: none;
783
825
  }
826
+
827
+ .md\:before\:hidden::before {
828
+ content: var(--tw-content);
829
+ display: none;
830
+ }
784
831
  }
785
832
 
786
833
  @media (min-width: 1024px) {