@texturehq/edges 1.26.3 → 1.26.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/dist/{colors-CHRmTEal.d.ts → colors-CmCDc1y7.d.ts} +3 -2
- package/dist/{colors-Ddk1k14x.d.cts → colors-DtS0t3eo.d.cts} +3 -2
- package/dist/components.manifest.json +8 -4
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -5
- package/dist/index.d.ts +17 -5
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/styles.css +28 -21
- package/dist/utilities.manifest.json +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1490,8 +1490,8 @@
|
|
|
1490
1490
|
.top-20 {
|
|
1491
1491
|
top: var(--spacing-20);
|
|
1492
1492
|
}
|
|
1493
|
-
.top-\[-
|
|
1494
|
-
top: -
|
|
1493
|
+
.top-\[-1px\] {
|
|
1494
|
+
top: -1px;
|
|
1495
1495
|
}
|
|
1496
1496
|
.top-\[2rem\] {
|
|
1497
1497
|
top: 2rem;
|
|
@@ -1577,9 +1577,6 @@
|
|
|
1577
1577
|
.isolate {
|
|
1578
1578
|
isolation: isolate;
|
|
1579
1579
|
}
|
|
1580
|
-
.-z-10 {
|
|
1581
|
-
z-index: calc(10 * -1);
|
|
1582
|
-
}
|
|
1583
1580
|
.z-0 {
|
|
1584
1581
|
z-index: 0;
|
|
1585
1582
|
}
|
|
@@ -1598,6 +1595,12 @@
|
|
|
1598
1595
|
.z-50 {
|
|
1599
1596
|
z-index: 50;
|
|
1600
1597
|
}
|
|
1598
|
+
.z-\[55\] {
|
|
1599
|
+
z-index: 55;
|
|
1600
|
+
}
|
|
1601
|
+
.z-\[60\] {
|
|
1602
|
+
z-index: 60;
|
|
1603
|
+
}
|
|
1601
1604
|
.col-auto {
|
|
1602
1605
|
grid-column: auto;
|
|
1603
1606
|
}
|
|
@@ -2009,9 +2012,6 @@
|
|
|
2009
2012
|
.max-h-\[300px\] {
|
|
2010
2013
|
max-height: 300px;
|
|
2011
2014
|
}
|
|
2012
|
-
.max-h-\[400px\] {
|
|
2013
|
-
max-height: 400px;
|
|
2014
|
-
}
|
|
2015
2015
|
.max-h-\[500px\] {
|
|
2016
2016
|
max-height: 500px;
|
|
2017
2017
|
}
|
|
@@ -2202,6 +2202,9 @@
|
|
|
2202
2202
|
.w-px {
|
|
2203
2203
|
width: 1px;
|
|
2204
2204
|
}
|
|
2205
|
+
.\!max-w-none {
|
|
2206
|
+
max-width: none !important;
|
|
2207
|
+
}
|
|
2205
2208
|
.max-w-2xl {
|
|
2206
2209
|
max-width: var(--container-2xl);
|
|
2207
2210
|
}
|
|
@@ -2561,12 +2564,15 @@
|
|
|
2561
2564
|
.grid-cols-\[1fr_auto\] {
|
|
2562
2565
|
grid-template-columns: 1fr auto;
|
|
2563
2566
|
}
|
|
2564
|
-
.grid-cols-\[1fr_auto_auto\] {
|
|
2565
|
-
grid-template-columns: 1fr auto auto;
|
|
2566
|
-
}
|
|
2567
2567
|
.grid-cols-\[3rem_1fr\] {
|
|
2568
2568
|
grid-template-columns: 3rem 1fr;
|
|
2569
2569
|
}
|
|
2570
|
+
.grid-cols-\[minmax\(120px\,1fr\)_1fr\] {
|
|
2571
|
+
grid-template-columns: minmax(120px,1fr) 1fr;
|
|
2572
|
+
}
|
|
2573
|
+
.grid-cols-\[minmax\(120px\,1fr\)_auto_auto\] {
|
|
2574
|
+
grid-template-columns: minmax(120px,1fr) auto auto;
|
|
2575
|
+
}
|
|
2570
2576
|
.grid-cols-none {
|
|
2571
2577
|
grid-template-columns: none;
|
|
2572
2578
|
}
|
|
@@ -3021,6 +3027,10 @@
|
|
|
3021
3027
|
border-left-style: var(--tw-border-style);
|
|
3022
3028
|
border-left-width: 4px;
|
|
3023
3029
|
}
|
|
3030
|
+
.border-l-\[3px\] {
|
|
3031
|
+
border-left-style: var(--tw-border-style);
|
|
3032
|
+
border-left-width: 3px;
|
|
3033
|
+
}
|
|
3024
3034
|
.border-dashed {
|
|
3025
3035
|
--tw-border-style: dashed;
|
|
3026
3036
|
border-style: dashed;
|
|
@@ -3873,9 +3883,6 @@
|
|
|
3873
3883
|
.pt-4 {
|
|
3874
3884
|
padding-top: var(--spacing-4);
|
|
3875
3885
|
}
|
|
3876
|
-
.pt-6 {
|
|
3877
|
-
padding-top: var(--spacing-6);
|
|
3878
|
-
}
|
|
3879
3886
|
.pt-8 {
|
|
3880
3887
|
padding-top: var(--spacing-8);
|
|
3881
3888
|
}
|
|
@@ -3912,9 +3919,6 @@
|
|
|
3912
3919
|
.pr-12 {
|
|
3913
3920
|
padding-right: var(--spacing-12);
|
|
3914
3921
|
}
|
|
3915
|
-
.pb-1 {
|
|
3916
|
-
padding-bottom: var(--spacing-1);
|
|
3917
|
-
}
|
|
3918
3922
|
.pb-1\.5 {
|
|
3919
3923
|
padding-bottom: calc(var(--spacing) * 1.5);
|
|
3920
3924
|
}
|
|
@@ -4404,6 +4408,9 @@
|
|
|
4404
4408
|
.underline {
|
|
4405
4409
|
text-decoration-line: underline;
|
|
4406
4410
|
}
|
|
4411
|
+
.decoration-current {
|
|
4412
|
+
text-decoration-color: currentcolor;
|
|
4413
|
+
}
|
|
4407
4414
|
.decoration-text-link-default\/30 {
|
|
4408
4415
|
text-decoration-color: color-mix(in srgb, #444ae1 30%, transparent);
|
|
4409
4416
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -6060,14 +6067,14 @@
|
|
|
6060
6067
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
6061
6068
|
}
|
|
6062
6069
|
}
|
|
6063
|
-
.sm\:grid-cols-\[
|
|
6070
|
+
.sm\:grid-cols-\[minmax\(120px\,1fr\)_1fr\] {
|
|
6064
6071
|
@media (width >= 40rem) {
|
|
6065
|
-
grid-template-columns: 1fr
|
|
6072
|
+
grid-template-columns: minmax(120px,1fr) 1fr;
|
|
6066
6073
|
}
|
|
6067
6074
|
}
|
|
6068
|
-
.sm\:grid-cols-\[
|
|
6075
|
+
.sm\:grid-cols-\[minmax\(120px\,1fr\)_auto_auto\] {
|
|
6069
6076
|
@media (width >= 40rem) {
|
|
6070
|
-
grid-template-columns: 1fr auto auto;
|
|
6077
|
+
grid-template-columns: minmax(120px,1fr) auto auto;
|
|
6071
6078
|
}
|
|
6072
6079
|
}
|
|
6073
6080
|
.sm\:grid-cols-none {
|