@copilotz/chat-ui 0.1.34 → 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 +141 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +141 -60
- package/dist/index.js.map +1 -1
- package/dist/styles.css +52 -3
- 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
|
}
|
|
@@ -1546,6 +1555,13 @@
|
|
|
1546
1555
|
.gap-6 {
|
|
1547
1556
|
gap: calc(var(--spacing) * 6);
|
|
1548
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
|
+
}
|
|
1549
1565
|
.space-y-2 {
|
|
1550
1566
|
:where(& > :not(:last-child)) {
|
|
1551
1567
|
--tw-space-y-reverse: 0;
|
|
@@ -1751,6 +1767,12 @@
|
|
|
1751
1767
|
background-color: color-mix(in oklab, var(--color-background) 80%, transparent);
|
|
1752
1768
|
}
|
|
1753
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
|
+
}
|
|
1754
1776
|
.bg-background\/95 {
|
|
1755
1777
|
background-color: color-mix(in srgb, hsl(var(--background)) 95%, transparent);
|
|
1756
1778
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2051,6 +2073,9 @@
|
|
|
2051
2073
|
.text-\[10px\] {
|
|
2052
2074
|
font-size: 10px;
|
|
2053
2075
|
}
|
|
2076
|
+
.text-\[11px\] {
|
|
2077
|
+
font-size: 11px;
|
|
2078
|
+
}
|
|
2054
2079
|
.leading-6 {
|
|
2055
2080
|
--tw-leading: calc(var(--spacing) * 6);
|
|
2056
2081
|
line-height: calc(var(--spacing) * 6);
|
|
@@ -2196,6 +2221,10 @@
|
|
|
2196
2221
|
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));
|
|
2197
2222
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2198
2223
|
}
|
|
2224
|
+
.shadow-\[0_0_0_10px_rgba\(239\,68\,68\,0\.08\)\] {
|
|
2225
|
+
--tw-shadow: 0 0 0 10px var(--tw-shadow-color, rgba(239,68,68,0.08));
|
|
2226
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2227
|
+
}
|
|
2199
2228
|
.shadow-lg {
|
|
2200
2229
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2201
2230
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3323,11 +3352,26 @@
|
|
|
3323
3352
|
height: calc(var(--spacing) * 20);
|
|
3324
3353
|
}
|
|
3325
3354
|
}
|
|
3355
|
+
.sm\:h-24 {
|
|
3356
|
+
@media (width >= 40rem) {
|
|
3357
|
+
height: calc(var(--spacing) * 24);
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3326
3360
|
.sm\:w-20 {
|
|
3327
3361
|
@media (width >= 40rem) {
|
|
3328
3362
|
width: calc(var(--spacing) * 20);
|
|
3329
3363
|
}
|
|
3330
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
|
+
}
|
|
3331
3375
|
.sm\:max-w-lg {
|
|
3332
3376
|
@media (width >= 40rem) {
|
|
3333
3377
|
max-width: var(--container-lg);
|
|
@@ -3353,6 +3397,11 @@
|
|
|
3353
3397
|
flex-direction: row;
|
|
3354
3398
|
}
|
|
3355
3399
|
}
|
|
3400
|
+
.sm\:items-center {
|
|
3401
|
+
@media (width >= 40rem) {
|
|
3402
|
+
align-items: center;
|
|
3403
|
+
}
|
|
3404
|
+
}
|
|
3356
3405
|
.sm\:justify-end {
|
|
3357
3406
|
@media (width >= 40rem) {
|
|
3358
3407
|
justify-content: flex-end;
|
|
@@ -3388,10 +3437,10 @@
|
|
|
3388
3437
|
text-align: left;
|
|
3389
3438
|
}
|
|
3390
3439
|
}
|
|
3391
|
-
.sm\:text-
|
|
3440
|
+
.sm\:text-xs {
|
|
3392
3441
|
@media (width >= 40rem) {
|
|
3393
|
-
font-size: var(--text-
|
|
3394
|
-
line-height: var(--tw-leading, var(--text-
|
|
3442
|
+
font-size: var(--text-xs);
|
|
3443
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
3395
3444
|
}
|
|
3396
3445
|
}
|
|
3397
3446
|
.md\:block {
|