@copilotz/chat-ui 0.1.9 → 0.1.11
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 +246 -48
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +284 -87
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1989,6 +1989,10 @@
|
|
|
1989
1989
|
.text-\[10px\] {
|
|
1990
1990
|
font-size: 10px;
|
|
1991
1991
|
}
|
|
1992
|
+
.leading-6 {
|
|
1993
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
1994
|
+
line-height: calc(var(--spacing) * 6);
|
|
1995
|
+
}
|
|
1992
1996
|
.leading-none {
|
|
1993
1997
|
--tw-leading: 1;
|
|
1994
1998
|
line-height: 1;
|
|
@@ -2043,6 +2047,9 @@
|
|
|
2043
2047
|
.text-card-foreground {
|
|
2044
2048
|
color: var(--color-card-foreground);
|
|
2045
2049
|
}
|
|
2050
|
+
.text-current {
|
|
2051
|
+
color: currentcolor;
|
|
2052
|
+
}
|
|
2046
2053
|
.text-destructive {
|
|
2047
2054
|
color: var(--color-destructive);
|
|
2048
2055
|
}
|
|
@@ -2654,6 +2661,13 @@
|
|
|
2654
2661
|
}
|
|
2655
2662
|
}
|
|
2656
2663
|
}
|
|
2664
|
+
.hover\:bg-transparent {
|
|
2665
|
+
&:hover {
|
|
2666
|
+
@media (hover: hover) {
|
|
2667
|
+
background-color: transparent;
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2657
2671
|
.hover\:text-accent-foreground {
|
|
2658
2672
|
&:hover {
|
|
2659
2673
|
@media (hover: hover) {
|
|
@@ -2682,6 +2696,13 @@
|
|
|
2682
2696
|
}
|
|
2683
2697
|
}
|
|
2684
2698
|
}
|
|
2699
|
+
.hover\:opacity-80 {
|
|
2700
|
+
&:hover {
|
|
2701
|
+
@media (hover: hover) {
|
|
2702
|
+
opacity: 80%;
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
}
|
|
2685
2706
|
.hover\:opacity-100 {
|
|
2686
2707
|
&:hover {
|
|
2687
2708
|
@media (hover: hover) {
|