@copilotz/chat-ui 0.6.3 → 0.6.5
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 +101 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +101 -39
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -244,6 +244,9 @@
|
|
|
244
244
|
.pointer-events-none {
|
|
245
245
|
pointer-events: none;
|
|
246
246
|
}
|
|
247
|
+
.invisible {
|
|
248
|
+
visibility: hidden;
|
|
249
|
+
}
|
|
247
250
|
.visible {
|
|
248
251
|
visibility: visible;
|
|
249
252
|
}
|
|
@@ -1369,6 +1372,9 @@
|
|
|
1369
1372
|
.min-w-\[8rem\] {
|
|
1370
1373
|
min-width: 8rem;
|
|
1371
1374
|
}
|
|
1375
|
+
.min-w-\[132px\] {
|
|
1376
|
+
min-width: 132px;
|
|
1377
|
+
}
|
|
1372
1378
|
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1373
1379
|
min-width: var(--radix-select-trigger-width);
|
|
1374
1380
|
}
|