@texturehq/edges 1.13.2 → 1.14.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 +115 -5
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +450 -11
- package/dist/index.d.ts +450 -11
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/{server-BV15KAF4.d.cts → server-BsKKPLXJ.d.cts} +45 -5
- package/dist/{server-BV15KAF4.d.ts → server-BsKKPLXJ.d.ts} +45 -5
- 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 +124 -5
- package/dist/utilities.manifest.json +23 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1819,6 +1819,9 @@
|
|
|
1819
1819
|
.w-24 {
|
|
1820
1820
|
width: var(--spacing-24);
|
|
1821
1821
|
}
|
|
1822
|
+
.w-28 {
|
|
1823
|
+
width: var(--spacing-28);
|
|
1824
|
+
}
|
|
1822
1825
|
.w-32 {
|
|
1823
1826
|
width: var(--spacing-32);
|
|
1824
1827
|
}
|
|
@@ -1950,6 +1953,15 @@
|
|
|
1950
1953
|
.min-w-10 {
|
|
1951
1954
|
min-width: var(--spacing-10);
|
|
1952
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
|
+
}
|
|
1953
1965
|
.min-w-32 {
|
|
1954
1966
|
min-width: var(--spacing-32);
|
|
1955
1967
|
}
|
|
@@ -2983,6 +2995,42 @@
|
|
|
2983
2995
|
.bg-slate-700 {
|
|
2984
2996
|
background-color: var(--color-slate-700);
|
|
2985
2997
|
}
|
|
2998
|
+
.bg-state-auto {
|
|
2999
|
+
background-color: var(--color-state-auto);
|
|
3000
|
+
}
|
|
3001
|
+
.bg-state-charging {
|
|
3002
|
+
background-color: var(--color-state-charging);
|
|
3003
|
+
}
|
|
3004
|
+
.bg-state-cool {
|
|
3005
|
+
background-color: var(--color-state-cool);
|
|
3006
|
+
}
|
|
3007
|
+
.bg-state-discharging {
|
|
3008
|
+
background-color: var(--color-state-discharging);
|
|
3009
|
+
}
|
|
3010
|
+
.bg-state-eco {
|
|
3011
|
+
background-color: var(--color-state-eco);
|
|
3012
|
+
}
|
|
3013
|
+
.bg-state-exporting {
|
|
3014
|
+
background-color: var(--color-state-exporting);
|
|
3015
|
+
}
|
|
3016
|
+
.bg-state-heat {
|
|
3017
|
+
background-color: var(--color-state-heat);
|
|
3018
|
+
}
|
|
3019
|
+
.bg-state-idle {
|
|
3020
|
+
background-color: var(--color-state-idle);
|
|
3021
|
+
}
|
|
3022
|
+
.bg-state-importing {
|
|
3023
|
+
background-color: var(--color-state-importing);
|
|
3024
|
+
}
|
|
3025
|
+
.bg-state-off {
|
|
3026
|
+
background-color: var(--color-state-off);
|
|
3027
|
+
}
|
|
3028
|
+
.bg-state-on {
|
|
3029
|
+
background-color: var(--color-state-on);
|
|
3030
|
+
}
|
|
3031
|
+
.bg-state-unknown {
|
|
3032
|
+
background-color: var(--color-state-unknown);
|
|
3033
|
+
}
|
|
2986
3034
|
.bg-text-muted {
|
|
2987
3035
|
background-color: var(--color-text-muted);
|
|
2988
3036
|
}
|
|
@@ -3261,6 +3309,18 @@
|
|
|
3261
3309
|
.py-16 {
|
|
3262
3310
|
padding-block: var(--spacing-16);
|
|
3263
3311
|
}
|
|
3312
|
+
.py-\[var\(--control-gap-lg\)\] {
|
|
3313
|
+
padding-block: var(--control-gap-lg);
|
|
3314
|
+
}
|
|
3315
|
+
.py-\[var\(--control-gap-md\)\] {
|
|
3316
|
+
padding-block: var(--control-gap-md);
|
|
3317
|
+
}
|
|
3318
|
+
.py-\[var\(--control-gap-sm\)\] {
|
|
3319
|
+
padding-block: var(--control-gap-sm);
|
|
3320
|
+
}
|
|
3321
|
+
.py-\[var\(--control-gap-xl\)\] {
|
|
3322
|
+
padding-block: var(--control-gap-xl);
|
|
3323
|
+
}
|
|
3264
3324
|
.pt-0 {
|
|
3265
3325
|
padding-top: var(--spacing-0);
|
|
3266
3326
|
}
|
|
@@ -3630,6 +3690,42 @@
|
|
|
3630
3690
|
.text-slate-300 {
|
|
3631
3691
|
color: var(--color-slate-300);
|
|
3632
3692
|
}
|
|
3693
|
+
.text-state-auto-text {
|
|
3694
|
+
color: var(--color-state-auto-text);
|
|
3695
|
+
}
|
|
3696
|
+
.text-state-charging-text {
|
|
3697
|
+
color: var(--color-state-charging-text);
|
|
3698
|
+
}
|
|
3699
|
+
.text-state-cool-text {
|
|
3700
|
+
color: var(--color-state-cool-text);
|
|
3701
|
+
}
|
|
3702
|
+
.text-state-discharging-text {
|
|
3703
|
+
color: var(--color-state-discharging-text);
|
|
3704
|
+
}
|
|
3705
|
+
.text-state-eco-text {
|
|
3706
|
+
color: var(--color-state-eco-text);
|
|
3707
|
+
}
|
|
3708
|
+
.text-state-exporting-text {
|
|
3709
|
+
color: var(--color-state-exporting-text);
|
|
3710
|
+
}
|
|
3711
|
+
.text-state-heat-text {
|
|
3712
|
+
color: var(--color-state-heat-text);
|
|
3713
|
+
}
|
|
3714
|
+
.text-state-idle-text {
|
|
3715
|
+
color: var(--color-state-idle-text);
|
|
3716
|
+
}
|
|
3717
|
+
.text-state-importing-text {
|
|
3718
|
+
color: var(--color-state-importing-text);
|
|
3719
|
+
}
|
|
3720
|
+
.text-state-off-text {
|
|
3721
|
+
color: var(--color-state-off-text);
|
|
3722
|
+
}
|
|
3723
|
+
.text-state-on-text {
|
|
3724
|
+
color: var(--color-state-on-text);
|
|
3725
|
+
}
|
|
3726
|
+
.text-state-unknown-text {
|
|
3727
|
+
color: var(--color-state-unknown-text);
|
|
3728
|
+
}
|
|
3633
3729
|
.text-text-body {
|
|
3634
3730
|
color: var(--color-text-body);
|
|
3635
3731
|
}
|
|
@@ -3701,6 +3797,12 @@
|
|
|
3701
3797
|
text-decoration-color: color-mix(in oklab, var(--color-text-link-default) 30%, transparent);
|
|
3702
3798
|
}
|
|
3703
3799
|
}
|
|
3800
|
+
.decoration-1 {
|
|
3801
|
+
text-decoration-thickness: 1px;
|
|
3802
|
+
}
|
|
3803
|
+
.underline-offset-4 {
|
|
3804
|
+
text-underline-offset: 4px;
|
|
3805
|
+
}
|
|
3704
3806
|
.placeholder-text-muted {
|
|
3705
3807
|
&::-moz-placeholder {
|
|
3706
3808
|
color: var(--color-text-muted);
|
|
@@ -4244,11 +4346,6 @@
|
|
|
4244
4346
|
color: var(--color-action-brand);
|
|
4245
4347
|
}
|
|
4246
4348
|
}
|
|
4247
|
-
.visited\:text-text-link-default {
|
|
4248
|
-
&:visited {
|
|
4249
|
-
color: var(--color-text-link-default);
|
|
4250
|
-
}
|
|
4251
|
-
}
|
|
4252
4349
|
.visited\:text-text-muted {
|
|
4253
4350
|
&:visited {
|
|
4254
4351
|
color: var(--color-text-muted);
|
|
@@ -4384,6 +4481,16 @@
|
|
|
4384
4481
|
}
|
|
4385
4482
|
}
|
|
4386
4483
|
}
|
|
4484
|
+
.hover\:bg-feedback-error-background\/50 {
|
|
4485
|
+
&:hover {
|
|
4486
|
+
@media (hover: hover) {
|
|
4487
|
+
background-color: color-mix(in srgb, #fee2e2 50%, transparent);
|
|
4488
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4489
|
+
background-color: color-mix(in oklab, var(--color-feedback-error-background) 50%, transparent);
|
|
4490
|
+
}
|
|
4491
|
+
}
|
|
4492
|
+
}
|
|
4493
|
+
}
|
|
4387
4494
|
.hover\:bg-gray-50 {
|
|
4388
4495
|
&:hover {
|
|
4389
4496
|
@media (hover: hover) {
|
|
@@ -4641,6 +4748,12 @@
|
|
|
4641
4748
|
outline-color: var(--color-action-default);
|
|
4642
4749
|
}
|
|
4643
4750
|
}
|
|
4751
|
+
.focus\:\!outline-none {
|
|
4752
|
+
&:focus {
|
|
4753
|
+
--tw-outline-style: none !important;
|
|
4754
|
+
outline-style: none !important;
|
|
4755
|
+
}
|
|
4756
|
+
}
|
|
4644
4757
|
.focus\:outline-none {
|
|
4645
4758
|
&:focus {
|
|
4646
4759
|
--tw-outline-style: none;
|
|
@@ -4674,6 +4787,12 @@
|
|
|
4674
4787
|
outline-color: var(--color-action-default);
|
|
4675
4788
|
}
|
|
4676
4789
|
}
|
|
4790
|
+
.focus-visible\:\!outline-none {
|
|
4791
|
+
&:focus-visible {
|
|
4792
|
+
--tw-outline-style: none !important;
|
|
4793
|
+
outline-style: none !important;
|
|
4794
|
+
}
|
|
4795
|
+
}
|
|
4677
4796
|
.disabled\:cursor-not-allowed {
|
|
4678
4797
|
&:disabled {
|
|
4679
4798
|
cursor: not-allowed;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.14.1",
|
|
3
|
+
"generatedAt": "2025-10-29T23:38:45.926Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
|
|
@@ -213,6 +213,13 @@
|
|
|
213
213
|
"category": "formatting",
|
|
214
214
|
"file": "utils/formatting/boolean.ts"
|
|
215
215
|
},
|
|
216
|
+
{
|
|
217
|
+
"name": "formatCapacity",
|
|
218
|
+
"type": "function",
|
|
219
|
+
"description": "Format battery capacity (kWh) ```typescript formatCapacity(13.5); // \"13.5 kWh\" formatCapacity(1500); // \"1.5 MWh\" formatCapacity(null); // null ```",
|
|
220
|
+
"category": "formatting",
|
|
221
|
+
"file": "utils/formatting/capacity.ts"
|
|
222
|
+
},
|
|
216
223
|
{
|
|
217
224
|
"name": "formatComponentValue",
|
|
218
225
|
"type": "function",
|
|
@@ -276,6 +283,13 @@
|
|
|
276
283
|
"category": "formatting",
|
|
277
284
|
"file": "utils/formatting/number.ts"
|
|
278
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
|
+
},
|
|
279
293
|
{
|
|
280
294
|
"name": "formatPhone",
|
|
281
295
|
"type": "constant",
|
|
@@ -297,6 +311,13 @@
|
|
|
297
311
|
"category": "formatting",
|
|
298
312
|
"file": "utils/formatting/power.ts"
|
|
299
313
|
},
|
|
314
|
+
{
|
|
315
|
+
"name": "formatPowerRating",
|
|
316
|
+
"type": "function",
|
|
317
|
+
"description": "Format power rating (kW) ```typescript formatPowerRating(5.2); // \"5.2 kW\" formatPowerRating(2500); // \"2.5 MW\" formatPowerRating(null); // null ```",
|
|
318
|
+
"category": "formatting",
|
|
319
|
+
"file": "utils/formatting/capacity.ts"
|
|
320
|
+
},
|
|
300
321
|
{
|
|
301
322
|
"name": "FormatRegistry",
|
|
302
323
|
"type": "constant",
|