@inkeep/cxkit-styled 0.5.116 → 0.5.117
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/components/embedded-chat.cjs +1 -1
- package/dist/components/embedded-chat.js +361 -376
- package/dist/components/embedded-search.cjs +1 -1
- package/dist/components/embedded-search.js +212 -227
- package/dist/index.d.cts +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/inkeep.css.cjs +3 -3
- package/dist/inkeep.css.js +3 -3
- package/package.json +4 -4
|
@@ -1,30 +1,29 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
2
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
3
3
|
import { EmbeddedSearchPrimitive as a } from "@inkeep/cxkit-primitives";
|
|
4
|
-
import { cn as
|
|
4
|
+
import { cn as r } from "../utils.js";
|
|
5
5
|
import { citation as l } from "../ui/recipes/citation.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { merge as m } from "merge-anything";
|
|
6
|
+
import { scrollable as d } from "../ui/recipes/scrollable.js";
|
|
7
|
+
import { ResultsLoading as n } from "./embedded-search/results-loading.js";
|
|
8
|
+
import { merge as o } from "merge-anything";
|
|
10
9
|
import { markdownStyles as c } from "../ui/markdown-styles.js";
|
|
11
|
-
const
|
|
10
|
+
const k = (e) => /* @__PURE__ */ s(a.Provider, { ...e }), R = ({ className: e, ...t }) => /* @__PURE__ */ s(
|
|
12
11
|
a.Wrapper,
|
|
13
12
|
{
|
|
14
|
-
className:
|
|
13
|
+
className: r(
|
|
15
14
|
"data-[hidden]:hidden rounded-md flex",
|
|
16
15
|
"bg-white dark:bg-gray-dark-950",
|
|
17
16
|
e
|
|
18
17
|
),
|
|
19
18
|
...t
|
|
20
19
|
}
|
|
21
|
-
),
|
|
20
|
+
), w = ({
|
|
22
21
|
className: e,
|
|
23
22
|
...t
|
|
24
|
-
}) => /* @__PURE__ */
|
|
23
|
+
}) => /* @__PURE__ */ s(
|
|
25
24
|
a.Root,
|
|
26
25
|
{
|
|
27
|
-
className:
|
|
26
|
+
className: r(
|
|
28
27
|
"data-[hidden]:hidden flex flex-col w-full",
|
|
29
28
|
"[--footer-height:theme(spacing.9)]",
|
|
30
29
|
"data-[mobile]:[--input-height:theme(spacing.20)]",
|
|
@@ -34,35 +33,35 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
34
33
|
),
|
|
35
34
|
...t
|
|
36
35
|
}
|
|
37
|
-
),
|
|
36
|
+
), f = a.Content, v = ({
|
|
38
37
|
className: e,
|
|
39
38
|
...t
|
|
40
|
-
}) => /* @__PURE__ */
|
|
39
|
+
}) => /* @__PURE__ */ s(
|
|
41
40
|
a.InputGroup,
|
|
42
41
|
{
|
|
43
|
-
className:
|
|
42
|
+
className: r(
|
|
44
43
|
"flex items-center w-full px-5 pt-3 pb-3 gap-3",
|
|
45
44
|
"[[data-mobile]_&]:max-h-[var(--input-height)]",
|
|
46
45
|
e
|
|
47
46
|
),
|
|
48
47
|
...t
|
|
49
48
|
}
|
|
50
|
-
),
|
|
49
|
+
), y = ({
|
|
51
50
|
className: e,
|
|
52
51
|
...t
|
|
53
|
-
}) => /* @__PURE__ */
|
|
52
|
+
}) => /* @__PURE__ */ s(
|
|
54
53
|
a.InputIcon,
|
|
55
54
|
{
|
|
56
|
-
className:
|
|
55
|
+
className: r("min-w-5 w-5 text-xl", "text-gray-500 dark:text-white-alpha-600", e),
|
|
57
56
|
...t
|
|
58
57
|
}
|
|
59
|
-
),
|
|
58
|
+
), S = ({
|
|
60
59
|
className: e,
|
|
61
60
|
...t
|
|
62
|
-
}) => /* @__PURE__ */
|
|
61
|
+
}) => /* @__PURE__ */ s(
|
|
63
62
|
a.Input,
|
|
64
63
|
{
|
|
65
|
-
className:
|
|
64
|
+
className: r(
|
|
66
65
|
"min-h-[38px] overflow-hidden w-full resize-none",
|
|
67
66
|
"py-1.5 max-h-[10vh] placeholder:text-gray-500",
|
|
68
67
|
"w-full dark:placeholder:text-gray-dark-200",
|
|
@@ -71,13 +70,13 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
71
70
|
),
|
|
72
71
|
...t
|
|
73
72
|
}
|
|
74
|
-
),
|
|
73
|
+
), T = ({
|
|
75
74
|
className: e,
|
|
76
75
|
...t
|
|
77
|
-
}) => /* @__PURE__ */
|
|
76
|
+
}) => /* @__PURE__ */ s(
|
|
78
77
|
a.Loading,
|
|
79
78
|
{
|
|
80
|
-
className:
|
|
79
|
+
className: r(
|
|
81
80
|
"min-w-5 w-5 text-xl",
|
|
82
81
|
"text-gray-500 dark:text-white-alpha-600",
|
|
83
82
|
"animate-spin",
|
|
@@ -85,13 +84,13 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
85
84
|
),
|
|
86
85
|
...t
|
|
87
86
|
}
|
|
88
|
-
),
|
|
87
|
+
), E = ({
|
|
89
88
|
className: e,
|
|
90
89
|
...t
|
|
91
|
-
}) => /* @__PURE__ */
|
|
90
|
+
}) => /* @__PURE__ */ s(
|
|
92
91
|
a.AskAITrigger,
|
|
93
92
|
{
|
|
94
|
-
className:
|
|
93
|
+
className: r(
|
|
95
94
|
l({ slot: "root" }),
|
|
96
95
|
"mx-5 w-[calc(100%_-_theme(spacing.10))]",
|
|
97
96
|
"mb-4 h-11 cursor-pointer",
|
|
@@ -101,13 +100,13 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
101
100
|
),
|
|
102
101
|
...t
|
|
103
102
|
}
|
|
104
|
-
),
|
|
103
|
+
), P = ({
|
|
105
104
|
className: e,
|
|
106
105
|
...t
|
|
107
|
-
}) => /* @__PURE__ */
|
|
106
|
+
}) => /* @__PURE__ */ s(
|
|
108
107
|
a.AskAITriggerIcon,
|
|
109
108
|
{
|
|
110
|
-
className:
|
|
109
|
+
className: r(
|
|
111
110
|
"[grid-area:icon] h-5 w-5 flex-shrink-0",
|
|
112
111
|
"[--start-color:theme(colors.inkeep-expanded-primary.300)]",
|
|
113
112
|
"[--end-color:theme(colors.inkeep-expanded-primary.700)]",
|
|
@@ -117,22 +116,22 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
117
116
|
),
|
|
118
117
|
...t
|
|
119
118
|
}
|
|
120
|
-
),
|
|
119
|
+
), N = ({
|
|
121
120
|
className: e,
|
|
122
121
|
...t
|
|
123
|
-
}) => /* @__PURE__ */
|
|
122
|
+
}) => /* @__PURE__ */ s(
|
|
124
123
|
a.AskAITriggerLabel,
|
|
125
124
|
{
|
|
126
|
-
className:
|
|
125
|
+
className: r(l({ slot: "title" }), "font-medium text-gray-700", e),
|
|
127
126
|
...t
|
|
128
127
|
}
|
|
129
|
-
),
|
|
128
|
+
), A = ({
|
|
130
129
|
className: e,
|
|
131
130
|
...t
|
|
132
|
-
}) => /* @__PURE__ */
|
|
131
|
+
}) => /* @__PURE__ */ s(
|
|
133
132
|
a.AskAITriggerQuery,
|
|
134
133
|
{
|
|
135
|
-
className:
|
|
134
|
+
className: r(
|
|
136
135
|
"font-semibold !bg-clip-text text-transparent ml-2",
|
|
137
136
|
"animate-shine [background:linear-gradient(270deg,theme(colors.inkeep-primary.stronger-light),transparent)_-200%_50%_/_25%_100%_no-repeat,theme(colors.inkeep-expanded-primary.800)] ",
|
|
138
137
|
"dark:[background:linear-gradient(270deg,theme(colors.inkeep-expanded-primary.100),transparent)_-200%_50%_/_25%_100%_no-repeat,theme(colors.inkeep-expanded-primary.400)]",
|
|
@@ -140,26 +139,26 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
140
139
|
),
|
|
141
140
|
...t
|
|
142
141
|
}
|
|
143
|
-
),
|
|
142
|
+
), _ = ({
|
|
144
143
|
className: e,
|
|
145
144
|
...t
|
|
146
|
-
}) => /* @__PURE__ */
|
|
145
|
+
}) => /* @__PURE__ */ s(
|
|
147
146
|
a.AskAITriggerIndicator,
|
|
148
147
|
{
|
|
149
|
-
className:
|
|
148
|
+
className: r(
|
|
150
149
|
l({ slot: "indicator" }),
|
|
151
150
|
"ml-1 opacity-100 text-inkeep-primary-stronger-light group-selected:text-inkeep-primary-strong dark:text-gray-dark-300 dark:group-selected:text-inkeep-expanded-primary-300 ",
|
|
152
151
|
e
|
|
153
152
|
),
|
|
154
153
|
...t
|
|
155
154
|
}
|
|
156
|
-
),
|
|
155
|
+
), L = ({
|
|
157
156
|
className: e,
|
|
158
157
|
...t
|
|
159
|
-
}) => /* @__PURE__ */
|
|
158
|
+
}) => /* @__PURE__ */ s(
|
|
160
159
|
a.AskAITriggerIndicatorText,
|
|
161
160
|
{
|
|
162
|
-
className:
|
|
161
|
+
className: r(
|
|
163
162
|
"text-xs flex-shrink-0 ml-auto",
|
|
164
163
|
"group-selected:text-inkeep-primary-strong dark:text-gray-dark-300 dark:group-selected:text-inkeep-expanded-primary-300",
|
|
165
164
|
"text-inkeep-primary-medium-subtle bg-gray-500 bg-clip-text dark:bg-white-alpha-800",
|
|
@@ -167,14 +166,14 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
167
166
|
),
|
|
168
167
|
...t
|
|
169
168
|
}
|
|
170
|
-
),
|
|
169
|
+
), O = ({
|
|
171
170
|
className: e,
|
|
172
171
|
...t
|
|
173
|
-
}) => /* @__PURE__ */
|
|
172
|
+
}) => /* @__PURE__ */ s(
|
|
174
173
|
a.Results,
|
|
175
174
|
{
|
|
176
|
-
className:
|
|
177
|
-
|
|
175
|
+
className: r(
|
|
176
|
+
d({ section: "content" }),
|
|
178
177
|
"h-0 max-h-full",
|
|
179
178
|
"data-[has-content]:h-[min(calc(85vh_-_72px),calc(850px_-_72px_-_275px))]",
|
|
180
179
|
"md:data-[dual-pane-search-expanded]:h-[min(calc(85vh_-_72px),calc(900px_-_72px_-_135px))]",
|
|
@@ -184,23 +183,23 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
184
183
|
),
|
|
185
184
|
...t
|
|
186
185
|
}
|
|
187
|
-
),
|
|
186
|
+
), B = ({
|
|
188
187
|
className: e,
|
|
189
188
|
...t
|
|
190
|
-
}) => /* @__PURE__ */
|
|
189
|
+
}) => /* @__PURE__ */ s(
|
|
191
190
|
a.ResultsLoading,
|
|
192
191
|
{
|
|
193
|
-
className:
|
|
194
|
-
children: /* @__PURE__ */
|
|
192
|
+
className: r("group mb-1 relative transition-all w-full h-full", e),
|
|
193
|
+
children: /* @__PURE__ */ s(n, {}),
|
|
195
194
|
...t
|
|
196
195
|
}
|
|
197
|
-
),
|
|
196
|
+
), C = ({
|
|
198
197
|
className: e,
|
|
199
198
|
...t
|
|
200
|
-
}) => /* @__PURE__ */
|
|
199
|
+
}) => /* @__PURE__ */ s(
|
|
201
200
|
a.ResultsEmpty,
|
|
202
201
|
{
|
|
203
|
-
className:
|
|
202
|
+
className: r(
|
|
204
203
|
"flex w-full h-full",
|
|
205
204
|
"overflow-hidden relative grow-[2]",
|
|
206
205
|
"items-center justify-center text-gray-600",
|
|
@@ -209,13 +208,13 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
209
208
|
),
|
|
210
209
|
...t
|
|
211
210
|
}
|
|
212
|
-
),
|
|
211
|
+
), D = ({
|
|
213
212
|
className: e,
|
|
214
213
|
...t
|
|
215
|
-
}) => /* @__PURE__ */
|
|
214
|
+
}) => /* @__PURE__ */ s(
|
|
216
215
|
a.ResultsTabList,
|
|
217
216
|
{
|
|
218
|
-
className:
|
|
217
|
+
className: r(
|
|
219
218
|
"shrink-0 max-w-full",
|
|
220
219
|
"flex gap-3 px-5 pb-2 pt-0",
|
|
221
220
|
"overflow-x-auto [scrollbar-width:thin]",
|
|
@@ -223,13 +222,13 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
223
222
|
),
|
|
224
223
|
...t
|
|
225
224
|
}
|
|
226
|
-
),
|
|
225
|
+
), H = ({
|
|
227
226
|
className: e,
|
|
228
227
|
...t
|
|
229
|
-
}) => /* @__PURE__ */
|
|
228
|
+
}) => /* @__PURE__ */ s(
|
|
230
229
|
a.ResultsTab,
|
|
231
230
|
{
|
|
232
|
-
className:
|
|
231
|
+
className: r(
|
|
233
232
|
"px-3 text-1sm font-medium rounded-full shrink-0",
|
|
234
233
|
"py-1 transition-all duration-200 leading-snug",
|
|
235
234
|
"border border-gray-300 dark:border-gray-dark-500",
|
|
@@ -247,22 +246,22 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
247
246
|
),
|
|
248
247
|
...t
|
|
249
248
|
}
|
|
250
|
-
),
|
|
249
|
+
), j = ({
|
|
251
250
|
className: e,
|
|
252
251
|
...t
|
|
253
|
-
}) => /* @__PURE__ */
|
|
252
|
+
}) => /* @__PURE__ */ s(
|
|
254
253
|
a.ResultsContent,
|
|
255
254
|
{
|
|
256
|
-
className:
|
|
255
|
+
className: r("flex overflow-hidden h-full", e),
|
|
257
256
|
...t
|
|
258
257
|
}
|
|
259
|
-
),
|
|
258
|
+
), F = ({
|
|
260
259
|
className: e,
|
|
261
260
|
...t
|
|
262
|
-
}) => /* @__PURE__ */
|
|
261
|
+
}) => /* @__PURE__ */ s(
|
|
263
262
|
a.ResultsScrollArea,
|
|
264
263
|
{
|
|
265
|
-
className:
|
|
264
|
+
className: r(
|
|
266
265
|
"overflow-hidden h-full first:w-full",
|
|
267
266
|
// Dual pane
|
|
268
267
|
"first:[[data-view=dual-pane]_&]:flex-1 md:first:[[data-view=dual-pane]_&]:flex-[0_0_44%]",
|
|
@@ -280,22 +279,22 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
280
279
|
),
|
|
281
280
|
...t
|
|
282
281
|
}
|
|
283
|
-
),
|
|
282
|
+
), G = ({
|
|
284
283
|
className: e,
|
|
285
284
|
...t
|
|
286
|
-
}) => /* @__PURE__ */
|
|
285
|
+
}) => /* @__PURE__ */ s(
|
|
287
286
|
a.ResultsScrollAreaViewport,
|
|
288
287
|
{
|
|
289
|
-
className:
|
|
288
|
+
className: r("h-full w-full rounded-[inherit]", e),
|
|
290
289
|
...t
|
|
291
290
|
}
|
|
292
|
-
),
|
|
291
|
+
), Q = ({
|
|
293
292
|
className: e,
|
|
294
293
|
...t
|
|
295
|
-
}) => /* @__PURE__ */
|
|
294
|
+
}) => /* @__PURE__ */ s(
|
|
296
295
|
a.ResultsScrollAreaScrollbar,
|
|
297
296
|
{
|
|
298
|
-
className:
|
|
297
|
+
className: r(
|
|
299
298
|
"flex select-none touch-none p-0.5",
|
|
300
299
|
"transition-colors duration-[160ms] ease-in-out",
|
|
301
300
|
"w-2.5 border-l border-l-transparent",
|
|
@@ -303,22 +302,22 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
303
302
|
),
|
|
304
303
|
...t
|
|
305
304
|
}
|
|
306
|
-
),
|
|
305
|
+
), V = ({
|
|
307
306
|
className: e,
|
|
308
307
|
...t
|
|
309
|
-
}) => /* @__PURE__ */
|
|
308
|
+
}) => /* @__PURE__ */ s(
|
|
310
309
|
a.ResultsScrollAreaThumb,
|
|
311
310
|
{
|
|
312
|
-
className:
|
|
311
|
+
className: r("relative flex-1 rounded-full", "bg-gray-300 dark:bg-white-alpha-200", e),
|
|
313
312
|
...t
|
|
314
313
|
}
|
|
315
|
-
),
|
|
314
|
+
), W = a.ResultsScrollAreaCorner, z = ({
|
|
316
315
|
className: e,
|
|
317
316
|
...t
|
|
318
|
-
}) => /* @__PURE__ */
|
|
317
|
+
}) => /* @__PURE__ */ s(
|
|
319
318
|
a.ResultsList,
|
|
320
319
|
{
|
|
321
|
-
className:
|
|
320
|
+
className: r(
|
|
322
321
|
"w-full flex flex-col",
|
|
323
322
|
"items-center gap-2.5 h-full shrink-0",
|
|
324
323
|
"px-5 py-1 content-center -my-px",
|
|
@@ -326,125 +325,125 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
326
325
|
),
|
|
327
326
|
...t
|
|
328
327
|
}
|
|
329
|
-
),
|
|
328
|
+
), $ = ({
|
|
330
329
|
className: e,
|
|
331
330
|
...t
|
|
332
|
-
}) => /* @__PURE__ */
|
|
331
|
+
}) => /* @__PURE__ */ s(
|
|
333
332
|
a.ResultsItem,
|
|
334
333
|
{
|
|
335
|
-
className:
|
|
334
|
+
className: r(l({ slot: "root" }), e),
|
|
336
335
|
...t
|
|
337
336
|
}
|
|
338
|
-
),
|
|
337
|
+
), q = ({
|
|
339
338
|
className: e,
|
|
340
339
|
...t
|
|
341
|
-
}) => /* @__PURE__ */
|
|
340
|
+
}) => /* @__PURE__ */ s(
|
|
342
341
|
a.ResultsItemBreadcrumbs,
|
|
343
342
|
{
|
|
344
|
-
className:
|
|
343
|
+
className: r(l({ slot: "breadcrumbs" }), e),
|
|
345
344
|
...t
|
|
346
345
|
}
|
|
347
|
-
),
|
|
346
|
+
), J = ({
|
|
348
347
|
className: e,
|
|
349
348
|
...t
|
|
350
|
-
}) => /* @__PURE__ */
|
|
349
|
+
}) => /* @__PURE__ */ s(
|
|
351
350
|
a.ResultsItemBreadcrumbIcon,
|
|
352
351
|
{
|
|
353
|
-
className:
|
|
352
|
+
className: r(l({ slot: "breadcrumbsIcon" }), e),
|
|
354
353
|
...t
|
|
355
354
|
}
|
|
356
|
-
),
|
|
355
|
+
), K = ({
|
|
357
356
|
className: e,
|
|
358
357
|
...t
|
|
359
|
-
}) => /* @__PURE__ */
|
|
358
|
+
}) => /* @__PURE__ */ s(
|
|
360
359
|
a.ResultsItemIcon,
|
|
361
360
|
{
|
|
362
|
-
className:
|
|
361
|
+
className: r(l({ slot: "icon" }), e),
|
|
363
362
|
...t
|
|
364
363
|
}
|
|
365
|
-
),
|
|
364
|
+
), M = ({
|
|
366
365
|
className: e,
|
|
367
366
|
...t
|
|
368
|
-
}) => /* @__PURE__ */
|
|
367
|
+
}) => /* @__PURE__ */ s(
|
|
369
368
|
a.ResultsItemTitle,
|
|
370
369
|
{
|
|
371
|
-
className:
|
|
370
|
+
className: r(l({ slot: "title" }), e),
|
|
372
371
|
...t
|
|
373
372
|
}
|
|
374
|
-
),
|
|
373
|
+
), U = ({
|
|
375
374
|
className: e,
|
|
376
375
|
...t
|
|
377
|
-
}) => /* @__PURE__ */
|
|
376
|
+
}) => /* @__PURE__ */ s(
|
|
378
377
|
a.ResultsItemTag,
|
|
379
378
|
{
|
|
380
|
-
className:
|
|
379
|
+
className: r(l({ slot: "tag" }), e),
|
|
381
380
|
...t
|
|
382
381
|
}
|
|
383
|
-
),
|
|
382
|
+
), X = ({
|
|
384
383
|
className: e,
|
|
385
384
|
...t
|
|
386
|
-
}) => /* @__PURE__ */
|
|
385
|
+
}) => /* @__PURE__ */ s(
|
|
387
386
|
a.ResultsItemDescription,
|
|
388
387
|
{
|
|
389
|
-
className:
|
|
388
|
+
className: r(l({ slot: "description" }), e),
|
|
390
389
|
...t
|
|
391
390
|
}
|
|
392
|
-
),
|
|
391
|
+
), Y = ({
|
|
393
392
|
className: e,
|
|
394
393
|
...t
|
|
395
|
-
}) => /* @__PURE__ */
|
|
394
|
+
}) => /* @__PURE__ */ s(
|
|
396
395
|
a.ResultsItemDescriptionPart,
|
|
397
396
|
{
|
|
398
|
-
className:
|
|
397
|
+
className: r(l({ slot: "descriptionPart" }), e),
|
|
399
398
|
...t
|
|
400
399
|
}
|
|
401
|
-
),
|
|
400
|
+
), Z = ({
|
|
402
401
|
className: e,
|
|
403
402
|
...t
|
|
404
|
-
}) => /* @__PURE__ */
|
|
403
|
+
}) => /* @__PURE__ */ s(
|
|
405
404
|
a.ResultsItemIndicator,
|
|
406
405
|
{
|
|
407
|
-
className:
|
|
406
|
+
className: r(l({ slot: "indicator" }), e),
|
|
408
407
|
...t
|
|
409
408
|
}
|
|
410
|
-
),
|
|
409
|
+
), ee = ({
|
|
411
410
|
className: e,
|
|
412
411
|
...t
|
|
413
|
-
}) => /* @__PURE__ */
|
|
412
|
+
}) => /* @__PURE__ */ s(
|
|
414
413
|
a.ResultsItemPreview,
|
|
415
414
|
{
|
|
416
|
-
className:
|
|
415
|
+
className: r(
|
|
417
416
|
"flex-1 min-w-0 break-words pt-3 pb-4 pr-10 pl-5",
|
|
418
417
|
"hidden md:flex flex-col gap-6",
|
|
419
418
|
e
|
|
420
419
|
),
|
|
421
420
|
...t
|
|
422
421
|
}
|
|
423
|
-
),
|
|
422
|
+
), te = ({
|
|
424
423
|
className: e,
|
|
425
424
|
...t
|
|
426
|
-
}) => /* @__PURE__ */
|
|
425
|
+
}) => /* @__PURE__ */ s(
|
|
427
426
|
a.ResultsItemPreviewHeader,
|
|
428
427
|
{
|
|
429
|
-
className:
|
|
428
|
+
className: r("flex flex-col gap-5", e),
|
|
430
429
|
...t
|
|
431
430
|
}
|
|
432
|
-
),
|
|
431
|
+
), ae = ({
|
|
433
432
|
className: e,
|
|
434
433
|
...t
|
|
435
|
-
}) => /* @__PURE__ */
|
|
434
|
+
}) => /* @__PURE__ */ s(
|
|
436
435
|
a.ResultsItemPreviewHeading,
|
|
437
436
|
{
|
|
438
|
-
className:
|
|
437
|
+
className: r("inline-block", e),
|
|
439
438
|
...t
|
|
440
439
|
}
|
|
441
|
-
),
|
|
440
|
+
), se = ({
|
|
442
441
|
className: e,
|
|
443
442
|
...t
|
|
444
|
-
}) => /* @__PURE__ */
|
|
443
|
+
}) => /* @__PURE__ */ s(
|
|
445
444
|
a.ResultsItemPreviewTitle,
|
|
446
445
|
{
|
|
447
|
-
className:
|
|
446
|
+
className: r(
|
|
448
447
|
"text-3xl leading-snug tracking-tight",
|
|
449
448
|
"font-semibold hover:text-inkeep-primary-stronger",
|
|
450
449
|
"dark:hover:text-inkeep-expanded-primary-100",
|
|
@@ -452,92 +451,92 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
452
451
|
),
|
|
453
452
|
...t
|
|
454
453
|
}
|
|
455
|
-
),
|
|
454
|
+
), re = ({
|
|
456
455
|
className: e,
|
|
457
456
|
...t
|
|
458
|
-
}) => /* @__PURE__ */
|
|
457
|
+
}) => /* @__PURE__ */ s(
|
|
459
458
|
a.ResultsItemPreviewTitleLinkIcon,
|
|
460
459
|
{
|
|
461
|
-
className:
|
|
460
|
+
className: r(
|
|
462
461
|
"inline-block ml-2 mb-2 tracking-tight text-gray-500 dark:text-white-alpha-500",
|
|
463
462
|
e
|
|
464
463
|
),
|
|
465
464
|
...t
|
|
466
465
|
}
|
|
467
|
-
),
|
|
466
|
+
), le = ({
|
|
468
467
|
className: e,
|
|
469
468
|
...t
|
|
470
|
-
}) => /* @__PURE__ */
|
|
469
|
+
}) => /* @__PURE__ */ s(
|
|
471
470
|
a.ResultsItemPreviewBreadcrumbs,
|
|
472
471
|
{
|
|
473
|
-
className:
|
|
472
|
+
className: r(
|
|
474
473
|
l({ slot: "breadcrumbs" }),
|
|
475
474
|
"!line-clamp-none whitespace-normal text-gray-500 dark:text-gray-dark-200 text-sm",
|
|
476
475
|
e
|
|
477
476
|
),
|
|
478
477
|
...t
|
|
479
478
|
}
|
|
480
|
-
),
|
|
479
|
+
), ie = ({
|
|
481
480
|
className: e,
|
|
482
481
|
...t
|
|
483
|
-
}) => /* @__PURE__ */
|
|
482
|
+
}) => /* @__PURE__ */ s(
|
|
484
483
|
a.ResultsItemPreviewBreadcrumbIcon,
|
|
485
484
|
{
|
|
486
|
-
className:
|
|
485
|
+
className: r(l({ slot: "breadcrumbsIcon" }), e),
|
|
487
486
|
...t
|
|
488
487
|
}
|
|
489
|
-
),
|
|
488
|
+
), de = ({
|
|
490
489
|
className: e,
|
|
491
490
|
componentStyles: t,
|
|
492
491
|
...i
|
|
493
|
-
}) => /* @__PURE__ */
|
|
492
|
+
}) => /* @__PURE__ */ s(
|
|
494
493
|
a.ResultsItemPreviewBody,
|
|
495
494
|
{
|
|
496
|
-
className:
|
|
495
|
+
className: r(
|
|
497
496
|
"max-w-full text-gray-700 dark:text-gray-dark-100 [&_em]:font-bold [&_em]:not-italic",
|
|
498
497
|
e
|
|
499
498
|
),
|
|
500
|
-
componentStyles:
|
|
499
|
+
componentStyles: o(c, t ?? {}),
|
|
501
500
|
...i
|
|
502
501
|
}
|
|
503
|
-
),
|
|
502
|
+
), ne = ({
|
|
504
503
|
className: e,
|
|
505
504
|
...t
|
|
506
|
-
}) => /* @__PURE__ */
|
|
505
|
+
}) => /* @__PURE__ */ s(
|
|
507
506
|
a.ResultsItemPreviewOutline,
|
|
508
507
|
{
|
|
509
|
-
className:
|
|
508
|
+
className: r("flex flex-col gap-3", e),
|
|
510
509
|
...t
|
|
511
510
|
}
|
|
512
|
-
),
|
|
511
|
+
), oe = ({
|
|
513
512
|
className: e,
|
|
514
513
|
...t
|
|
515
|
-
}) => /* @__PURE__ */
|
|
514
|
+
}) => /* @__PURE__ */ s(
|
|
516
515
|
a.ResultsItemPreviewOutlineTitle,
|
|
517
516
|
{
|
|
518
|
-
className:
|
|
517
|
+
className: r(
|
|
519
518
|
"text-xs uppercase font-semibold tracking-widest",
|
|
520
519
|
"text-gray-500 dark:text-white-alpha-500",
|
|
521
520
|
e
|
|
522
521
|
),
|
|
523
522
|
...t
|
|
524
523
|
}
|
|
525
|
-
),
|
|
524
|
+
), ce = ({
|
|
526
525
|
className: e,
|
|
527
526
|
...t
|
|
528
|
-
}) => /* @__PURE__ */
|
|
527
|
+
}) => /* @__PURE__ */ s(
|
|
529
528
|
a.ResultsItemPreviewOutlineList,
|
|
530
529
|
{
|
|
531
|
-
className:
|
|
530
|
+
className: r("flex flex-col gap-4", e),
|
|
532
531
|
...t
|
|
533
532
|
}
|
|
534
|
-
),
|
|
533
|
+
), me = ({
|
|
535
534
|
className: e,
|
|
536
535
|
...t
|
|
537
|
-
}) => /* @__PURE__ */
|
|
536
|
+
}) => /* @__PURE__ */ s(
|
|
538
537
|
a.ResultsItemPreviewOutlineItem,
|
|
539
538
|
{
|
|
540
|
-
className:
|
|
539
|
+
className: r(
|
|
541
540
|
"flex items-center gap-1 text-gray-600 dark:text-white-alpha-600 font-medium ",
|
|
542
541
|
`${t.href ? "cursor-pointer hover:text-gray-800 dark:hover:text-white-alpha-800 dark:data-[is-match]:hover:text-inkeep-expanded-primary-200 data-[is-match]:hover:text-inkeep-expanded-primary-800 " : ""}`,
|
|
543
542
|
"data-[is-match]:text-inkeep-expanded-primary-700",
|
|
@@ -546,28 +545,28 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
546
545
|
),
|
|
547
546
|
...t
|
|
548
547
|
}
|
|
549
|
-
),
|
|
548
|
+
), ue = ({
|
|
550
549
|
className: e,
|
|
551
550
|
...t
|
|
552
|
-
}) => /* @__PURE__ */
|
|
551
|
+
}) => /* @__PURE__ */ s(a.ResultsItemPreviewOutlineItemIcon, { className: r(e), ...t }), pe = ({
|
|
553
552
|
className: e,
|
|
554
553
|
...t
|
|
555
|
-
}) => /* @__PURE__ */
|
|
554
|
+
}) => /* @__PURE__ */ s(a.ResultsItemPreviewOutlineItemText, { className: r(e), ...t }), he = ({
|
|
556
555
|
className: e,
|
|
557
556
|
...t
|
|
558
|
-
}) => /* @__PURE__ */
|
|
557
|
+
}) => /* @__PURE__ */ s(
|
|
559
558
|
a.ResultsItemPreviewOutlineItemLinkIcon,
|
|
560
559
|
{
|
|
561
|
-
className:
|
|
560
|
+
className: r("h-3 !min-h-0 !min-w-0", e),
|
|
562
561
|
...t
|
|
563
562
|
}
|
|
564
|
-
),
|
|
563
|
+
), ge = ({
|
|
565
564
|
className: e,
|
|
566
565
|
...t
|
|
567
|
-
}) => /* @__PURE__ */
|
|
566
|
+
}) => /* @__PURE__ */ s(
|
|
568
567
|
a.Footer,
|
|
569
568
|
{
|
|
570
|
-
className:
|
|
569
|
+
className: r(
|
|
571
570
|
"justify-self-end",
|
|
572
571
|
"px-5 pt-1 pb-3",
|
|
573
572
|
"[[data-mobile]_&]:py-0",
|
|
@@ -578,102 +577,88 @@ const w = (e) => /* @__PURE__ */ r(a.Provider, { ...e }), f = ({ className: e, .
|
|
|
578
577
|
),
|
|
579
578
|
...t
|
|
580
579
|
}
|
|
581
|
-
),
|
|
580
|
+
), be = ({
|
|
582
581
|
className: e,
|
|
583
582
|
...t
|
|
584
|
-
}) => /* @__PURE__ */
|
|
583
|
+
}) => /* @__PURE__ */ s(
|
|
585
584
|
a.TaglineContainer,
|
|
586
585
|
{
|
|
587
|
-
className:
|
|
586
|
+
className: r("flex items-center whitespace-nowrap", e),
|
|
588
587
|
...t
|
|
589
588
|
}
|
|
590
|
-
),
|
|
589
|
+
), Ie = ({
|
|
591
590
|
className: e,
|
|
592
591
|
...t
|
|
593
|
-
}) => /* @__PURE__ */
|
|
592
|
+
}) => /* @__PURE__ */ s(
|
|
594
593
|
a.TaglineText,
|
|
595
594
|
{
|
|
596
|
-
className:
|
|
595
|
+
className: r("text-xs md:text-sm text-gray-500 dark:text-white-alpha-600", e),
|
|
597
596
|
...t
|
|
598
597
|
}
|
|
599
|
-
),
|
|
598
|
+
), xe = ({
|
|
600
599
|
className: e,
|
|
601
600
|
...t
|
|
602
|
-
}) => /* @__PURE__ */
|
|
601
|
+
}) => /* @__PURE__ */ s(
|
|
603
602
|
a.TaglineLogo,
|
|
604
603
|
{
|
|
605
|
-
className:
|
|
606
|
-
...t
|
|
607
|
-
|
|
608
|
-
), we = ({
|
|
609
|
-
className: e,
|
|
610
|
-
...t
|
|
611
|
-
}) => /* @__PURE__ */ r(
|
|
612
|
-
a.TaglineBrandName,
|
|
613
|
-
{
|
|
614
|
-
className: s(
|
|
615
|
-
d(),
|
|
616
|
-
"inline-flex text-xs md:text-sm text-gray-500",
|
|
617
|
-
"dark:text-white-alpha-600 font-medium",
|
|
618
|
-
e
|
|
619
|
-
),
|
|
620
|
-
...t
|
|
604
|
+
className: r("inline-flex items-center", e),
|
|
605
|
+
...t,
|
|
606
|
+
children: /* @__PURE__ */ s(a.TaglineLogoIcon, { className: "text-gray-500 dark:text-white-alpha-600 ml-1.5 mt-1 w-12 h-auto" })
|
|
621
607
|
}
|
|
622
608
|
);
|
|
623
609
|
export {
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
f as Wrapper
|
|
610
|
+
E as AskAITrigger,
|
|
611
|
+
P as AskAITriggerIcon,
|
|
612
|
+
_ as AskAITriggerIndicator,
|
|
613
|
+
L as AskAITriggerIndicatorText,
|
|
614
|
+
N as AskAITriggerLabel,
|
|
615
|
+
A as AskAITriggerQuery,
|
|
616
|
+
f as Content,
|
|
617
|
+
ge as Footer,
|
|
618
|
+
S as Input,
|
|
619
|
+
v as InputGroup,
|
|
620
|
+
y as InputIcon,
|
|
621
|
+
T as Loading,
|
|
622
|
+
k as Provider,
|
|
623
|
+
O as Results,
|
|
624
|
+
j as ResultsContent,
|
|
625
|
+
C as ResultsEmpty,
|
|
626
|
+
$ as ResultsItem,
|
|
627
|
+
J as ResultsItemBreadcrumbIcon,
|
|
628
|
+
q as ResultsItemBreadcrumbs,
|
|
629
|
+
X as ResultsItemDescription,
|
|
630
|
+
Y as ResultsItemDescriptionPart,
|
|
631
|
+
K as ResultsItemIcon,
|
|
632
|
+
Z as ResultsItemIndicator,
|
|
633
|
+
ee as ResultsItemPreview,
|
|
634
|
+
de as ResultsItemPreviewBody,
|
|
635
|
+
ie as ResultsItemPreviewBreadcrumbIcon,
|
|
636
|
+
le as ResultsItemPreviewBreadcrumbs,
|
|
637
|
+
te as ResultsItemPreviewHeader,
|
|
638
|
+
ae as ResultsItemPreviewHeading,
|
|
639
|
+
ne as ResultsItemPreviewOutline,
|
|
640
|
+
me as ResultsItemPreviewOutlineItem,
|
|
641
|
+
ue as ResultsItemPreviewOutlineItemIcon,
|
|
642
|
+
he as ResultsItemPreviewOutlineItemLinkIcon,
|
|
643
|
+
pe as ResultsItemPreviewOutlineItemText,
|
|
644
|
+
ce as ResultsItemPreviewOutlineList,
|
|
645
|
+
oe as ResultsItemPreviewOutlineTitle,
|
|
646
|
+
se as ResultsItemPreviewTitle,
|
|
647
|
+
re as ResultsItemPreviewTitleLinkIcon,
|
|
648
|
+
U as ResultsItemTag,
|
|
649
|
+
M as ResultsItemTitle,
|
|
650
|
+
z as ResultsList,
|
|
651
|
+
B as ResultsLoading,
|
|
652
|
+
F as ResultsScrollArea,
|
|
653
|
+
W as ResultsScrollAreaCorner,
|
|
654
|
+
Q as ResultsScrollAreaScrollbar,
|
|
655
|
+
V as ResultsScrollAreaThumb,
|
|
656
|
+
G as ResultsScrollAreaViewport,
|
|
657
|
+
H as ResultsTab,
|
|
658
|
+
D as ResultsTabList,
|
|
659
|
+
w as Root,
|
|
660
|
+
be as TaglineContainer,
|
|
661
|
+
xe as TaglineLogo,
|
|
662
|
+
Ie as TaglineText,
|
|
663
|
+
R as Wrapper
|
|
679
664
|
};
|