@texturehq/edges 1.7.6 → 1.7.7
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 +94 -2
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +52 -2
- package/dist/index.d.ts +52 -2
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/styles.css +29 -0
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -200,6 +200,7 @@
|
|
|
200
200
|
--container-lg: 32rem;
|
|
201
201
|
--container-xl: 36rem;
|
|
202
202
|
--container-2xl: 42rem;
|
|
203
|
+
--container-3xl: 48rem;
|
|
203
204
|
--container-4xl: 56rem;
|
|
204
205
|
--container-6xl: 72rem;
|
|
205
206
|
--container-7xl: 80rem;
|
|
@@ -1165,6 +1166,9 @@
|
|
|
1165
1166
|
.inset-y-\[1px\] {
|
|
1166
1167
|
inset-block: 1px;
|
|
1167
1168
|
}
|
|
1169
|
+
.start-1 {
|
|
1170
|
+
inset-inline-start: var(--spacing-1);
|
|
1171
|
+
}
|
|
1168
1172
|
.-top-2 {
|
|
1169
1173
|
top: calc(var(--spacing-2) * -1);
|
|
1170
1174
|
}
|
|
@@ -1757,6 +1761,9 @@
|
|
|
1757
1761
|
.max-w-2xl {
|
|
1758
1762
|
max-width: var(--container-2xl);
|
|
1759
1763
|
}
|
|
1764
|
+
.max-w-3xl {
|
|
1765
|
+
max-width: var(--container-3xl);
|
|
1766
|
+
}
|
|
1760
1767
|
.max-w-4xl {
|
|
1761
1768
|
max-width: var(--container-4xl);
|
|
1762
1769
|
}
|
|
@@ -1901,9 +1908,15 @@
|
|
|
1901
1908
|
--tw-translate-y: calc(calc(50% + 1px) * -1);
|
|
1902
1909
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1903
1910
|
}
|
|
1911
|
+
.rotate-0 {
|
|
1912
|
+
rotate: 0deg;
|
|
1913
|
+
}
|
|
1904
1914
|
.rotate-45 {
|
|
1905
1915
|
rotate: 45deg;
|
|
1906
1916
|
}
|
|
1917
|
+
.rotate-90 {
|
|
1918
|
+
rotate: 90deg;
|
|
1919
|
+
}
|
|
1907
1920
|
.rotate-180 {
|
|
1908
1921
|
rotate: 180deg;
|
|
1909
1922
|
}
|
|
@@ -2378,6 +2391,10 @@
|
|
|
2378
2391
|
border-top-right-radius: var(--radius-sm);
|
|
2379
2392
|
border-bottom-right-radius: var(--radius-sm);
|
|
2380
2393
|
}
|
|
2394
|
+
.rounded-b-lg {
|
|
2395
|
+
border-bottom-right-radius: var(--radius-lg);
|
|
2396
|
+
border-bottom-left-radius: var(--radius-lg);
|
|
2397
|
+
}
|
|
2381
2398
|
.rounded-b-none {
|
|
2382
2399
|
border-bottom-right-radius: var(--radius-none);
|
|
2383
2400
|
border-bottom-left-radius: var(--radius-none);
|
|
@@ -2498,6 +2515,12 @@
|
|
|
2498
2515
|
border-color: color-mix(in oklab, var(--color-border-default) 50%, transparent);
|
|
2499
2516
|
}
|
|
2500
2517
|
}
|
|
2518
|
+
.border-border-default\/60 {
|
|
2519
|
+
border-color: color-mix(in srgb, #e5e7eb 60%, transparent);
|
|
2520
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2521
|
+
border-color: color-mix(in oklab, var(--color-border-default) 60%, transparent);
|
|
2522
|
+
}
|
|
2523
|
+
}
|
|
2501
2524
|
.border-border-input {
|
|
2502
2525
|
border-color: var(--color-border-input);
|
|
2503
2526
|
}
|
|
@@ -2977,6 +3000,9 @@
|
|
|
2977
3000
|
.\!px-2 {
|
|
2978
3001
|
padding-inline: var(--spacing-2) !important;
|
|
2979
3002
|
}
|
|
3003
|
+
.px-0 {
|
|
3004
|
+
padding-inline: var(--spacing-0);
|
|
3005
|
+
}
|
|
2980
3006
|
.px-0\.5 {
|
|
2981
3007
|
padding-inline: calc(var(--spacing) * 0.5);
|
|
2982
3008
|
}
|
|
@@ -3064,6 +3090,9 @@
|
|
|
3064
3090
|
.py-12 {
|
|
3065
3091
|
padding-block: var(--spacing-12);
|
|
3066
3092
|
}
|
|
3093
|
+
.pt-0 {
|
|
3094
|
+
padding-top: var(--spacing-0);
|
|
3095
|
+
}
|
|
3067
3096
|
.pt-1 {
|
|
3068
3097
|
padding-top: var(--spacing-1);
|
|
3069
3098
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.7.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.7.7",
|
|
3
|
+
"generatedAt": "2025-10-19T23:59:43.335Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
|