@texturehq/edges 1.5.3 → 1.6.1
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/components.manifest.json +146 -9
- package/dist/index.cjs +8 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +232 -72
- package/dist/index.d.ts +232 -72
- package/dist/index.js +8 -10
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +0 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +0 -2
- package/dist/server.js.map +1 -1
- package/dist/styles.css +44 -10
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1026,6 +1026,9 @@
|
|
|
1026
1026
|
}
|
|
1027
1027
|
}
|
|
1028
1028
|
@layer utilities {
|
|
1029
|
+
.\@container {
|
|
1030
|
+
container-type: inline-size;
|
|
1031
|
+
}
|
|
1029
1032
|
.pointer-events-auto {
|
|
1030
1033
|
pointer-events: auto;
|
|
1031
1034
|
}
|
|
@@ -1637,9 +1640,18 @@
|
|
|
1637
1640
|
.w-\[300px\] {
|
|
1638
1641
|
width: 300px;
|
|
1639
1642
|
}
|
|
1643
|
+
.w-\[320px\] {
|
|
1644
|
+
width: 320px;
|
|
1645
|
+
}
|
|
1646
|
+
.w-\[500px\] {
|
|
1647
|
+
width: 500px;
|
|
1648
|
+
}
|
|
1640
1649
|
.w-\[600px\] {
|
|
1641
1650
|
width: 600px;
|
|
1642
1651
|
}
|
|
1652
|
+
.w-\[700px\] {
|
|
1653
|
+
width: 700px;
|
|
1654
|
+
}
|
|
1643
1655
|
.w-auto {
|
|
1644
1656
|
width: auto;
|
|
1645
1657
|
}
|
|
@@ -1793,6 +1805,10 @@
|
|
|
1793
1805
|
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
1794
1806
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1795
1807
|
}
|
|
1808
|
+
.-translate-y-\[calc\(50\%\+1px\)\] {
|
|
1809
|
+
--tw-translate-y: calc(calc(50% + 1px) * -1);
|
|
1810
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1811
|
+
}
|
|
1796
1812
|
.rotate-45 {
|
|
1797
1813
|
rotate: 45deg;
|
|
1798
1814
|
}
|
|
@@ -2907,6 +2923,9 @@
|
|
|
2907
2923
|
.py-6 {
|
|
2908
2924
|
padding-block: var(--spacing-6);
|
|
2909
2925
|
}
|
|
2926
|
+
.py-8 {
|
|
2927
|
+
padding-block: var(--spacing-8);
|
|
2928
|
+
}
|
|
2910
2929
|
.py-12 {
|
|
2911
2930
|
padding-block: var(--spacing-12);
|
|
2912
2931
|
}
|
|
@@ -4482,11 +4501,6 @@
|
|
|
4482
4501
|
flex-direction: row;
|
|
4483
4502
|
}
|
|
4484
4503
|
}
|
|
4485
|
-
.sm\:items-center {
|
|
4486
|
-
@media (width >= 40rem) {
|
|
4487
|
-
align-items: center;
|
|
4488
|
-
}
|
|
4489
|
-
}
|
|
4490
4504
|
.sm\:items-start {
|
|
4491
4505
|
@media (width >= 40rem) {
|
|
4492
4506
|
align-items: flex-start;
|
|
@@ -4497,11 +4511,6 @@
|
|
|
4497
4511
|
justify-content: space-between;
|
|
4498
4512
|
}
|
|
4499
4513
|
}
|
|
4500
|
-
.sm\:gap-4 {
|
|
4501
|
-
@media (width >= 40rem) {
|
|
4502
|
-
gap: var(--spacing-4);
|
|
4503
|
-
}
|
|
4504
|
-
}
|
|
4505
4514
|
.md\:relative {
|
|
4506
4515
|
@media (width >= 48rem) {
|
|
4507
4516
|
position: relative;
|
|
@@ -5211,6 +5220,31 @@
|
|
|
5211
5220
|
grid-template-columns: none;
|
|
5212
5221
|
}
|
|
5213
5222
|
}
|
|
5223
|
+
.\@\[640px\]\:flex {
|
|
5224
|
+
@container (width >= 640px) {
|
|
5225
|
+
display: flex;
|
|
5226
|
+
}
|
|
5227
|
+
}
|
|
5228
|
+
.\@\[640px\]\:hidden {
|
|
5229
|
+
@container (width >= 640px) {
|
|
5230
|
+
display: none;
|
|
5231
|
+
}
|
|
5232
|
+
}
|
|
5233
|
+
.\@\[640px\]\:items-center {
|
|
5234
|
+
@container (width >= 640px) {
|
|
5235
|
+
align-items: center;
|
|
5236
|
+
}
|
|
5237
|
+
}
|
|
5238
|
+
.\@\[640px\]\:justify-between {
|
|
5239
|
+
@container (width >= 640px) {
|
|
5240
|
+
justify-content: space-between;
|
|
5241
|
+
}
|
|
5242
|
+
}
|
|
5243
|
+
.\@\[640px\]\:gap-4 {
|
|
5244
|
+
@container (width >= 640px) {
|
|
5245
|
+
gap: var(--spacing-4);
|
|
5246
|
+
}
|
|
5247
|
+
}
|
|
5214
5248
|
.dark\:border-blue-800 {
|
|
5215
5249
|
@media (prefers-color-scheme: dark) {
|
|
5216
5250
|
border-color: var(--color-blue-800);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.6.1",
|
|
3
|
+
"generatedAt": "2025-10-12T23:27:24.851Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like debouncing, local storage, and time controls",
|