@texturehq/edges 1.5.3 → 1.6.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/components.manifest.json +146 -9
- package/dist/index.cjs +8 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +231 -72
- package/dist/index.d.ts +231 -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 +41 -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
|
}
|
|
@@ -4482,11 +4498,6 @@
|
|
|
4482
4498
|
flex-direction: row;
|
|
4483
4499
|
}
|
|
4484
4500
|
}
|
|
4485
|
-
.sm\:items-center {
|
|
4486
|
-
@media (width >= 40rem) {
|
|
4487
|
-
align-items: center;
|
|
4488
|
-
}
|
|
4489
|
-
}
|
|
4490
4501
|
.sm\:items-start {
|
|
4491
4502
|
@media (width >= 40rem) {
|
|
4492
4503
|
align-items: flex-start;
|
|
@@ -4497,11 +4508,6 @@
|
|
|
4497
4508
|
justify-content: space-between;
|
|
4498
4509
|
}
|
|
4499
4510
|
}
|
|
4500
|
-
.sm\:gap-4 {
|
|
4501
|
-
@media (width >= 40rem) {
|
|
4502
|
-
gap: var(--spacing-4);
|
|
4503
|
-
}
|
|
4504
|
-
}
|
|
4505
4511
|
.md\:relative {
|
|
4506
4512
|
@media (width >= 48rem) {
|
|
4507
4513
|
position: relative;
|
|
@@ -5211,6 +5217,31 @@
|
|
|
5211
5217
|
grid-template-columns: none;
|
|
5212
5218
|
}
|
|
5213
5219
|
}
|
|
5220
|
+
.\@\[640px\]\:flex {
|
|
5221
|
+
@container (width >= 640px) {
|
|
5222
|
+
display: flex;
|
|
5223
|
+
}
|
|
5224
|
+
}
|
|
5225
|
+
.\@\[640px\]\:hidden {
|
|
5226
|
+
@container (width >= 640px) {
|
|
5227
|
+
display: none;
|
|
5228
|
+
}
|
|
5229
|
+
}
|
|
5230
|
+
.\@\[640px\]\:items-center {
|
|
5231
|
+
@container (width >= 640px) {
|
|
5232
|
+
align-items: center;
|
|
5233
|
+
}
|
|
5234
|
+
}
|
|
5235
|
+
.\@\[640px\]\:justify-between {
|
|
5236
|
+
@container (width >= 640px) {
|
|
5237
|
+
justify-content: space-between;
|
|
5238
|
+
}
|
|
5239
|
+
}
|
|
5240
|
+
.\@\[640px\]\:gap-4 {
|
|
5241
|
+
@container (width >= 640px) {
|
|
5242
|
+
gap: var(--spacing-4);
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
5214
5245
|
.dark\:border-blue-800 {
|
|
5215
5246
|
@media (prefers-color-scheme: dark) {
|
|
5216
5247
|
border-color: var(--color-blue-800);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.6.0",
|
|
3
|
+
"generatedAt": "2025-10-12T21:02:10.714Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like debouncing, local storage, and time controls",
|