@texturehq/edges 0.1.4 → 0.1.5
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/README.md +1 -39
- package/dist/components.manifest.json +122 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -2
- package/dist/index.d.ts +37 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +187 -52
- package/package.json +4 -7
package/dist/styles.css
CHANGED
|
@@ -408,6 +408,9 @@
|
|
|
408
408
|
.table {
|
|
409
409
|
display: table;
|
|
410
410
|
}
|
|
411
|
+
.h-1\.5 {
|
|
412
|
+
height: calc(0.25rem * 1.5);
|
|
413
|
+
}
|
|
411
414
|
.h-1\/2 {
|
|
412
415
|
height: calc(1/2 * 100%);
|
|
413
416
|
}
|
|
@@ -528,6 +531,9 @@
|
|
|
528
531
|
.w-96 {
|
|
529
532
|
width: calc(0.25rem * 96);
|
|
530
533
|
}
|
|
534
|
+
.w-\[28rem\] {
|
|
535
|
+
width: 28rem;
|
|
536
|
+
}
|
|
531
537
|
.w-\[200px\] {
|
|
532
538
|
width: 200px;
|
|
533
539
|
}
|
|
@@ -574,6 +580,9 @@
|
|
|
574
580
|
.min-w-0 {
|
|
575
581
|
min-width: calc(0.25rem * 0);
|
|
576
582
|
}
|
|
583
|
+
.min-w-10 {
|
|
584
|
+
min-width: calc(0.25rem * 10);
|
|
585
|
+
}
|
|
577
586
|
.min-w-\[100px\] {
|
|
578
587
|
min-width: 100px;
|
|
579
588
|
}
|
|
@@ -651,6 +660,11 @@
|
|
|
651
660
|
-moz-appearance: textfield;
|
|
652
661
|
appearance: textfield;
|
|
653
662
|
}
|
|
663
|
+
.appearance-none {
|
|
664
|
+
-webkit-appearance: none;
|
|
665
|
+
-moz-appearance: none;
|
|
666
|
+
appearance: none;
|
|
667
|
+
}
|
|
654
668
|
.grid-cols-1 {
|
|
655
669
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
656
670
|
}
|
|
@@ -884,6 +898,10 @@
|
|
|
884
898
|
border-style: var(--tw-border-style);
|
|
885
899
|
border-width: 2px;
|
|
886
900
|
}
|
|
901
|
+
.border-\[7px\] {
|
|
902
|
+
border-style: var(--tw-border-style);
|
|
903
|
+
border-width: 7px;
|
|
904
|
+
}
|
|
887
905
|
.border-y {
|
|
888
906
|
border-block-style: var(--tw-border-style);
|
|
889
907
|
border-block-width: 1px;
|
|
@@ -958,6 +976,9 @@
|
|
|
958
976
|
.border-feedback-error-border {
|
|
959
977
|
border-color: #ef4444;
|
|
960
978
|
}
|
|
979
|
+
.border-gray-100 {
|
|
980
|
+
border-color: var(--gray-100);
|
|
981
|
+
}
|
|
961
982
|
.border-gray-200 {
|
|
962
983
|
border-color: var(--gray-200);
|
|
963
984
|
}
|
|
@@ -1206,9 +1227,6 @@
|
|
|
1206
1227
|
.px-2 {
|
|
1207
1228
|
padding-inline: calc(0.25rem * 2);
|
|
1208
1229
|
}
|
|
1209
|
-
.px-2\.5 {
|
|
1210
|
-
padding-inline: calc(0.25rem * 2.5);
|
|
1211
|
-
}
|
|
1212
1230
|
.px-3 {
|
|
1213
1231
|
padding-inline: calc(0.25rem * 3);
|
|
1214
1232
|
}
|
|
@@ -1302,12 +1320,18 @@
|
|
|
1302
1320
|
.pl-12 {
|
|
1303
1321
|
padding-left: calc(0.25rem * 12);
|
|
1304
1322
|
}
|
|
1323
|
+
.pl-\[var\(--control-padding-sm\)\] {
|
|
1324
|
+
padding-left: var(--control-padding-sm);
|
|
1325
|
+
}
|
|
1305
1326
|
.text-center {
|
|
1306
1327
|
text-align: center;
|
|
1307
1328
|
}
|
|
1308
1329
|
.text-left {
|
|
1309
1330
|
text-align: left;
|
|
1310
1331
|
}
|
|
1332
|
+
.text-right {
|
|
1333
|
+
text-align: right;
|
|
1334
|
+
}
|
|
1311
1335
|
.text-start {
|
|
1312
1336
|
text-align: start;
|
|
1313
1337
|
}
|
|
@@ -1560,6 +1584,9 @@
|
|
|
1560
1584
|
.opacity-50 {
|
|
1561
1585
|
opacity: 50%;
|
|
1562
1586
|
}
|
|
1587
|
+
.opacity-60 {
|
|
1588
|
+
opacity: 60%;
|
|
1589
|
+
}
|
|
1563
1590
|
.opacity-100 {
|
|
1564
1591
|
opacity: 100%;
|
|
1565
1592
|
}
|
|
@@ -1570,10 +1597,6 @@
|
|
|
1570
1597
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1571
1598
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1572
1599
|
}
|
|
1573
|
-
.shadow-2xl {
|
|
1574
|
-
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
1575
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1576
|
-
}
|
|
1577
1600
|
.shadow-\[inset_0_1px_0_0_theme\(colors\.gray\.600\)\] {
|
|
1578
1601
|
--tw-shadow: inset 0 1px 0 0 var(--tw-shadow-color, var(--gray-600));
|
|
1579
1602
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1649,15 +1672,9 @@
|
|
|
1649
1672
|
.outline-\[var\(--control-focus-ring-color-error\)\] {
|
|
1650
1673
|
outline-color: var(--control-focus-ring-color-error);
|
|
1651
1674
|
}
|
|
1652
|
-
.outline-border-focus {
|
|
1653
|
-
outline-color: #333333;
|
|
1654
|
-
}
|
|
1655
1675
|
.outline-border-input {
|
|
1656
1676
|
outline-color: #d1d5db;
|
|
1657
1677
|
}
|
|
1658
|
-
.outline-feedback-error-border {
|
|
1659
|
-
outline-color: #ef4444;
|
|
1660
|
-
}
|
|
1661
1678
|
.outline-white {
|
|
1662
1679
|
outline-color: var(--color-neutral-white);
|
|
1663
1680
|
}
|
|
@@ -1687,6 +1704,11 @@
|
|
|
1687
1704
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1688
1705
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1689
1706
|
}
|
|
1707
|
+
.transition-all {
|
|
1708
|
+
transition-property: all;
|
|
1709
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1710
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1711
|
+
}
|
|
1690
1712
|
.transition-colors {
|
|
1691
1713
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1692
1714
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1746,9 +1768,6 @@
|
|
|
1746
1768
|
.\[--tw-enter-translate-x\:calc\(-16rem-100\%\)\] {
|
|
1747
1769
|
--tw-enter-translate-x: calc(-16rem - 100%);
|
|
1748
1770
|
}
|
|
1749
|
-
.\[clip-path\:inset\(0_0_0_0_round_\.75rem\)\] {
|
|
1750
|
-
clip-path: inset(0 0 0 0 round .75rem);
|
|
1751
|
-
}
|
|
1752
1771
|
.group-invalid\:bg-red-600 {
|
|
1753
1772
|
&:is(:where(.group):invalid *) {
|
|
1754
1773
|
background-color: oklch(0.577 0.245 27.325);
|
|
@@ -2166,6 +2185,11 @@
|
|
|
2166
2185
|
color: var(--gray-300);
|
|
2167
2186
|
}
|
|
2168
2187
|
}
|
|
2188
|
+
.disabled\:text-text-muted {
|
|
2189
|
+
&:disabled {
|
|
2190
|
+
color: #4b5563;
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2169
2193
|
.disabled\:opacity-50 {
|
|
2170
2194
|
&:disabled {
|
|
2171
2195
|
opacity: 50%;
|
|
@@ -2228,27 +2252,22 @@
|
|
|
2228
2252
|
width: 75%;
|
|
2229
2253
|
}
|
|
2230
2254
|
}
|
|
2231
|
-
.dark\:border-white\/
|
|
2255
|
+
.dark\:border-white\/5 {
|
|
2232
2256
|
@media (prefers-color-scheme: dark) {
|
|
2233
|
-
border-color: color-mix(in srgb, #ffffff
|
|
2257
|
+
border-color: color-mix(in srgb, #ffffff 5%, transparent);
|
|
2234
2258
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2235
|
-
border-color: color-mix(in oklab, var(--color-neutral-white)
|
|
2259
|
+
border-color: color-mix(in oklab, var(--color-neutral-white) 5%, transparent);
|
|
2236
2260
|
}
|
|
2237
2261
|
}
|
|
2238
2262
|
}
|
|
2239
|
-
.dark\:border-white
|
|
2263
|
+
.dark\:border-white\/10 {
|
|
2240
2264
|
@media (prefers-color-scheme: dark) {
|
|
2241
|
-
border-color: color-mix(in srgb, #ffffff
|
|
2265
|
+
border-color: color-mix(in srgb, #ffffff 10%, transparent);
|
|
2242
2266
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2243
|
-
border-color: color-mix(in oklab, var(--color-neutral-white)
|
|
2267
|
+
border-color: color-mix(in oklab, var(--color-neutral-white) 10%, transparent);
|
|
2244
2268
|
}
|
|
2245
2269
|
}
|
|
2246
2270
|
}
|
|
2247
|
-
.dark\:border-zinc-600 {
|
|
2248
|
-
@media (prefers-color-scheme: dark) {
|
|
2249
|
-
border-color: var(--zinc-600);
|
|
2250
|
-
}
|
|
2251
|
-
}
|
|
2252
2271
|
.dark\:border-y-zinc-700 {
|
|
2253
2272
|
@media (prefers-color-scheme: dark) {
|
|
2254
2273
|
border-block-color: var(--zinc-700);
|
|
@@ -2328,6 +2347,11 @@
|
|
|
2328
2347
|
stroke: var(--zinc-600);
|
|
2329
2348
|
}
|
|
2330
2349
|
}
|
|
2350
|
+
.dark\:text-text-body {
|
|
2351
|
+
@media (prefers-color-scheme: dark) {
|
|
2352
|
+
color: #333333;
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2331
2355
|
.dark\:text-white {
|
|
2332
2356
|
@media (prefers-color-scheme: dark) {
|
|
2333
2357
|
color: var(--color-neutral-white);
|
|
@@ -2369,11 +2393,6 @@
|
|
|
2369
2393
|
outline-color: var(--color-neutral-white);
|
|
2370
2394
|
}
|
|
2371
2395
|
}
|
|
2372
|
-
.dark\:outline-zinc-300 {
|
|
2373
|
-
@media (prefers-color-scheme: dark) {
|
|
2374
|
-
outline-color: var(--zinc-300);
|
|
2375
|
-
}
|
|
2376
|
-
}
|
|
2377
2396
|
.dark\:backdrop-blur-2xl {
|
|
2378
2397
|
@media (prefers-color-scheme: dark) {
|
|
2379
2398
|
--tw-backdrop-blur: blur(40px);
|
|
@@ -2413,6 +2432,13 @@
|
|
|
2413
2432
|
}
|
|
2414
2433
|
}
|
|
2415
2434
|
}
|
|
2435
|
+
.dark\:disabled\:text-text-muted {
|
|
2436
|
+
@media (prefers-color-scheme: dark) {
|
|
2437
|
+
&:disabled {
|
|
2438
|
+
color: #4b5563;
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
}
|
|
2416
2442
|
.dark\:disabled\:text-zinc-600 {
|
|
2417
2443
|
@media (prefers-color-scheme: dark) {
|
|
2418
2444
|
&:disabled {
|
|
@@ -2420,6 +2446,21 @@
|
|
|
2420
2446
|
}
|
|
2421
2447
|
}
|
|
2422
2448
|
}
|
|
2449
|
+
.forced-colors\:\!border-\[GrayText\] {
|
|
2450
|
+
@media (forced-colors: active) {
|
|
2451
|
+
border-color: GrayText !important;
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
.forced-colors\:\!border-\[Highlight\] {
|
|
2455
|
+
@media (forced-colors: active) {
|
|
2456
|
+
border-color: Highlight !important;
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
.forced-colors\:\!border-\[Mark\] {
|
|
2460
|
+
@media (forced-colors: active) {
|
|
2461
|
+
border-color: Mark !important;
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2423
2464
|
.forced-colors\:border-\[ButtonBorder\] {
|
|
2424
2465
|
@media (forced-colors: active) {
|
|
2425
2466
|
border-color: ButtonBorder;
|
|
@@ -2510,11 +2551,6 @@
|
|
|
2510
2551
|
outline-color: HighlightText;
|
|
2511
2552
|
}
|
|
2512
2553
|
}
|
|
2513
|
-
.forced-colors\:outline-\[Highlight\] {
|
|
2514
|
-
@media (forced-colors: active) {
|
|
2515
|
-
outline-color: Highlight;
|
|
2516
|
-
}
|
|
2517
|
-
}
|
|
2518
2554
|
.forced-colors\:group-invalid\:bg-\[Mark\] {
|
|
2519
2555
|
@media (forced-colors: active) {
|
|
2520
2556
|
&:is(:where(.group):invalid *) {
|
|
@@ -2522,13 +2558,6 @@
|
|
|
2522
2558
|
}
|
|
2523
2559
|
}
|
|
2524
2560
|
}
|
|
2525
|
-
.forced-colors\:group-invalid\:outline-\[Mark\] {
|
|
2526
|
-
@media (forced-colors: active) {
|
|
2527
|
-
&:is(:where(.group):invalid *) {
|
|
2528
|
-
outline-color: Mark;
|
|
2529
|
-
}
|
|
2530
|
-
}
|
|
2531
|
-
}
|
|
2532
2561
|
.forced-colors\:group-hover\:bg-\[Highlight\] {
|
|
2533
2562
|
@media (forced-colors: active) {
|
|
2534
2563
|
&:is(:where(.group):hover *) {
|
|
@@ -2611,10 +2640,60 @@
|
|
|
2611
2640
|
margin-top: calc(0.25rem * 1);
|
|
2612
2641
|
}
|
|
2613
2642
|
}
|
|
2614
|
-
.\[
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2643
|
+
.\[\&\:\:-moz-range-thumb\]\:h-4 {
|
|
2644
|
+
&::-moz-range-thumb {
|
|
2645
|
+
height: calc(0.25rem * 4);
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
.\[\&\:\:-moz-range-thumb\]\:w-4 {
|
|
2649
|
+
&::-moz-range-thumb {
|
|
2650
|
+
width: calc(0.25rem * 4);
|
|
2651
|
+
}
|
|
2652
|
+
}
|
|
2653
|
+
.\[\&\:\:-moz-range-thumb\]\:rounded-full {
|
|
2654
|
+
&::-moz-range-thumb {
|
|
2655
|
+
border-radius: calc(infinity * 1px);
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2658
|
+
.\[\&\:\:-moz-range-thumb\]\:border {
|
|
2659
|
+
&::-moz-range-thumb {
|
|
2660
|
+
border-style: var(--tw-border-style);
|
|
2661
|
+
border-width: 1px;
|
|
2662
|
+
}
|
|
2663
|
+
}
|
|
2664
|
+
.\[\&\:\:-moz-range-thumb\]\:border-border-input {
|
|
2665
|
+
&::-moz-range-thumb {
|
|
2666
|
+
border-color: #d1d5db;
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
.\[\&\:\:-moz-range-thumb\]\:bg-background-input {
|
|
2670
|
+
&::-moz-range-thumb {
|
|
2671
|
+
background-color: #ffffff;
|
|
2672
|
+
}
|
|
2673
|
+
}
|
|
2674
|
+
.hover\:\[\&\:\:-moz-range-thumb\]\:shadow-sm {
|
|
2675
|
+
&:hover {
|
|
2676
|
+
@media (hover: hover) {
|
|
2677
|
+
&::-moz-range-thumb {
|
|
2678
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2679
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
.focus-visible\:\[\&\:\:-moz-range-thumb\]\:outline-2 {
|
|
2685
|
+
&:focus-visible {
|
|
2686
|
+
&::-moz-range-thumb {
|
|
2687
|
+
outline-style: var(--tw-outline-style);
|
|
2688
|
+
outline-width: 2px;
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2691
|
+
}
|
|
2692
|
+
.focus-visible\:\[\&\:\:-moz-range-thumb\]\:outline-border-focus {
|
|
2693
|
+
&:focus-visible {
|
|
2694
|
+
&::-moz-range-thumb {
|
|
2695
|
+
outline-color: #333333;
|
|
2696
|
+
}
|
|
2618
2697
|
}
|
|
2619
2698
|
}
|
|
2620
2699
|
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none {
|
|
@@ -2629,10 +2708,66 @@
|
|
|
2629
2708
|
appearance: none;
|
|
2630
2709
|
}
|
|
2631
2710
|
}
|
|
2632
|
-
.\[
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2711
|
+
.\[\&\:\:-webkit-slider-thumb\]\:h-4 {
|
|
2712
|
+
&::-webkit-slider-thumb {
|
|
2713
|
+
height: calc(0.25rem * 4);
|
|
2714
|
+
}
|
|
2715
|
+
}
|
|
2716
|
+
.\[\&\:\:-webkit-slider-thumb\]\:w-4 {
|
|
2717
|
+
&::-webkit-slider-thumb {
|
|
2718
|
+
width: calc(0.25rem * 4);
|
|
2719
|
+
}
|
|
2720
|
+
}
|
|
2721
|
+
.\[\&\:\:-webkit-slider-thumb\]\:appearance-none {
|
|
2722
|
+
&::-webkit-slider-thumb {
|
|
2723
|
+
-webkit-appearance: none;
|
|
2724
|
+
appearance: none;
|
|
2725
|
+
}
|
|
2726
|
+
}
|
|
2727
|
+
.\[\&\:\:-webkit-slider-thumb\]\:rounded-full {
|
|
2728
|
+
&::-webkit-slider-thumb {
|
|
2729
|
+
border-radius: calc(infinity * 1px);
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2732
|
+
.\[\&\:\:-webkit-slider-thumb\]\:border {
|
|
2733
|
+
&::-webkit-slider-thumb {
|
|
2734
|
+
border-style: var(--tw-border-style);
|
|
2735
|
+
border-width: 1px;
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2738
|
+
.\[\&\:\:-webkit-slider-thumb\]\:border-border-input {
|
|
2739
|
+
&::-webkit-slider-thumb {
|
|
2740
|
+
border-color: #d1d5db;
|
|
2741
|
+
}
|
|
2742
|
+
}
|
|
2743
|
+
.\[\&\:\:-webkit-slider-thumb\]\:bg-background-input {
|
|
2744
|
+
&::-webkit-slider-thumb {
|
|
2745
|
+
background-color: #ffffff;
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
.hover\:\[\&\:\:-webkit-slider-thumb\]\:shadow-sm {
|
|
2749
|
+
&:hover {
|
|
2750
|
+
@media (hover: hover) {
|
|
2751
|
+
&::-webkit-slider-thumb {
|
|
2752
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2753
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2754
|
+
}
|
|
2755
|
+
}
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
.focus-visible\:\[\&\:\:-webkit-slider-thumb\]\:outline-2 {
|
|
2759
|
+
&:focus-visible {
|
|
2760
|
+
&::-webkit-slider-thumb {
|
|
2761
|
+
outline-style: var(--tw-outline-style);
|
|
2762
|
+
outline-width: 2px;
|
|
2763
|
+
}
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
.focus-visible\:\[\&\:\:-webkit-slider-thumb\]\:outline-border-focus {
|
|
2767
|
+
&:focus-visible {
|
|
2768
|
+
&::-webkit-slider-thumb {
|
|
2769
|
+
outline-color: #333333;
|
|
2770
|
+
}
|
|
2636
2771
|
}
|
|
2637
2772
|
}
|
|
2638
2773
|
.\[\&\>\*\]\:rounded-none {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@texturehq/edges",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"author": "Nicholas Brown <nick@texturehq.com>",
|
|
5
5
|
"description": "A shared component library for Texture",
|
|
6
6
|
"type": "module",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"dev": "yarn watch",
|
|
29
29
|
"watch": "tsup --watch",
|
|
30
30
|
"build": "tsup",
|
|
31
|
-
"build:yalc": "
|
|
32
|
-
"dev:yalc": "
|
|
33
|
-
"dev:yalc:force": "
|
|
31
|
+
"build:yalc": "yarn build && npx yalc publish && npx yalc push",
|
|
32
|
+
"dev:yalc": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: yarn install && yarn dev'",
|
|
33
|
+
"dev:yalc:force": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: rm -rf .vite && yarn cache clean && yarn dev --force'",
|
|
34
34
|
"clean": "rm -rf dist",
|
|
35
35
|
"lint": "eslint --ext .ts,.tsx src/",
|
|
36
36
|
"lint:quiet": "eslint --ext .ts,.tsx src/ --quiet",
|
|
@@ -95,8 +95,5 @@
|
|
|
95
95
|
"vite-plugin-svgr": "^4.3.0",
|
|
96
96
|
"vitest": "^3.1.1",
|
|
97
97
|
"yalc": "^1.0.0-pre.53"
|
|
98
|
-
},
|
|
99
|
-
"publishConfig": {
|
|
100
|
-
"registry": "https://npm.pkg.github.com"
|
|
101
98
|
}
|
|
102
99
|
}
|