@inkeep/agents-ui 0.15.28 → 0.15.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +156 -158
- package/dist/primitives/components/embedded-chat.cjs +4 -4
- package/dist/primitives/components/embedded-chat.d.ts +6 -16
- package/dist/primitives/components/embedded-chat.js +809 -859
- package/dist/primitives/components/embedded-search.cjs +1 -1
- package/dist/primitives/components/embedded-search.d.ts +3 -4
- package/dist/primitives/components/embedded-search.js +290 -294
- package/dist/primitives/components/tagline-logo-icon.cjs +1 -1
- package/dist/primitives/components/tagline-logo-icon.js +11 -21
- package/dist/primitives/hooks/use-feedback-api.cjs +1 -0
- package/dist/primitives/hooks/use-feedback-api.d.ts +19 -0
- package/dist/primitives/hooks/use-feedback-api.js +37 -0
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +134 -137
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/feedback-provider.cjs +1 -1
- package/dist/primitives/providers/feedback-provider.d.ts +1 -1
- package/dist/primitives/providers/feedback-provider.js +57 -64
- package/dist/primitives/providers/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +0 -1
- package/dist/primitives/providers/index.js +42 -45
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +2 -10
- package/dist/primitives/utils/component-ids.js +2 -6
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +249 -265
- package/dist/react/embedded-search.cjs +1 -1
- package/dist/react/embedded-search.js +63 -64
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.js +156 -158
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.d.ts +2 -5
- package/dist/styled/components/embedded-chat.js +397 -441
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.d.ts +1 -2
- package/dist/styled/components/embedded-search.js +119 -133
- package/dist/styled/components/index.cjs +1 -1
- package/dist/styled/components/index.js +12 -11
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.d.ts +20 -0
- package/dist/styled/components/message.js +304 -228
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +152 -154
- package/dist/styled/inkeep.css.cjs +82 -15
- package/dist/styled/inkeep.css.js +82 -15
- package/dist/types/events.d.ts +3 -17
- package/package.json +1 -1
- package/dist/primitives/providers/feedback-item-provider.cjs +0 -1
- package/dist/primitives/providers/feedback-item-provider.d.ts +0 -10
- package/dist/primitives/providers/feedback-item-provider.js +0 -16
|
@@ -1,83 +1,82 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import { useCommandState as g, Command as y, useCommandStore as V } from "../atoms/cmdk/index.js";
|
|
4
|
-
import { ikp as
|
|
4
|
+
import { ikp as i } from "./factory.js";
|
|
5
5
|
import { dataAttr as I, maybeRender as L } from "../utils/misc.js";
|
|
6
|
-
import { forwardRef as C, useMemo as E, useState as J, useEffect as x, useCallback as A, useRef as
|
|
6
|
+
import { forwardRef as C, useMemo as E, useState as J, useEffect as x, useCallback as A, useRef as N } from "react";
|
|
7
7
|
import { useSearch as d } from "./embedded-search/search-provider.js";
|
|
8
|
-
import { SearchProvider as
|
|
9
|
-
import X from "./tagline-logo-icon.js";
|
|
8
|
+
import { SearchProvider as vs } from "./embedded-search/search-provider.js";
|
|
10
9
|
import { CustomIcon as f } from "../atoms/icons/custom-icon.js";
|
|
11
10
|
import * as O from "@radix-ui/react-scroll-area";
|
|
12
11
|
import * as B from "@radix-ui/react-tabs";
|
|
13
|
-
import { useInkeepConfig as
|
|
14
|
-
import { useSearchEvents as
|
|
12
|
+
import { useInkeepConfig as S } from "../providers/config-provider.js";
|
|
13
|
+
import { useSearchEvents as X } from "../providers/search-events-provider.js";
|
|
15
14
|
import { LinkWithQueryParams as U } from "../atoms/link.js";
|
|
16
15
|
import { SourceItemProvider as W, useSourceItem as v } from "../providers/source-item-provider.js";
|
|
17
16
|
import { BuiltInIconRenderer as H } from "../atoms/icons/built-in-icon-renderer.js";
|
|
18
|
-
import { highlightEmphasis as
|
|
19
|
-
import { useScrollingFades as
|
|
20
|
-
import { useColorModeValue as
|
|
21
|
-
import
|
|
22
|
-
import { useModal as
|
|
23
|
-
import { useComposedRefs as
|
|
17
|
+
import { highlightEmphasis as Y } from "../utils/highlight-emphasis.js";
|
|
18
|
+
import { useScrollingFades as Z } from "../hooks/use-scrolling-fades.js";
|
|
19
|
+
import { useColorModeValue as ee } from "../../color-mode/index.js";
|
|
20
|
+
import te from "../atoms/avatars/ai.js";
|
|
21
|
+
import { useModal as M } from "./modal/modal-provider.js";
|
|
22
|
+
import { useComposedRefs as K } from "../utils/compose-refs.js";
|
|
24
23
|
import { composeEventHandlers as T } from "../utils/compose-event-handlers.js";
|
|
25
24
|
import { useShadow as se } from "../atoms/shadow/context.js";
|
|
26
|
-
import { Markdown as
|
|
25
|
+
import { Markdown as ie } from "../atoms/markdown/index.js";
|
|
27
26
|
import { useMediaQuery as F } from "../hooks/use-media-query.js";
|
|
28
|
-
import { useSearchFetch as
|
|
29
|
-
import { getUrlWithQuery as
|
|
27
|
+
import { useSearchFetch as re } from "./embedded-search/use-search-filter.js";
|
|
28
|
+
import { getUrlWithQuery as ne } from "./embedded-search/url-query.js";
|
|
30
29
|
import { ASK_AI_TRIGGER_VALUE as k } from "../constants/search.js";
|
|
31
|
-
import { useWidgetAutoFocus as
|
|
32
|
-
const
|
|
30
|
+
import { useWidgetAutoFocus as ae } from "./modal/widget-auto-focus.js";
|
|
31
|
+
const oe = i("div", {
|
|
33
32
|
_id: "aiSearchWrapper"
|
|
34
|
-
}),
|
|
33
|
+
}), _t = (e) => {
|
|
35
34
|
const {
|
|
36
35
|
searchSettings: { view: t }
|
|
37
|
-
} =
|
|
36
|
+
} = S(), { isHidden: s, hasContent: r } = d(), n = F("(max-width: 768px)"), a = M();
|
|
38
37
|
return /* @__PURE__ */ o(
|
|
39
|
-
|
|
38
|
+
oe,
|
|
40
39
|
{
|
|
41
|
-
"data-hidden": I(
|
|
40
|
+
"data-hidden": I(s),
|
|
42
41
|
"data-has-content": I(r),
|
|
43
42
|
"data-in-modal": I(!!a),
|
|
44
43
|
"data-mobile": I(n),
|
|
45
44
|
"data-view": t,
|
|
46
|
-
"data-dual-pane-search-expanded": I(r && t === "dual-pane" && !
|
|
45
|
+
"data-dual-pane-search-expanded": I(r && t === "dual-pane" && !s),
|
|
47
46
|
...e
|
|
48
47
|
}
|
|
49
48
|
);
|
|
50
|
-
},
|
|
49
|
+
}, ce = i("div", {
|
|
51
50
|
_id: "aiSearchRoot"
|
|
52
|
-
}),
|
|
53
|
-
const { isHidden: t } = d(),
|
|
54
|
-
return /* @__PURE__ */ o(
|
|
55
|
-
},
|
|
51
|
+
}), bt = (e) => {
|
|
52
|
+
const { isHidden: t } = d(), s = F("(max-width: 768px)");
|
|
53
|
+
return /* @__PURE__ */ o(ce, { "data-hidden": I(t), "data-mobile": I(s), ...e });
|
|
54
|
+
}, le = i(y.List, {
|
|
56
55
|
_id: "aiSearchContent"
|
|
57
|
-
}),
|
|
58
|
-
const
|
|
56
|
+
}), St = C((e, t) => {
|
|
57
|
+
const s = g((r) => r.value);
|
|
59
58
|
return /* @__PURE__ */ o(
|
|
60
|
-
|
|
59
|
+
le,
|
|
61
60
|
{
|
|
62
|
-
"aria-activedescendant": `aiSearchResults__Item-${
|
|
61
|
+
"aria-activedescendant": `aiSearchResults__Item-${s}`,
|
|
63
62
|
...e,
|
|
64
63
|
ref: t
|
|
65
64
|
}
|
|
66
65
|
);
|
|
67
|
-
}),
|
|
66
|
+
}), pt = i("div", {
|
|
68
67
|
_id: "aiSearchInputGroup"
|
|
69
|
-
}),
|
|
68
|
+
}), Rt = i(f, {
|
|
70
69
|
_id: "aiSearchInputIcon",
|
|
71
70
|
iconKey: "search"
|
|
72
|
-
}),
|
|
71
|
+
}), de = i(y.Input, {
|
|
73
72
|
_id: "aiSearchInput"
|
|
74
|
-
}),
|
|
75
|
-
const { inputRef: r, shouldAutoFocusInput: n } = d(), a = g((h) => h.value), l = F("(max-width: 768px)"), { searchSettings: c } =
|
|
73
|
+
}), Pt = C(({ onInput: e, ...t }, s) => {
|
|
74
|
+
const { inputRef: r, shouldAutoFocusInput: n } = d(), a = g((h) => h.value), l = F("(max-width: 768px)"), { searchSettings: c } = S(), m = E(
|
|
76
75
|
() => c.placeholder || (l ? "Search..." : "Search for anything..."),
|
|
77
76
|
[c.placeholder, l]
|
|
78
|
-
), _ =
|
|
79
|
-
return
|
|
80
|
-
|
|
77
|
+
), _ = K(s, r);
|
|
78
|
+
return ae("search", r, n), re(), /* @__PURE__ */ o(
|
|
79
|
+
de,
|
|
81
80
|
{
|
|
82
81
|
ref: _,
|
|
83
82
|
placeholder: m,
|
|
@@ -85,21 +84,21 @@ const ce = s("div", {
|
|
|
85
84
|
...t
|
|
86
85
|
}
|
|
87
86
|
);
|
|
88
|
-
}),
|
|
87
|
+
}), ue = i(H, {
|
|
89
88
|
_id: "aiSearchLoading",
|
|
90
89
|
iconSettings: {
|
|
91
90
|
builtIn: "LuLoaderCircle"
|
|
92
91
|
}
|
|
93
|
-
}),
|
|
92
|
+
}), gt = (e) => {
|
|
94
93
|
const { loading: t } = d();
|
|
95
|
-
return t ? /* @__PURE__ */ o(
|
|
96
|
-
},
|
|
94
|
+
return t ? /* @__PURE__ */ o(ue, { ...e }) : null;
|
|
95
|
+
}, me = i(y.Item, {
|
|
97
96
|
_id: "aiAskAITrigger",
|
|
98
97
|
value: k
|
|
99
|
-
}),
|
|
100
|
-
const { results: t, tab:
|
|
98
|
+
}), Tt = (e) => {
|
|
99
|
+
const { results: t, tab: s } = d(), r = V(), n = t[s]?.[0]?.id ?? "NONE";
|
|
101
100
|
return /* @__PURE__ */ o(
|
|
102
|
-
|
|
101
|
+
me,
|
|
103
102
|
{
|
|
104
103
|
...e,
|
|
105
104
|
id: `aiSearchResults__Item-${k}`,
|
|
@@ -107,13 +106,13 @@ const ce = s("div", {
|
|
|
107
106
|
onPointerLeave: () => r.setState("value", n, !0)
|
|
108
107
|
}
|
|
109
108
|
);
|
|
110
|
-
},
|
|
109
|
+
}, he = i("img", {
|
|
111
110
|
_id: "aiAskAITrigger__Icon"
|
|
112
|
-
}),
|
|
113
|
-
const { aiChatSettings: t } =
|
|
111
|
+
}), ft = (e) => {
|
|
112
|
+
const { aiChatSettings: t } = S(), { aiAssistantAvatar: s } = t ?? {}, r = typeof s == "string" ? s : s?.light, n = (typeof s == "string" ? s : s?.dark) ?? r, a = ee(r, n), [l, c] = J(a);
|
|
114
113
|
return x(() => {
|
|
115
114
|
c(a);
|
|
116
|
-
}, [a]), /* @__PURE__ */ o(
|
|
115
|
+
}, [a]), /* @__PURE__ */ o(he, { asChild: !0, ...e, children: l ? (
|
|
117
116
|
// biome-ignore lint/a11y/useAltText: <explanation>
|
|
118
117
|
/* @__PURE__ */ o(
|
|
119
118
|
"img",
|
|
@@ -127,103 +126,103 @@ const ce = s("div", {
|
|
|
127
126
|
...e
|
|
128
127
|
}
|
|
129
128
|
)
|
|
130
|
-
) : /* @__PURE__ */ o(
|
|
131
|
-
},
|
|
129
|
+
) : /* @__PURE__ */ o(te, { "data-type": "icon", ...e }) });
|
|
130
|
+
}, wt = i("span", {
|
|
132
131
|
_id: "aiAskAITrigger__Label"
|
|
133
|
-
}),
|
|
132
|
+
}), Et = i("span", {
|
|
134
133
|
_id: "aiAskAITrigger__Query"
|
|
135
|
-
}),
|
|
134
|
+
}), At = i(f, {
|
|
136
135
|
_id: "aiAskAITrigger__Indicator",
|
|
137
136
|
iconKey: "openLinkInSameTab"
|
|
138
|
-
}),
|
|
137
|
+
}), kt = i("span", {
|
|
139
138
|
_id: "aiAskAITrigger__IndicatorText"
|
|
140
|
-
}),
|
|
139
|
+
}), Ie = i(B.Root, {
|
|
141
140
|
_id: "aiSearchResults"
|
|
142
|
-
}),
|
|
141
|
+
}), yt = (e) => {
|
|
143
142
|
const {
|
|
144
143
|
searchSettings: { view: t }
|
|
145
|
-
} =
|
|
144
|
+
} = S(), { tab: s, setTab: r, hasContent: n, isHidden: a, disableTransition: l, results: c, defaultTab: m } = d(), _ = V(), h = A(
|
|
146
145
|
(u) => {
|
|
147
146
|
l(), r(u);
|
|
148
|
-
const
|
|
149
|
-
_.setState("value",
|
|
147
|
+
const b = c[u][0] ? c[u][0]?.id : void 0;
|
|
148
|
+
_.setState("value", b, !0);
|
|
150
149
|
},
|
|
151
150
|
[c, l]
|
|
152
151
|
);
|
|
153
152
|
return x(() => {
|
|
154
|
-
let u =
|
|
153
|
+
let u = s in c ? s : Object.keys(c)[0];
|
|
155
154
|
if (!c[u]?.length) {
|
|
156
155
|
const R = Object.keys(c).find((P) => c[P]?.length);
|
|
157
156
|
R ? u = R : u = m;
|
|
158
157
|
}
|
|
159
158
|
if (!u) return;
|
|
160
159
|
r(u);
|
|
161
|
-
const
|
|
162
|
-
|
|
160
|
+
const b = c[u]?.[0];
|
|
161
|
+
b && _.setState("value", b.id, !0);
|
|
163
162
|
}, [c]), /* @__PURE__ */ o(
|
|
164
|
-
|
|
163
|
+
Ie,
|
|
165
164
|
{
|
|
166
|
-
value:
|
|
165
|
+
value: s,
|
|
167
166
|
onValueChange: h,
|
|
168
167
|
"data-has-content": I(n),
|
|
169
168
|
"data-dual-pane-search-expanded": I(n && t === "dual-pane" && !a),
|
|
170
169
|
...e
|
|
171
170
|
}
|
|
172
171
|
);
|
|
173
|
-
},
|
|
172
|
+
}, ve = i("div", {
|
|
174
173
|
_id: "aiSearchResults__Loading"
|
|
175
|
-
}),
|
|
176
|
-
const { loading: t, resultsList:
|
|
177
|
-
return !t ||
|
|
178
|
-
},
|
|
174
|
+
}), Lt = (e) => {
|
|
175
|
+
const { loading: t, resultsList: s } = d();
|
|
176
|
+
return !t || s.length > 0 ? null : /* @__PURE__ */ o(ve, { ...e });
|
|
177
|
+
}, _e = i(y.Empty, {
|
|
179
178
|
_id: "aiSearchResults__Empty"
|
|
180
|
-
}),
|
|
181
|
-
const t = g((l) => l.search), { loading:
|
|
182
|
-
return
|
|
183
|
-
}, be =
|
|
179
|
+
}), Ct = (e) => {
|
|
180
|
+
const t = g((l) => l.search), { loading: s, results: r, tab: n } = d(), a = r[n]?.length;
|
|
181
|
+
return s || !t || a ? null : /* @__PURE__ */ o(_e, { children: "No results found.", ...e });
|
|
182
|
+
}, be = i(B.List, {
|
|
184
183
|
_id: "aiSearchResults__TabList"
|
|
185
|
-
}),
|
|
186
|
-
const { children: t, ...
|
|
184
|
+
}), Ot = (e) => {
|
|
185
|
+
const { children: t, ...s } = e, {
|
|
187
186
|
searchSettings: { tabs: r }
|
|
188
|
-
} =
|
|
187
|
+
} = S(), { results: n, loading: a, resultsList: l } = d();
|
|
189
188
|
if (a && l.length === 0) return null;
|
|
190
189
|
const c = Object.keys(n);
|
|
191
|
-
return !r.length || !c.length ? null : /* @__PURE__ */ o(be, { tabIndex: -1, children: L(t, c), ...
|
|
192
|
-
},
|
|
190
|
+
return !r.length || !c.length ? null : /* @__PURE__ */ o(be, { tabIndex: -1, children: L(t, c), ...s });
|
|
191
|
+
}, Se = i(B.Trigger, {
|
|
193
192
|
_id: "aiSearchResults__Tab"
|
|
194
|
-
}),
|
|
195
|
-
const
|
|
193
|
+
}), xt = C((e, t) => {
|
|
194
|
+
const s = N(null), r = K(t, s), { tab: n, onClick: a, ...l } = e, { results: c, tab: m, inputRef: _ } = d(), h = c[n].length, u = n === m, b = () => {
|
|
196
195
|
_.current?.focus();
|
|
197
196
|
}, R = se();
|
|
198
197
|
return x(() => {
|
|
199
|
-
u && R?.shadowHost?.shadowRoot?.activeElement?.hasAttribute("ikp-tab") &&
|
|
198
|
+
u && R?.shadowHost?.shadowRoot?.activeElement?.hasAttribute("ikp-tab") && s.current?.focus();
|
|
200
199
|
}, [u]), /* @__PURE__ */ o(
|
|
201
|
-
|
|
200
|
+
Se,
|
|
202
201
|
{
|
|
203
202
|
ref: r,
|
|
204
203
|
"ikp-tab": "",
|
|
205
204
|
tabIndex: u ? 0 : -1,
|
|
206
205
|
value: n,
|
|
207
206
|
children: `${n} (${h})`,
|
|
208
|
-
onClick: T(a,
|
|
207
|
+
onClick: T(a, b),
|
|
209
208
|
...l
|
|
210
209
|
}
|
|
211
210
|
);
|
|
212
|
-
}),
|
|
211
|
+
}), Bt = i("div", {
|
|
213
212
|
_id: "aiSearchResults__Content"
|
|
214
|
-
}),
|
|
213
|
+
}), pe = i(O.Root, {
|
|
215
214
|
_id: "aiSearchResults__ScrollArea"
|
|
216
|
-
}),
|
|
217
|
-
const { loading: t, resultsList:
|
|
218
|
-
return t &&
|
|
219
|
-
},
|
|
215
|
+
}), Mt = (e) => {
|
|
216
|
+
const { loading: t, resultsList: s } = d();
|
|
217
|
+
return t && s.length === 0 ? null : /* @__PURE__ */ o(pe, { tabIndex: -1, ...e });
|
|
218
|
+
}, Re = i(O.Viewport, {
|
|
220
219
|
_id: "aiSearchResults__ScrollAreaViewport"
|
|
221
|
-
}),
|
|
222
|
-
const r =
|
|
220
|
+
}), Kt = C(({ children: e, ...t }, s) => {
|
|
221
|
+
const r = Z(), n = K(s, r), { tab: a } = d();
|
|
223
222
|
return x(() => {
|
|
224
223
|
a && r.current?.scrollTo({ top: 0, behavior: "auto" });
|
|
225
224
|
}, [a]), /* @__PURE__ */ o(
|
|
226
|
-
|
|
225
|
+
Re,
|
|
227
226
|
{
|
|
228
227
|
ref: n,
|
|
229
228
|
tabIndex: -1,
|
|
@@ -234,37 +233,37 @@ const ce = s("div", {
|
|
|
234
233
|
...t
|
|
235
234
|
}
|
|
236
235
|
);
|
|
237
|
-
}),
|
|
236
|
+
}), Nt = i(
|
|
238
237
|
O.ScrollAreaScrollbar,
|
|
239
238
|
{
|
|
240
239
|
_id: "aiSearchResults__ScrollAreaScrollbar"
|
|
241
240
|
}
|
|
242
|
-
),
|
|
241
|
+
), Ut = i(O.ScrollAreaThumb, {
|
|
243
242
|
_id: "aiSearchResults__ScrollAreaThumb"
|
|
244
|
-
}),
|
|
243
|
+
}), Ht = i(O.Corner, {
|
|
245
244
|
_id: "aiSearchResults__ScrollAreaCorner"
|
|
246
|
-
}),
|
|
245
|
+
}), Pe = i(B.Content, {
|
|
247
246
|
_id: "aiSearchResults__List"
|
|
248
|
-
}),
|
|
249
|
-
const { children: t, ...
|
|
247
|
+
}), Ft = (e) => {
|
|
248
|
+
const { children: t, ...s } = e, { results: r, tab: n } = d(), a = r[n] ?? [];
|
|
250
249
|
return /* @__PURE__ */ o(
|
|
251
|
-
|
|
250
|
+
Pe,
|
|
252
251
|
{
|
|
253
252
|
value: n,
|
|
254
253
|
"data-has-results": I(a.length > 0),
|
|
255
254
|
"aria-label": "Search results",
|
|
256
255
|
children: L(t, a),
|
|
257
256
|
tabIndex: -1,
|
|
258
|
-
...
|
|
257
|
+
...s
|
|
259
258
|
}
|
|
260
259
|
);
|
|
261
|
-
},
|
|
260
|
+
}, ge = i(y.Item, {
|
|
262
261
|
_id: "aiSearchResults__Item",
|
|
263
262
|
asChild: !0
|
|
264
|
-
}),
|
|
263
|
+
}), Dt = C(({ item: e, onClick: t, onSelect: s, children: r, ...n }, a) => {
|
|
265
264
|
const {
|
|
266
265
|
searchSettings: { shouldOpenLinksInNewTab: l, view: c, searchQueryParamKey: m }
|
|
267
|
-
} =
|
|
266
|
+
} = S(), { logEvent: _ } = X(), h = g((p) => p.search), { transitionsDisabled: u } = d(), b = g((p) => p.value), R = N(null), P = M(), D = K(a, R), $ = A((p) => {
|
|
268
267
|
p.trigger === "keyboard" && R.current?.click();
|
|
269
268
|
}, []), w = E(
|
|
270
269
|
() => e.shouldOpenInNewTab !== void 0 ? e.shouldOpenInNewTab : l,
|
|
@@ -283,15 +282,15 @@ const ce = s("div", {
|
|
|
283
282
|
P?.isOpen && !z && !w && P.setOpen(!1);
|
|
284
283
|
},
|
|
285
284
|
[_, h, e.title, e.url, P, w]
|
|
286
|
-
), Q =
|
|
287
|
-
href: m ?
|
|
285
|
+
), Q = b === e.id, j = Q || (b === "NONE" || b === k), q = E(() => ({
|
|
286
|
+
href: m ? ne(e.url, h, m) : e.url,
|
|
288
287
|
isExternal: w,
|
|
289
288
|
appendToUrl: e.appendToUrl,
|
|
290
289
|
children: r,
|
|
291
290
|
id: `aiSearchResults__Item-${e.id}`
|
|
292
291
|
}), [e.url, w, e.appendToUrl, r, e.id, m, h]);
|
|
293
292
|
return /* @__PURE__ */ o(W, { source: { ...e, isExternal: w }, children: /* @__PURE__ */ o(
|
|
294
|
-
|
|
293
|
+
ge,
|
|
295
294
|
{
|
|
296
295
|
ref: D,
|
|
297
296
|
value: e.id,
|
|
@@ -299,7 +298,7 @@ const ce = s("div", {
|
|
|
299
298
|
"data-breadcrumbs": !!e.breadcrumbs?.length,
|
|
300
299
|
"data-disable-transitions": I(u),
|
|
301
300
|
"data-view": c,
|
|
302
|
-
onSelect: T(
|
|
301
|
+
onSelect: T(s, $),
|
|
303
302
|
onClick: T(t, G),
|
|
304
303
|
"data-selected": I(Q),
|
|
305
304
|
tabIndex: j ? 0 : -1,
|
|
@@ -307,106 +306,106 @@ const ce = s("div", {
|
|
|
307
306
|
children: /* @__PURE__ */ o(U, { ...q })
|
|
308
307
|
}
|
|
309
308
|
) });
|
|
310
|
-
}),
|
|
309
|
+
}), Te = i("div", {
|
|
311
310
|
_id: "aiSearchResults__ItemBreadcrumbs"
|
|
312
|
-
}),
|
|
313
|
-
const { source: t } = v(), { tab:
|
|
311
|
+
}), fe = (e) => {
|
|
312
|
+
const { source: t } = v(), { tab: s } = d();
|
|
314
313
|
if (!t.breadcrumbs?.length) return null;
|
|
315
|
-
const { children: r, ...n } = e, l = t.tabs?.find((c) => typeof c != "string" && c[0] ===
|
|
314
|
+
const { children: r, ...n } = e, l = t.tabs?.find((c) => typeof c != "string" && c[0] === s)?.[1]?.breadcrumbs ?? t.breadcrumbs ?? [];
|
|
316
315
|
return /* @__PURE__ */ o(
|
|
317
|
-
|
|
316
|
+
Te,
|
|
318
317
|
{
|
|
319
318
|
"aria-hidden": "true",
|
|
320
319
|
children: L(r, l),
|
|
321
320
|
...n
|
|
322
321
|
}
|
|
323
322
|
);
|
|
324
|
-
},
|
|
323
|
+
}, we = i(f, {
|
|
325
324
|
_id: "aiSearchResults__ItemBreadcrumbIcon",
|
|
326
325
|
iconKey: "breadcrumbSeparator"
|
|
327
|
-
}),
|
|
326
|
+
}), Ee = i(H, {
|
|
328
327
|
_id: "aiSearchResults__ItemIcon"
|
|
329
|
-
}),
|
|
328
|
+
}), Qt = (e) => {
|
|
330
329
|
const { source: t } = v();
|
|
331
|
-
return t.icon ? /* @__PURE__ */ o(
|
|
332
|
-
},
|
|
330
|
+
return t.icon ? /* @__PURE__ */ o(Ee, { iconSettings: t.icon, "data-type": t.type, ...e }) : null;
|
|
331
|
+
}, Ae = i("span", {
|
|
333
332
|
_id: "aiSearchResults__ItemTitle"
|
|
334
|
-
}),
|
|
333
|
+
}), Vt = (e) => {
|
|
335
334
|
const { source: t } = v();
|
|
336
|
-
return /* @__PURE__ */ o(
|
|
337
|
-
},
|
|
335
|
+
return /* @__PURE__ */ o(Ae, { "data-type": t.type, children: t.title, ...e });
|
|
336
|
+
}, ke = i("span", {
|
|
338
337
|
_id: "aiSearchResults__ItemTag"
|
|
339
|
-
}),
|
|
338
|
+
}), Wt = (e) => {
|
|
340
339
|
const { source: t } = v();
|
|
341
|
-
return /* @__PURE__ */ o(
|
|
342
|
-
},
|
|
340
|
+
return /* @__PURE__ */ o(ke, { "data-type": t.type, children: t.tag, ...e });
|
|
341
|
+
}, ye = i("span", {
|
|
343
342
|
_id: "aiSearchResults__ItemDescription"
|
|
344
|
-
}),
|
|
345
|
-
const { source: t } = v(), { children:
|
|
343
|
+
}), $t = (e) => {
|
|
344
|
+
const { source: t } = v(), { children: s, ...r } = e, n = E(() => t.description ? Y(t.description) : [], [t.description]);
|
|
346
345
|
return n.length ? /* @__PURE__ */ o(
|
|
347
|
-
|
|
346
|
+
ye,
|
|
348
347
|
{
|
|
349
348
|
"data-type": t.type,
|
|
350
349
|
"aria-hidden": "true",
|
|
351
|
-
children: L(
|
|
350
|
+
children: L(s, n),
|
|
352
351
|
...r
|
|
353
352
|
}
|
|
354
353
|
) : null;
|
|
355
|
-
},
|
|
354
|
+
}, Le = i("span", {
|
|
356
355
|
_id: "aiSearchResults__ItemDescriptionPart"
|
|
357
|
-
}),
|
|
358
|
-
const { part: t, ...
|
|
356
|
+
}), Gt = (e) => {
|
|
357
|
+
const { part: t, ...s } = e, { source: r } = v();
|
|
359
358
|
return typeof t == "string" ? t : /* @__PURE__ */ o(
|
|
360
|
-
|
|
359
|
+
Le,
|
|
361
360
|
{
|
|
362
361
|
"data-type": r.type,
|
|
363
362
|
children: t.content,
|
|
364
363
|
"data-highlighted": I(t.highlighted),
|
|
365
|
-
...
|
|
364
|
+
...s
|
|
366
365
|
}
|
|
367
366
|
);
|
|
368
|
-
},
|
|
367
|
+
}, Ce = i(f, {
|
|
369
368
|
_id: "aiSearchResults__ItemIndicator"
|
|
370
|
-
}),
|
|
369
|
+
}), jt = (e) => {
|
|
371
370
|
const { source: t } = v(), {
|
|
372
|
-
searchSettings: { view:
|
|
373
|
-
} =
|
|
371
|
+
searchSettings: { view: s }
|
|
372
|
+
} = S();
|
|
374
373
|
return /* @__PURE__ */ o(
|
|
375
|
-
|
|
374
|
+
Ce,
|
|
376
375
|
{
|
|
377
376
|
iconKey: t.isExternal ? "openLinkInNewTab" : "openLinkInSameTab",
|
|
378
|
-
"data-view":
|
|
377
|
+
"data-view": s,
|
|
379
378
|
...e
|
|
380
379
|
}
|
|
381
380
|
);
|
|
382
|
-
},
|
|
381
|
+
}, Oe = i("div", {
|
|
383
382
|
_id: "aiSearchResults__ItemPreview",
|
|
384
383
|
"aria-hidden": !0
|
|
385
|
-
}),
|
|
384
|
+
}), qt = (e) => {
|
|
386
385
|
const {
|
|
387
|
-
searchSettings: { view: t, shouldOpenLinksInNewTab:
|
|
388
|
-
} =
|
|
386
|
+
searchSettings: { view: t, shouldOpenLinksInNewTab: s }
|
|
387
|
+
} = S(), { results: r, tab: n } = d(), a = g((h) => h.value), l = r[n] ?? [], c = N(null), m = E(() => {
|
|
389
388
|
if (a === k) return c.current;
|
|
390
389
|
const h = l.find((u) => u.id === a);
|
|
391
390
|
return c.current = h, h;
|
|
392
391
|
}, [a]);
|
|
393
392
|
if (t !== "dual-pane" || a === k || !m) return null;
|
|
394
|
-
const _ = m.shouldOpenInNewTab !== void 0 ? m.shouldOpenInNewTab :
|
|
395
|
-
return /* @__PURE__ */ o(W, { source: { ...m, isExternal: _ }, children: /* @__PURE__ */ o(
|
|
396
|
-
},
|
|
393
|
+
const _ = m.shouldOpenInNewTab !== void 0 ? m.shouldOpenInNewTab : s;
|
|
394
|
+
return /* @__PURE__ */ o(W, { source: { ...m, isExternal: _ }, children: /* @__PURE__ */ o(Oe, { ...e }) });
|
|
395
|
+
}, zt = i("div", {
|
|
397
396
|
_id: "aiSearchResults__ItemPreview__Header"
|
|
398
|
-
}),
|
|
397
|
+
}), xe = i(U, {
|
|
399
398
|
_id: "aiSearchResults__ItemPreview__Heading"
|
|
400
|
-
}),
|
|
401
|
-
const { source: t } = v(),
|
|
399
|
+
}), Jt = (e) => {
|
|
400
|
+
const { source: t } = v(), s = M(), r = A(
|
|
402
401
|
(n) => {
|
|
403
402
|
const a = n.metaKey || n.ctrlKey;
|
|
404
|
-
|
|
403
|
+
s?.isOpen && !a && !t.isExternal && s.setOpen(!1);
|
|
405
404
|
},
|
|
406
|
-
[
|
|
405
|
+
[s, t.isExternal]
|
|
407
406
|
);
|
|
408
407
|
return /* @__PURE__ */ o(
|
|
409
|
-
|
|
408
|
+
xe,
|
|
410
409
|
{
|
|
411
410
|
href: t.url,
|
|
412
411
|
isExternal: t.isExternal,
|
|
@@ -416,15 +415,15 @@ const ce = s("div", {
|
|
|
416
415
|
...e
|
|
417
416
|
}
|
|
418
417
|
);
|
|
419
|
-
},
|
|
418
|
+
}, Be = i("span", {
|
|
420
419
|
_id: "aiSearchResults__ItemPreview__Title"
|
|
421
|
-
}),
|
|
420
|
+
}), Xt = (e) => {
|
|
422
421
|
const { source: t } = v();
|
|
423
|
-
return /* @__PURE__ */ o(
|
|
424
|
-
}, Me =
|
|
422
|
+
return /* @__PURE__ */ o(Be, { children: t.title, ...e });
|
|
423
|
+
}, Me = i(f, {
|
|
425
424
|
_id: "aiSearchResults__ItemPreview__Title__LinkIcon",
|
|
426
425
|
iconKey: "openLinkInNewTab"
|
|
427
|
-
}),
|
|
426
|
+
}), Yt = (e) => {
|
|
428
427
|
const { source: t } = v();
|
|
429
428
|
return /* @__PURE__ */ o(
|
|
430
429
|
Me,
|
|
@@ -433,22 +432,22 @@ const ce = s("div", {
|
|
|
433
432
|
...e
|
|
434
433
|
}
|
|
435
434
|
);
|
|
436
|
-
},
|
|
437
|
-
|
|
435
|
+
}, Zt = i(
|
|
436
|
+
fe,
|
|
438
437
|
{
|
|
439
438
|
_id: "aiSearchResults__ItemPreview__Breadcrumbs"
|
|
440
439
|
}
|
|
441
|
-
),
|
|
442
|
-
|
|
440
|
+
), es = i(
|
|
441
|
+
we,
|
|
443
442
|
{
|
|
444
443
|
_id: "aiSearchResults__ItemPreview__BreadcrumbIcon"
|
|
445
444
|
}
|
|
446
|
-
), Ke =
|
|
445
|
+
), Ke = i(ie, {
|
|
447
446
|
_id: "aiSearchResults__ItemPreview__Body"
|
|
448
|
-
}),
|
|
449
|
-
const { source: t } = v(), { resultsList:
|
|
447
|
+
}), ts = (e) => {
|
|
448
|
+
const { source: t } = v(), { resultsList: s } = d(), r = s.find((a) => a.id === t.id), {
|
|
450
449
|
searchSettings: { shouldOpenLinksInNewTab: n }
|
|
451
|
-
} =
|
|
450
|
+
} = S();
|
|
452
451
|
return r ? /* @__PURE__ */ o(
|
|
453
452
|
Ke,
|
|
454
453
|
{
|
|
@@ -457,47 +456,47 @@ const ce = s("div", {
|
|
|
457
456
|
...e
|
|
458
457
|
}
|
|
459
458
|
) : null;
|
|
460
|
-
},
|
|
459
|
+
}, Ne = i("div", {
|
|
461
460
|
_id: "aiSearchResults__ItemPreview__Outline"
|
|
462
|
-
}),
|
|
463
|
-
const { source: t } = v(), { resultsList:
|
|
464
|
-
return
|
|
465
|
-
},
|
|
461
|
+
}), ss = (e) => {
|
|
462
|
+
const { source: t } = v(), { resultsList: s } = d();
|
|
463
|
+
return s.find((a) => a.id === t.id)?.headings?.length ? /* @__PURE__ */ o(Ne, { ...e }) : null;
|
|
464
|
+
}, is = i("span", {
|
|
466
465
|
_id: "aiSearchResults__ItemPreview__Outline__Title",
|
|
467
466
|
children: "On this page"
|
|
468
|
-
}),
|
|
467
|
+
}), Ue = i("ul", {
|
|
469
468
|
_id: "aiSearchResults__ItemPreview__Outline__List"
|
|
470
|
-
}),
|
|
471
|
-
const { source: t } = v(), { resultsList:
|
|
469
|
+
}), rs = (e) => {
|
|
470
|
+
const { source: t } = v(), { resultsList: s } = d(), n = s.find((c) => c.id === t.id)?.headings;
|
|
472
471
|
if (!n?.length) return null;
|
|
473
472
|
const { children: a, ...l } = e;
|
|
474
|
-
return /* @__PURE__ */ o(
|
|
475
|
-
},
|
|
473
|
+
return /* @__PURE__ */ o(Ue, { children: L(a, n), ...l });
|
|
474
|
+
}, He = i(U, {
|
|
476
475
|
_id: "aiSearchResults__ItemPreview__Outline__Item"
|
|
477
|
-
}),
|
|
476
|
+
}), ns = (e) => {
|
|
478
477
|
const {
|
|
479
478
|
searchSettings: { shouldOpenLinksInNewTab: t }
|
|
480
|
-
} =
|
|
479
|
+
} = S(), s = M(), r = A(
|
|
481
480
|
(n) => {
|
|
482
481
|
const a = n.metaKey || n.ctrlKey;
|
|
483
|
-
|
|
482
|
+
s?.isOpen && !a && !t && s.setOpen(!1);
|
|
484
483
|
},
|
|
485
|
-
[
|
|
484
|
+
[s, t]
|
|
486
485
|
);
|
|
487
486
|
return /* @__PURE__ */ o(
|
|
488
|
-
|
|
487
|
+
He,
|
|
489
488
|
{
|
|
490
489
|
isExternal: t,
|
|
491
490
|
onClick: T(e.onClick, r),
|
|
492
491
|
...e
|
|
493
492
|
}
|
|
494
493
|
);
|
|
495
|
-
},
|
|
494
|
+
}, as = i(f, {
|
|
496
495
|
_id: "aiSearchResults__ItemPreview__Outline__ItemIcon",
|
|
497
496
|
iconKey: "newLine"
|
|
498
|
-
}),
|
|
497
|
+
}), Fe = i("span", {
|
|
499
498
|
_id: "aiSearchResults__ItemPreview__Outline__ItemText"
|
|
500
|
-
}),
|
|
499
|
+
}), os = (e) => /* @__PURE__ */ o(Fe, { ...e }), cs = i(
|
|
501
500
|
H,
|
|
502
501
|
{
|
|
503
502
|
_id: "aiSearchResults__ItemPreview__Outline__ItemLinkIcon",
|
|
@@ -505,124 +504,121 @@ const ce = s("div", {
|
|
|
505
504
|
builtIn: "LuLink"
|
|
506
505
|
}
|
|
507
506
|
}
|
|
508
|
-
),
|
|
507
|
+
), De = i("div", {
|
|
509
508
|
_id: "aiSearchFooter"
|
|
510
|
-
}),
|
|
509
|
+
}), ls = (e) => {
|
|
511
510
|
const { hasContent: t } = d();
|
|
512
|
-
return /* @__PURE__ */ o(
|
|
513
|
-
},
|
|
511
|
+
return /* @__PURE__ */ o(De, { "data-has-results": I(t), ...e });
|
|
512
|
+
}, ds = i("div", {
|
|
514
513
|
_id: "aiSearchTagline__Container"
|
|
515
|
-
}),
|
|
514
|
+
}), us = i("span", {
|
|
516
515
|
_id: "aiSearchTagline__Text",
|
|
517
516
|
children: "Powered by"
|
|
518
|
-
}),
|
|
519
|
-
_id: "aiSearchTagline__Logo"
|
|
520
|
-
}), vi = s("a", {
|
|
521
|
-
_id: "aiSearchTagline__BrandName",
|
|
522
|
-
children: "inkeep",
|
|
517
|
+
}), ms = i("a", {
|
|
518
|
+
_id: "aiSearchTagline__Logo",
|
|
523
519
|
href: "https://www.inkeep.com/",
|
|
524
520
|
target: "_blank",
|
|
525
|
-
rel: "noopener noreferrer"
|
|
521
|
+
rel: "noopener noreferrer",
|
|
522
|
+
"aria-label": "Inkeep"
|
|
526
523
|
});
|
|
527
524
|
export {
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
bt as Wrapper
|
|
525
|
+
Tt as AskAITrigger,
|
|
526
|
+
ft as AskAITriggerIcon,
|
|
527
|
+
At as AskAITriggerIndicator,
|
|
528
|
+
kt as AskAITriggerIndicatorText,
|
|
529
|
+
wt as AskAITriggerLabel,
|
|
530
|
+
Et as AskAITriggerQuery,
|
|
531
|
+
St as Content,
|
|
532
|
+
Rt as EmbeddedSearchInputIcon,
|
|
533
|
+
Tt as EmbeddedSearchPrimitiveAskAITrigger,
|
|
534
|
+
ft as EmbeddedSearchPrimitiveAskAITriggerIcon,
|
|
535
|
+
At as EmbeddedSearchPrimitiveAskAITriggerIndicator,
|
|
536
|
+
kt as EmbeddedSearchPrimitiveAskAITriggerIndicatorText,
|
|
537
|
+
wt as EmbeddedSearchPrimitiveAskAITriggerLabel,
|
|
538
|
+
Et as EmbeddedSearchPrimitiveAskAITriggerQuery,
|
|
539
|
+
St as EmbeddedSearchPrimitiveContent,
|
|
540
|
+
ls as EmbeddedSearchPrimitiveFooter,
|
|
541
|
+
Pt as EmbeddedSearchPrimitiveInput,
|
|
542
|
+
pt as EmbeddedSearchPrimitiveInputGroup,
|
|
543
|
+
gt as EmbeddedSearchPrimitiveLoading,
|
|
544
|
+
yt as EmbeddedSearchPrimitiveResults,
|
|
545
|
+
Bt as EmbeddedSearchPrimitiveResultsContent,
|
|
546
|
+
Ct as EmbeddedSearchPrimitiveResultsEmpty,
|
|
547
|
+
Dt as EmbeddedSearchPrimitiveResultsItem,
|
|
548
|
+
fe as EmbeddedSearchPrimitiveResultsItemBreadcrumbs,
|
|
549
|
+
$t as EmbeddedSearchPrimitiveResultsItemDescription,
|
|
550
|
+
Gt as EmbeddedSearchPrimitiveResultsItemDescriptionPart,
|
|
551
|
+
Qt as EmbeddedSearchPrimitiveResultsItemIcon,
|
|
552
|
+
jt as EmbeddedSearchPrimitiveResultsItemIndicator,
|
|
553
|
+
qt as EmbeddedSearchPrimitiveResultsItemPreview,
|
|
554
|
+
ts as EmbeddedSearchPrimitiveResultsItemPreviewBody,
|
|
555
|
+
es as EmbeddedSearchPrimitiveResultsItemPreviewBreadcrumbIcon,
|
|
556
|
+
Jt as EmbeddedSearchPrimitiveResultsItemPreviewHeading,
|
|
557
|
+
ss as EmbeddedSearchPrimitiveResultsItemPreviewOutline,
|
|
558
|
+
ns as EmbeddedSearchPrimitiveResultsItemPreviewOutlineItem,
|
|
559
|
+
as as EmbeddedSearchPrimitiveResultsItemPreviewOutlineItemIcon,
|
|
560
|
+
cs as EmbeddedSearchPrimitiveResultsItemPreviewOutlineItemLinkIcon,
|
|
561
|
+
os as EmbeddedSearchPrimitiveResultsItemPreviewOutlineItemText,
|
|
562
|
+
rs as EmbeddedSearchPrimitiveResultsItemPreviewOutlineList,
|
|
563
|
+
is as EmbeddedSearchPrimitiveResultsItemPreviewOutlineTitle,
|
|
564
|
+
Xt as EmbeddedSearchPrimitiveResultsItemPreviewTitle,
|
|
565
|
+
Yt as EmbeddedSearchPrimitiveResultsItemPreviewTitleLinkIcon,
|
|
566
|
+
Wt as EmbeddedSearchPrimitiveResultsItemTag,
|
|
567
|
+
Vt as EmbeddedSearchPrimitiveResultsItemTitle,
|
|
568
|
+
Ft as EmbeddedSearchPrimitiveResultsList,
|
|
569
|
+
Lt as EmbeddedSearchPrimitiveResultsLoading,
|
|
570
|
+
Mt as EmbeddedSearchPrimitiveResultsScrollArea,
|
|
571
|
+
Kt as EmbeddedSearchPrimitiveResultsScrollAreaViewport,
|
|
572
|
+
xt as EmbeddedSearchPrimitiveResultsTab,
|
|
573
|
+
Ot as EmbeddedSearchPrimitiveResultsTabList,
|
|
574
|
+
bt as EmbeddedSearchPrimitiveRoot,
|
|
575
|
+
_t as EmbeddedSearchPrimitiveWrapper,
|
|
576
|
+
ls as Footer,
|
|
577
|
+
Pt as Input,
|
|
578
|
+
pt as InputGroup,
|
|
579
|
+
Rt as InputIcon,
|
|
580
|
+
gt as Loading,
|
|
581
|
+
le as PrimitiveContent,
|
|
582
|
+
vs as Provider,
|
|
583
|
+
yt as Results,
|
|
584
|
+
Bt as ResultsContent,
|
|
585
|
+
Ct as ResultsEmpty,
|
|
586
|
+
Dt as ResultsItem,
|
|
587
|
+
we as ResultsItemBreadcrumbIcon,
|
|
588
|
+
fe as ResultsItemBreadcrumbs,
|
|
589
|
+
$t as ResultsItemDescription,
|
|
590
|
+
Gt as ResultsItemDescriptionPart,
|
|
591
|
+
Qt as ResultsItemIcon,
|
|
592
|
+
jt as ResultsItemIndicator,
|
|
593
|
+
qt as ResultsItemPreview,
|
|
594
|
+
ts as ResultsItemPreviewBody,
|
|
595
|
+
es as ResultsItemPreviewBreadcrumbIcon,
|
|
596
|
+
Zt as ResultsItemPreviewBreadcrumbs,
|
|
597
|
+
zt as ResultsItemPreviewHeader,
|
|
598
|
+
Jt as ResultsItemPreviewHeading,
|
|
599
|
+
ss as ResultsItemPreviewOutline,
|
|
600
|
+
ns as ResultsItemPreviewOutlineItem,
|
|
601
|
+
as as ResultsItemPreviewOutlineItemIcon,
|
|
602
|
+
cs as ResultsItemPreviewOutlineItemLinkIcon,
|
|
603
|
+
os as ResultsItemPreviewOutlineItemText,
|
|
604
|
+
rs as ResultsItemPreviewOutlineList,
|
|
605
|
+
is as ResultsItemPreviewOutlineTitle,
|
|
606
|
+
Xt as ResultsItemPreviewTitle,
|
|
607
|
+
Yt as ResultsItemPreviewTitleLinkIcon,
|
|
608
|
+
Wt as ResultsItemTag,
|
|
609
|
+
Vt as ResultsItemTitle,
|
|
610
|
+
Ft as ResultsList,
|
|
611
|
+
Lt as ResultsLoading,
|
|
612
|
+
Mt as ResultsScrollArea,
|
|
613
|
+
Ht as ResultsScrollAreaCorner,
|
|
614
|
+
Nt as ResultsScrollAreaScrollbar,
|
|
615
|
+
Ut as ResultsScrollAreaThumb,
|
|
616
|
+
Kt as ResultsScrollAreaViewport,
|
|
617
|
+
xt as ResultsTab,
|
|
618
|
+
Ot as ResultsTabList,
|
|
619
|
+
bt as Root,
|
|
620
|
+
ds as TaglineContainer,
|
|
621
|
+
ms as TaglineLogo,
|
|
622
|
+
us as TaglineText,
|
|
623
|
+
_t as Wrapper
|
|
628
624
|
};
|