@copilotz/chat-ui 0.6.4 → 0.6.6
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 +49 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +49 -22
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -3
- 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
|
}
|
|
@@ -1070,9 +1073,6 @@
|
|
|
1070
1073
|
.\!inline {
|
|
1071
1074
|
display: inline !important;
|
|
1072
1075
|
}
|
|
1073
|
-
.block {
|
|
1074
|
-
display: block;
|
|
1075
|
-
}
|
|
1076
1076
|
.flex {
|
|
1077
1077
|
display: flex;
|
|
1078
1078
|
}
|
|
@@ -1372,6 +1372,9 @@
|
|
|
1372
1372
|
.min-w-\[8rem\] {
|
|
1373
1373
|
min-width: 8rem;
|
|
1374
1374
|
}
|
|
1375
|
+
.min-w-\[132px\] {
|
|
1376
|
+
min-width: 132px;
|
|
1377
|
+
}
|
|
1375
1378
|
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1376
1379
|
min-width: var(--radix-select-trigger-width);
|
|
1377
1380
|
}
|