@copilotz/chat-ui 0.9.4 → 0.9.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 +108 -66
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +108 -67
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -12
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -272,9 +272,6 @@
|
|
|
272
272
|
.inset-y-0 {
|
|
273
273
|
inset-block: calc(var(--spacing) * 0);
|
|
274
274
|
}
|
|
275
|
-
.-top-2 {
|
|
276
|
-
top: calc(var(--spacing) * -2);
|
|
277
|
-
}
|
|
278
275
|
.top-0 {
|
|
279
276
|
top: calc(var(--spacing) * 0);
|
|
280
277
|
}
|
|
@@ -296,9 +293,6 @@
|
|
|
296
293
|
.top-\[50\%\] {
|
|
297
294
|
top: 50%;
|
|
298
295
|
}
|
|
299
|
-
.-right-2 {
|
|
300
|
-
right: calc(var(--spacing) * -2);
|
|
301
|
-
}
|
|
302
296
|
.right-0 {
|
|
303
297
|
right: calc(var(--spacing) * 0);
|
|
304
298
|
}
|
|
@@ -323,9 +317,6 @@
|
|
|
323
317
|
.bottom-full {
|
|
324
318
|
bottom: 100%;
|
|
325
319
|
}
|
|
326
|
-
.-left-2 {
|
|
327
|
-
left: calc(var(--spacing) * -2);
|
|
328
|
-
}
|
|
329
320
|
.left-0 {
|
|
330
321
|
left: calc(var(--spacing) * 0);
|
|
331
322
|
}
|
|
@@ -1245,15 +1236,15 @@
|
|
|
1245
1236
|
.min-h-9 {
|
|
1246
1237
|
min-height: calc(var(--spacing) * 9);
|
|
1247
1238
|
}
|
|
1239
|
+
.min-h-28 {
|
|
1240
|
+
min-height: calc(var(--spacing) * 28);
|
|
1241
|
+
}
|
|
1248
1242
|
.min-h-\[60px\] {
|
|
1249
1243
|
min-height: 60px;
|
|
1250
1244
|
}
|
|
1251
1245
|
.min-h-\[60vh\] {
|
|
1252
1246
|
min-height: 60vh;
|
|
1253
1247
|
}
|
|
1254
|
-
.min-h-\[100px\] {
|
|
1255
|
-
min-height: 100px;
|
|
1256
|
-
}
|
|
1257
1248
|
.min-h-svh {
|
|
1258
1249
|
min-height: 100svh;
|
|
1259
1250
|
}
|
|
@@ -1383,6 +1374,9 @@
|
|
|
1383
1374
|
.max-w-\[calc\(100vw-2rem\)\] {
|
|
1384
1375
|
max-width: calc(100vw - 2rem);
|
|
1385
1376
|
}
|
|
1377
|
+
.max-w-\[min\(42rem\,85\%\)\] {
|
|
1378
|
+
max-width: min(42rem, 85%);
|
|
1379
|
+
}
|
|
1386
1380
|
.max-w-full {
|
|
1387
1381
|
max-width: 100%;
|
|
1388
1382
|
}
|
|
@@ -1513,6 +1507,9 @@
|
|
|
1513
1507
|
.resize-none {
|
|
1514
1508
|
resize: none;
|
|
1515
1509
|
}
|
|
1510
|
+
.resize-y {
|
|
1511
|
+
resize: vertical;
|
|
1512
|
+
}
|
|
1516
1513
|
.auto-rows-min {
|
|
1517
1514
|
grid-auto-rows: min-content;
|
|
1518
1515
|
}
|
|
@@ -1851,6 +1848,12 @@
|
|
|
1851
1848
|
background-color: color-mix(in oklab, var(--color-muted) 20%, transparent);
|
|
1852
1849
|
}
|
|
1853
1850
|
}
|
|
1851
|
+
.bg-muted\/30 {
|
|
1852
|
+
background-color: color-mix(in srgb, hsl(var(--muted)) 30%, transparent);
|
|
1853
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1854
|
+
background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1854
1857
|
.bg-muted\/50 {
|
|
1855
1858
|
background-color: color-mix(in srgb, hsl(var(--muted)) 50%, transparent);
|
|
1856
1859
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3106,6 +3109,11 @@
|
|
|
3106
3109
|
opacity: 50%;
|
|
3107
3110
|
}
|
|
3108
3111
|
}
|
|
3112
|
+
.disabled\:opacity-70 {
|
|
3113
|
+
&:disabled {
|
|
3114
|
+
opacity: 70%;
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3109
3117
|
.in-data-\[side\=left\]\:cursor-w-resize {
|
|
3110
3118
|
:where(*[data-side="left"]) & {
|
|
3111
3119
|
cursor: w-resize;
|