@ohhwells/bridge 0.1.36-next.49 → 0.1.36-next.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 +487 -258
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +530 -301
- package/dist/index.js.map +1 -1
- package/dist/styles.css +34 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
:root, :host {
|
|
5
5
|
--font-sans: Figtree, sans-serif;
|
|
6
6
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
7
|
+
--color-gray-300: oklch(87.2% 0.01 258.338);
|
|
7
8
|
--color-stone-200: oklch(92.3% 0.003 48.717);
|
|
8
9
|
--color-stone-500: #78716C;
|
|
9
10
|
--color-stone-950: #0C0A09;
|
|
@@ -32,6 +33,8 @@
|
|
|
32
33
|
--radius-md: 6px;
|
|
33
34
|
--radius-lg: 0.5rem;
|
|
34
35
|
--radius-xl: 0.75rem;
|
|
36
|
+
--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
|
|
37
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
35
38
|
--default-transition-duration: 150ms;
|
|
36
39
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
37
40
|
--font-display: 'Instrument Serif', 'Times New Roman', serif;
|
|
@@ -61,6 +64,7 @@
|
|
|
61
64
|
--text-xs--letter-spacing: 0em;
|
|
62
65
|
--text-body: 18px;
|
|
63
66
|
--text-body--line-height: 1.5;
|
|
67
|
+
--radius-none: 0px;
|
|
64
68
|
--tracking-display-tight: -0.030em;
|
|
65
69
|
}
|
|
66
70
|
}
|
|
@@ -354,6 +358,9 @@
|
|
|
354
358
|
.transform {
|
|
355
359
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
356
360
|
}
|
|
361
|
+
.animate-pulse {
|
|
362
|
+
animation: var(--animate-pulse);
|
|
363
|
+
}
|
|
357
364
|
.cursor-default {
|
|
358
365
|
cursor: default;
|
|
359
366
|
}
|
|
@@ -452,6 +459,9 @@
|
|
|
452
459
|
.rounded-md {
|
|
453
460
|
border-radius: var(--radius-md);
|
|
454
461
|
}
|
|
462
|
+
.rounded-none {
|
|
463
|
+
border-radius: var(--radius-none);
|
|
464
|
+
}
|
|
455
465
|
.rounded-sm {
|
|
456
466
|
border-radius: var(--radius-sm);
|
|
457
467
|
}
|
|
@@ -540,6 +550,9 @@
|
|
|
540
550
|
.bg-foreground {
|
|
541
551
|
background-color: var(--color-foreground);
|
|
542
552
|
}
|
|
553
|
+
.bg-gray-300 {
|
|
554
|
+
background-color: var(--color-gray-300);
|
|
555
|
+
}
|
|
543
556
|
.bg-muted {
|
|
544
557
|
background-color: var(--color-muted);
|
|
545
558
|
}
|
|
@@ -882,6 +895,10 @@
|
|
|
882
895
|
--tw-duration: 200ms;
|
|
883
896
|
transition-duration: 200ms;
|
|
884
897
|
}
|
|
898
|
+
.ease-out {
|
|
899
|
+
--tw-ease: var(--ease-out);
|
|
900
|
+
transition-timing-function: var(--ease-out);
|
|
901
|
+
}
|
|
885
902
|
.outline-none {
|
|
886
903
|
--tw-outline-style: none;
|
|
887
904
|
outline-style: none;
|
|
@@ -1002,6 +1019,13 @@
|
|
|
1002
1019
|
}
|
|
1003
1020
|
}
|
|
1004
1021
|
}
|
|
1022
|
+
.hover\:bg-background {
|
|
1023
|
+
&:hover {
|
|
1024
|
+
@media (hover: hover) {
|
|
1025
|
+
background-color: var(--color-background);
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1005
1029
|
.hover\:bg-destructive\/80 {
|
|
1006
1030
|
&:hover {
|
|
1007
1031
|
@media (hover: hover) {
|
|
@@ -1759,11 +1783,20 @@
|
|
|
1759
1783
|
syntax: "*";
|
|
1760
1784
|
inherits: false;
|
|
1761
1785
|
}
|
|
1786
|
+
@property --tw-ease {
|
|
1787
|
+
syntax: "*";
|
|
1788
|
+
inherits: false;
|
|
1789
|
+
}
|
|
1762
1790
|
@property --tw-content {
|
|
1763
1791
|
syntax: "*";
|
|
1764
1792
|
initial-value: "";
|
|
1765
1793
|
inherits: false;
|
|
1766
1794
|
}
|
|
1795
|
+
@keyframes pulse {
|
|
1796
|
+
50% {
|
|
1797
|
+
opacity: 0.5;
|
|
1798
|
+
}
|
|
1799
|
+
}
|
|
1767
1800
|
@layer properties {
|
|
1768
1801
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1769
1802
|
*, ::before, ::after, ::backdrop {
|
|
@@ -1808,6 +1841,7 @@
|
|
|
1808
1841
|
--tw-drop-shadow-alpha: 100%;
|
|
1809
1842
|
--tw-drop-shadow-size: initial;
|
|
1810
1843
|
--tw-duration: initial;
|
|
1844
|
+
--tw-ease: initial;
|
|
1811
1845
|
--tw-content: "";
|
|
1812
1846
|
}
|
|
1813
1847
|
}
|