chat-message.ts
3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
const variant = [
"solid",
"outline",
"soft",
"subtle",
"naked"
] as const
const side = [
"left",
"right"
] as const
export default {
"slots": {
"root": "group/message relative w-full",
"container": "relative flex items-start",
"leading": "inline-flex items-center justify-center min-h-6",
"leadingIcon": "shrink-0",
"leadingAvatar": "shrink-0",
"leadingAvatarSize": "",
"files": "flex items-center gap-1.5 mb-1.5",
"content": "relative text-pretty min-w-0 *:first:mt-0 *:last:mb-0",
"actions": [
"[@media(hover:hover)]:opacity-0 group-hover/message:opacity-100 absolute bottom-0 flex items-center",
"transition-opacity"
]
},
"variants": {
"variant": {
"solid": {
"content": "bg-inverted text-inverted"
},
"outline": {
"content": "bg-default ring ring-default"
},
"soft": {
"content": "bg-elevated/50"
},
"subtle": {
"content": "bg-elevated/50 ring ring-default"
},
"naked": {
"content": ""
}
},
"side": {
"left": {},
"right": {
"container": "justify-end ms-auto max-w-[75%]",
"files": "justify-end"
}
},
"leading": {
"true": ""
},
"actions": {
"true": ""
},
"compact": {
"true": {
"root": "scroll-mt-3",
"container": "gap-1.5 pb-3",
"content": "space-y-2",
"leadingIcon": "size-5",
"leadingAvatarSize": "2xs"
},
"false": {
"root": "scroll-mt-4 sm:scroll-mt-6",
"container": "gap-3 pb-8",
"content": "space-y-4",
"leadingIcon": "size-8",
"leadingAvatarSize": "md"
}
}
},
"compoundVariants": [
{
"compact": true,
"actions": true,
"class": {
"container": "pb-8"
}
},
{
"leading": true,
"compact": false,
"side": "left" as typeof side[number],
"class": {
"actions": "left-11"
}
},
{
"leading": true,
"compact": true,
"side": "left" as typeof side[number],
"class": {
"actions": "left-6.5"
}
},
{
"variant": [
"solid" as typeof variant[number],
"outline" as typeof variant[number],
"soft" as typeof variant[number],
"subtle" as typeof variant[number]
],
"compact": false,
"class": {
"content": "px-4 py-3 rounded-lg min-h-12",
"leading": "mt-2"
}
},
{
"variant": [
"solid" as typeof variant[number],
"outline" as typeof variant[number],
"soft" as typeof variant[number],
"subtle" as typeof variant[number]
],
"compact": true,
"class": {
"content": "px-2 py-1 rounded-lg min-h-8",
"leading": "mt-1"
}
},
{
"variant": "naked" as typeof variant[number],
"side": "left" as typeof side[number],
"class": {
"content": "w-full"
}
}
],
"defaultVariants": {
"variant": "naked" as typeof variant[number]
}
}