@assistant-ui/react 0.5.90 → 0.5.91
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,288 @@
|
|
2
2
|
|
3
3
|
// src/tailwindcss/index.ts
|
4
4
|
var _pluginjs = require('tailwindcss/plugin.js'); var _pluginjs2 = _interopRequireDefault(_pluginjs);
|
5
|
+
|
6
|
+
// src/tailwindcss/data/base-components.css.json
|
7
|
+
var base_components_css_default = {
|
8
|
+
".aui-root": {
|
9
|
+
"@apply text-aui-foreground": {}
|
10
|
+
},
|
11
|
+
".aui-root *": {
|
12
|
+
"@apply border-aui-border": {}
|
13
|
+
},
|
14
|
+
".aui-button": {
|
15
|
+
"@apply focus-visible:ring-aui-ring inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50": {}
|
16
|
+
},
|
17
|
+
".aui-button-primary": {
|
18
|
+
"@apply bg-aui-primary text-aui-primary-foreground hover:bg-aui-primary/90 shadow": {}
|
19
|
+
},
|
20
|
+
".aui-button-outline": {
|
21
|
+
"@apply border-aui-input bg-aui-background hover:bg-aui-accent hover:text-aui-accent-foreground border shadow-sm": {}
|
22
|
+
},
|
23
|
+
".aui-button-ghost": {
|
24
|
+
"@apply hover:bg-aui-accent hover:text-aui-accent-foreground": {}
|
25
|
+
},
|
26
|
+
".aui-button-medium": {
|
27
|
+
"@apply h-9 px-4 py-2": {}
|
28
|
+
},
|
29
|
+
".aui-button-icon": {
|
30
|
+
"@apply size-6 p-1": {}
|
31
|
+
},
|
32
|
+
".aui-sr-only": {
|
33
|
+
"@apply sr-only": {}
|
34
|
+
},
|
35
|
+
".aui-avatar-root": {
|
36
|
+
"@apply relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full": {}
|
37
|
+
},
|
38
|
+
".aui-avatar-image": {
|
39
|
+
"@apply aspect-square h-full w-full object-cover": {}
|
40
|
+
},
|
41
|
+
".aui-avatar-fallback": {
|
42
|
+
"@apply bg-aui-muted flex h-full w-full items-center justify-center rounded-full": {}
|
43
|
+
},
|
44
|
+
".aui-tooltip-content": {
|
45
|
+
"@apply bg-aui-popover text-aui-popover-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 overflow-hidden rounded-md border px-3 py-1.5 text-sm shadow-md": {}
|
46
|
+
},
|
47
|
+
".aui-dialog-overlay": {
|
48
|
+
"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80": {}
|
49
|
+
},
|
50
|
+
".aui-dialog-content": {
|
51
|
+
"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed left-[50%] top-[50%] z-50": {},
|
52
|
+
"@apply grid translate-x-[-50%] translate-y-[-50%] shadow-lg duration-200": {}
|
53
|
+
}
|
54
|
+
};
|
55
|
+
|
56
|
+
// src/tailwindcss/data/thread.css.json
|
57
|
+
var thread_css_default = {
|
58
|
+
".aui-thread-root": {
|
59
|
+
"@apply bg-aui-background box-border h-full": {},
|
60
|
+
"@apply [&>.aui-thread-viewport]:bg-inherit": {}
|
61
|
+
},
|
62
|
+
".aui-thread-viewport": {
|
63
|
+
"@apply bg-aui-background flex h-full flex-col items-center overflow-y-scroll scroll-smooth px-4 pt-8": {}
|
64
|
+
},
|
65
|
+
".aui-thread-viewport-footer": {
|
66
|
+
"@apply sticky bottom-0 mt-3 flex w-full max-w-2xl flex-col items-center justify-end rounded-t-lg bg-inherit pb-4": {}
|
67
|
+
},
|
68
|
+
".aui-thread-scroll-to-bottom": {
|
69
|
+
"@apply absolute -top-8 rounded-full disabled:invisible": {}
|
70
|
+
},
|
71
|
+
".aui-thread-followup-suggestions": {
|
72
|
+
"@apply flex min-h-8 items-center justify-center gap-2": {}
|
73
|
+
},
|
74
|
+
".aui-thread-followup-suggestion": {
|
75
|
+
"@apply bg-aui-background hover:bg-aui-muted/80 rounded-full border px-3 py-1 text-sm transition-colors ease-in": {}
|
76
|
+
},
|
77
|
+
".aui-thread-welcome-root": {
|
78
|
+
"@apply flex w-full max-w-2xl flex-grow flex-col": {}
|
79
|
+
},
|
80
|
+
".aui-thread-welcome-center": {
|
81
|
+
"@apply flex w-full flex-grow flex-col items-center justify-center": {}
|
82
|
+
},
|
83
|
+
".aui-thread-welcome-message": {
|
84
|
+
"@apply mt-4 font-medium": {}
|
85
|
+
},
|
86
|
+
".aui-thread-welcome-suggestion-container": {
|
87
|
+
"@apply mt-3 flex w-full items-stretch justify-center gap-4": {}
|
88
|
+
},
|
89
|
+
".aui-thread-welcome-suggestion": {
|
90
|
+
"@apply hover:bg-aui-muted/80 flex max-w-sm grow basis-0 flex-col items-center justify-center rounded-lg border p-3 transition-colors ease-in": {}
|
91
|
+
},
|
92
|
+
".aui-thread-welcome-suggestion-text": {
|
93
|
+
"@apply line-clamp-2 text-ellipsis text-sm font-semibold": {}
|
94
|
+
},
|
95
|
+
".aui-composer-root": {
|
96
|
+
"@apply focus-within:border-aui-ring/20 flex w-full flex-wrap items-end rounded-lg border bg-inherit px-2.5 shadow-sm transition-colors ease-in": {}
|
97
|
+
},
|
98
|
+
".aui-composer-input": {
|
99
|
+
"@apply placeholder:text-aui-muted-foreground max-h-40 flex-grow resize-none border-none bg-transparent px-2 py-4 text-sm outline-none focus:ring-0 disabled:cursor-not-allowed": {}
|
100
|
+
},
|
101
|
+
".aui-composer-send,\n.aui-composer-cancel,\n.aui-composer-attach": {
|
102
|
+
"@apply my-2.5 size-8 p-2 transition-opacity ease-in": {}
|
103
|
+
},
|
104
|
+
".aui-composer-attachments": {
|
105
|
+
"@apply flex w-full flex-row gap-3 px-10": {}
|
106
|
+
},
|
107
|
+
".aui-attachment-root": {
|
108
|
+
"@apply relative mt-3 flex h-12 w-40 items-center justify-center gap-2 rounded-lg border p-1": {}
|
109
|
+
},
|
110
|
+
".aui-attachment-preview-trigger": {
|
111
|
+
"@apply hover:bg-aui-accent/50 cursor-pointer transition-colors": {}
|
112
|
+
},
|
113
|
+
".aui-attachment-thumb": {
|
114
|
+
"@apply bg-aui-muted flex size-10 items-center justify-center rounded border text-sm": {}
|
115
|
+
},
|
116
|
+
".aui-attachment-text": {
|
117
|
+
"@apply flex-grow basis-0": {}
|
118
|
+
},
|
119
|
+
".aui-attachment-name": {
|
120
|
+
"@apply text-aui-muted-foreground line-clamp-1 text-ellipsis text-xs font-bold": {}
|
121
|
+
},
|
122
|
+
".aui-attachment-type": {
|
123
|
+
"@apply text-aui-muted-foreground text-xs": {}
|
124
|
+
},
|
125
|
+
".aui-attachment-remove": {
|
126
|
+
"@apply text-aui-muted-foreground [&>svg]:bg-aui-background absolute -right-3 -top-3 size-6 [&>svg]:size-4 [&>svg]:rounded-full": {}
|
127
|
+
},
|
128
|
+
".aui-user-message-root": {
|
129
|
+
"@apply grid auto-rows-auto grid-cols-[minmax(72px,1fr)_auto] gap-y-2 [&>*]:col-start-2": {},
|
130
|
+
"@apply w-full max-w-2xl py-4": {}
|
131
|
+
},
|
132
|
+
":where(.aui-user-message-root) > .aui-user-action-bar-root": {
|
133
|
+
"@apply col-start-1 row-start-2 mr-3 mt-2.5": {}
|
134
|
+
},
|
135
|
+
":where(.aui-user-message-root) > .aui-user-message-attachments": {
|
136
|
+
"@apply col-span-full col-start-1 row-start-1": {},
|
137
|
+
"@apply justify-end": {}
|
138
|
+
},
|
139
|
+
":where(.aui-user-message-root) > .aui-user-message-content": {
|
140
|
+
"@apply col-start-2 row-start-2": {}
|
141
|
+
},
|
142
|
+
":where(.aui-user-message-root) > .aui-branch-picker-root": {
|
143
|
+
"@apply col-span-full col-start-1 row-start-3": {},
|
144
|
+
"@apply -mr-1 justify-end": {}
|
145
|
+
},
|
146
|
+
".aui-user-message-content": {
|
147
|
+
"@apply bg-aui-muted text-aui-foreground max-w-xl break-words rounded-3xl px-5 py-2.5": {}
|
148
|
+
},
|
149
|
+
".aui-user-message-attachments": {
|
150
|
+
"@apply flex w-full flex-row gap-3": {}
|
151
|
+
},
|
152
|
+
".aui-user-action-bar-root": {
|
153
|
+
"@apply flex flex-col items-end": {}
|
154
|
+
},
|
155
|
+
".aui-edit-composer-root": {
|
156
|
+
"@apply bg-aui-muted my-4 flex w-full max-w-2xl flex-col gap-2 rounded-xl": {}
|
157
|
+
},
|
158
|
+
".aui-edit-composer-input": {
|
159
|
+
"@apply text-aui-foreground flex h-8 w-full resize-none bg-transparent p-4 pb-0 outline-none": {}
|
160
|
+
},
|
161
|
+
".aui-edit-composer-footer": {
|
162
|
+
"@apply mx-3 mb-3 flex items-center justify-center gap-2 self-end": {}
|
163
|
+
},
|
164
|
+
".aui-assistant-message-root": {
|
165
|
+
"@apply grid grid-cols-[auto_auto_1fr] grid-rows-[auto_1fr]": {},
|
166
|
+
"@apply relative w-full max-w-2xl py-4": {}
|
167
|
+
},
|
168
|
+
":where(.aui-assistant-message-root) > .aui-avatar-root": {
|
169
|
+
"@apply col-start-1 row-span-full row-start-1 mr-4": {}
|
170
|
+
},
|
171
|
+
":where(.aui-assistant-message-root) > .aui-branch-picker-root": {
|
172
|
+
"@apply col-start-2 row-start-2": {},
|
173
|
+
"@apply -ml-2 mr-2": {}
|
174
|
+
},
|
175
|
+
":where(.aui-assistant-message-root) > .aui-assistant-action-bar-root": {
|
176
|
+
"@apply col-start-3 row-start-2": {},
|
177
|
+
"@apply -ml-1": {}
|
178
|
+
},
|
179
|
+
":where(.aui-assistant-message-root) > .aui-assistant-message-content": {
|
180
|
+
"@apply col-span-2 col-start-2 row-start-1 my-1.5": {}
|
181
|
+
},
|
182
|
+
".aui-assistant-message-content": {
|
183
|
+
"@apply text-aui-foreground max-w-xl break-words leading-7": {}
|
184
|
+
},
|
185
|
+
".aui-assistant-action-bar-root": {
|
186
|
+
"@apply text-aui-muted-foreground flex gap-1": {}
|
187
|
+
},
|
188
|
+
":where(.aui-assistant-action-bar-root)[data-floating]": {
|
189
|
+
"@apply bg-aui-background absolute rounded-md border p-1 shadow-sm": {}
|
190
|
+
},
|
191
|
+
":where(.aui-assistant-action-bar-feedback-positive)[data-submitted]": {
|
192
|
+
"@apply text-green-600 hover:text-green-700 dark:text-green-500 dark:hover:text-green-400": {}
|
193
|
+
},
|
194
|
+
":where(.aui-assistant-action-bar-feedback-negative)[data-submitted]": {
|
195
|
+
"@apply text-red-600 hover:text-red-700 dark:text-red-500 dark:hover:text-red-400": {}
|
196
|
+
},
|
197
|
+
".aui-branch-picker-root": {
|
198
|
+
"@apply text-aui-muted-foreground inline-flex items-center text-xs": {}
|
199
|
+
},
|
200
|
+
".aui-branch-picker-state": {
|
201
|
+
"@apply font-medium": {}
|
202
|
+
},
|
203
|
+
".aui-text": {
|
204
|
+
"@apply whitespace-pre-line": {}
|
205
|
+
},
|
206
|
+
".aui-text-running::after": {
|
207
|
+
"@apply animate-pulse font-sans content-['\\25CF'] ltr:ml-1 rtl:mr-1": {}
|
208
|
+
}
|
209
|
+
};
|
210
|
+
|
211
|
+
// src/tailwindcss/data/modal.css.json
|
212
|
+
var modal_css_default = {
|
213
|
+
".aui-modal-content": {
|
214
|
+
"@apply bg-aui-popover text-aui-popover-foreground z-50 h-[500px] w-[400px] overflow-clip rounded-xl border p-0 shadow-md outline-none": {},
|
215
|
+
"@apply [&>.aui-thread-root]:bg-inherit": {},
|
216
|
+
"@apply data-[state=closed]:animate-out data-[state=open]:animate-in": {},
|
217
|
+
"@apply data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0": {},
|
218
|
+
"@apply data-[state=closed]:zoom-out data-[state=open]:zoom-in": {},
|
219
|
+
"@apply data-[state=open]:slide-in-from-bottom-1/2 data-[state=open]:slide-in-from-right-1/2 data-[state=closed]:slide-out-to-bottom-1/2 data-[state=closed]:slide-out-to-right-1/2": {}
|
220
|
+
},
|
221
|
+
".aui-modal-anchor": {
|
222
|
+
"@apply fixed bottom-4 right-4 size-11": {}
|
223
|
+
},
|
224
|
+
".aui-modal-button": {
|
225
|
+
"@apply size-full rounded-full shadow transition-transform hover:scale-110 active:scale-90": {}
|
226
|
+
},
|
227
|
+
".aui-modal-button-closed-icon": {
|
228
|
+
"@apply absolute size-6 transition-all": {},
|
229
|
+
"@apply data-[state=closed]:rotate-0 data-[state=open]:rotate-90": {},
|
230
|
+
"@apply data-[state=closed]:scale-100 data-[state=open]:scale-0": {}
|
231
|
+
},
|
232
|
+
".aui-modal-button-open-icon": {
|
233
|
+
"@apply absolute size-6 transition-all": {},
|
234
|
+
"@apply data-[state=closed]:-rotate-90 data-[state=open]:rotate-0": {},
|
235
|
+
"@apply data-[state=closed]:scale-0 data-[state=open]:scale-100": {}
|
236
|
+
}
|
237
|
+
};
|
238
|
+
|
239
|
+
// src/tailwindcss/data/default.css.json
|
240
|
+
var default_css_default = {
|
241
|
+
":root": {
|
242
|
+
"--aui-background": "0 0% 100%",
|
243
|
+
"--aui-foreground": "240 10% 3.9%",
|
244
|
+
"--aui-card": "0 0% 100%",
|
245
|
+
"--aui-card-foreground": "240 10% 3.9%",
|
246
|
+
"--aui-popover": "0 0% 100%",
|
247
|
+
"--aui-popover-foreground": "240 10% 3.9%",
|
248
|
+
"--aui-primary": "240 5.9% 10%",
|
249
|
+
"--aui-primary-foreground": "0 0% 98%",
|
250
|
+
"--aui-secondary": "240 4.8% 95.9%",
|
251
|
+
"--aui-secondary-foreground": "240 5.9% 10%",
|
252
|
+
"--aui-muted": "240 4.8% 95.9%",
|
253
|
+
"--aui-muted-foreground": "240 3.8% 46.1%",
|
254
|
+
"--aui-accent": "240 4.8% 95.9%",
|
255
|
+
"--aui-accent-foreground": "240 5.9% 10%",
|
256
|
+
"--aui-destructive": "0 84.2% 60.2%",
|
257
|
+
"--aui-destructive-foreground": "0 0% 98%",
|
258
|
+
"--aui-border": "240 5.9% 90%",
|
259
|
+
"--aui-input": "240 5.9% 90%",
|
260
|
+
"--aui-ring": "240 10% 3.9%",
|
261
|
+
"--aui-radius": "0.5rem"
|
262
|
+
},
|
263
|
+
".dark": {
|
264
|
+
"--aui-background": "0 0% 7%",
|
265
|
+
"--aui-foreground": "0 0% 98%",
|
266
|
+
"--aui-card": "240 10% 3.9%",
|
267
|
+
"--aui-card-foreground": "0 0% 98%",
|
268
|
+
"--aui-popover": "240 10% 3.9%",
|
269
|
+
"--aui-popover-foreground": "0 0% 98%",
|
270
|
+
"--aui-primary": "0 0% 98%",
|
271
|
+
"--aui-primary-foreground": "240 5.9% 10%",
|
272
|
+
"--aui-secondary": "240 3.7% 15.9%",
|
273
|
+
"--aui-secondary-foreground": "0 0% 98%",
|
274
|
+
"--aui-muted": "240 3.7% 15.9%",
|
275
|
+
"--aui-muted-foreground": "240 5% 64.9%",
|
276
|
+
"--aui-accent": "240 3.7% 15.9%",
|
277
|
+
"--aui-accent-foreground": "0 0% 98%",
|
278
|
+
"--aui-destructive": "0 62.8% 30.6%",
|
279
|
+
"--aui-destructive-foreground": "0 0% 98%",
|
280
|
+
"--aui-border": "240 3.7% 15.9%",
|
281
|
+
"--aui-input": "240 3.7% 15.9%",
|
282
|
+
"--aui-ring": "240 4.9% 83.9%"
|
283
|
+
}
|
284
|
+
};
|
285
|
+
|
286
|
+
// src/tailwindcss/index.ts
|
5
287
|
var auiPlugin = _pluginjs2.default.withOptions(
|
6
288
|
({ components = ["assistant-modal", "thread"], shadcn = false } = {}) => ({ addComponents }) => {
|
7
289
|
const assistantModal = components.includes("assistant-modal");
|
@@ -11,29 +293,22 @@ var auiPlugin = _pluginjs2.default.withOptions(
|
|
11
293
|
if (defaultTheme && shadcn)
|
12
294
|
throw new Error("default-theme cannot be used with shadcn");
|
13
295
|
if (defaultTheme || base && !shadcn) {
|
14
|
-
addComponents(
|
15
|
-
'@import "@assistant-ui/react/styles/themes/default.css"': ""
|
16
|
-
});
|
296
|
+
addComponents(default_css_default);
|
17
297
|
}
|
18
298
|
if (base) {
|
19
|
-
addComponents(
|
20
|
-
'@import "@assistant-ui/react/styles/tailwindcss/base-components.css"': ""
|
21
|
-
});
|
299
|
+
addComponents(base_components_css_default);
|
22
300
|
}
|
23
301
|
if (thread) {
|
24
|
-
addComponents(
|
25
|
-
'@import "@assistant-ui/react/styles/tailwindcss/thread.css"': ""
|
26
|
-
});
|
302
|
+
addComponents(thread_css_default);
|
27
303
|
}
|
28
304
|
if (assistantModal) {
|
29
|
-
addComponents(
|
30
|
-
'@import "@assistant-ui/react/styles/tailwindcss/modal.css"': ""
|
31
|
-
});
|
305
|
+
addComponents(modal_css_default);
|
32
306
|
}
|
33
307
|
},
|
34
308
|
({ shadcn = false, colors = {} } = {}) => {
|
35
309
|
const prefix = !shadcn ? "--aui-" : "--";
|
36
310
|
return {
|
311
|
+
safelist: [{ pattern: /aui-/ }],
|
37
312
|
theme: {
|
38
313
|
extend: {
|
39
314
|
colors: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/assistant-ui/assistant-ui/packages/react/dist/tailwindcss/index.js","../../src/tailwindcss/index.ts"],"names":[],"mappings":"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","file":"/home/runner/work/assistant-ui/assistant-ui/packages/react/dist/tailwindcss/index.js","sourcesContent":[null,"import plugin from \"tailwindcss/plugin.js\";\n\ntype AssistantTailwindPluginColors = {\n border: string;\n input: string;\n ring: string;\n background: string;\n foreground: string;\n primary: {\n DEFAULT: string;\n foreground: string;\n };\n secondary: {\n DEFAULT: string;\n foreground: string;\n };\n destructive: {\n DEFAULT: string;\n foreground: string;\n };\n muted: {\n DEFAULT: string;\n foreground: string;\n };\n accent: {\n DEFAULT: string;\n foreground: string;\n };\n popover: {\n DEFAULT: string;\n foreground: string;\n };\n card: {\n DEFAULT: string;\n foreground: string;\n };\n};\n\ntype AssisstantTailwindPluginOptions = {\n components?: (\"default-theme\" | \"base\" | \"thread\" | \"assistant-modal\")[];\n colors?: AssistantTailwindPluginColors;\n shadcn?: boolean;\n};\n\nconst auiPlugin = plugin.withOptions<AssisstantTailwindPluginOptions>(\n ({ components = [\"assistant-modal\", \"thread\"], shadcn = false } = {}) =>\n ({ addComponents }) => {\n const assistantModal = components.includes(\"assistant-modal\");\n const thread = assistantModal || components.includes(\"thread\");\n const base = thread || components.includes(\"base\");\n const defaultTheme = components.includes(\"default-theme\");\n\n if (defaultTheme && shadcn)\n throw new Error(\"default-theme cannot be used with shadcn\");\n\n if (defaultTheme || (base && !shadcn)) {\n addComponents({\n '@import \"@assistant-ui/react/styles/themes/default.css\"': \"\",\n });\n }\n\n if (base) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/base-components.css\"':\n \"\",\n });\n }\n\n if (thread) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/thread.css\"': \"\",\n });\n }\n\n if (assistantModal) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/modal.css\"': \"\",\n });\n }\n },\n ({ shadcn = false, colors = {} } = {}) => {\n const prefix = !shadcn ? \"--aui-\" : \"--\";\n return {\n theme: {\n extend: {\n colors: {\n aui: {\n border: colors.border ?? `hsl(var(${prefix}border))`,\n input: colors.input ?? `hsl(var(${prefix}input))`,\n ring: colors.ring ?? `hsl(var(${prefix}ring))`,\n background: colors.background ?? `hsl(var(${prefix}background))`,\n foreground: colors.foreground ?? `hsl(var(${prefix}foreground))`,\n primary: {\n DEFAULT:\n colors.primary?.DEFAULT ?? `hsl(var(${prefix}primary))`,\n foreground:\n colors.primary?.foreground ??\n `hsl(var(${prefix}primary-foreground))`,\n },\n secondary: {\n DEFAULT:\n colors.secondary?.DEFAULT ?? `hsl(var(${prefix}secondary))`,\n foreground:\n colors.secondary?.foreground ??\n `hsl(var(${prefix}secondary-foreground))`,\n },\n destructive: {\n DEFAULT:\n colors.destructive?.DEFAULT ??\n `hsl(var(${prefix}destructive))`,\n foreground: `hsl(var(${prefix}destructive-foreground))`,\n },\n muted: {\n DEFAULT: `hsl(var(${prefix}muted))`,\n foreground:\n colors.muted?.foreground ??\n `hsl(var(${prefix}muted-foreground))`,\n },\n accent: {\n DEFAULT: colors.accent?.DEFAULT ?? `hsl(var(${prefix}accent))`,\n foreground:\n colors.accent?.foreground ??\n `hsl(var(${prefix}accent-foreground))`,\n },\n popover: {\n DEFAULT:\n colors.popover?.DEFAULT ?? `hsl(var(${prefix}popover))`,\n foreground:\n colors.popover?.foreground ??\n `hsl(var(${prefix}popover-foreground))`,\n },\n card: {\n DEFAULT: colors.card?.DEFAULT ?? `hsl(var(${prefix}card))`,\n foreground:\n colors.card?.foreground ??\n `hsl(var(${prefix}card-foreground))`,\n },\n },\n },\n },\n },\n };\n },\n);\n\nexport default auiPlugin;\n"]}
|
1
|
+
{"version":3,"sources":["/home/runner/work/assistant-ui/assistant-ui/packages/react/dist/tailwindcss/index.js","../../src/tailwindcss/index.ts","../../src/tailwindcss/data/base-components.css.json","../../src/tailwindcss/data/thread.css.json","../../src/tailwindcss/data/modal.css.json","../../src/tailwindcss/data/default.css.json"],"names":[],"mappings":"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","file":"/home/runner/work/assistant-ui/assistant-ui/packages/react/dist/tailwindcss/index.js","sourcesContent":[null,"import plugin from \"tailwindcss/plugin.js\";\nimport baseComponentsCSS from \"./data/base-components.css.json\";\nimport threadCSS from \"./data/thread.css.json\";\nimport modalCSS from \"./data/modal.css.json\";\nimport defaultThemeCSS from \"./data/default.css.json\";\n\ntype AssistantTailwindPluginColors = {\n border: string;\n input: string;\n ring: string;\n background: string;\n foreground: string;\n primary: {\n DEFAULT: string;\n foreground: string;\n };\n secondary: {\n DEFAULT: string;\n foreground: string;\n };\n destructive: {\n DEFAULT: string;\n foreground: string;\n };\n muted: {\n DEFAULT: string;\n foreground: string;\n };\n accent: {\n DEFAULT: string;\n foreground: string;\n };\n popover: {\n DEFAULT: string;\n foreground: string;\n };\n card: {\n DEFAULT: string;\n foreground: string;\n };\n};\n\ntype AssisstantTailwindPluginOptions = {\n components?: (\"default-theme\" | \"base\" | \"thread\" | \"assistant-modal\")[];\n colors?: AssistantTailwindPluginColors;\n shadcn?: boolean;\n};\n\nconst auiPlugin = plugin.withOptions<AssisstantTailwindPluginOptions>(\n ({ components = [\"assistant-modal\", \"thread\"], shadcn = false } = {}) =>\n ({ addComponents }) => {\n const assistantModal = components.includes(\"assistant-modal\");\n const thread = assistantModal || components.includes(\"thread\");\n const base = thread || components.includes(\"base\");\n const defaultTheme = components.includes(\"default-theme\");\n\n if (defaultTheme && shadcn)\n throw new Error(\"default-theme cannot be used with shadcn\");\n\n if (defaultTheme || (base && !shadcn)) {\n addComponents(defaultThemeCSS);\n }\n\n if (base) {\n addComponents(baseComponentsCSS);\n }\n\n if (thread) {\n addComponents(threadCSS);\n }\n\n if (assistantModal) {\n addComponents(modalCSS);\n }\n },\n ({ shadcn = false, colors = {} } = {}) => {\n const prefix = !shadcn ? \"--aui-\" : \"--\";\n return {\n safelist: [{ pattern: /aui-/ }],\n theme: {\n extend: {\n colors: {\n aui: {\n border: colors.border ?? `hsl(var(${prefix}border))`,\n input: colors.input ?? `hsl(var(${prefix}input))`,\n ring: colors.ring ?? `hsl(var(${prefix}ring))`,\n background: colors.background ?? `hsl(var(${prefix}background))`,\n foreground: colors.foreground ?? `hsl(var(${prefix}foreground))`,\n primary: {\n DEFAULT:\n colors.primary?.DEFAULT ?? `hsl(var(${prefix}primary))`,\n foreground:\n colors.primary?.foreground ??\n `hsl(var(${prefix}primary-foreground))`,\n },\n secondary: {\n DEFAULT:\n colors.secondary?.DEFAULT ?? `hsl(var(${prefix}secondary))`,\n foreground:\n colors.secondary?.foreground ??\n `hsl(var(${prefix}secondary-foreground))`,\n },\n destructive: {\n DEFAULT:\n colors.destructive?.DEFAULT ??\n `hsl(var(${prefix}destructive))`,\n foreground: `hsl(var(${prefix}destructive-foreground))`,\n },\n muted: {\n DEFAULT: `hsl(var(${prefix}muted))`,\n foreground:\n colors.muted?.foreground ??\n `hsl(var(${prefix}muted-foreground))`,\n },\n accent: {\n DEFAULT: colors.accent?.DEFAULT ?? `hsl(var(${prefix}accent))`,\n foreground:\n colors.accent?.foreground ??\n `hsl(var(${prefix}accent-foreground))`,\n },\n popover: {\n DEFAULT:\n colors.popover?.DEFAULT ?? `hsl(var(${prefix}popover))`,\n foreground:\n colors.popover?.foreground ??\n `hsl(var(${prefix}popover-foreground))`,\n },\n card: {\n DEFAULT: colors.card?.DEFAULT ?? `hsl(var(${prefix}card))`,\n foreground:\n colors.card?.foreground ??\n `hsl(var(${prefix}card-foreground))`,\n },\n },\n },\n },\n },\n };\n },\n);\n\nexport default auiPlugin;\n","{\n \".aui-root\": {\n \"@apply text-aui-foreground\": {}\n },\n \".aui-root *\": {\n \"@apply border-aui-border\": {}\n },\n \".aui-button\": {\n \"@apply focus-visible:ring-aui-ring inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50\": {}\n },\n \".aui-button-primary\": {\n \"@apply bg-aui-primary text-aui-primary-foreground hover:bg-aui-primary/90 shadow\": {}\n },\n \".aui-button-outline\": {\n \"@apply border-aui-input bg-aui-background hover:bg-aui-accent hover:text-aui-accent-foreground border shadow-sm\": {}\n },\n \".aui-button-ghost\": {\n \"@apply hover:bg-aui-accent hover:text-aui-accent-foreground\": {}\n },\n \".aui-button-medium\": {\n \"@apply h-9 px-4 py-2\": {}\n },\n \".aui-button-icon\": {\n \"@apply size-6 p-1\": {}\n },\n \".aui-sr-only\": {\n \"@apply sr-only\": {}\n },\n \".aui-avatar-root\": {\n \"@apply relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full\": {}\n },\n \".aui-avatar-image\": {\n \"@apply aspect-square h-full w-full object-cover\": {}\n },\n \".aui-avatar-fallback\": {\n \"@apply bg-aui-muted flex h-full w-full items-center justify-center rounded-full\": {}\n },\n \".aui-tooltip-content\": {\n \"@apply bg-aui-popover text-aui-popover-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 overflow-hidden rounded-md border px-3 py-1.5 text-sm shadow-md\": {}\n },\n \".aui-dialog-overlay\": {\n \"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80\": {}\n },\n \".aui-dialog-content\": {\n \"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed left-[50%] top-[50%] z-50\": {},\n \"@apply grid translate-x-[-50%] translate-y-[-50%] shadow-lg duration-200\": {}\n }\n}","{\n \".aui-thread-root\": {\n \"@apply bg-aui-background box-border h-full\": {},\n \"@apply [&>.aui-thread-viewport]:bg-inherit\": {}\n },\n \".aui-thread-viewport\": {\n \"@apply bg-aui-background flex h-full flex-col items-center overflow-y-scroll scroll-smooth px-4 pt-8\": {}\n },\n \".aui-thread-viewport-footer\": {\n \"@apply sticky bottom-0 mt-3 flex w-full max-w-2xl flex-col items-center justify-end rounded-t-lg bg-inherit pb-4\": {}\n },\n \".aui-thread-scroll-to-bottom\": {\n \"@apply absolute -top-8 rounded-full disabled:invisible\": {}\n },\n \".aui-thread-followup-suggestions\": {\n \"@apply flex min-h-8 items-center justify-center gap-2\": {}\n },\n \".aui-thread-followup-suggestion\": {\n \"@apply bg-aui-background hover:bg-aui-muted/80 rounded-full border px-3 py-1 text-sm transition-colors ease-in\": {}\n },\n \".aui-thread-welcome-root\": {\n \"@apply flex w-full max-w-2xl flex-grow flex-col\": {}\n },\n \".aui-thread-welcome-center\": {\n \"@apply flex w-full flex-grow flex-col items-center justify-center\": {}\n },\n \".aui-thread-welcome-message\": {\n \"@apply mt-4 font-medium\": {}\n },\n \".aui-thread-welcome-suggestion-container\": {\n \"@apply mt-3 flex w-full items-stretch justify-center gap-4\": {}\n },\n \".aui-thread-welcome-suggestion\": {\n \"@apply hover:bg-aui-muted/80 flex max-w-sm grow basis-0 flex-col items-center justify-center rounded-lg border p-3 transition-colors ease-in\": {}\n },\n \".aui-thread-welcome-suggestion-text\": {\n \"@apply line-clamp-2 text-ellipsis text-sm font-semibold\": {}\n },\n \".aui-composer-root\": {\n \"@apply focus-within:border-aui-ring/20 flex w-full flex-wrap items-end rounded-lg border bg-inherit px-2.5 shadow-sm transition-colors ease-in\": {}\n },\n \".aui-composer-input\": {\n \"@apply placeholder:text-aui-muted-foreground max-h-40 flex-grow resize-none border-none bg-transparent px-2 py-4 text-sm outline-none focus:ring-0 disabled:cursor-not-allowed\": {}\n },\n \".aui-composer-send,\\n.aui-composer-cancel,\\n.aui-composer-attach\": {\n \"@apply my-2.5 size-8 p-2 transition-opacity ease-in\": {}\n },\n \".aui-composer-attachments\": {\n \"@apply flex w-full flex-row gap-3 px-10\": {}\n },\n \".aui-attachment-root\": {\n \"@apply relative mt-3 flex h-12 w-40 items-center justify-center gap-2 rounded-lg border p-1\": {}\n },\n \".aui-attachment-preview-trigger\": {\n \"@apply hover:bg-aui-accent/50 cursor-pointer transition-colors\": {}\n },\n \".aui-attachment-thumb\": {\n \"@apply bg-aui-muted flex size-10 items-center justify-center rounded border text-sm\": {}\n },\n \".aui-attachment-text\": {\n \"@apply flex-grow basis-0\": {}\n },\n \".aui-attachment-name\": {\n \"@apply text-aui-muted-foreground line-clamp-1 text-ellipsis text-xs font-bold\": {}\n },\n \".aui-attachment-type\": {\n \"@apply text-aui-muted-foreground text-xs\": {}\n },\n \".aui-attachment-remove\": {\n \"@apply text-aui-muted-foreground [&>svg]:bg-aui-background absolute -right-3 -top-3 size-6 [&>svg]:size-4 [&>svg]:rounded-full\": {}\n },\n \".aui-user-message-root\": {\n \"@apply grid auto-rows-auto grid-cols-[minmax(72px,1fr)_auto] gap-y-2 [&>*]:col-start-2\": {},\n \"@apply w-full max-w-2xl py-4\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-action-bar-root\": {\n \"@apply col-start-1 row-start-2 mr-3 mt-2.5\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-message-attachments\": {\n \"@apply col-span-full col-start-1 row-start-1\": {},\n \"@apply justify-end\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-message-content\": {\n \"@apply col-start-2 row-start-2\": {}\n },\n \":where(.aui-user-message-root) > .aui-branch-picker-root\": {\n \"@apply col-span-full col-start-1 row-start-3\": {},\n \"@apply -mr-1 justify-end\": {}\n },\n \".aui-user-message-content\": {\n \"@apply bg-aui-muted text-aui-foreground max-w-xl break-words rounded-3xl px-5 py-2.5\": {}\n },\n \".aui-user-message-attachments\": {\n \"@apply flex w-full flex-row gap-3\": {}\n },\n \".aui-user-action-bar-root\": {\n \"@apply flex flex-col items-end\": {}\n },\n \".aui-edit-composer-root\": {\n \"@apply bg-aui-muted my-4 flex w-full max-w-2xl flex-col gap-2 rounded-xl\": {}\n },\n \".aui-edit-composer-input\": {\n \"@apply text-aui-foreground flex h-8 w-full resize-none bg-transparent p-4 pb-0 outline-none\": {}\n },\n \".aui-edit-composer-footer\": {\n \"@apply mx-3 mb-3 flex items-center justify-center gap-2 self-end\": {}\n },\n \".aui-assistant-message-root\": {\n \"@apply grid grid-cols-[auto_auto_1fr] grid-rows-[auto_1fr]\": {},\n \"@apply relative w-full max-w-2xl py-4\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-avatar-root\": {\n \"@apply col-start-1 row-span-full row-start-1 mr-4\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-branch-picker-root\": {\n \"@apply col-start-2 row-start-2\": {},\n \"@apply -ml-2 mr-2\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-assistant-action-bar-root\": {\n \"@apply col-start-3 row-start-2\": {},\n \"@apply -ml-1\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-assistant-message-content\": {\n \"@apply col-span-2 col-start-2 row-start-1 my-1.5\": {}\n },\n \".aui-assistant-message-content\": {\n \"@apply text-aui-foreground max-w-xl break-words leading-7\": {}\n },\n \".aui-assistant-action-bar-root\": {\n \"@apply text-aui-muted-foreground flex gap-1\": {}\n },\n \":where(.aui-assistant-action-bar-root)[data-floating]\": {\n \"@apply bg-aui-background absolute rounded-md border p-1 shadow-sm\": {}\n },\n \":where(.aui-assistant-action-bar-feedback-positive)[data-submitted]\": {\n \"@apply text-green-600 hover:text-green-700 dark:text-green-500 dark:hover:text-green-400\": {}\n },\n \":where(.aui-assistant-action-bar-feedback-negative)[data-submitted]\": {\n \"@apply text-red-600 hover:text-red-700 dark:text-red-500 dark:hover:text-red-400\": {}\n },\n \".aui-branch-picker-root\": {\n \"@apply text-aui-muted-foreground inline-flex items-center text-xs\": {}\n },\n \".aui-branch-picker-state\": {\n \"@apply font-medium\": {}\n },\n \".aui-text\": {\n \"@apply whitespace-pre-line\": {}\n },\n \".aui-text-running::after\": {\n \"@apply animate-pulse font-sans content-['\\\\25CF'] ltr:ml-1 rtl:mr-1\": {}\n }\n}","{\n \".aui-modal-content\": {\n \"@apply bg-aui-popover text-aui-popover-foreground z-50 h-[500px] w-[400px] overflow-clip rounded-xl border p-0 shadow-md outline-none\": {},\n \"@apply [&>.aui-thread-root]:bg-inherit\": {},\n \"@apply data-[state=closed]:animate-out data-[state=open]:animate-in\": {},\n \"@apply data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\": {},\n \"@apply data-[state=closed]:zoom-out data-[state=open]:zoom-in\": {},\n \"@apply data-[state=open]:slide-in-from-bottom-1/2 data-[state=open]:slide-in-from-right-1/2 data-[state=closed]:slide-out-to-bottom-1/2 data-[state=closed]:slide-out-to-right-1/2\": {}\n },\n \".aui-modal-anchor\": {\n \"@apply fixed bottom-4 right-4 size-11\": {}\n },\n \".aui-modal-button\": {\n \"@apply size-full rounded-full shadow transition-transform hover:scale-110 active:scale-90\": {}\n },\n \".aui-modal-button-closed-icon\": {\n \"@apply absolute size-6 transition-all\": {},\n \"@apply data-[state=closed]:rotate-0 data-[state=open]:rotate-90\": {},\n \"@apply data-[state=closed]:scale-100 data-[state=open]:scale-0\": {}\n },\n \".aui-modal-button-open-icon\": {\n \"@apply absolute size-6 transition-all\": {},\n \"@apply data-[state=closed]:-rotate-90 data-[state=open]:rotate-0\": {},\n \"@apply data-[state=closed]:scale-0 data-[state=open]:scale-100\": {}\n }\n}","{\n \":root\": {\n \"--aui-background\": \"0 0% 100%\",\n \"--aui-foreground\": \"240 10% 3.9%\",\n \"--aui-card\": \"0 0% 100%\",\n \"--aui-card-foreground\": \"240 10% 3.9%\",\n \"--aui-popover\": \"0 0% 100%\",\n \"--aui-popover-foreground\": \"240 10% 3.9%\",\n \"--aui-primary\": \"240 5.9% 10%\",\n \"--aui-primary-foreground\": \"0 0% 98%\",\n \"--aui-secondary\": \"240 4.8% 95.9%\",\n \"--aui-secondary-foreground\": \"240 5.9% 10%\",\n \"--aui-muted\": \"240 4.8% 95.9%\",\n \"--aui-muted-foreground\": \"240 3.8% 46.1%\",\n \"--aui-accent\": \"240 4.8% 95.9%\",\n \"--aui-accent-foreground\": \"240 5.9% 10%\",\n \"--aui-destructive\": \"0 84.2% 60.2%\",\n \"--aui-destructive-foreground\": \"0 0% 98%\",\n \"--aui-border\": \"240 5.9% 90%\",\n \"--aui-input\": \"240 5.9% 90%\",\n \"--aui-ring\": \"240 10% 3.9%\",\n \"--aui-radius\": \"0.5rem\"\n },\n \".dark\": {\n \"--aui-background\": \"0 0% 7%\",\n \"--aui-foreground\": \"0 0% 98%\",\n \"--aui-card\": \"240 10% 3.9%\",\n \"--aui-card-foreground\": \"0 0% 98%\",\n \"--aui-popover\": \"240 10% 3.9%\",\n \"--aui-popover-foreground\": \"0 0% 98%\",\n \"--aui-primary\": \"0 0% 98%\",\n \"--aui-primary-foreground\": \"240 5.9% 10%\",\n \"--aui-secondary\": \"240 3.7% 15.9%\",\n \"--aui-secondary-foreground\": \"0 0% 98%\",\n \"--aui-muted\": \"240 3.7% 15.9%\",\n \"--aui-muted-foreground\": \"240 5% 64.9%\",\n \"--aui-accent\": \"240 3.7% 15.9%\",\n \"--aui-accent-foreground\": \"0 0% 98%\",\n \"--aui-destructive\": \"0 62.8% 30.6%\",\n \"--aui-destructive-foreground\": \"0 0% 98%\",\n \"--aui-border\": \"240 3.7% 15.9%\",\n \"--aui-input\": \"240 3.7% 15.9%\",\n \"--aui-ring\": \"240 4.9% 83.9%\"\n }\n}"]}
|
@@ -3,6 +3,288 @@ import "../chunk-BJPOCE4O.mjs";
|
|
3
3
|
|
4
4
|
// src/tailwindcss/index.ts
|
5
5
|
import plugin from "tailwindcss/plugin.js";
|
6
|
+
|
7
|
+
// src/tailwindcss/data/base-components.css.json
|
8
|
+
var base_components_css_default = {
|
9
|
+
".aui-root": {
|
10
|
+
"@apply text-aui-foreground": {}
|
11
|
+
},
|
12
|
+
".aui-root *": {
|
13
|
+
"@apply border-aui-border": {}
|
14
|
+
},
|
15
|
+
".aui-button": {
|
16
|
+
"@apply focus-visible:ring-aui-ring inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50": {}
|
17
|
+
},
|
18
|
+
".aui-button-primary": {
|
19
|
+
"@apply bg-aui-primary text-aui-primary-foreground hover:bg-aui-primary/90 shadow": {}
|
20
|
+
},
|
21
|
+
".aui-button-outline": {
|
22
|
+
"@apply border-aui-input bg-aui-background hover:bg-aui-accent hover:text-aui-accent-foreground border shadow-sm": {}
|
23
|
+
},
|
24
|
+
".aui-button-ghost": {
|
25
|
+
"@apply hover:bg-aui-accent hover:text-aui-accent-foreground": {}
|
26
|
+
},
|
27
|
+
".aui-button-medium": {
|
28
|
+
"@apply h-9 px-4 py-2": {}
|
29
|
+
},
|
30
|
+
".aui-button-icon": {
|
31
|
+
"@apply size-6 p-1": {}
|
32
|
+
},
|
33
|
+
".aui-sr-only": {
|
34
|
+
"@apply sr-only": {}
|
35
|
+
},
|
36
|
+
".aui-avatar-root": {
|
37
|
+
"@apply relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full": {}
|
38
|
+
},
|
39
|
+
".aui-avatar-image": {
|
40
|
+
"@apply aspect-square h-full w-full object-cover": {}
|
41
|
+
},
|
42
|
+
".aui-avatar-fallback": {
|
43
|
+
"@apply bg-aui-muted flex h-full w-full items-center justify-center rounded-full": {}
|
44
|
+
},
|
45
|
+
".aui-tooltip-content": {
|
46
|
+
"@apply bg-aui-popover text-aui-popover-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 overflow-hidden rounded-md border px-3 py-1.5 text-sm shadow-md": {}
|
47
|
+
},
|
48
|
+
".aui-dialog-overlay": {
|
49
|
+
"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80": {}
|
50
|
+
},
|
51
|
+
".aui-dialog-content": {
|
52
|
+
"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed left-[50%] top-[50%] z-50": {},
|
53
|
+
"@apply grid translate-x-[-50%] translate-y-[-50%] shadow-lg duration-200": {}
|
54
|
+
}
|
55
|
+
};
|
56
|
+
|
57
|
+
// src/tailwindcss/data/thread.css.json
|
58
|
+
var thread_css_default = {
|
59
|
+
".aui-thread-root": {
|
60
|
+
"@apply bg-aui-background box-border h-full": {},
|
61
|
+
"@apply [&>.aui-thread-viewport]:bg-inherit": {}
|
62
|
+
},
|
63
|
+
".aui-thread-viewport": {
|
64
|
+
"@apply bg-aui-background flex h-full flex-col items-center overflow-y-scroll scroll-smooth px-4 pt-8": {}
|
65
|
+
},
|
66
|
+
".aui-thread-viewport-footer": {
|
67
|
+
"@apply sticky bottom-0 mt-3 flex w-full max-w-2xl flex-col items-center justify-end rounded-t-lg bg-inherit pb-4": {}
|
68
|
+
},
|
69
|
+
".aui-thread-scroll-to-bottom": {
|
70
|
+
"@apply absolute -top-8 rounded-full disabled:invisible": {}
|
71
|
+
},
|
72
|
+
".aui-thread-followup-suggestions": {
|
73
|
+
"@apply flex min-h-8 items-center justify-center gap-2": {}
|
74
|
+
},
|
75
|
+
".aui-thread-followup-suggestion": {
|
76
|
+
"@apply bg-aui-background hover:bg-aui-muted/80 rounded-full border px-3 py-1 text-sm transition-colors ease-in": {}
|
77
|
+
},
|
78
|
+
".aui-thread-welcome-root": {
|
79
|
+
"@apply flex w-full max-w-2xl flex-grow flex-col": {}
|
80
|
+
},
|
81
|
+
".aui-thread-welcome-center": {
|
82
|
+
"@apply flex w-full flex-grow flex-col items-center justify-center": {}
|
83
|
+
},
|
84
|
+
".aui-thread-welcome-message": {
|
85
|
+
"@apply mt-4 font-medium": {}
|
86
|
+
},
|
87
|
+
".aui-thread-welcome-suggestion-container": {
|
88
|
+
"@apply mt-3 flex w-full items-stretch justify-center gap-4": {}
|
89
|
+
},
|
90
|
+
".aui-thread-welcome-suggestion": {
|
91
|
+
"@apply hover:bg-aui-muted/80 flex max-w-sm grow basis-0 flex-col items-center justify-center rounded-lg border p-3 transition-colors ease-in": {}
|
92
|
+
},
|
93
|
+
".aui-thread-welcome-suggestion-text": {
|
94
|
+
"@apply line-clamp-2 text-ellipsis text-sm font-semibold": {}
|
95
|
+
},
|
96
|
+
".aui-composer-root": {
|
97
|
+
"@apply focus-within:border-aui-ring/20 flex w-full flex-wrap items-end rounded-lg border bg-inherit px-2.5 shadow-sm transition-colors ease-in": {}
|
98
|
+
},
|
99
|
+
".aui-composer-input": {
|
100
|
+
"@apply placeholder:text-aui-muted-foreground max-h-40 flex-grow resize-none border-none bg-transparent px-2 py-4 text-sm outline-none focus:ring-0 disabled:cursor-not-allowed": {}
|
101
|
+
},
|
102
|
+
".aui-composer-send,\n.aui-composer-cancel,\n.aui-composer-attach": {
|
103
|
+
"@apply my-2.5 size-8 p-2 transition-opacity ease-in": {}
|
104
|
+
},
|
105
|
+
".aui-composer-attachments": {
|
106
|
+
"@apply flex w-full flex-row gap-3 px-10": {}
|
107
|
+
},
|
108
|
+
".aui-attachment-root": {
|
109
|
+
"@apply relative mt-3 flex h-12 w-40 items-center justify-center gap-2 rounded-lg border p-1": {}
|
110
|
+
},
|
111
|
+
".aui-attachment-preview-trigger": {
|
112
|
+
"@apply hover:bg-aui-accent/50 cursor-pointer transition-colors": {}
|
113
|
+
},
|
114
|
+
".aui-attachment-thumb": {
|
115
|
+
"@apply bg-aui-muted flex size-10 items-center justify-center rounded border text-sm": {}
|
116
|
+
},
|
117
|
+
".aui-attachment-text": {
|
118
|
+
"@apply flex-grow basis-0": {}
|
119
|
+
},
|
120
|
+
".aui-attachment-name": {
|
121
|
+
"@apply text-aui-muted-foreground line-clamp-1 text-ellipsis text-xs font-bold": {}
|
122
|
+
},
|
123
|
+
".aui-attachment-type": {
|
124
|
+
"@apply text-aui-muted-foreground text-xs": {}
|
125
|
+
},
|
126
|
+
".aui-attachment-remove": {
|
127
|
+
"@apply text-aui-muted-foreground [&>svg]:bg-aui-background absolute -right-3 -top-3 size-6 [&>svg]:size-4 [&>svg]:rounded-full": {}
|
128
|
+
},
|
129
|
+
".aui-user-message-root": {
|
130
|
+
"@apply grid auto-rows-auto grid-cols-[minmax(72px,1fr)_auto] gap-y-2 [&>*]:col-start-2": {},
|
131
|
+
"@apply w-full max-w-2xl py-4": {}
|
132
|
+
},
|
133
|
+
":where(.aui-user-message-root) > .aui-user-action-bar-root": {
|
134
|
+
"@apply col-start-1 row-start-2 mr-3 mt-2.5": {}
|
135
|
+
},
|
136
|
+
":where(.aui-user-message-root) > .aui-user-message-attachments": {
|
137
|
+
"@apply col-span-full col-start-1 row-start-1": {},
|
138
|
+
"@apply justify-end": {}
|
139
|
+
},
|
140
|
+
":where(.aui-user-message-root) > .aui-user-message-content": {
|
141
|
+
"@apply col-start-2 row-start-2": {}
|
142
|
+
},
|
143
|
+
":where(.aui-user-message-root) > .aui-branch-picker-root": {
|
144
|
+
"@apply col-span-full col-start-1 row-start-3": {},
|
145
|
+
"@apply -mr-1 justify-end": {}
|
146
|
+
},
|
147
|
+
".aui-user-message-content": {
|
148
|
+
"@apply bg-aui-muted text-aui-foreground max-w-xl break-words rounded-3xl px-5 py-2.5": {}
|
149
|
+
},
|
150
|
+
".aui-user-message-attachments": {
|
151
|
+
"@apply flex w-full flex-row gap-3": {}
|
152
|
+
},
|
153
|
+
".aui-user-action-bar-root": {
|
154
|
+
"@apply flex flex-col items-end": {}
|
155
|
+
},
|
156
|
+
".aui-edit-composer-root": {
|
157
|
+
"@apply bg-aui-muted my-4 flex w-full max-w-2xl flex-col gap-2 rounded-xl": {}
|
158
|
+
},
|
159
|
+
".aui-edit-composer-input": {
|
160
|
+
"@apply text-aui-foreground flex h-8 w-full resize-none bg-transparent p-4 pb-0 outline-none": {}
|
161
|
+
},
|
162
|
+
".aui-edit-composer-footer": {
|
163
|
+
"@apply mx-3 mb-3 flex items-center justify-center gap-2 self-end": {}
|
164
|
+
},
|
165
|
+
".aui-assistant-message-root": {
|
166
|
+
"@apply grid grid-cols-[auto_auto_1fr] grid-rows-[auto_1fr]": {},
|
167
|
+
"@apply relative w-full max-w-2xl py-4": {}
|
168
|
+
},
|
169
|
+
":where(.aui-assistant-message-root) > .aui-avatar-root": {
|
170
|
+
"@apply col-start-1 row-span-full row-start-1 mr-4": {}
|
171
|
+
},
|
172
|
+
":where(.aui-assistant-message-root) > .aui-branch-picker-root": {
|
173
|
+
"@apply col-start-2 row-start-2": {},
|
174
|
+
"@apply -ml-2 mr-2": {}
|
175
|
+
},
|
176
|
+
":where(.aui-assistant-message-root) > .aui-assistant-action-bar-root": {
|
177
|
+
"@apply col-start-3 row-start-2": {},
|
178
|
+
"@apply -ml-1": {}
|
179
|
+
},
|
180
|
+
":where(.aui-assistant-message-root) > .aui-assistant-message-content": {
|
181
|
+
"@apply col-span-2 col-start-2 row-start-1 my-1.5": {}
|
182
|
+
},
|
183
|
+
".aui-assistant-message-content": {
|
184
|
+
"@apply text-aui-foreground max-w-xl break-words leading-7": {}
|
185
|
+
},
|
186
|
+
".aui-assistant-action-bar-root": {
|
187
|
+
"@apply text-aui-muted-foreground flex gap-1": {}
|
188
|
+
},
|
189
|
+
":where(.aui-assistant-action-bar-root)[data-floating]": {
|
190
|
+
"@apply bg-aui-background absolute rounded-md border p-1 shadow-sm": {}
|
191
|
+
},
|
192
|
+
":where(.aui-assistant-action-bar-feedback-positive)[data-submitted]": {
|
193
|
+
"@apply text-green-600 hover:text-green-700 dark:text-green-500 dark:hover:text-green-400": {}
|
194
|
+
},
|
195
|
+
":where(.aui-assistant-action-bar-feedback-negative)[data-submitted]": {
|
196
|
+
"@apply text-red-600 hover:text-red-700 dark:text-red-500 dark:hover:text-red-400": {}
|
197
|
+
},
|
198
|
+
".aui-branch-picker-root": {
|
199
|
+
"@apply text-aui-muted-foreground inline-flex items-center text-xs": {}
|
200
|
+
},
|
201
|
+
".aui-branch-picker-state": {
|
202
|
+
"@apply font-medium": {}
|
203
|
+
},
|
204
|
+
".aui-text": {
|
205
|
+
"@apply whitespace-pre-line": {}
|
206
|
+
},
|
207
|
+
".aui-text-running::after": {
|
208
|
+
"@apply animate-pulse font-sans content-['\\25CF'] ltr:ml-1 rtl:mr-1": {}
|
209
|
+
}
|
210
|
+
};
|
211
|
+
|
212
|
+
// src/tailwindcss/data/modal.css.json
|
213
|
+
var modal_css_default = {
|
214
|
+
".aui-modal-content": {
|
215
|
+
"@apply bg-aui-popover text-aui-popover-foreground z-50 h-[500px] w-[400px] overflow-clip rounded-xl border p-0 shadow-md outline-none": {},
|
216
|
+
"@apply [&>.aui-thread-root]:bg-inherit": {},
|
217
|
+
"@apply data-[state=closed]:animate-out data-[state=open]:animate-in": {},
|
218
|
+
"@apply data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0": {},
|
219
|
+
"@apply data-[state=closed]:zoom-out data-[state=open]:zoom-in": {},
|
220
|
+
"@apply data-[state=open]:slide-in-from-bottom-1/2 data-[state=open]:slide-in-from-right-1/2 data-[state=closed]:slide-out-to-bottom-1/2 data-[state=closed]:slide-out-to-right-1/2": {}
|
221
|
+
},
|
222
|
+
".aui-modal-anchor": {
|
223
|
+
"@apply fixed bottom-4 right-4 size-11": {}
|
224
|
+
},
|
225
|
+
".aui-modal-button": {
|
226
|
+
"@apply size-full rounded-full shadow transition-transform hover:scale-110 active:scale-90": {}
|
227
|
+
},
|
228
|
+
".aui-modal-button-closed-icon": {
|
229
|
+
"@apply absolute size-6 transition-all": {},
|
230
|
+
"@apply data-[state=closed]:rotate-0 data-[state=open]:rotate-90": {},
|
231
|
+
"@apply data-[state=closed]:scale-100 data-[state=open]:scale-0": {}
|
232
|
+
},
|
233
|
+
".aui-modal-button-open-icon": {
|
234
|
+
"@apply absolute size-6 transition-all": {},
|
235
|
+
"@apply data-[state=closed]:-rotate-90 data-[state=open]:rotate-0": {},
|
236
|
+
"@apply data-[state=closed]:scale-0 data-[state=open]:scale-100": {}
|
237
|
+
}
|
238
|
+
};
|
239
|
+
|
240
|
+
// src/tailwindcss/data/default.css.json
|
241
|
+
var default_css_default = {
|
242
|
+
":root": {
|
243
|
+
"--aui-background": "0 0% 100%",
|
244
|
+
"--aui-foreground": "240 10% 3.9%",
|
245
|
+
"--aui-card": "0 0% 100%",
|
246
|
+
"--aui-card-foreground": "240 10% 3.9%",
|
247
|
+
"--aui-popover": "0 0% 100%",
|
248
|
+
"--aui-popover-foreground": "240 10% 3.9%",
|
249
|
+
"--aui-primary": "240 5.9% 10%",
|
250
|
+
"--aui-primary-foreground": "0 0% 98%",
|
251
|
+
"--aui-secondary": "240 4.8% 95.9%",
|
252
|
+
"--aui-secondary-foreground": "240 5.9% 10%",
|
253
|
+
"--aui-muted": "240 4.8% 95.9%",
|
254
|
+
"--aui-muted-foreground": "240 3.8% 46.1%",
|
255
|
+
"--aui-accent": "240 4.8% 95.9%",
|
256
|
+
"--aui-accent-foreground": "240 5.9% 10%",
|
257
|
+
"--aui-destructive": "0 84.2% 60.2%",
|
258
|
+
"--aui-destructive-foreground": "0 0% 98%",
|
259
|
+
"--aui-border": "240 5.9% 90%",
|
260
|
+
"--aui-input": "240 5.9% 90%",
|
261
|
+
"--aui-ring": "240 10% 3.9%",
|
262
|
+
"--aui-radius": "0.5rem"
|
263
|
+
},
|
264
|
+
".dark": {
|
265
|
+
"--aui-background": "0 0% 7%",
|
266
|
+
"--aui-foreground": "0 0% 98%",
|
267
|
+
"--aui-card": "240 10% 3.9%",
|
268
|
+
"--aui-card-foreground": "0 0% 98%",
|
269
|
+
"--aui-popover": "240 10% 3.9%",
|
270
|
+
"--aui-popover-foreground": "0 0% 98%",
|
271
|
+
"--aui-primary": "0 0% 98%",
|
272
|
+
"--aui-primary-foreground": "240 5.9% 10%",
|
273
|
+
"--aui-secondary": "240 3.7% 15.9%",
|
274
|
+
"--aui-secondary-foreground": "0 0% 98%",
|
275
|
+
"--aui-muted": "240 3.7% 15.9%",
|
276
|
+
"--aui-muted-foreground": "240 5% 64.9%",
|
277
|
+
"--aui-accent": "240 3.7% 15.9%",
|
278
|
+
"--aui-accent-foreground": "0 0% 98%",
|
279
|
+
"--aui-destructive": "0 62.8% 30.6%",
|
280
|
+
"--aui-destructive-foreground": "0 0% 98%",
|
281
|
+
"--aui-border": "240 3.7% 15.9%",
|
282
|
+
"--aui-input": "240 3.7% 15.9%",
|
283
|
+
"--aui-ring": "240 4.9% 83.9%"
|
284
|
+
}
|
285
|
+
};
|
286
|
+
|
287
|
+
// src/tailwindcss/index.ts
|
6
288
|
var auiPlugin = plugin.withOptions(
|
7
289
|
({ components = ["assistant-modal", "thread"], shadcn = false } = {}) => ({ addComponents }) => {
|
8
290
|
const assistantModal = components.includes("assistant-modal");
|
@@ -12,29 +294,22 @@ var auiPlugin = plugin.withOptions(
|
|
12
294
|
if (defaultTheme && shadcn)
|
13
295
|
throw new Error("default-theme cannot be used with shadcn");
|
14
296
|
if (defaultTheme || base && !shadcn) {
|
15
|
-
addComponents(
|
16
|
-
'@import "@assistant-ui/react/styles/themes/default.css"': ""
|
17
|
-
});
|
297
|
+
addComponents(default_css_default);
|
18
298
|
}
|
19
299
|
if (base) {
|
20
|
-
addComponents(
|
21
|
-
'@import "@assistant-ui/react/styles/tailwindcss/base-components.css"': ""
|
22
|
-
});
|
300
|
+
addComponents(base_components_css_default);
|
23
301
|
}
|
24
302
|
if (thread) {
|
25
|
-
addComponents(
|
26
|
-
'@import "@assistant-ui/react/styles/tailwindcss/thread.css"': ""
|
27
|
-
});
|
303
|
+
addComponents(thread_css_default);
|
28
304
|
}
|
29
305
|
if (assistantModal) {
|
30
|
-
addComponents(
|
31
|
-
'@import "@assistant-ui/react/styles/tailwindcss/modal.css"': ""
|
32
|
-
});
|
306
|
+
addComponents(modal_css_default);
|
33
307
|
}
|
34
308
|
},
|
35
309
|
({ shadcn = false, colors = {} } = {}) => {
|
36
310
|
const prefix = !shadcn ? "--aui-" : "--";
|
37
311
|
return {
|
312
|
+
safelist: [{ pattern: /aui-/ }],
|
38
313
|
theme: {
|
39
314
|
extend: {
|
40
315
|
colors: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../src/tailwindcss/index.ts"],"sourcesContent":["import plugin from \"tailwindcss/plugin.js\";\n\ntype AssistantTailwindPluginColors = {\n border: string;\n input: string;\n ring: string;\n background: string;\n foreground: string;\n primary: {\n DEFAULT: string;\n foreground: string;\n };\n secondary: {\n DEFAULT: string;\n foreground: string;\n };\n destructive: {\n DEFAULT: string;\n foreground: string;\n };\n muted: {\n DEFAULT: string;\n foreground: string;\n };\n accent: {\n DEFAULT: string;\n foreground: string;\n };\n popover: {\n DEFAULT: string;\n foreground: string;\n };\n card: {\n DEFAULT: string;\n foreground: string;\n };\n};\n\ntype AssisstantTailwindPluginOptions = {\n components?: (\"default-theme\" | \"base\" | \"thread\" | \"assistant-modal\")[];\n colors?: AssistantTailwindPluginColors;\n shadcn?: boolean;\n};\n\nconst auiPlugin = plugin.withOptions<AssisstantTailwindPluginOptions>(\n ({ components = [\"assistant-modal\", \"thread\"], shadcn = false } = {}) =>\n ({ addComponents }) => {\n const assistantModal = components.includes(\"assistant-modal\");\n const thread = assistantModal || components.includes(\"thread\");\n const base = thread || components.includes(\"base\");\n const defaultTheme = components.includes(\"default-theme\");\n\n if (defaultTheme && shadcn)\n throw new Error(\"default-theme cannot be used with shadcn\");\n\n if (defaultTheme || (base && !shadcn)) {\n addComponents({\n '@import \"@assistant-ui/react/styles/themes/default.css\"': \"\",\n });\n }\n\n if (base) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/base-components.css\"':\n \"\",\n });\n }\n\n if (thread) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/thread.css\"': \"\",\n });\n }\n\n if (assistantModal) {\n addComponents({\n '@import \"@assistant-ui/react/styles/tailwindcss/modal.css\"': \"\",\n });\n }\n },\n ({ shadcn = false, colors = {} } = {}) => {\n const prefix = !shadcn ? \"--aui-\" : \"--\";\n return {\n theme: {\n extend: {\n colors: {\n aui: {\n border: colors.border ?? `hsl(var(${prefix}border))`,\n input: colors.input ?? `hsl(var(${prefix}input))`,\n ring: colors.ring ?? `hsl(var(${prefix}ring))`,\n background: colors.background ?? `hsl(var(${prefix}background))`,\n foreground: colors.foreground ?? `hsl(var(${prefix}foreground))`,\n primary: {\n DEFAULT:\n colors.primary?.DEFAULT ?? `hsl(var(${prefix}primary))`,\n foreground:\n colors.primary?.foreground ??\n `hsl(var(${prefix}primary-foreground))`,\n },\n secondary: {\n DEFAULT:\n colors.secondary?.DEFAULT ?? `hsl(var(${prefix}secondary))`,\n foreground:\n colors.secondary?.foreground ??\n `hsl(var(${prefix}secondary-foreground))`,\n },\n destructive: {\n DEFAULT:\n colors.destructive?.DEFAULT ??\n `hsl(var(${prefix}destructive))`,\n foreground: `hsl(var(${prefix}destructive-foreground))`,\n },\n muted: {\n DEFAULT: `hsl(var(${prefix}muted))`,\n foreground:\n colors.muted?.foreground ??\n `hsl(var(${prefix}muted-foreground))`,\n },\n accent: {\n DEFAULT: colors.accent?.DEFAULT ?? `hsl(var(${prefix}accent))`,\n foreground:\n colors.accent?.foreground ??\n `hsl(var(${prefix}accent-foreground))`,\n },\n popover: {\n DEFAULT:\n colors.popover?.DEFAULT ?? `hsl(var(${prefix}popover))`,\n foreground:\n colors.popover?.foreground ??\n `hsl(var(${prefix}popover-foreground))`,\n },\n card: {\n DEFAULT: colors.card?.DEFAULT ?? `hsl(var(${prefix}card))`,\n foreground:\n colors.card?.foreground ??\n `hsl(var(${prefix}card-foreground))`,\n },\n },\n },\n },\n },\n };\n },\n);\n\nexport default auiPlugin;\n"],"mappings":";;;;AAAA,OAAO,YAAY;AA4CnB,IAAM,YAAY,OAAO;AAAA,EACvB,CAAC,EAAE,aAAa,CAAC,mBAAmB,QAAQ,GAAG,SAAS,MAAM,IAAI,CAAC,MACjE,CAAC,EAAE,cAAc,MAAM;AACrB,UAAM,iBAAiB,WAAW,SAAS,iBAAiB;AAC5D,UAAM,SAAS,kBAAkB,WAAW,SAAS,QAAQ;AAC7D,UAAM,OAAO,UAAU,WAAW,SAAS,MAAM;AACjD,UAAM,eAAe,WAAW,SAAS,eAAe;AAExD,QAAI,gBAAgB;AAClB,YAAM,IAAI,MAAM,0CAA0C;AAE5D,QAAI,gBAAiB,QAAQ,CAAC,QAAS;AACrC,oBAAc;AAAA,QACZ,2DAA2D;AAAA,MAC7D,CAAC;AAAA,IACH;AAEA,QAAI,MAAM;AACR,oBAAc;AAAA,QACZ,wEACE;AAAA,MACJ,CAAC;AAAA,IACH;AAEA,QAAI,QAAQ;AACV,oBAAc;AAAA,QACZ,+DAA+D;AAAA,MACjE,CAAC;AAAA,IACH;AAEA,QAAI,gBAAgB;AAClB,oBAAc;AAAA,QACZ,8DAA8D;AAAA,MAChE,CAAC;AAAA,IACH;AAAA,EACF;AAAA,EACF,CAAC,EAAE,SAAS,OAAO,SAAS,CAAC,EAAE,IAAI,CAAC,MAAM;AACxC,UAAM,SAAS,CAAC,SAAS,WAAW;AACpC,WAAO;AAAA,MACL,OAAO;AAAA,QACL,QAAQ;AAAA,UACN,QAAQ;AAAA,YACN,KAAK;AAAA,cACH,QAAQ,OAAO,UAAU,WAAW,MAAM;AAAA,cAC1C,OAAO,OAAO,SAAS,WAAW,MAAM;AAAA,cACxC,MAAM,OAAO,QAAQ,WAAW,MAAM;AAAA,cACtC,YAAY,OAAO,cAAc,WAAW,MAAM;AAAA,cAClD,YAAY,OAAO,cAAc,WAAW,MAAM;AAAA,cAClD,SAAS;AAAA,gBACP,SACE,OAAO,SAAS,WAAW,WAAW,MAAM;AAAA,gBAC9C,YACE,OAAO,SAAS,cAChB,WAAW,MAAM;AAAA,cACrB;AAAA,cACA,WAAW;AAAA,gBACT,SACE,OAAO,WAAW,WAAW,WAAW,MAAM;AAAA,gBAChD,YACE,OAAO,WAAW,cAClB,WAAW,MAAM;AAAA,cACrB;AAAA,cACA,aAAa;AAAA,gBACX,SACE,OAAO,aAAa,WACpB,WAAW,MAAM;AAAA,gBACnB,YAAY,WAAW,MAAM;AAAA,cAC/B;AAAA,cACA,OAAO;AAAA,gBACL,SAAS,WAAW,MAAM;AAAA,gBAC1B,YACE,OAAO,OAAO,cACd,WAAW,MAAM;AAAA,cACrB;AAAA,cACA,QAAQ;AAAA,gBACN,SAAS,OAAO,QAAQ,WAAW,WAAW,MAAM;AAAA,gBACpD,YACE,OAAO,QAAQ,cACf,WAAW,MAAM;AAAA,cACrB;AAAA,cACA,SAAS;AAAA,gBACP,SACE,OAAO,SAAS,WAAW,WAAW,MAAM;AAAA,gBAC9C,YACE,OAAO,SAAS,cAChB,WAAW,MAAM;AAAA,cACrB;AAAA,cACA,MAAM;AAAA,gBACJ,SAAS,OAAO,MAAM,WAAW,WAAW,MAAM;AAAA,gBAClD,YACE,OAAO,MAAM,cACb,WAAW,MAAM;AAAA,cACrB;AAAA,YACF;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;AAEA,IAAO,sBAAQ;","names":[]}
|
1
|
+
{"version":3,"sources":["../../src/tailwindcss/index.ts","../../src/tailwindcss/data/base-components.css.json","../../src/tailwindcss/data/thread.css.json","../../src/tailwindcss/data/modal.css.json","../../src/tailwindcss/data/default.css.json"],"sourcesContent":["import plugin from \"tailwindcss/plugin.js\";\nimport baseComponentsCSS from \"./data/base-components.css.json\";\nimport threadCSS from \"./data/thread.css.json\";\nimport modalCSS from \"./data/modal.css.json\";\nimport defaultThemeCSS from \"./data/default.css.json\";\n\ntype AssistantTailwindPluginColors = {\n border: string;\n input: string;\n ring: string;\n background: string;\n foreground: string;\n primary: {\n DEFAULT: string;\n foreground: string;\n };\n secondary: {\n DEFAULT: string;\n foreground: string;\n };\n destructive: {\n DEFAULT: string;\n foreground: string;\n };\n muted: {\n DEFAULT: string;\n foreground: string;\n };\n accent: {\n DEFAULT: string;\n foreground: string;\n };\n popover: {\n DEFAULT: string;\n foreground: string;\n };\n card: {\n DEFAULT: string;\n foreground: string;\n };\n};\n\ntype AssisstantTailwindPluginOptions = {\n components?: (\"default-theme\" | \"base\" | \"thread\" | \"assistant-modal\")[];\n colors?: AssistantTailwindPluginColors;\n shadcn?: boolean;\n};\n\nconst auiPlugin = plugin.withOptions<AssisstantTailwindPluginOptions>(\n ({ components = [\"assistant-modal\", \"thread\"], shadcn = false } = {}) =>\n ({ addComponents }) => {\n const assistantModal = components.includes(\"assistant-modal\");\n const thread = assistantModal || components.includes(\"thread\");\n const base = thread || components.includes(\"base\");\n const defaultTheme = components.includes(\"default-theme\");\n\n if (defaultTheme && shadcn)\n throw new Error(\"default-theme cannot be used with shadcn\");\n\n if (defaultTheme || (base && !shadcn)) {\n addComponents(defaultThemeCSS);\n }\n\n if (base) {\n addComponents(baseComponentsCSS);\n }\n\n if (thread) {\n addComponents(threadCSS);\n }\n\n if (assistantModal) {\n addComponents(modalCSS);\n }\n },\n ({ shadcn = false, colors = {} } = {}) => {\n const prefix = !shadcn ? \"--aui-\" : \"--\";\n return {\n safelist: [{ pattern: /aui-/ }],\n theme: {\n extend: {\n colors: {\n aui: {\n border: colors.border ?? `hsl(var(${prefix}border))`,\n input: colors.input ?? `hsl(var(${prefix}input))`,\n ring: colors.ring ?? `hsl(var(${prefix}ring))`,\n background: colors.background ?? `hsl(var(${prefix}background))`,\n foreground: colors.foreground ?? `hsl(var(${prefix}foreground))`,\n primary: {\n DEFAULT:\n colors.primary?.DEFAULT ?? `hsl(var(${prefix}primary))`,\n foreground:\n colors.primary?.foreground ??\n `hsl(var(${prefix}primary-foreground))`,\n },\n secondary: {\n DEFAULT:\n colors.secondary?.DEFAULT ?? `hsl(var(${prefix}secondary))`,\n foreground:\n colors.secondary?.foreground ??\n `hsl(var(${prefix}secondary-foreground))`,\n },\n destructive: {\n DEFAULT:\n colors.destructive?.DEFAULT ??\n `hsl(var(${prefix}destructive))`,\n foreground: `hsl(var(${prefix}destructive-foreground))`,\n },\n muted: {\n DEFAULT: `hsl(var(${prefix}muted))`,\n foreground:\n colors.muted?.foreground ??\n `hsl(var(${prefix}muted-foreground))`,\n },\n accent: {\n DEFAULT: colors.accent?.DEFAULT ?? `hsl(var(${prefix}accent))`,\n foreground:\n colors.accent?.foreground ??\n `hsl(var(${prefix}accent-foreground))`,\n },\n popover: {\n DEFAULT:\n colors.popover?.DEFAULT ?? `hsl(var(${prefix}popover))`,\n foreground:\n colors.popover?.foreground ??\n `hsl(var(${prefix}popover-foreground))`,\n },\n card: {\n DEFAULT: colors.card?.DEFAULT ?? `hsl(var(${prefix}card))`,\n foreground:\n colors.card?.foreground ??\n `hsl(var(${prefix}card-foreground))`,\n },\n },\n },\n },\n },\n };\n },\n);\n\nexport default auiPlugin;\n","{\n \".aui-root\": {\n \"@apply text-aui-foreground\": {}\n },\n \".aui-root *\": {\n \"@apply border-aui-border\": {}\n },\n \".aui-button\": {\n \"@apply focus-visible:ring-aui-ring inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50\": {}\n },\n \".aui-button-primary\": {\n \"@apply bg-aui-primary text-aui-primary-foreground hover:bg-aui-primary/90 shadow\": {}\n },\n \".aui-button-outline\": {\n \"@apply border-aui-input bg-aui-background hover:bg-aui-accent hover:text-aui-accent-foreground border shadow-sm\": {}\n },\n \".aui-button-ghost\": {\n \"@apply hover:bg-aui-accent hover:text-aui-accent-foreground\": {}\n },\n \".aui-button-medium\": {\n \"@apply h-9 px-4 py-2\": {}\n },\n \".aui-button-icon\": {\n \"@apply size-6 p-1\": {}\n },\n \".aui-sr-only\": {\n \"@apply sr-only\": {}\n },\n \".aui-avatar-root\": {\n \"@apply relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full\": {}\n },\n \".aui-avatar-image\": {\n \"@apply aspect-square h-full w-full object-cover\": {}\n },\n \".aui-avatar-fallback\": {\n \"@apply bg-aui-muted flex h-full w-full items-center justify-center rounded-full\": {}\n },\n \".aui-tooltip-content\": {\n \"@apply bg-aui-popover text-aui-popover-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 overflow-hidden rounded-md border px-3 py-1.5 text-sm shadow-md\": {}\n },\n \".aui-dialog-overlay\": {\n \"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80\": {}\n },\n \".aui-dialog-content\": {\n \"@apply data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] fixed left-[50%] top-[50%] z-50\": {},\n \"@apply grid translate-x-[-50%] translate-y-[-50%] shadow-lg duration-200\": {}\n }\n}","{\n \".aui-thread-root\": {\n \"@apply bg-aui-background box-border h-full\": {},\n \"@apply [&>.aui-thread-viewport]:bg-inherit\": {}\n },\n \".aui-thread-viewport\": {\n \"@apply bg-aui-background flex h-full flex-col items-center overflow-y-scroll scroll-smooth px-4 pt-8\": {}\n },\n \".aui-thread-viewport-footer\": {\n \"@apply sticky bottom-0 mt-3 flex w-full max-w-2xl flex-col items-center justify-end rounded-t-lg bg-inherit pb-4\": {}\n },\n \".aui-thread-scroll-to-bottom\": {\n \"@apply absolute -top-8 rounded-full disabled:invisible\": {}\n },\n \".aui-thread-followup-suggestions\": {\n \"@apply flex min-h-8 items-center justify-center gap-2\": {}\n },\n \".aui-thread-followup-suggestion\": {\n \"@apply bg-aui-background hover:bg-aui-muted/80 rounded-full border px-3 py-1 text-sm transition-colors ease-in\": {}\n },\n \".aui-thread-welcome-root\": {\n \"@apply flex w-full max-w-2xl flex-grow flex-col\": {}\n },\n \".aui-thread-welcome-center\": {\n \"@apply flex w-full flex-grow flex-col items-center justify-center\": {}\n },\n \".aui-thread-welcome-message\": {\n \"@apply mt-4 font-medium\": {}\n },\n \".aui-thread-welcome-suggestion-container\": {\n \"@apply mt-3 flex w-full items-stretch justify-center gap-4\": {}\n },\n \".aui-thread-welcome-suggestion\": {\n \"@apply hover:bg-aui-muted/80 flex max-w-sm grow basis-0 flex-col items-center justify-center rounded-lg border p-3 transition-colors ease-in\": {}\n },\n \".aui-thread-welcome-suggestion-text\": {\n \"@apply line-clamp-2 text-ellipsis text-sm font-semibold\": {}\n },\n \".aui-composer-root\": {\n \"@apply focus-within:border-aui-ring/20 flex w-full flex-wrap items-end rounded-lg border bg-inherit px-2.5 shadow-sm transition-colors ease-in\": {}\n },\n \".aui-composer-input\": {\n \"@apply placeholder:text-aui-muted-foreground max-h-40 flex-grow resize-none border-none bg-transparent px-2 py-4 text-sm outline-none focus:ring-0 disabled:cursor-not-allowed\": {}\n },\n \".aui-composer-send,\\n.aui-composer-cancel,\\n.aui-composer-attach\": {\n \"@apply my-2.5 size-8 p-2 transition-opacity ease-in\": {}\n },\n \".aui-composer-attachments\": {\n \"@apply flex w-full flex-row gap-3 px-10\": {}\n },\n \".aui-attachment-root\": {\n \"@apply relative mt-3 flex h-12 w-40 items-center justify-center gap-2 rounded-lg border p-1\": {}\n },\n \".aui-attachment-preview-trigger\": {\n \"@apply hover:bg-aui-accent/50 cursor-pointer transition-colors\": {}\n },\n \".aui-attachment-thumb\": {\n \"@apply bg-aui-muted flex size-10 items-center justify-center rounded border text-sm\": {}\n },\n \".aui-attachment-text\": {\n \"@apply flex-grow basis-0\": {}\n },\n \".aui-attachment-name\": {\n \"@apply text-aui-muted-foreground line-clamp-1 text-ellipsis text-xs font-bold\": {}\n },\n \".aui-attachment-type\": {\n \"@apply text-aui-muted-foreground text-xs\": {}\n },\n \".aui-attachment-remove\": {\n \"@apply text-aui-muted-foreground [&>svg]:bg-aui-background absolute -right-3 -top-3 size-6 [&>svg]:size-4 [&>svg]:rounded-full\": {}\n },\n \".aui-user-message-root\": {\n \"@apply grid auto-rows-auto grid-cols-[minmax(72px,1fr)_auto] gap-y-2 [&>*]:col-start-2\": {},\n \"@apply w-full max-w-2xl py-4\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-action-bar-root\": {\n \"@apply col-start-1 row-start-2 mr-3 mt-2.5\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-message-attachments\": {\n \"@apply col-span-full col-start-1 row-start-1\": {},\n \"@apply justify-end\": {}\n },\n \":where(.aui-user-message-root) > .aui-user-message-content\": {\n \"@apply col-start-2 row-start-2\": {}\n },\n \":where(.aui-user-message-root) > .aui-branch-picker-root\": {\n \"@apply col-span-full col-start-1 row-start-3\": {},\n \"@apply -mr-1 justify-end\": {}\n },\n \".aui-user-message-content\": {\n \"@apply bg-aui-muted text-aui-foreground max-w-xl break-words rounded-3xl px-5 py-2.5\": {}\n },\n \".aui-user-message-attachments\": {\n \"@apply flex w-full flex-row gap-3\": {}\n },\n \".aui-user-action-bar-root\": {\n \"@apply flex flex-col items-end\": {}\n },\n \".aui-edit-composer-root\": {\n \"@apply bg-aui-muted my-4 flex w-full max-w-2xl flex-col gap-2 rounded-xl\": {}\n },\n \".aui-edit-composer-input\": {\n \"@apply text-aui-foreground flex h-8 w-full resize-none bg-transparent p-4 pb-0 outline-none\": {}\n },\n \".aui-edit-composer-footer\": {\n \"@apply mx-3 mb-3 flex items-center justify-center gap-2 self-end\": {}\n },\n \".aui-assistant-message-root\": {\n \"@apply grid grid-cols-[auto_auto_1fr] grid-rows-[auto_1fr]\": {},\n \"@apply relative w-full max-w-2xl py-4\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-avatar-root\": {\n \"@apply col-start-1 row-span-full row-start-1 mr-4\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-branch-picker-root\": {\n \"@apply col-start-2 row-start-2\": {},\n \"@apply -ml-2 mr-2\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-assistant-action-bar-root\": {\n \"@apply col-start-3 row-start-2\": {},\n \"@apply -ml-1\": {}\n },\n \":where(.aui-assistant-message-root) > .aui-assistant-message-content\": {\n \"@apply col-span-2 col-start-2 row-start-1 my-1.5\": {}\n },\n \".aui-assistant-message-content\": {\n \"@apply text-aui-foreground max-w-xl break-words leading-7\": {}\n },\n \".aui-assistant-action-bar-root\": {\n \"@apply text-aui-muted-foreground flex gap-1\": {}\n },\n \":where(.aui-assistant-action-bar-root)[data-floating]\": {\n \"@apply bg-aui-background absolute rounded-md border p-1 shadow-sm\": {}\n },\n \":where(.aui-assistant-action-bar-feedback-positive)[data-submitted]\": {\n \"@apply text-green-600 hover:text-green-700 dark:text-green-500 dark:hover:text-green-400\": {}\n },\n \":where(.aui-assistant-action-bar-feedback-negative)[data-submitted]\": {\n \"@apply text-red-600 hover:text-red-700 dark:text-red-500 dark:hover:text-red-400\": {}\n },\n \".aui-branch-picker-root\": {\n \"@apply text-aui-muted-foreground inline-flex items-center text-xs\": {}\n },\n \".aui-branch-picker-state\": {\n \"@apply font-medium\": {}\n },\n \".aui-text\": {\n \"@apply whitespace-pre-line\": {}\n },\n \".aui-text-running::after\": {\n \"@apply animate-pulse font-sans content-['\\\\25CF'] ltr:ml-1 rtl:mr-1\": {}\n }\n}","{\n \".aui-modal-content\": {\n \"@apply bg-aui-popover text-aui-popover-foreground z-50 h-[500px] w-[400px] overflow-clip rounded-xl border p-0 shadow-md outline-none\": {},\n \"@apply [&>.aui-thread-root]:bg-inherit\": {},\n \"@apply data-[state=closed]:animate-out data-[state=open]:animate-in\": {},\n \"@apply data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\": {},\n \"@apply data-[state=closed]:zoom-out data-[state=open]:zoom-in\": {},\n \"@apply data-[state=open]:slide-in-from-bottom-1/2 data-[state=open]:slide-in-from-right-1/2 data-[state=closed]:slide-out-to-bottom-1/2 data-[state=closed]:slide-out-to-right-1/2\": {}\n },\n \".aui-modal-anchor\": {\n \"@apply fixed bottom-4 right-4 size-11\": {}\n },\n \".aui-modal-button\": {\n \"@apply size-full rounded-full shadow transition-transform hover:scale-110 active:scale-90\": {}\n },\n \".aui-modal-button-closed-icon\": {\n \"@apply absolute size-6 transition-all\": {},\n \"@apply data-[state=closed]:rotate-0 data-[state=open]:rotate-90\": {},\n \"@apply data-[state=closed]:scale-100 data-[state=open]:scale-0\": {}\n },\n \".aui-modal-button-open-icon\": {\n \"@apply absolute size-6 transition-all\": {},\n \"@apply data-[state=closed]:-rotate-90 data-[state=open]:rotate-0\": {},\n \"@apply data-[state=closed]:scale-0 data-[state=open]:scale-100\": {}\n }\n}","{\n \":root\": {\n \"--aui-background\": \"0 0% 100%\",\n \"--aui-foreground\": \"240 10% 3.9%\",\n \"--aui-card\": \"0 0% 100%\",\n \"--aui-card-foreground\": \"240 10% 3.9%\",\n \"--aui-popover\": \"0 0% 100%\",\n \"--aui-popover-foreground\": \"240 10% 3.9%\",\n \"--aui-primary\": \"240 5.9% 10%\",\n \"--aui-primary-foreground\": \"0 0% 98%\",\n \"--aui-secondary\": \"240 4.8% 95.9%\",\n \"--aui-secondary-foreground\": \"240 5.9% 10%\",\n \"--aui-muted\": \"240 4.8% 95.9%\",\n \"--aui-muted-foreground\": \"240 3.8% 46.1%\",\n \"--aui-accent\": \"240 4.8% 95.9%\",\n \"--aui-accent-foreground\": \"240 5.9% 10%\",\n \"--aui-destructive\": \"0 84.2% 60.2%\",\n \"--aui-destructive-foreground\": \"0 0% 98%\",\n \"--aui-border\": \"240 5.9% 90%\",\n \"--aui-input\": \"240 5.9% 90%\",\n \"--aui-ring\": \"240 10% 3.9%\",\n \"--aui-radius\": \"0.5rem\"\n },\n \".dark\": {\n \"--aui-background\": \"0 0% 7%\",\n \"--aui-foreground\": \"0 0% 98%\",\n \"--aui-card\": \"240 10% 3.9%\",\n \"--aui-card-foreground\": \"0 0% 98%\",\n \"--aui-popover\": \"240 10% 3.9%\",\n \"--aui-popover-foreground\": \"0 0% 98%\",\n \"--aui-primary\": \"0 0% 98%\",\n \"--aui-primary-foreground\": \"240 5.9% 10%\",\n \"--aui-secondary\": \"240 3.7% 15.9%\",\n \"--aui-secondary-foreground\": \"0 0% 98%\",\n \"--aui-muted\": \"240 3.7% 15.9%\",\n \"--aui-muted-foreground\": \"240 5% 64.9%\",\n \"--aui-accent\": \"240 3.7% 15.9%\",\n \"--aui-accent-foreground\": \"0 0% 98%\",\n \"--aui-destructive\": \"0 62.8% 30.6%\",\n \"--aui-destructive-foreground\": \"0 0% 98%\",\n \"--aui-border\": \"240 3.7% 15.9%\",\n \"--aui-input\": \"240 3.7% 15.9%\",\n \"--aui-ring\": \"240 4.9% 83.9%\"\n }\n}"],"mappings":"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","names":[]}
|
package/package.json
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
"conversational-ui",
|
30
30
|
"conversational-ai"
|
31
31
|
],
|
32
|
-
"version": "0.5.
|
32
|
+
"version": "0.5.91",
|
33
33
|
"license": "MIT",
|
34
34
|
"exports": {
|
35
35
|
".": {
|
@@ -123,9 +123,10 @@
|
|
123
123
|
"@types/json-schema": "^7.0.15",
|
124
124
|
"@types/node": "^22.7.7",
|
125
125
|
"autoprefixer": "^10.4.20",
|
126
|
-
"eslint": "^
|
126
|
+
"eslint": "^9",
|
127
127
|
"eslint-config-next": "15.0.0",
|
128
128
|
"postcss": "^8.4.47",
|
129
|
+
"postcss-js": "^4.0.1",
|
129
130
|
"postcss-nested": "^6.2.0",
|
130
131
|
"tailwindcss": "^3.4.14",
|
131
132
|
"tailwindcss-animate": "^1.0.7",
|