@texturehq/edges 0.1.3 → 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 +193 -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
|
}
|
|
@@ -483,6 +486,9 @@
|
|
|
483
486
|
.max-h-\[inherit\] {
|
|
484
487
|
max-height: inherit;
|
|
485
488
|
}
|
|
489
|
+
.min-h-0 {
|
|
490
|
+
min-height: calc(0.25rem * 0);
|
|
491
|
+
}
|
|
486
492
|
.min-h-\[28px\] {
|
|
487
493
|
min-height: 28px;
|
|
488
494
|
}
|
|
@@ -525,6 +531,9 @@
|
|
|
525
531
|
.w-96 {
|
|
526
532
|
width: calc(0.25rem * 96);
|
|
527
533
|
}
|
|
534
|
+
.w-\[28rem\] {
|
|
535
|
+
width: 28rem;
|
|
536
|
+
}
|
|
528
537
|
.w-\[200px\] {
|
|
529
538
|
width: 200px;
|
|
530
539
|
}
|
|
@@ -571,6 +580,9 @@
|
|
|
571
580
|
.min-w-0 {
|
|
572
581
|
min-width: calc(0.25rem * 0);
|
|
573
582
|
}
|
|
583
|
+
.min-w-10 {
|
|
584
|
+
min-width: calc(0.25rem * 10);
|
|
585
|
+
}
|
|
574
586
|
.min-w-\[100px\] {
|
|
575
587
|
min-width: 100px;
|
|
576
588
|
}
|
|
@@ -648,6 +660,11 @@
|
|
|
648
660
|
-moz-appearance: textfield;
|
|
649
661
|
appearance: textfield;
|
|
650
662
|
}
|
|
663
|
+
.appearance-none {
|
|
664
|
+
-webkit-appearance: none;
|
|
665
|
+
-moz-appearance: none;
|
|
666
|
+
appearance: none;
|
|
667
|
+
}
|
|
651
668
|
.grid-cols-1 {
|
|
652
669
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
653
670
|
}
|
|
@@ -828,6 +845,9 @@
|
|
|
828
845
|
.overflow-y-auto {
|
|
829
846
|
overflow-y: auto;
|
|
830
847
|
}
|
|
848
|
+
.overscroll-contain {
|
|
849
|
+
overscroll-behavior: contain;
|
|
850
|
+
}
|
|
831
851
|
.rounded {
|
|
832
852
|
border-radius: 0.25rem;
|
|
833
853
|
}
|
|
@@ -878,6 +898,10 @@
|
|
|
878
898
|
border-style: var(--tw-border-style);
|
|
879
899
|
border-width: 2px;
|
|
880
900
|
}
|
|
901
|
+
.border-\[7px\] {
|
|
902
|
+
border-style: var(--tw-border-style);
|
|
903
|
+
border-width: 7px;
|
|
904
|
+
}
|
|
881
905
|
.border-y {
|
|
882
906
|
border-block-style: var(--tw-border-style);
|
|
883
907
|
border-block-width: 1px;
|
|
@@ -952,6 +976,9 @@
|
|
|
952
976
|
.border-feedback-error-border {
|
|
953
977
|
border-color: #ef4444;
|
|
954
978
|
}
|
|
979
|
+
.border-gray-100 {
|
|
980
|
+
border-color: var(--gray-100);
|
|
981
|
+
}
|
|
955
982
|
.border-gray-200 {
|
|
956
983
|
border-color: var(--gray-200);
|
|
957
984
|
}
|
|
@@ -1200,9 +1227,6 @@
|
|
|
1200
1227
|
.px-2 {
|
|
1201
1228
|
padding-inline: calc(0.25rem * 2);
|
|
1202
1229
|
}
|
|
1203
|
-
.px-2\.5 {
|
|
1204
|
-
padding-inline: calc(0.25rem * 2.5);
|
|
1205
|
-
}
|
|
1206
1230
|
.px-3 {
|
|
1207
1231
|
padding-inline: calc(0.25rem * 3);
|
|
1208
1232
|
}
|
|
@@ -1296,12 +1320,18 @@
|
|
|
1296
1320
|
.pl-12 {
|
|
1297
1321
|
padding-left: calc(0.25rem * 12);
|
|
1298
1322
|
}
|
|
1323
|
+
.pl-\[var\(--control-padding-sm\)\] {
|
|
1324
|
+
padding-left: var(--control-padding-sm);
|
|
1325
|
+
}
|
|
1299
1326
|
.text-center {
|
|
1300
1327
|
text-align: center;
|
|
1301
1328
|
}
|
|
1302
1329
|
.text-left {
|
|
1303
1330
|
text-align: left;
|
|
1304
1331
|
}
|
|
1332
|
+
.text-right {
|
|
1333
|
+
text-align: right;
|
|
1334
|
+
}
|
|
1305
1335
|
.text-start {
|
|
1306
1336
|
text-align: start;
|
|
1307
1337
|
}
|
|
@@ -1554,6 +1584,9 @@
|
|
|
1554
1584
|
.opacity-50 {
|
|
1555
1585
|
opacity: 50%;
|
|
1556
1586
|
}
|
|
1587
|
+
.opacity-60 {
|
|
1588
|
+
opacity: 60%;
|
|
1589
|
+
}
|
|
1557
1590
|
.opacity-100 {
|
|
1558
1591
|
opacity: 100%;
|
|
1559
1592
|
}
|
|
@@ -1564,10 +1597,6 @@
|
|
|
1564
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));
|
|
1565
1598
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1566
1599
|
}
|
|
1567
|
-
.shadow-2xl {
|
|
1568
|
-
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
1569
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1570
|
-
}
|
|
1571
1600
|
.shadow-\[inset_0_1px_0_0_theme\(colors\.gray\.600\)\] {
|
|
1572
1601
|
--tw-shadow: inset 0 1px 0 0 var(--tw-shadow-color, var(--gray-600));
|
|
1573
1602
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1643,15 +1672,9 @@
|
|
|
1643
1672
|
.outline-\[var\(--control-focus-ring-color-error\)\] {
|
|
1644
1673
|
outline-color: var(--control-focus-ring-color-error);
|
|
1645
1674
|
}
|
|
1646
|
-
.outline-border-focus {
|
|
1647
|
-
outline-color: #333333;
|
|
1648
|
-
}
|
|
1649
1675
|
.outline-border-input {
|
|
1650
1676
|
outline-color: #d1d5db;
|
|
1651
1677
|
}
|
|
1652
|
-
.outline-feedback-error-border {
|
|
1653
|
-
outline-color: #ef4444;
|
|
1654
|
-
}
|
|
1655
1678
|
.outline-white {
|
|
1656
1679
|
outline-color: var(--color-neutral-white);
|
|
1657
1680
|
}
|
|
@@ -1681,6 +1704,11 @@
|
|
|
1681
1704
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1682
1705
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1683
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
|
+
}
|
|
1684
1712
|
.transition-colors {
|
|
1685
1713
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1686
1714
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1740,9 +1768,6 @@
|
|
|
1740
1768
|
.\[--tw-enter-translate-x\:calc\(-16rem-100\%\)\] {
|
|
1741
1769
|
--tw-enter-translate-x: calc(-16rem - 100%);
|
|
1742
1770
|
}
|
|
1743
|
-
.\[clip-path\:inset\(0_0_0_0_round_\.75rem\)\] {
|
|
1744
|
-
clip-path: inset(0 0 0 0 round .75rem);
|
|
1745
|
-
}
|
|
1746
1771
|
.group-invalid\:bg-red-600 {
|
|
1747
1772
|
&:is(:where(.group):invalid *) {
|
|
1748
1773
|
background-color: oklch(0.577 0.245 27.325);
|
|
@@ -2160,6 +2185,11 @@
|
|
|
2160
2185
|
color: var(--gray-300);
|
|
2161
2186
|
}
|
|
2162
2187
|
}
|
|
2188
|
+
.disabled\:text-text-muted {
|
|
2189
|
+
&:disabled {
|
|
2190
|
+
color: #4b5563;
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2163
2193
|
.disabled\:opacity-50 {
|
|
2164
2194
|
&:disabled {
|
|
2165
2195
|
opacity: 50%;
|
|
@@ -2222,27 +2252,22 @@
|
|
|
2222
2252
|
width: 75%;
|
|
2223
2253
|
}
|
|
2224
2254
|
}
|
|
2225
|
-
.dark\:border-white\/
|
|
2255
|
+
.dark\:border-white\/5 {
|
|
2226
2256
|
@media (prefers-color-scheme: dark) {
|
|
2227
|
-
border-color: color-mix(in srgb, #ffffff
|
|
2257
|
+
border-color: color-mix(in srgb, #ffffff 5%, transparent);
|
|
2228
2258
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2229
|
-
border-color: color-mix(in oklab, var(--color-neutral-white)
|
|
2259
|
+
border-color: color-mix(in oklab, var(--color-neutral-white) 5%, transparent);
|
|
2230
2260
|
}
|
|
2231
2261
|
}
|
|
2232
2262
|
}
|
|
2233
|
-
.dark\:border-white
|
|
2263
|
+
.dark\:border-white\/10 {
|
|
2234
2264
|
@media (prefers-color-scheme: dark) {
|
|
2235
|
-
border-color: color-mix(in srgb, #ffffff
|
|
2265
|
+
border-color: color-mix(in srgb, #ffffff 10%, transparent);
|
|
2236
2266
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2237
|
-
border-color: color-mix(in oklab, var(--color-neutral-white)
|
|
2267
|
+
border-color: color-mix(in oklab, var(--color-neutral-white) 10%, transparent);
|
|
2238
2268
|
}
|
|
2239
2269
|
}
|
|
2240
2270
|
}
|
|
2241
|
-
.dark\:border-zinc-600 {
|
|
2242
|
-
@media (prefers-color-scheme: dark) {
|
|
2243
|
-
border-color: var(--zinc-600);
|
|
2244
|
-
}
|
|
2245
|
-
}
|
|
2246
2271
|
.dark\:border-y-zinc-700 {
|
|
2247
2272
|
@media (prefers-color-scheme: dark) {
|
|
2248
2273
|
border-block-color: var(--zinc-700);
|
|
@@ -2322,6 +2347,11 @@
|
|
|
2322
2347
|
stroke: var(--zinc-600);
|
|
2323
2348
|
}
|
|
2324
2349
|
}
|
|
2350
|
+
.dark\:text-text-body {
|
|
2351
|
+
@media (prefers-color-scheme: dark) {
|
|
2352
|
+
color: #333333;
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2325
2355
|
.dark\:text-white {
|
|
2326
2356
|
@media (prefers-color-scheme: dark) {
|
|
2327
2357
|
color: var(--color-neutral-white);
|
|
@@ -2363,11 +2393,6 @@
|
|
|
2363
2393
|
outline-color: var(--color-neutral-white);
|
|
2364
2394
|
}
|
|
2365
2395
|
}
|
|
2366
|
-
.dark\:outline-zinc-300 {
|
|
2367
|
-
@media (prefers-color-scheme: dark) {
|
|
2368
|
-
outline-color: var(--zinc-300);
|
|
2369
|
-
}
|
|
2370
|
-
}
|
|
2371
2396
|
.dark\:backdrop-blur-2xl {
|
|
2372
2397
|
@media (prefers-color-scheme: dark) {
|
|
2373
2398
|
--tw-backdrop-blur: blur(40px);
|
|
@@ -2407,6 +2432,13 @@
|
|
|
2407
2432
|
}
|
|
2408
2433
|
}
|
|
2409
2434
|
}
|
|
2435
|
+
.dark\:disabled\:text-text-muted {
|
|
2436
|
+
@media (prefers-color-scheme: dark) {
|
|
2437
|
+
&:disabled {
|
|
2438
|
+
color: #4b5563;
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
}
|
|
2410
2442
|
.dark\:disabled\:text-zinc-600 {
|
|
2411
2443
|
@media (prefers-color-scheme: dark) {
|
|
2412
2444
|
&:disabled {
|
|
@@ -2414,6 +2446,21 @@
|
|
|
2414
2446
|
}
|
|
2415
2447
|
}
|
|
2416
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
|
+
}
|
|
2417
2464
|
.forced-colors\:border-\[ButtonBorder\] {
|
|
2418
2465
|
@media (forced-colors: active) {
|
|
2419
2466
|
border-color: ButtonBorder;
|
|
@@ -2504,11 +2551,6 @@
|
|
|
2504
2551
|
outline-color: HighlightText;
|
|
2505
2552
|
}
|
|
2506
2553
|
}
|
|
2507
|
-
.forced-colors\:outline-\[Highlight\] {
|
|
2508
|
-
@media (forced-colors: active) {
|
|
2509
|
-
outline-color: Highlight;
|
|
2510
|
-
}
|
|
2511
|
-
}
|
|
2512
2554
|
.forced-colors\:group-invalid\:bg-\[Mark\] {
|
|
2513
2555
|
@media (forced-colors: active) {
|
|
2514
2556
|
&:is(:where(.group):invalid *) {
|
|
@@ -2516,13 +2558,6 @@
|
|
|
2516
2558
|
}
|
|
2517
2559
|
}
|
|
2518
2560
|
}
|
|
2519
|
-
.forced-colors\:group-invalid\:outline-\[Mark\] {
|
|
2520
|
-
@media (forced-colors: active) {
|
|
2521
|
-
&:is(:where(.group):invalid *) {
|
|
2522
|
-
outline-color: Mark;
|
|
2523
|
-
}
|
|
2524
|
-
}
|
|
2525
|
-
}
|
|
2526
2561
|
.forced-colors\:group-hover\:bg-\[Highlight\] {
|
|
2527
2562
|
@media (forced-colors: active) {
|
|
2528
2563
|
&:is(:where(.group):hover *) {
|
|
@@ -2605,10 +2640,60 @@
|
|
|
2605
2640
|
margin-top: calc(0.25rem * 1);
|
|
2606
2641
|
}
|
|
2607
2642
|
}
|
|
2608
|
-
.\[
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
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
|
+
}
|
|
2612
2697
|
}
|
|
2613
2698
|
}
|
|
2614
2699
|
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none {
|
|
@@ -2623,10 +2708,66 @@
|
|
|
2623
2708
|
appearance: none;
|
|
2624
2709
|
}
|
|
2625
2710
|
}
|
|
2626
|
-
.\[
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
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
|
+
}
|
|
2630
2771
|
}
|
|
2631
2772
|
}
|
|
2632
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
|
}
|