@ohhwells/bridge 0.1.30 → 0.1.31-next.29

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
@@ -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;
@@ -103,6 +104,9 @@
103
104
  .top-\[9px\] {
104
105
  top: 9px;
105
106
  }
107
+ .top-\[calc\(100\%\+4px\)\] {
108
+ top: calc(100% + 4px);
109
+ }
106
110
  .right-0 {
107
111
  right: calc(var(--spacing) * 0);
108
112
  }
@@ -133,6 +137,9 @@
133
137
  .z-2147483647 {
134
138
  z-index: 2147483647;
135
139
  }
140
+ .z-\[2147483646\] {
141
+ z-index: 2147483646;
142
+ }
136
143
  .z-\[2147483647\] {
137
144
  z-index: 2147483647;
138
145
  }
@@ -205,6 +212,9 @@
205
212
  .h-10 {
206
213
  height: calc(var(--spacing) * 10);
207
214
  }
215
+ .h-20 {
216
+ height: calc(var(--spacing) * 20);
217
+ }
208
218
  .h-\[70px\] {
209
219
  height: 70px;
210
220
  }
@@ -223,6 +233,15 @@
223
233
  .h-screen {
224
234
  height: 100vh;
225
235
  }
236
+ .max-h-48 {
237
+ max-height: calc(var(--spacing) * 48);
238
+ }
239
+ .max-h-\[calc\(100\%-32px\)\] {
240
+ max-height: calc(100% - 32px);
241
+ }
242
+ .max-h-\[calc\(100vh-32px\)\] {
243
+ max-height: calc(100vh - 32px);
244
+ }
226
245
  .min-h-dvh {
227
246
  min-height: 100dvh;
228
247
  }
@@ -244,9 +263,6 @@
244
263
  .w-14 {
245
264
  width: calc(var(--spacing) * 14);
246
265
  }
247
- .w-\[483px\] {
248
- width: 483px;
249
- }
250
266
  .w-\[var\(--radix-popover-trigger-width\)\] {
251
267
  width: var(--radix-popover-trigger-width);
252
268
  }
@@ -257,9 +273,15 @@
257
273
  .w-full {
258
274
  width: 100%;
259
275
  }
276
+ .max-w-\[483px\] {
277
+ max-width: 483px;
278
+ }
260
279
  .max-w-\[1280px\] {
261
280
  max-width: 1280px;
262
281
  }
282
+ .max-w-\[calc\(100\%-16px\)\] {
283
+ max-width: calc(100% - 16px);
284
+ }
263
285
  .max-w-\[calc\(100vw-16px\)\] {
264
286
  max-width: calc(100vw - 16px);
265
287
  }
@@ -331,6 +353,9 @@
331
353
  .justify-end {
332
354
  justify-content: flex-end;
333
355
  }
356
+ .gap-0 {
357
+ gap: calc(var(--spacing) * 0);
358
+ }
334
359
  .gap-1 {
335
360
  gap: calc(var(--spacing) * 1);
336
361
  }
@@ -460,6 +485,12 @@
460
485
  background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
461
486
  }
462
487
  }
488
+ .bg-black\/50 {
489
+ background-color: color-mix(in srgb, #000 50%, transparent);
490
+ @supports (color: color-mix(in lab, red, red)) {
491
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
492
+ }
493
+ }
463
494
  .bg-destructive {
464
495
  background-color: var(--color-destructive);
465
496
  }
@@ -1072,6 +1103,11 @@
1072
1103
  letter-spacing: var(--tw-tracking, var(--text-5xl--letter-spacing));
1073
1104
  }
1074
1105
  }
1106
+ .md\:w-md {
1107
+ @media (width >= 48rem) {
1108
+ width: var(--container-md);
1109
+ }
1110
+ }
1075
1111
  .\[\&_svg\]\:pointer-events-none {
1076
1112
  & svg {
1077
1113
  pointer-events: none;
@@ -1123,6 +1159,20 @@
1123
1159
  --ohw-success: #16a34a;
1124
1160
  --ohw-hover-success: #15803d;
1125
1161
  }
1162
+ [data-ohw-visible-viewport] {
1163
+ position: fixed;
1164
+ left: 0;
1165
+ width: 100%;
1166
+ pointer-events: none;
1167
+ z-index: 2147483645;
1168
+ overflow: hidden;
1169
+ }
1170
+ [data-ohw-visible-viewport] [data-slot="dialog-overlay"] {
1171
+ pointer-events: auto;
1172
+ }
1173
+ [data-ohw-link-page-dropdown] {
1174
+ pointer-events: auto;
1175
+ }
1126
1176
  [data-ohw-link-modal-root],
1127
1177
  [data-ohw-link-popover-root] {
1128
1178
  --ohw-background: #ffffff;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ohhwells/bridge",
3
- "version": "0.1.30",
3
+ "version": "0.1.31-next.29",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",