@copilotz/chat-ui 0.1.35 → 0.1.36
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 +22 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +22 -25
- package/dist/index.js.map +1 -1
- package/dist/styles.css +48 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1140,6 +1140,9 @@
|
|
|
1140
1140
|
.h-1 {
|
|
1141
1141
|
height: calc(var(--spacing) * 1);
|
|
1142
1142
|
}
|
|
1143
|
+
.h-1\.5 {
|
|
1144
|
+
height: calc(var(--spacing) * 1.5);
|
|
1145
|
+
}
|
|
1143
1146
|
.h-2 {
|
|
1144
1147
|
height: calc(var(--spacing) * 2);
|
|
1145
1148
|
}
|
|
@@ -1287,9 +1290,15 @@
|
|
|
1287
1290
|
.w-16 {
|
|
1288
1291
|
width: calc(var(--spacing) * 16);
|
|
1289
1292
|
}
|
|
1293
|
+
.w-20 {
|
|
1294
|
+
width: calc(var(--spacing) * 20);
|
|
1295
|
+
}
|
|
1290
1296
|
.w-24 {
|
|
1291
1297
|
width: calc(var(--spacing) * 24);
|
|
1292
1298
|
}
|
|
1299
|
+
.w-32 {
|
|
1300
|
+
width: calc(var(--spacing) * 32);
|
|
1301
|
+
}
|
|
1293
1302
|
.w-48 {
|
|
1294
1303
|
width: calc(var(--spacing) * 48);
|
|
1295
1304
|
}
|
|
@@ -1335,9 +1344,6 @@
|
|
|
1335
1344
|
.max-w-4xl {
|
|
1336
1345
|
max-width: var(--container-4xl);
|
|
1337
1346
|
}
|
|
1338
|
-
.max-w-\[15rem\] {
|
|
1339
|
-
max-width: 15rem;
|
|
1340
|
-
}
|
|
1341
1347
|
.max-w-\[85\%\] {
|
|
1342
1348
|
max-width: 85%;
|
|
1343
1349
|
}
|
|
@@ -1549,6 +1555,13 @@
|
|
|
1549
1555
|
.gap-6 {
|
|
1550
1556
|
gap: calc(var(--spacing) * 6);
|
|
1551
1557
|
}
|
|
1558
|
+
.space-y-1 {
|
|
1559
|
+
:where(& > :not(:last-child)) {
|
|
1560
|
+
--tw-space-y-reverse: 0;
|
|
1561
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1562
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1552
1565
|
.space-y-2 {
|
|
1553
1566
|
:where(& > :not(:last-child)) {
|
|
1554
1567
|
--tw-space-y-reverse: 0;
|
|
@@ -1754,6 +1767,12 @@
|
|
|
1754
1767
|
background-color: color-mix(in oklab, var(--color-background) 80%, transparent);
|
|
1755
1768
|
}
|
|
1756
1769
|
}
|
|
1770
|
+
.bg-background\/90 {
|
|
1771
|
+
background-color: color-mix(in srgb, hsl(var(--background)) 90%, transparent);
|
|
1772
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1773
|
+
background-color: color-mix(in oklab, var(--color-background) 90%, transparent);
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1757
1776
|
.bg-background\/95 {
|
|
1758
1777
|
background-color: color-mix(in srgb, hsl(var(--background)) 95%, transparent);
|
|
1759
1778
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2054,6 +2073,9 @@
|
|
|
2054
2073
|
.text-\[10px\] {
|
|
2055
2074
|
font-size: 10px;
|
|
2056
2075
|
}
|
|
2076
|
+
.text-\[11px\] {
|
|
2077
|
+
font-size: 11px;
|
|
2078
|
+
}
|
|
2057
2079
|
.leading-6 {
|
|
2058
2080
|
--tw-leading: calc(var(--spacing) * 6);
|
|
2059
2081
|
line-height: calc(var(--spacing) * 6);
|
|
@@ -3330,11 +3352,26 @@
|
|
|
3330
3352
|
height: calc(var(--spacing) * 20);
|
|
3331
3353
|
}
|
|
3332
3354
|
}
|
|
3355
|
+
.sm\:h-24 {
|
|
3356
|
+
@media (width >= 40rem) {
|
|
3357
|
+
height: calc(var(--spacing) * 24);
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3333
3360
|
.sm\:w-20 {
|
|
3334
3361
|
@media (width >= 40rem) {
|
|
3335
3362
|
width: calc(var(--spacing) * 20);
|
|
3336
3363
|
}
|
|
3337
3364
|
}
|
|
3365
|
+
.sm\:w-24 {
|
|
3366
|
+
@media (width >= 40rem) {
|
|
3367
|
+
width: calc(var(--spacing) * 24);
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
.sm\:w-auto {
|
|
3371
|
+
@media (width >= 40rem) {
|
|
3372
|
+
width: auto;
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3338
3375
|
.sm\:max-w-lg {
|
|
3339
3376
|
@media (width >= 40rem) {
|
|
3340
3377
|
max-width: var(--container-lg);
|
|
@@ -3360,6 +3397,11 @@
|
|
|
3360
3397
|
flex-direction: row;
|
|
3361
3398
|
}
|
|
3362
3399
|
}
|
|
3400
|
+
.sm\:items-center {
|
|
3401
|
+
@media (width >= 40rem) {
|
|
3402
|
+
align-items: center;
|
|
3403
|
+
}
|
|
3404
|
+
}
|
|
3363
3405
|
.sm\:justify-end {
|
|
3364
3406
|
@media (width >= 40rem) {
|
|
3365
3407
|
justify-content: flex-end;
|
|
@@ -3395,10 +3437,10 @@
|
|
|
3395
3437
|
text-align: left;
|
|
3396
3438
|
}
|
|
3397
3439
|
}
|
|
3398
|
-
.sm\:text-
|
|
3440
|
+
.sm\:text-xs {
|
|
3399
3441
|
@media (width >= 40rem) {
|
|
3400
|
-
font-size: var(--text-
|
|
3401
|
-
line-height: var(--tw-leading, var(--text-
|
|
3442
|
+
font-size: var(--text-xs);
|
|
3443
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
3402
3444
|
}
|
|
3403
3445
|
}
|
|
3404
3446
|
.md\:block {
|