@copilotz/chat-ui 0.2.1 → 0.3.1

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
@@ -332,6 +332,9 @@
332
332
  .bottom-1 {
333
333
  bottom: calc(var(--spacing) * 1);
334
334
  }
335
+ .bottom-full {
336
+ bottom: 100%;
337
+ }
335
338
  .-left-2 {
336
339
  left: calc(var(--spacing) * -2);
337
340
  }
@@ -1989,6 +1992,9 @@
1989
1992
  .pt-0 {
1990
1993
  padding-top: calc(var(--spacing) * 0);
1991
1994
  }
1995
+ .pt-1 {
1996
+ padding-top: calc(var(--spacing) * 1);
1997
+ }
1992
1998
  .pt-2 {
1993
1999
  padding-top: calc(var(--spacing) * 2);
1994
2000
  }
@@ -2126,6 +2132,9 @@
2126
2132
  .whitespace-pre-wrap {
2127
2133
  white-space: pre-wrap;
2128
2134
  }
2135
+ .text-accent-foreground {
2136
+ color: var(--color-accent-foreground);
2137
+ }
2129
2138
  .text-blue-700 {
2130
2139
  color: var(--color-blue-700);
2131
2140
  }
@@ -2696,6 +2705,16 @@
2696
2705
  }
2697
2706
  }
2698
2707
  }
2708
+ .hover\:bg-accent\/60 {
2709
+ &:hover {
2710
+ @media (hover: hover) {
2711
+ background-color: color-mix(in srgb, hsl(var(--accent)) 60%, transparent);
2712
+ @supports (color: color-mix(in lab, red, red)) {
2713
+ background-color: color-mix(in oklab, var(--color-accent) 60%, transparent);
2714
+ }
2715
+ }
2716
+ }
2717
+ }
2699
2718
  .hover\:bg-destructive\/20 {
2700
2719
  &:hover {
2701
2720
  @media (hover: hover) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/chat-ui",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "Copilotz chat UI components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",