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