@powerhousedao/common 1.10.20-dev.0 → 1.10.22-dev.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/dist/editors/styles.css +63 -53
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/dist/editors/styles.css
CHANGED
|
@@ -1,55 +1,6 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.2 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
@layer theme, base, components, utilities;
|
|
3
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
4
|
-
@layer base {
|
|
5
|
-
*, ::before, ::after, ::backdrop {
|
|
6
|
-
--tw-rotate-x: rotateX(0);
|
|
7
|
-
--tw-rotate-y: rotateY(0);
|
|
8
|
-
--tw-rotate-z: rotateZ(0);
|
|
9
|
-
--tw-skew-x: skewX(0);
|
|
10
|
-
--tw-skew-y: skewY(0);
|
|
11
|
-
--tw-border-style: solid;
|
|
12
|
-
--tw-font-weight: initial;
|
|
13
|
-
--tw-translate-x: 0;
|
|
14
|
-
--tw-translate-y: 0;
|
|
15
|
-
--tw-translate-z: 0;
|
|
16
|
-
--tw-scale-x: 1;
|
|
17
|
-
--tw-scale-y: 1;
|
|
18
|
-
--tw-scale-z: 1;
|
|
19
|
-
--tw-space-y-reverse: 0;
|
|
20
|
-
--tw-space-x-reverse: 0;
|
|
21
|
-
--tw-divide-y-reverse: 0;
|
|
22
|
-
--tw-leading: initial;
|
|
23
|
-
--tw-tracking: initial;
|
|
24
|
-
--tw-shadow: 0 0 #0000;
|
|
25
|
-
--tw-shadow-color: initial;
|
|
26
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
27
|
-
--tw-inset-shadow-color: initial;
|
|
28
|
-
--tw-ring-color: initial;
|
|
29
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
30
|
-
--tw-inset-ring-color: initial;
|
|
31
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
32
|
-
--tw-ring-inset: initial;
|
|
33
|
-
--tw-ring-offset-width: 0px;
|
|
34
|
-
--tw-ring-offset-color: #fff;
|
|
35
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
36
|
-
--tw-outline-style: solid;
|
|
37
|
-
--tw-blur: initial;
|
|
38
|
-
--tw-brightness: initial;
|
|
39
|
-
--tw-contrast: initial;
|
|
40
|
-
--tw-grayscale: initial;
|
|
41
|
-
--tw-hue-rotate: initial;
|
|
42
|
-
--tw-invert: initial;
|
|
43
|
-
--tw-opacity: initial;
|
|
44
|
-
--tw-saturate: initial;
|
|
45
|
-
--tw-sepia: initial;
|
|
46
|
-
--tw-drop-shadow: initial;
|
|
47
|
-
--tw-duration: initial;
|
|
48
|
-
--tw-ease: initial;
|
|
49
|
-
--tw-content: "";
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
4
|
@layer theme {
|
|
54
5
|
:root, :host {
|
|
55
6
|
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
@@ -249,7 +200,10 @@
|
|
|
249
200
|
}
|
|
250
201
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
251
202
|
::placeholder {
|
|
252
|
-
color:
|
|
203
|
+
color: currentColor;
|
|
204
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
205
|
+
color: color-mix(in oklab, currentColor 50%, transparent);
|
|
206
|
+
}
|
|
253
207
|
}
|
|
254
208
|
}
|
|
255
209
|
textarea {
|
|
@@ -1336,7 +1290,10 @@
|
|
|
1336
1290
|
}
|
|
1337
1291
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
1338
1292
|
::placeholder {
|
|
1339
|
-
color:
|
|
1293
|
+
color: currentColor;
|
|
1294
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1295
|
+
color: color-mix(in oklab, currentColor 50%, transparent);
|
|
1296
|
+
}
|
|
1340
1297
|
}
|
|
1341
1298
|
}
|
|
1342
1299
|
textarea {
|
|
@@ -1883,6 +1840,9 @@
|
|
|
1883
1840
|
.max-h-\[300px\] {
|
|
1884
1841
|
max-height: 300px;
|
|
1885
1842
|
}
|
|
1843
|
+
.max-h-\[370px\] {
|
|
1844
|
+
max-height: 370px;
|
|
1845
|
+
}
|
|
1886
1846
|
.max-h-screen {
|
|
1887
1847
|
max-height: 100vh;
|
|
1888
1848
|
}
|
|
@@ -5804,3 +5764,53 @@ input[type="number"] {
|
|
|
5804
5764
|
opacity: 0.5;
|
|
5805
5765
|
}
|
|
5806
5766
|
}
|
|
5767
|
+
@layer properties {
|
|
5768
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
5769
|
+
*, ::before, ::after, ::backdrop {
|
|
5770
|
+
--tw-rotate-x: rotateX(0);
|
|
5771
|
+
--tw-rotate-y: rotateY(0);
|
|
5772
|
+
--tw-rotate-z: rotateZ(0);
|
|
5773
|
+
--tw-skew-x: skewX(0);
|
|
5774
|
+
--tw-skew-y: skewY(0);
|
|
5775
|
+
--tw-border-style: solid;
|
|
5776
|
+
--tw-font-weight: initial;
|
|
5777
|
+
--tw-translate-x: 0;
|
|
5778
|
+
--tw-translate-y: 0;
|
|
5779
|
+
--tw-translate-z: 0;
|
|
5780
|
+
--tw-scale-x: 1;
|
|
5781
|
+
--tw-scale-y: 1;
|
|
5782
|
+
--tw-scale-z: 1;
|
|
5783
|
+
--tw-space-y-reverse: 0;
|
|
5784
|
+
--tw-space-x-reverse: 0;
|
|
5785
|
+
--tw-divide-y-reverse: 0;
|
|
5786
|
+
--tw-leading: initial;
|
|
5787
|
+
--tw-tracking: initial;
|
|
5788
|
+
--tw-shadow: 0 0 #0000;
|
|
5789
|
+
--tw-shadow-color: initial;
|
|
5790
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
5791
|
+
--tw-inset-shadow-color: initial;
|
|
5792
|
+
--tw-ring-color: initial;
|
|
5793
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
5794
|
+
--tw-inset-ring-color: initial;
|
|
5795
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
5796
|
+
--tw-ring-inset: initial;
|
|
5797
|
+
--tw-ring-offset-width: 0px;
|
|
5798
|
+
--tw-ring-offset-color: #fff;
|
|
5799
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
5800
|
+
--tw-outline-style: solid;
|
|
5801
|
+
--tw-blur: initial;
|
|
5802
|
+
--tw-brightness: initial;
|
|
5803
|
+
--tw-contrast: initial;
|
|
5804
|
+
--tw-grayscale: initial;
|
|
5805
|
+
--tw-hue-rotate: initial;
|
|
5806
|
+
--tw-invert: initial;
|
|
5807
|
+
--tw-opacity: initial;
|
|
5808
|
+
--tw-saturate: initial;
|
|
5809
|
+
--tw-sepia: initial;
|
|
5810
|
+
--tw-drop-shadow: initial;
|
|
5811
|
+
--tw-duration: initial;
|
|
5812
|
+
--tw-ease: initial;
|
|
5813
|
+
--tw-content: "";
|
|
5814
|
+
}
|
|
5815
|
+
}
|
|
5816
|
+
}
|