@ohhwells/bridge 0.1.29-next.21 → 0.1.29-next.25
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 +2 -2
- package/dist/index.cjs +563 -195
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -9
- package/dist/index.d.ts +4 -9
- package/dist/index.js +558 -190
- package/dist/index.js.map +1 -1
- package/dist/styles.css +41 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--color-black: #000;
|
|
8
8
|
--color-white: #fff;
|
|
9
9
|
--spacing: 0.25rem;
|
|
10
|
+
--container-md: 28rem;
|
|
10
11
|
--text-xs: 12px;
|
|
11
12
|
--text-xs--line-height: 16px;
|
|
12
13
|
--text-sm: 14px;
|
|
@@ -133,6 +134,9 @@
|
|
|
133
134
|
.z-2147483647 {
|
|
134
135
|
z-index: 2147483647;
|
|
135
136
|
}
|
|
137
|
+
.z-\[2147483646\] {
|
|
138
|
+
z-index: 2147483646;
|
|
139
|
+
}
|
|
136
140
|
.z-\[2147483647\] {
|
|
137
141
|
z-index: 2147483647;
|
|
138
142
|
}
|
|
@@ -223,6 +227,12 @@
|
|
|
223
227
|
.h-screen {
|
|
224
228
|
height: 100vh;
|
|
225
229
|
}
|
|
230
|
+
.max-h-\[calc\(100\%-32px\)\] {
|
|
231
|
+
max-height: calc(100% - 32px);
|
|
232
|
+
}
|
|
233
|
+
.max-h-\[calc\(100vh-32px\)\] {
|
|
234
|
+
max-height: calc(100vh - 32px);
|
|
235
|
+
}
|
|
226
236
|
.min-h-dvh {
|
|
227
237
|
min-height: 100dvh;
|
|
228
238
|
}
|
|
@@ -244,9 +254,6 @@
|
|
|
244
254
|
.w-14 {
|
|
245
255
|
width: calc(var(--spacing) * 14);
|
|
246
256
|
}
|
|
247
|
-
.w-\[483px\] {
|
|
248
|
-
width: 483px;
|
|
249
|
-
}
|
|
250
257
|
.w-\[var\(--radix-popover-trigger-width\)\] {
|
|
251
258
|
width: var(--radix-popover-trigger-width);
|
|
252
259
|
}
|
|
@@ -257,9 +264,15 @@
|
|
|
257
264
|
.w-full {
|
|
258
265
|
width: 100%;
|
|
259
266
|
}
|
|
267
|
+
.max-w-\[483px\] {
|
|
268
|
+
max-width: 483px;
|
|
269
|
+
}
|
|
260
270
|
.max-w-\[1280px\] {
|
|
261
271
|
max-width: 1280px;
|
|
262
272
|
}
|
|
273
|
+
.max-w-\[calc\(100\%-16px\)\] {
|
|
274
|
+
max-width: calc(100% - 16px);
|
|
275
|
+
}
|
|
263
276
|
.max-w-\[calc\(100vw-16px\)\] {
|
|
264
277
|
max-width: calc(100vw - 16px);
|
|
265
278
|
}
|
|
@@ -331,6 +344,9 @@
|
|
|
331
344
|
.justify-end {
|
|
332
345
|
justify-content: flex-end;
|
|
333
346
|
}
|
|
347
|
+
.gap-0 {
|
|
348
|
+
gap: calc(var(--spacing) * 0);
|
|
349
|
+
}
|
|
334
350
|
.gap-1 {
|
|
335
351
|
gap: calc(var(--spacing) * 1);
|
|
336
352
|
}
|
|
@@ -460,6 +476,12 @@
|
|
|
460
476
|
background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
|
|
461
477
|
}
|
|
462
478
|
}
|
|
479
|
+
.bg-black\/50 {
|
|
480
|
+
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
481
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
482
|
+
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
483
|
+
}
|
|
484
|
+
}
|
|
463
485
|
.bg-destructive {
|
|
464
486
|
background-color: var(--color-destructive);
|
|
465
487
|
}
|
|
@@ -1072,6 +1094,11 @@
|
|
|
1072
1094
|
letter-spacing: var(--tw-tracking, var(--text-5xl--letter-spacing));
|
|
1073
1095
|
}
|
|
1074
1096
|
}
|
|
1097
|
+
.md\:w-md {
|
|
1098
|
+
@media (width >= 48rem) {
|
|
1099
|
+
width: var(--container-md);
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1075
1102
|
.\[\&_svg\]\:pointer-events-none {
|
|
1076
1103
|
& svg {
|
|
1077
1104
|
pointer-events: none;
|
|
@@ -1123,6 +1150,17 @@
|
|
|
1123
1150
|
--ohw-success: #16a34a;
|
|
1124
1151
|
--ohw-hover-success: #15803d;
|
|
1125
1152
|
}
|
|
1153
|
+
[data-ohw-visible-viewport] {
|
|
1154
|
+
position: fixed;
|
|
1155
|
+
left: 0;
|
|
1156
|
+
width: 100%;
|
|
1157
|
+
pointer-events: none;
|
|
1158
|
+
z-index: 2147483645;
|
|
1159
|
+
overflow: hidden;
|
|
1160
|
+
}
|
|
1161
|
+
[data-ohw-visible-viewport] [data-slot="dialog-overlay"] {
|
|
1162
|
+
pointer-events: auto;
|
|
1163
|
+
}
|
|
1126
1164
|
[data-ohw-link-modal-root],
|
|
1127
1165
|
[data-ohw-link-popover-root] {
|
|
1128
1166
|
--ohw-background: #ffffff;
|