@copilotz/chat-ui 0.3.0 → 0.3.2
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/README.md +3 -34
- package/dist/index.cjs +172 -150
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -43
- package/dist/index.d.ts +3 -43
- package/dist/index.js +171 -144
- package/dist/index.js.map +1 -1
- package/dist/styles.css +16 -0
- package/package.json +1 -1
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
|
}
|
|
@@ -2129,6 +2132,9 @@
|
|
|
2129
2132
|
.whitespace-pre-wrap {
|
|
2130
2133
|
white-space: pre-wrap;
|
|
2131
2134
|
}
|
|
2135
|
+
.text-accent-foreground {
|
|
2136
|
+
color: var(--color-accent-foreground);
|
|
2137
|
+
}
|
|
2132
2138
|
.text-blue-700 {
|
|
2133
2139
|
color: var(--color-blue-700);
|
|
2134
2140
|
}
|
|
@@ -2699,6 +2705,16 @@
|
|
|
2699
2705
|
}
|
|
2700
2706
|
}
|
|
2701
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
|
+
}
|
|
2702
2718
|
.hover\:bg-destructive\/20 {
|
|
2703
2719
|
&:hover {
|
|
2704
2720
|
@media (hover: hover) {
|