@copilotz/chat-ui 0.9.22 → 0.9.24

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
@@ -1897,6 +1897,12 @@
1897
1897
  background-color: color-mix(in oklab, var(--color-destructive) 5%, transparent);
1898
1898
  }
1899
1899
  }
1900
+ .bg-destructive\/10 {
1901
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
1902
+ @supports (color: color-mix(in lab, red, red)) {
1903
+ background-color: color-mix(in oklab, var(--color-destructive) 10%, transparent);
1904
+ }
1905
+ }
1900
1906
  .bg-muted {
1901
1907
  background-color: var(--color-muted);
1902
1908
  }
@@ -1930,6 +1936,12 @@
1930
1936
  background-color: color-mix(in oklab, var(--color-muted) 60%, transparent);
1931
1937
  }
1932
1938
  }
1939
+ .bg-muted\/70 {
1940
+ background-color: color-mix(in srgb, hsl(var(--muted)) 70%, transparent);
1941
+ @supports (color: color-mix(in lab, red, red)) {
1942
+ background-color: color-mix(in oklab, var(--color-muted) 70%, transparent);
1943
+ }
1944
+ }
1933
1945
  .bg-popover {
1934
1946
  background-color: var(--color-popover);
1935
1947
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/chat-ui",
3
- "version": "0.9.22",
3
+ "version": "0.9.24",
4
4
  "description": "Copilotz chat UI components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",