@copilotz/chat-ui 0.7.5 → 0.7.8
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 +456 -327
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -1
- package/dist/index.d.ts +12 -1
- package/dist/index.js +467 -333
- package/dist/index.js.map +1 -1
- package/dist/styles.css +39 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1087,6 +1087,9 @@
|
|
|
1087
1087
|
.\!inline {
|
|
1088
1088
|
display: inline !important;
|
|
1089
1089
|
}
|
|
1090
|
+
.block {
|
|
1091
|
+
display: block;
|
|
1092
|
+
}
|
|
1090
1093
|
.flex {
|
|
1091
1094
|
display: flex;
|
|
1092
1095
|
}
|
|
@@ -1227,6 +1230,9 @@
|
|
|
1227
1230
|
.max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
1228
1231
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
1229
1232
|
}
|
|
1233
|
+
.max-h-\[65vh\] {
|
|
1234
|
+
max-height: 65vh;
|
|
1235
|
+
}
|
|
1230
1236
|
.max-h-\[120px\] {
|
|
1231
1237
|
max-height: 120px;
|
|
1232
1238
|
}
|
|
@@ -1326,6 +1332,9 @@
|
|
|
1326
1332
|
.w-\[280px\] {
|
|
1327
1333
|
width: 280px;
|
|
1328
1334
|
}
|
|
1335
|
+
.w-\[min\(calc\(100vw-2rem\)\,48rem\)\] {
|
|
1336
|
+
width: min(calc(100vw - 2rem), 48rem);
|
|
1337
|
+
}
|
|
1329
1338
|
.w-auto {
|
|
1330
1339
|
width: auto;
|
|
1331
1340
|
}
|
|
@@ -1365,6 +1374,9 @@
|
|
|
1365
1374
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
1366
1375
|
max-width: calc(100% - 2rem);
|
|
1367
1376
|
}
|
|
1377
|
+
.max-w-\[calc\(100vw-2rem\)\] {
|
|
1378
|
+
max-width: calc(100vw - 2rem);
|
|
1379
|
+
}
|
|
1368
1380
|
.max-w-full {
|
|
1369
1381
|
max-width: 100%;
|
|
1370
1382
|
}
|
|
@@ -1386,6 +1398,9 @@
|
|
|
1386
1398
|
.min-w-5 {
|
|
1387
1399
|
min-width: calc(var(--spacing) * 5);
|
|
1388
1400
|
}
|
|
1401
|
+
.min-w-48 {
|
|
1402
|
+
min-width: calc(var(--spacing) * 48);
|
|
1403
|
+
}
|
|
1389
1404
|
.min-w-56 {
|
|
1390
1405
|
min-width: calc(var(--spacing) * 56);
|
|
1391
1406
|
}
|
|
@@ -1501,6 +1516,9 @@
|
|
|
1501
1516
|
.grid-cols-\[1rem_minmax\(0\,1fr\)\] {
|
|
1502
1517
|
grid-template-columns: 1rem minmax(0,1fr);
|
|
1503
1518
|
}
|
|
1519
|
+
.grid-cols-\[auto_minmax\(0\,1fr\)\] {
|
|
1520
|
+
grid-template-columns: auto minmax(0,1fr);
|
|
1521
|
+
}
|
|
1504
1522
|
.grid-rows-\[auto_auto\] {
|
|
1505
1523
|
grid-template-rows: auto auto;
|
|
1506
1524
|
}
|
|
@@ -1596,6 +1614,9 @@
|
|
|
1596
1614
|
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
1597
1615
|
}
|
|
1598
1616
|
}
|
|
1617
|
+
.gap-x-4 {
|
|
1618
|
+
column-gap: calc(var(--spacing) * 4);
|
|
1619
|
+
}
|
|
1599
1620
|
.-space-x-1\.5 {
|
|
1600
1621
|
:where(& > :not(:last-child)) {
|
|
1601
1622
|
--tw-space-x-reverse: 0;
|
|
@@ -1603,6 +1624,9 @@
|
|
|
1603
1624
|
margin-inline-end: calc(calc(var(--spacing) * -1.5) * calc(1 - var(--tw-space-x-reverse)));
|
|
1604
1625
|
}
|
|
1605
1626
|
}
|
|
1627
|
+
.gap-y-2 {
|
|
1628
|
+
row-gap: calc(var(--spacing) * 2);
|
|
1629
|
+
}
|
|
1606
1630
|
.self-start {
|
|
1607
1631
|
align-self: flex-start;
|
|
1608
1632
|
}
|
|
@@ -1776,6 +1800,12 @@
|
|
|
1776
1800
|
background-color: color-mix(in oklab, var(--color-background) 95%, transparent);
|
|
1777
1801
|
}
|
|
1778
1802
|
}
|
|
1803
|
+
.bg-black\/10 {
|
|
1804
|
+
background-color: color-mix(in srgb, #000 10%, transparent);
|
|
1805
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1806
|
+
background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1779
1809
|
.bg-black\/50 {
|
|
1780
1810
|
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
1781
1811
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1917,6 +1947,9 @@
|
|
|
1917
1947
|
.fill-primary {
|
|
1918
1948
|
fill: var(--color-primary);
|
|
1919
1949
|
}
|
|
1950
|
+
.object-contain {
|
|
1951
|
+
object-fit: contain;
|
|
1952
|
+
}
|
|
1920
1953
|
.object-cover {
|
|
1921
1954
|
object-fit: cover;
|
|
1922
1955
|
}
|
|
@@ -1926,6 +1959,9 @@
|
|
|
1926
1959
|
.p-1 {
|
|
1927
1960
|
padding: calc(var(--spacing) * 1);
|
|
1928
1961
|
}
|
|
1962
|
+
.p-1\.5 {
|
|
1963
|
+
padding: calc(var(--spacing) * 1.5);
|
|
1964
|
+
}
|
|
1929
1965
|
.p-2 {
|
|
1930
1966
|
padding: calc(var(--spacing) * 2);
|
|
1931
1967
|
}
|
|
@@ -1938,6 +1974,9 @@
|
|
|
1938
1974
|
.p-6 {
|
|
1939
1975
|
padding: calc(var(--spacing) * 6);
|
|
1940
1976
|
}
|
|
1977
|
+
.p-8 {
|
|
1978
|
+
padding: calc(var(--spacing) * 8);
|
|
1979
|
+
}
|
|
1941
1980
|
.p-px {
|
|
1942
1981
|
padding: 1px;
|
|
1943
1982
|
}
|