@ohhwells/bridge 0.1.49-next.115 → 0.1.50
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/index.cjs +462 -1243
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -28
- package/dist/index.d.ts +4 -28
- package/dist/index.js +268 -1043
- package/dist/index.js.map +1 -1
- package/dist/styles.css +0 -135
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
--color-foreground: var(--ohw-foreground, #0c0a09);
|
|
47
47
|
--color-card-foreground: var(--ohw-card-foreground, #0c0a09);
|
|
48
48
|
--color-popover: var(--ohw-popover, #ffffff);
|
|
49
|
-
--color-popover-foreground: var(--ohw-popover-foreground, #0c0a09);
|
|
50
49
|
--color-secondary: var(--ohw-secondary, #f5f5f4);
|
|
51
50
|
--color-secondary-foreground: var(--ohw-secondary-foreground, #0c0a09);
|
|
52
51
|
--color-muted: var(--ohw-muted, #f5f5f4);
|
|
@@ -55,7 +54,6 @@
|
|
|
55
54
|
--color-accent-foreground: var(--ohw-accent-foreground, #0c0a09);
|
|
56
55
|
--color-destructive: var(--ohw-destructive, #c10007);
|
|
57
56
|
--color-destructive-foreground: var(--ohw-destructive-foreground, #fafaf9);
|
|
58
|
-
--color-bg-destructive-10: var(--ohw-bg-destructive-10, #c100071a);
|
|
59
57
|
--color-border: var(--ohw-border, #e7e5e4);
|
|
60
58
|
--color-input: var(--ohw-input, #e7e5e4);
|
|
61
59
|
--color-ring: var(--ohw-ring, #0885FE);
|
|
@@ -148,9 +146,6 @@
|
|
|
148
146
|
.left-1\/2 {
|
|
149
147
|
left: calc(1 / 2 * 100%);
|
|
150
148
|
}
|
|
151
|
-
.left-2 {
|
|
152
|
-
left: calc(var(--spacing) * 2);
|
|
153
|
-
}
|
|
154
149
|
.left-5 {
|
|
155
150
|
left: calc(var(--spacing) * 5);
|
|
156
151
|
}
|
|
@@ -338,9 +333,6 @@
|
|
|
338
333
|
.w-14 {
|
|
339
334
|
width: calc(var(--spacing) * 14);
|
|
340
335
|
}
|
|
341
|
-
.w-56 {
|
|
342
|
-
width: calc(var(--spacing) * 56);
|
|
343
|
-
}
|
|
344
336
|
.w-\[3px\] {
|
|
345
337
|
width: 3px;
|
|
346
338
|
}
|
|
@@ -378,9 +370,6 @@
|
|
|
378
370
|
.min-w-10 {
|
|
379
371
|
min-width: calc(var(--spacing) * 10);
|
|
380
372
|
}
|
|
381
|
-
.min-w-32 {
|
|
382
|
-
min-width: calc(var(--spacing) * 32);
|
|
383
|
-
}
|
|
384
373
|
.min-w-\[64px\] {
|
|
385
374
|
min-width: 64px;
|
|
386
375
|
}
|
|
@@ -396,9 +385,6 @@
|
|
|
396
385
|
.grow {
|
|
397
386
|
flex-grow: 1;
|
|
398
387
|
}
|
|
399
|
-
.origin-\[var\(--radix-dropdown-menu-content-transform-origin\)\] {
|
|
400
|
-
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
401
|
-
}
|
|
402
388
|
.origin-\[var\(--radix-tooltip-content-transform-origin\)\] {
|
|
403
389
|
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
404
390
|
}
|
|
@@ -414,10 +400,6 @@
|
|
|
414
400
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
415
401
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
416
402
|
}
|
|
417
|
-
.-translate-y-full {
|
|
418
|
-
--tw-translate-y: -100%;
|
|
419
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
420
|
-
}
|
|
421
403
|
.translate-y-1\/2 {
|
|
422
404
|
--tw-translate-y: calc(1 / 2 * 100%);
|
|
423
405
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -517,18 +499,12 @@
|
|
|
517
499
|
.overflow-x-auto {
|
|
518
500
|
overflow-x: auto;
|
|
519
501
|
}
|
|
520
|
-
.rounded-\[6px\] {
|
|
521
|
-
border-radius: 6px;
|
|
522
|
-
}
|
|
523
502
|
.rounded-\[10px\] {
|
|
524
503
|
border-radius: 10px;
|
|
525
504
|
}
|
|
526
505
|
.rounded-\[calc\(var\(--radius\,0\.5rem\)-2px\)\] {
|
|
527
506
|
border-radius: calc(var(--radius,0.5rem) - 2px);
|
|
528
507
|
}
|
|
529
|
-
.rounded-\[calc\(var\(--radius\,0\.5rem\)-4px\)\] {
|
|
530
|
-
border-radius: calc(var(--radius,0.5rem) - 4px);
|
|
531
|
-
}
|
|
532
508
|
.rounded-\[var\(--radius\,0\.5rem\)\] {
|
|
533
509
|
border-radius: var(--radius,0.5rem);
|
|
534
510
|
}
|
|
@@ -565,10 +541,6 @@
|
|
|
565
541
|
border-style: var(--tw-border-style);
|
|
566
542
|
border-width: 2px;
|
|
567
543
|
}
|
|
568
|
-
.border-t {
|
|
569
|
-
border-top-style: var(--tw-border-style);
|
|
570
|
-
border-top-width: 1px;
|
|
571
|
-
}
|
|
572
544
|
.border-b {
|
|
573
545
|
border-bottom-style: var(--tw-border-style);
|
|
574
546
|
border-bottom-width: 1px;
|
|
@@ -775,9 +747,6 @@
|
|
|
775
747
|
.pl-4 {
|
|
776
748
|
padding-left: calc(var(--spacing) * 4);
|
|
777
749
|
}
|
|
778
|
-
.pl-8 {
|
|
779
|
-
padding-left: calc(var(--spacing) * 8);
|
|
780
|
-
}
|
|
781
750
|
.text-center {
|
|
782
751
|
text-align: center;
|
|
783
752
|
}
|
|
@@ -910,9 +879,6 @@
|
|
|
910
879
|
.text-muted-foreground {
|
|
911
880
|
color: var(--color-muted-foreground);
|
|
912
881
|
}
|
|
913
|
-
.text-popover-foreground {
|
|
914
|
-
color: var(--color-popover-foreground);
|
|
915
|
-
}
|
|
916
882
|
.text-primary-foreground {
|
|
917
883
|
color: var(--color-primary-foreground);
|
|
918
884
|
}
|
|
@@ -963,10 +929,6 @@
|
|
|
963
929
|
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--ohw-primary));
|
|
964
930
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
965
931
|
}
|
|
966
|
-
.shadow-\[0px_4px_6px_0px_rgba\(0\,0\,0\,0\.1\)\,0px_2px_4px_0px_rgba\(0\,0\,0\,0\.1\)\] {
|
|
967
|
-
--tw-shadow: 0px 4px 6px 0px var(--tw-shadow-color, rgba(0,0,0,0.1)), 0px 2px 4px 0px var(--tw-shadow-color, rgba(0,0,0,0.1));
|
|
968
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
969
|
-
}
|
|
970
932
|
.shadow-lg {
|
|
971
933
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
972
934
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1056,11 +1018,6 @@
|
|
|
1056
1018
|
--tw-outline-style: none;
|
|
1057
1019
|
outline-style: none;
|
|
1058
1020
|
}
|
|
1059
|
-
.select-none {
|
|
1060
|
-
-webkit-user-select: none;
|
|
1061
|
-
-moz-user-select: none;
|
|
1062
|
-
user-select: none;
|
|
1063
|
-
}
|
|
1064
1021
|
.placeholder\:text-muted-foreground {
|
|
1065
1022
|
&::-moz-placeholder {
|
|
1066
1023
|
color: var(--color-muted-foreground);
|
|
@@ -1283,11 +1240,6 @@
|
|
|
1283
1240
|
}
|
|
1284
1241
|
}
|
|
1285
1242
|
}
|
|
1286
|
-
.focus\:bg-muted {
|
|
1287
|
-
&:focus {
|
|
1288
|
-
background-color: var(--color-muted);
|
|
1289
|
-
}
|
|
1290
|
-
}
|
|
1291
1243
|
.focus\:ring-2 {
|
|
1292
1244
|
&:focus {
|
|
1293
1245
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -1450,21 +1402,6 @@
|
|
|
1450
1402
|
}
|
|
1451
1403
|
}
|
|
1452
1404
|
}
|
|
1453
|
-
.data-\[disabled\]\:pointer-events-none {
|
|
1454
|
-
&[data-disabled] {
|
|
1455
|
-
pointer-events: none;
|
|
1456
|
-
}
|
|
1457
|
-
}
|
|
1458
|
-
.data-\[disabled\]\:opacity-50 {
|
|
1459
|
-
&[data-disabled] {
|
|
1460
|
-
opacity: 50%;
|
|
1461
|
-
}
|
|
1462
|
-
}
|
|
1463
|
-
.data-\[highlighted\]\:bg-muted {
|
|
1464
|
-
&[data-highlighted] {
|
|
1465
|
-
background-color: var(--color-muted);
|
|
1466
|
-
}
|
|
1467
|
-
}
|
|
1468
1405
|
.data-\[state\=off\]\:opacity-50 {
|
|
1469
1406
|
&[data-state="off"] {
|
|
1470
1407
|
opacity: 50%;
|
|
@@ -1500,39 +1437,6 @@
|
|
|
1500
1437
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1501
1438
|
}
|
|
1502
1439
|
}
|
|
1503
|
-
.data-\[variant\=destructive\]\:text-destructive {
|
|
1504
|
-
&[data-variant="destructive"] {
|
|
1505
|
-
color: var(--color-destructive);
|
|
1506
|
-
}
|
|
1507
|
-
}
|
|
1508
|
-
.data-\[variant\=destructive\]\:focus\:bg-bg-destructive-10 {
|
|
1509
|
-
&[data-variant="destructive"] {
|
|
1510
|
-
&:focus {
|
|
1511
|
-
background-color: var(--color-bg-destructive-10);
|
|
1512
|
-
}
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
.data-\[variant\=destructive\]\:focus\:text-destructive {
|
|
1516
|
-
&[data-variant="destructive"] {
|
|
1517
|
-
&:focus {
|
|
1518
|
-
color: var(--color-destructive);
|
|
1519
|
-
}
|
|
1520
|
-
}
|
|
1521
|
-
}
|
|
1522
|
-
.data-\[variant\=destructive\]\:data-\[highlighted\]\:bg-bg-destructive-10 {
|
|
1523
|
-
&[data-variant="destructive"] {
|
|
1524
|
-
&[data-highlighted] {
|
|
1525
|
-
background-color: var(--color-bg-destructive-10);
|
|
1526
|
-
}
|
|
1527
|
-
}
|
|
1528
|
-
}
|
|
1529
|
-
.data-\[variant\=destructive\]\:data-\[highlighted\]\:text-destructive {
|
|
1530
|
-
&[data-variant="destructive"] {
|
|
1531
|
-
&[data-highlighted] {
|
|
1532
|
-
color: var(--color-destructive);
|
|
1533
|
-
}
|
|
1534
|
-
}
|
|
1535
|
-
}
|
|
1536
1440
|
.sm\:contents {
|
|
1537
1441
|
@media (width >= 40rem) {
|
|
1538
1442
|
display: contents;
|
|
@@ -1593,56 +1497,17 @@
|
|
|
1593
1497
|
pointer-events: none;
|
|
1594
1498
|
}
|
|
1595
1499
|
}
|
|
1596
|
-
.\[\&_svg\]\:size-4 {
|
|
1597
|
-
& svg {
|
|
1598
|
-
width: calc(var(--spacing) * 4);
|
|
1599
|
-
height: calc(var(--spacing) * 4);
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
1500
|
.\[\&_svg\]\:shrink-0 {
|
|
1603
1501
|
& svg {
|
|
1604
1502
|
flex-shrink: 0;
|
|
1605
1503
|
}
|
|
1606
1504
|
}
|
|
1607
|
-
.data-\[variant\=destructive\]\:\[\&_svg\]\:text-destructive {
|
|
1608
|
-
&[data-variant="destructive"] {
|
|
1609
|
-
& svg {
|
|
1610
|
-
color: var(--color-destructive);
|
|
1611
|
-
}
|
|
1612
|
-
}
|
|
1613
|
-
}
|
|
1614
1505
|
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
|
|
1615
1506
|
& svg:not([class*='size-']) {
|
|
1616
1507
|
width: calc(var(--spacing) * 4);
|
|
1617
1508
|
height: calc(var(--spacing) * 4);
|
|
1618
1509
|
}
|
|
1619
1510
|
}
|
|
1620
|
-
.\[\&_svg\:not\(\[class\*\=absolute\]\)\]\:relative {
|
|
1621
|
-
& svg:not([class*=absolute]) {
|
|
1622
|
-
position: relative;
|
|
1623
|
-
}
|
|
1624
|
-
}
|
|
1625
|
-
.\[\&\>svg\:first-child\]\:absolute {
|
|
1626
|
-
&>svg:first-child {
|
|
1627
|
-
position: absolute;
|
|
1628
|
-
}
|
|
1629
|
-
}
|
|
1630
|
-
.\[\&\>svg\:first-child\]\:top-1\/2 {
|
|
1631
|
-
&>svg:first-child {
|
|
1632
|
-
top: calc(1 / 2 * 100%);
|
|
1633
|
-
}
|
|
1634
|
-
}
|
|
1635
|
-
.\[\&\>svg\:first-child\]\:left-2 {
|
|
1636
|
-
&>svg:first-child {
|
|
1637
|
-
left: calc(var(--spacing) * 2);
|
|
1638
|
-
}
|
|
1639
|
-
}
|
|
1640
|
-
.\[\&\>svg\:first-child\]\:-translate-y-1\/2 {
|
|
1641
|
-
&>svg:first-child {
|
|
1642
|
-
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1643
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1644
|
-
}
|
|
1645
|
-
}
|
|
1646
1511
|
[data-ohw-bridge-root] {
|
|
1647
1512
|
--color-primary: var(--ohw-primary, #0885FE);
|
|
1648
1513
|
--color-primary-foreground: var(--ohw-primary-foreground, #FAFAF9);
|