@ohhwells/bridge 0.1.43 → 0.1.45

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/styles.css CHANGED
@@ -40,26 +40,27 @@
40
40
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
41
41
  --default-transition-duration: 150ms;
42
42
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
43
+ --radius: 0.5rem;
43
44
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
44
45
  --font-body: 'Red Hat Display', system-ui, sans-serif;
45
46
  --color-primary: var(--ohw-primary, #0885FE);
46
47
  --color-primary-foreground: var(--ohw-primary-foreground, #FAFAF9);
47
48
  --color-primary-50: var(--ohw-primary-50, #EFF6FF);
48
49
  --color-background: var(--ohw-background, #ffffff);
49
- --color-foreground: var(--ohw-foreground, #020617);
50
- --color-card-foreground: var(--ohw-card-foreground, #020617);
50
+ --color-foreground: var(--ohw-foreground, #0c0a09);
51
+ --color-card-foreground: var(--ohw-card-foreground, #0c0a09);
51
52
  --color-popover: var(--ohw-popover, #ffffff);
52
- --color-secondary: var(--ohw-secondary, #f1f5f9);
53
- --color-secondary-foreground: var(--ohw-secondary-foreground, #0f172a);
54
- --color-muted: var(--ohw-muted, #f1f5f9);
55
- --color-muted-foreground: var(--ohw-muted-foreground, #64748b);
56
- --color-accent: var(--ohw-accent, #f1f5f9);
57
- --color-accent-foreground: var(--ohw-accent-foreground, #0f172a);
58
- --color-destructive: var(--ohw-destructive, #dc2626);
59
- --color-destructive-foreground: var(--ohw-destructive-foreground, #f8fafc);
60
- --color-border: var(--ohw-border, #e2e8f0);
61
- --color-input: var(--ohw-input, #e2e8f0);
62
- --color-ring: var(--ohw-ring, #64748b);
53
+ --color-secondary: var(--ohw-secondary, #f5f5f4);
54
+ --color-secondary-foreground: var(--ohw-secondary-foreground, #0c0a09);
55
+ --color-muted: var(--ohw-muted, #f5f5f4);
56
+ --color-muted-foreground: var(--ohw-muted-foreground, #78716c);
57
+ --color-accent: var(--ohw-accent, #f5f5f4);
58
+ --color-accent-foreground: var(--ohw-accent-foreground, #0c0a09);
59
+ --color-destructive: var(--ohw-destructive, #c10007);
60
+ --color-destructive-foreground: var(--ohw-destructive-foreground, #fafaf9);
61
+ --color-border: var(--ohw-border, #e7e5e4);
62
+ --color-input: var(--ohw-input, #e7e5e4);
63
+ --color-ring: var(--ohw-ring, #0885FE);
63
64
  --text-5xl--letter-spacing: -0.025em;
64
65
  --text-4xl--letter-spacing: -0.025em;
65
66
  --text-xl--letter-spacing: -0.025em;
@@ -199,15 +200,9 @@
199
200
  .mt-0\.5 {
200
201
  margin-top: calc(var(--spacing) * 0.5);
201
202
  }
202
- .mt-2 {
203
- margin-top: calc(var(--spacing) * 2);
204
- }
205
203
  .mr-\[-1px\] {
206
204
  margin-right: -1px;
207
205
  }
208
- .mb-2 {
209
- margin-bottom: calc(var(--spacing) * 2);
210
- }
211
206
  .mb-4 {
212
207
  margin-bottom: calc(var(--spacing) * 4);
213
208
  }
@@ -254,6 +249,9 @@
254
249
  width: calc(var(--spacing) * 8);
255
250
  height: calc(var(--spacing) * 8);
256
251
  }
252
+ .\!h-full {
253
+ height: 100% !important;
254
+ }
257
255
  .h-6 {
258
256
  height: calc(var(--spacing) * 6);
259
257
  }
@@ -311,6 +309,9 @@
311
309
  .min-h-screen {
312
310
  min-height: 100vh;
313
311
  }
312
+ .\!w-full {
313
+ width: 100% !important;
314
+ }
314
315
  .w-2 {
315
316
  width: calc(var(--spacing) * 2);
316
317
  }
@@ -381,6 +382,9 @@
381
382
  .grow {
382
383
  flex-grow: 1;
383
384
  }
385
+ .origin-\[var\(--radix-tooltip-content-transform-origin\)\] {
386
+ transform-origin: var(--radix-tooltip-content-transform-origin);
387
+ }
384
388
  .-translate-x-1\/2 {
385
389
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
386
390
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -412,6 +416,9 @@
412
416
  .cursor-pointer {
413
417
  cursor: pointer;
414
418
  }
419
+ .cursor-text {
420
+ cursor: text;
421
+ }
415
422
  .resize {
416
423
  resize: both;
417
424
  }
@@ -489,12 +496,15 @@
489
496
  .overflow-x-auto {
490
497
  overflow-x: auto;
491
498
  }
492
- .rounded {
493
- border-radius: 0.25rem;
494
- }
495
499
  .rounded-\[10px\] {
496
500
  border-radius: 10px;
497
501
  }
502
+ .rounded-\[calc\(var\(--radius\,0\.5rem\)-2px\)\] {
503
+ border-radius: calc(var(--radius,0.5rem) - 2px);
504
+ }
505
+ .rounded-\[var\(--radius\,0\.5rem\)\] {
506
+ border-radius: var(--radius,0.5rem);
507
+ }
498
508
  .rounded-full {
499
509
  border-radius: calc(infinity * 1px);
500
510
  }
@@ -914,16 +924,12 @@
914
924
  --tw-shadow: 0 0 0 1px var(--tw-shadow-color, var(--ohw-primary));
915
925
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
916
926
  }
917
- .shadow-\[0px_2px_4px_-2px_rgba\(0\,0\,0\,0\.1\)\,0px_4px_6px_-1px_rgba\(0\,0\,0\,0\.1\)\] {
918
- --tw-shadow: 0px 2px 4px -2px var(--tw-shadow-color, rgba(0,0,0,0.1)), 0px 4px 6px -1px var(--tw-shadow-color, rgba(0,0,0,0.1));
919
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
920
- }
921
927
  .shadow-lg {
922
928
  --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));
923
929
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
924
930
  }
925
931
  .shadow-md {
926
- --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
932
+ --tw-shadow: 0px 2px 4px -2px var(--tw-shadow-color, rgba(0, 0, 0, 0.1)), 0px 4px 6px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1));
927
933
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
928
934
  }
929
935
  .shadow-none {
@@ -1508,34 +1514,35 @@
1508
1514
  --ohw-primary-foreground: #FAFAF9;
1509
1515
  --ohw-primary-50: #EFF6FF;
1510
1516
  --ohw-background: #ffffff;
1511
- --ohw-foreground: #020617;
1517
+ --ohw-foreground: #0c0a09;
1512
1518
  --ohw-card: #ffffff;
1513
- --ohw-card-foreground: #020617;
1519
+ --ohw-card-foreground: #0c0a09;
1514
1520
  --ohw-popover: #ffffff;
1515
- --ohw-popover-foreground: #020617;
1516
- --ohw-hover-primary: #1e293b;
1517
- --ohw-secondary: #f1f5f9;
1518
- --ohw-secondary-foreground: #0f172a;
1519
- --ohw-hover-secondary: #e2e8f0;
1520
- --ohw-muted: #f1f5f9;
1521
- --ohw-muted-foreground: #64748b;
1522
- --ohw-accent: #f1f5f9;
1523
- --ohw-accent-foreground: #0f172a;
1524
- --ohw-bg-accent-50: #f1f5f980;
1525
- --ohw-bg-muted-40: #f1f5f966;
1526
- --ohw-bg-muted-50: #f1f5f980;
1527
- --ohw-destructive: #dc2626;
1528
- --ohw-destructive-foreground: #f8fafc;
1521
+ --ohw-popover-foreground: #0c0a09;
1522
+ --ohw-hover-primary: #1c1917;
1523
+ --ohw-secondary: #f5f5f4;
1524
+ --ohw-secondary-foreground: #0c0a09;
1525
+ --ohw-hover-secondary: #e7e5e4;
1526
+ --ohw-muted: #f5f5f4;
1527
+ --ohw-muted-foreground: #78716c;
1528
+ --ohw-accent: #f5f5f4;
1529
+ --ohw-accent-foreground: #0c0a09;
1530
+ --ohw-bg-accent-50: #f5f5f480;
1531
+ --ohw-bg-muted-40: #f5f5f466;
1532
+ --ohw-bg-muted-50: #f5f5f480;
1533
+ --ohw-destructive: #c10007;
1534
+ --ohw-destructive-foreground: #fafaf9;
1529
1535
  --ohw-hover-destructive: #ef4444;
1530
- --ohw-bg-destructive-10: #dc26261a;
1531
- --ohw-hover-destructive-20: #dc262633;
1536
+ --ohw-bg-destructive-10: #c100071a;
1537
+ --ohw-hover-destructive-20: #c1000733;
1532
1538
  --ohw-border-destructive-50: #fecaca;
1533
- --ohw-border: #e2e8f0;
1534
- --ohw-border-muted-40: #f1f5f966;
1535
- --ohw-input: #e2e8f0;
1536
- --ohw-ring: #64748b;
1539
+ --ohw-border: #e7e5e4;
1540
+ --ohw-border-muted-40: #f5f5f466;
1541
+ --ohw-input: #e7e5e4;
1542
+ --ohw-ring: #0885FE;
1537
1543
  --ohw-success: #16a34a;
1538
1544
  --ohw-hover-success: #15803d;
1545
+ --radius: 0.5rem;
1539
1546
  }
1540
1547
  [data-ohw-visible-viewport] {
1541
1548
  position: fixed;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ohhwells/bridge",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",