@copilotz/chat-ui 0.7.5 → 0.7.7

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/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
  }
@@ -1386,6 +1392,9 @@
1386
1392
  .min-w-5 {
1387
1393
  min-width: calc(var(--spacing) * 5);
1388
1394
  }
1395
+ .min-w-48 {
1396
+ min-width: calc(var(--spacing) * 48);
1397
+ }
1389
1398
  .min-w-56 {
1390
1399
  min-width: calc(var(--spacing) * 56);
1391
1400
  }
@@ -1501,6 +1510,9 @@
1501
1510
  .grid-cols-\[1rem_minmax\(0\,1fr\)\] {
1502
1511
  grid-template-columns: 1rem minmax(0,1fr);
1503
1512
  }
1513
+ .grid-cols-\[auto_1fr\] {
1514
+ grid-template-columns: auto 1fr;
1515
+ }
1504
1516
  .grid-rows-\[auto_auto\] {
1505
1517
  grid-template-rows: auto auto;
1506
1518
  }
@@ -1596,6 +1608,9 @@
1596
1608
  margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
1597
1609
  }
1598
1610
  }
1611
+ .gap-x-4 {
1612
+ column-gap: calc(var(--spacing) * 4);
1613
+ }
1599
1614
  .-space-x-1\.5 {
1600
1615
  :where(& > :not(:last-child)) {
1601
1616
  --tw-space-x-reverse: 0;
@@ -1603,6 +1618,9 @@
1603
1618
  margin-inline-end: calc(calc(var(--spacing) * -1.5) * calc(1 - var(--tw-space-x-reverse)));
1604
1619
  }
1605
1620
  }
1621
+ .gap-y-2 {
1622
+ row-gap: calc(var(--spacing) * 2);
1623
+ }
1606
1624
  .self-start {
1607
1625
  align-self: flex-start;
1608
1626
  }
@@ -1776,6 +1794,12 @@
1776
1794
  background-color: color-mix(in oklab, var(--color-background) 95%, transparent);
1777
1795
  }
1778
1796
  }
1797
+ .bg-black\/10 {
1798
+ background-color: color-mix(in srgb, #000 10%, transparent);
1799
+ @supports (color: color-mix(in lab, red, red)) {
1800
+ background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
1801
+ }
1802
+ }
1779
1803
  .bg-black\/50 {
1780
1804
  background-color: color-mix(in srgb, #000 50%, transparent);
1781
1805
  @supports (color: color-mix(in lab, red, red)) {
@@ -1917,6 +1941,9 @@
1917
1941
  .fill-primary {
1918
1942
  fill: var(--color-primary);
1919
1943
  }
1944
+ .object-contain {
1945
+ object-fit: contain;
1946
+ }
1920
1947
  .object-cover {
1921
1948
  object-fit: cover;
1922
1949
  }
@@ -1926,6 +1953,9 @@
1926
1953
  .p-1 {
1927
1954
  padding: calc(var(--spacing) * 1);
1928
1955
  }
1956
+ .p-1\.5 {
1957
+ padding: calc(var(--spacing) * 1.5);
1958
+ }
1929
1959
  .p-2 {
1930
1960
  padding: calc(var(--spacing) * 2);
1931
1961
  }
@@ -1938,6 +1968,9 @@
1938
1968
  .p-6 {
1939
1969
  padding: calc(var(--spacing) * 6);
1940
1970
  }
1971
+ .p-8 {
1972
+ padding: calc(var(--spacing) * 8);
1973
+ }
1941
1974
  .p-px {
1942
1975
  padding: 1px;
1943
1976
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/chat-ui",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "Copilotz chat UI components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",