@ohhwells/bridge 0.1.46 → 0.1.48
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 +677 -322
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +573 -219
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -80,6 +80,12 @@
|
|
|
80
80
|
.pointer-events-none {
|
|
81
81
|
pointer-events: none;
|
|
82
82
|
}
|
|
83
|
+
.collapse {
|
|
84
|
+
visibility: collapse;
|
|
85
|
+
}
|
|
86
|
+
.invisible {
|
|
87
|
+
visibility: hidden;
|
|
88
|
+
}
|
|
83
89
|
.visible {
|
|
84
90
|
visibility: visible;
|
|
85
91
|
}
|
|
@@ -233,6 +239,9 @@
|
|
|
233
239
|
.inline-flex {
|
|
234
240
|
display: inline-flex;
|
|
235
241
|
}
|
|
242
|
+
.table {
|
|
243
|
+
display: table;
|
|
244
|
+
}
|
|
236
245
|
.size-4 {
|
|
237
246
|
width: calc(var(--spacing) * 4);
|
|
238
247
|
height: calc(var(--spacing) * 4);
|
|
@@ -632,6 +641,10 @@
|
|
|
632
641
|
.bg-white {
|
|
633
642
|
background-color: var(--color-white);
|
|
634
643
|
}
|
|
644
|
+
.object-cover {
|
|
645
|
+
-o-object-fit: cover;
|
|
646
|
+
object-fit: cover;
|
|
647
|
+
}
|
|
635
648
|
.p-0 {
|
|
636
649
|
padding: calc(var(--spacing) * 0);
|
|
637
650
|
}
|
|
@@ -895,6 +908,9 @@
|
|
|
895
908
|
.italic {
|
|
896
909
|
font-style: italic;
|
|
897
910
|
}
|
|
911
|
+
.line-through {
|
|
912
|
+
text-decoration-line: line-through;
|
|
913
|
+
}
|
|
898
914
|
.underline {
|
|
899
915
|
text-decoration-line: underline;
|
|
900
916
|
}
|
|
@@ -952,6 +968,10 @@
|
|
|
952
968
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
953
969
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
954
970
|
}
|
|
971
|
+
.ring {
|
|
972
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
973
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
974
|
+
}
|
|
955
975
|
.ring-0 {
|
|
956
976
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
957
977
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|