@texturehq/edges 1.14.0 → 1.14.2
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 +13 -2
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +70 -3
- package/dist/index.d.ts +70 -3
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/{server-v2FT_HvE.d.cts → server-Bvpt61Tf.d.cts} +8 -2
- package/dist/{server-v2FT_HvE.d.ts → server-Bvpt61Tf.d.ts} +8 -2
- 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 +36 -0
- package/dist/utilities.manifest.json +9 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1953,6 +1953,15 @@
|
|
|
1953
1953
|
.min-w-10 {
|
|
1954
1954
|
min-width: var(--spacing-10);
|
|
1955
1955
|
}
|
|
1956
|
+
.min-w-12 {
|
|
1957
|
+
min-width: var(--spacing-12);
|
|
1958
|
+
}
|
|
1959
|
+
.min-w-14 {
|
|
1960
|
+
min-width: var(--spacing-14);
|
|
1961
|
+
}
|
|
1962
|
+
.min-w-16 {
|
|
1963
|
+
min-width: var(--spacing-16);
|
|
1964
|
+
}
|
|
1956
1965
|
.min-w-32 {
|
|
1957
1966
|
min-width: var(--spacing-32);
|
|
1958
1967
|
}
|
|
@@ -3124,6 +3133,9 @@
|
|
|
3124
3133
|
.bg-clip-padding {
|
|
3125
3134
|
background-clip: padding-box;
|
|
3126
3135
|
}
|
|
3136
|
+
.fill-background-muted {
|
|
3137
|
+
fill: var(--color-background-muted);
|
|
3138
|
+
}
|
|
3127
3139
|
.fill-brand-primary {
|
|
3128
3140
|
fill: var(--color-brand-primary);
|
|
3129
3141
|
}
|
|
@@ -3300,6 +3312,18 @@
|
|
|
3300
3312
|
.py-16 {
|
|
3301
3313
|
padding-block: var(--spacing-16);
|
|
3302
3314
|
}
|
|
3315
|
+
.py-\[var\(--control-gap-lg\)\] {
|
|
3316
|
+
padding-block: var(--control-gap-lg);
|
|
3317
|
+
}
|
|
3318
|
+
.py-\[var\(--control-gap-md\)\] {
|
|
3319
|
+
padding-block: var(--control-gap-md);
|
|
3320
|
+
}
|
|
3321
|
+
.py-\[var\(--control-gap-sm\)\] {
|
|
3322
|
+
padding-block: var(--control-gap-sm);
|
|
3323
|
+
}
|
|
3324
|
+
.py-\[var\(--control-gap-xl\)\] {
|
|
3325
|
+
padding-block: var(--control-gap-xl);
|
|
3326
|
+
}
|
|
3303
3327
|
.pt-0 {
|
|
3304
3328
|
padding-top: var(--spacing-0);
|
|
3305
3329
|
}
|
|
@@ -4727,6 +4751,12 @@
|
|
|
4727
4751
|
outline-color: var(--color-action-default);
|
|
4728
4752
|
}
|
|
4729
4753
|
}
|
|
4754
|
+
.focus\:\!outline-none {
|
|
4755
|
+
&:focus {
|
|
4756
|
+
--tw-outline-style: none !important;
|
|
4757
|
+
outline-style: none !important;
|
|
4758
|
+
}
|
|
4759
|
+
}
|
|
4730
4760
|
.focus\:outline-none {
|
|
4731
4761
|
&:focus {
|
|
4732
4762
|
--tw-outline-style: none;
|
|
@@ -4760,6 +4790,12 @@
|
|
|
4760
4790
|
outline-color: var(--color-action-default);
|
|
4761
4791
|
}
|
|
4762
4792
|
}
|
|
4793
|
+
.focus-visible\:\!outline-none {
|
|
4794
|
+
&:focus-visible {
|
|
4795
|
+
--tw-outline-style: none !important;
|
|
4796
|
+
outline-style: none !important;
|
|
4797
|
+
}
|
|
4798
|
+
}
|
|
4763
4799
|
.disabled\:cursor-not-allowed {
|
|
4764
4800
|
&:disabled {
|
|
4765
4801
|
cursor: not-allowed;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.14.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.14.2",
|
|
3
|
+
"generatedAt": "2025-10-30T01:18:07.257Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
|
|
@@ -283,6 +283,13 @@
|
|
|
283
283
|
"category": "formatting",
|
|
284
284
|
"file": "utils/formatting/number.ts"
|
|
285
285
|
},
|
|
286
|
+
{
|
|
287
|
+
"name": "formatPercent",
|
|
288
|
+
"type": "constant",
|
|
289
|
+
"description": "Format percentage (simple wrapper for consistency with other formatters)",
|
|
290
|
+
"category": "formatting",
|
|
291
|
+
"file": "utils/formatting/number.ts"
|
|
292
|
+
},
|
|
286
293
|
{
|
|
287
294
|
"name": "formatPhone",
|
|
288
295
|
"type": "constant",
|