@dxos/react-ui-searchlist 0.8.4-main.e8ec1fe → 0.8.4-main.ef1bc66f44

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.
Files changed (49) hide show
  1. package/dist/lib/browser/index.mjs +665 -336
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +665 -336
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/components/Combobox/Combobox.d.ts +50 -10
  8. package/dist/types/src/components/Combobox/Combobox.d.ts.map +1 -1
  9. package/dist/types/src/components/Combobox/Combobox.stories.d.ts +1 -1
  10. package/dist/types/src/components/Combobox/Combobox.stories.d.ts.map +1 -1
  11. package/dist/types/src/components/Listbox/Listbox.d.ts.map +1 -1
  12. package/dist/types/src/components/Listbox/Listbox.stories.d.ts +1 -1
  13. package/dist/types/src/components/SearchList/SearchList.d.ts +84 -20
  14. package/dist/types/src/components/SearchList/SearchList.d.ts.map +1 -1
  15. package/dist/types/src/components/SearchList/SearchList.stories.d.ts +10 -7
  16. package/dist/types/src/components/SearchList/SearchList.stories.d.ts.map +1 -1
  17. package/dist/types/src/components/SearchList/context.d.ts +33 -0
  18. package/dist/types/src/components/SearchList/context.d.ts.map +1 -0
  19. package/dist/types/src/components/SearchList/hooks/index.d.ts +5 -0
  20. package/dist/types/src/components/SearchList/hooks/index.d.ts.map +1 -0
  21. package/dist/types/src/components/SearchList/hooks/useGlobalFilter.d.ts +34 -0
  22. package/dist/types/src/components/SearchList/hooks/useGlobalFilter.d.ts.map +1 -0
  23. package/dist/types/src/components/SearchList/hooks/useSearchListInput.d.ts +12 -0
  24. package/dist/types/src/components/SearchList/hooks/useSearchListInput.d.ts.map +1 -0
  25. package/dist/types/src/components/SearchList/hooks/useSearchListItem.d.ts +10 -0
  26. package/dist/types/src/components/SearchList/hooks/useSearchListItem.d.ts.map +1 -0
  27. package/dist/types/src/components/SearchList/hooks/useSearchListResults.d.ts +36 -0
  28. package/dist/types/src/components/SearchList/hooks/useSearchListResults.d.ts.map +1 -0
  29. package/dist/types/src/components/SearchList/index.d.ts +1 -0
  30. package/dist/types/src/components/SearchList/index.d.ts.map +1 -1
  31. package/dist/types/src/translations.d.ts +2 -2
  32. package/dist/types/src/translations.d.ts.map +1 -1
  33. package/dist/types/tsconfig.tsbuildinfo +1 -1
  34. package/package.json +20 -17
  35. package/src/components/Combobox/Combobox.stories.tsx +9 -4
  36. package/src/components/Combobox/Combobox.tsx +36 -23
  37. package/src/components/Listbox/Listbox.stories.tsx +1 -1
  38. package/src/components/Listbox/Listbox.tsx +8 -3
  39. package/src/components/SearchList/SearchList.stories.tsx +496 -28
  40. package/src/components/SearchList/SearchList.tsx +460 -62
  41. package/src/components/SearchList/context.ts +43 -0
  42. package/src/components/SearchList/hooks/index.ts +8 -0
  43. package/src/components/SearchList/hooks/useGlobalFilter.tsx +61 -0
  44. package/src/components/SearchList/hooks/useSearchListInput.ts +14 -0
  45. package/src/components/SearchList/hooks/useSearchListItem.ts +14 -0
  46. package/src/components/SearchList/hooks/useSearchListResults.ts +104 -0
  47. package/src/components/SearchList/index.ts +1 -0
  48. package/src/translations.ts +1 -1
  49. package/src/types/command-score.d.ts +16 -0
@@ -1,23 +1,21 @@
1
1
  import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
2
2
 
3
3
  // src/components/Combobox/Combobox.tsx
4
- import { useSignals as _useSignals2 } from "@preact-signals/safe-react/tracking";
5
- import { createContext } from "@radix-ui/react-context";
6
- import { useControllableState } from "@radix-ui/react-use-controllable-state";
7
- import React2, { forwardRef as forwardRef2, useCallback } from "react";
8
- import { Button, Icon, Popover } from "@dxos/react-ui";
4
+ import { createContext as createContext3 } from "@radix-ui/react-context";
5
+ import { useControllableState as useControllableState2 } from "@radix-ui/react-use-controllable-state";
6
+ import React3, { forwardRef as forwardRef2, useCallback as useCallback3 } from "react";
7
+ import { Button, Icon as Icon2, Popover } from "@dxos/react-ui";
9
8
  import { useId } from "@dxos/react-ui";
10
- import { mx as mx2, staticPlaceholderText } from "@dxos/react-ui-theme";
9
+ import { mx as mx2, staticPlaceholderText } from "@dxos/ui-theme";
11
10
 
12
11
  // src/components/SearchList/SearchList.tsx
13
- import { useSignals as _useSignals } from "@preact-signals/safe-react/tracking";
14
- import { CommandEmpty, CommandInput, CommandItem, CommandList, CommandRoot } from "cmdk";
15
- import React, { forwardRef } from "react";
16
- import { useDensityContext, useElevationContext, useThemeContext, useTranslation } from "@dxos/react-ui";
17
- import { mx } from "@dxos/react-ui-theme";
12
+ import { useControllableState } from "@radix-ui/react-use-controllable-state";
13
+ import React, { forwardRef, useCallback, useEffect, useMemo, useRef, useState } from "react";
14
+ import { Icon, useDensityContext, useElevationContext, useThemeContext, useTranslation } from "@dxos/react-ui";
15
+ import { descriptionText, mx } from "@dxos/ui-theme";
18
16
 
19
17
  // src/translations.ts
20
- var translationKey = "react-ui-searchlist";
18
+ var translationKey = "@dxos/react-ui-searchlist";
21
19
  var translations = [
22
20
  {
23
21
  "en-US": {
@@ -28,94 +26,461 @@ var translations = [
28
26
  }
29
27
  ];
30
28
 
29
+ // src/components/SearchList/context.ts
30
+ import { createContext } from "@radix-ui/react-context";
31
+ var [SearchListItemContextProvider, useSearchListItemContext] = createContext("SearchListItem");
32
+ var [SearchListInputContextProvider, useSearchListInputContext] = createContext("SearchListInput");
33
+
31
34
  // src/components/SearchList/SearchList.tsx
32
- var commandItem = "flex items-center overflow-hidden";
33
- var searchListItem = "plb-1 pli-2 rounded-sm select-none cursor-pointer data-[selected]:bg-hoverOverlay hover:bg-hoverOverlay";
34
- var SEARCHLIST_NAME = "SearchList";
35
- var SEARCHLIST_ITEM_NAME = "SearchListItem";
36
- var SearchListRoot = /* @__PURE__ */ forwardRef(({ children, classNames, ...props }, forwardedRef) => {
37
- var _effect = _useSignals();
38
- try {
39
- return /* @__PURE__ */ React.createElement(CommandRoot, {
40
- ...props,
41
- className: mx(classNames),
42
- ref: forwardedRef
43
- }, children);
44
- } finally {
45
- _effect.f();
46
- }
35
+ var SearchListRoot = ({ children, value: valueProp, defaultValue = "", debounceMs = 200, onSearch }) => {
36
+ const [query = "", setQuery] = useControllableState({
37
+ prop: valueProp,
38
+ defaultProp: defaultValue,
39
+ onChange: void 0
40
+ });
41
+ const [selectedValue, setSelectedValue] = useState(void 0);
42
+ const itemsRef = useRef(/* @__PURE__ */ new Map());
43
+ const debounceRef = useRef(null);
44
+ const handleQueryChange = useCallback((newQuery) => {
45
+ setQuery(newQuery);
46
+ if (debounceRef.current) {
47
+ clearTimeout(debounceRef.current);
48
+ }
49
+ debounceRef.current = setTimeout(() => {
50
+ onSearch?.(newQuery);
51
+ }, debounceMs);
52
+ }, [
53
+ setQuery,
54
+ onSearch,
55
+ debounceMs
56
+ ]);
57
+ const [itemVersion, setItemVersion] = useState(0);
58
+ useEffect(() => {
59
+ return () => {
60
+ if (debounceRef.current) {
61
+ clearTimeout(debounceRef.current);
62
+ }
63
+ };
64
+ }, []);
65
+ useEffect(() => {
66
+ const currentItem = selectedValue !== void 0 ? itemsRef.current.get(selectedValue) : void 0;
67
+ const isSelectionValid = currentItem !== void 0 && !currentItem.disabled;
68
+ if (!isSelectionValid && itemsRef.current.size > 0) {
69
+ const entries = Array.from(itemsRef.current.entries()).filter(([, data]) => !data.disabled);
70
+ if (entries.length > 0) {
71
+ entries.sort(([, a], [, b]) => {
72
+ const position = a.element.compareDocumentPosition(b.element);
73
+ if (position & Node.DOCUMENT_POSITION_FOLLOWING) {
74
+ return -1;
75
+ }
76
+ if (position & Node.DOCUMENT_POSITION_PRECEDING) {
77
+ return 1;
78
+ }
79
+ return 0;
80
+ });
81
+ const firstValue = entries[0]?.[0];
82
+ if (firstValue !== void 0 && firstValue !== selectedValue) {
83
+ setSelectedValue(firstValue);
84
+ }
85
+ } else if (selectedValue !== void 0) {
86
+ setSelectedValue(void 0);
87
+ }
88
+ }
89
+ }, [
90
+ itemVersion,
91
+ selectedValue
92
+ ]);
93
+ const registerItem = useCallback((value, element, onSelect, disabled) => {
94
+ if (element) {
95
+ itemsRef.current.set(value, {
96
+ element,
97
+ onSelect,
98
+ disabled
99
+ });
100
+ setItemVersion((v) => v + 1);
101
+ }
102
+ }, []);
103
+ const unregisterItem = useCallback((value) => {
104
+ itemsRef.current.delete(value);
105
+ setItemVersion((v) => v + 1);
106
+ }, []);
107
+ const getItemValues = useCallback(() => {
108
+ return Array.from(itemsRef.current.entries()).filter(([, data]) => !data.disabled).sort(([, a], [, b]) => {
109
+ const position = a.element.compareDocumentPosition(b.element);
110
+ return position & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : position & Node.DOCUMENT_POSITION_PRECEDING ? 1 : 0;
111
+ }).map(([value]) => value);
112
+ }, []);
113
+ const triggerSelect = useCallback(() => {
114
+ if (selectedValue !== void 0) {
115
+ const item = itemsRef.current.get(selectedValue);
116
+ item?.onSelect?.();
117
+ }
118
+ }, [
119
+ selectedValue
120
+ ]);
121
+ const itemContextValue = useMemo(() => ({
122
+ selectedValue,
123
+ onSelectedValueChange: setSelectedValue,
124
+ registerItem,
125
+ unregisterItem
126
+ }), [
127
+ selectedValue,
128
+ registerItem,
129
+ unregisterItem
130
+ ]);
131
+ const inputContextValue = useMemo(() => ({
132
+ query,
133
+ onQueryChange: handleQueryChange,
134
+ selectedValue,
135
+ onSelectedValueChange: setSelectedValue,
136
+ getItemValues,
137
+ triggerSelect
138
+ }), [
139
+ query,
140
+ handleQueryChange,
141
+ selectedValue,
142
+ getItemValues,
143
+ triggerSelect
144
+ ]);
145
+ return /* @__PURE__ */ React.createElement(SearchListInputContextProvider, {
146
+ query: inputContextValue.query,
147
+ onQueryChange: inputContextValue.onQueryChange,
148
+ selectedValue: inputContextValue.selectedValue,
149
+ onSelectedValueChange: inputContextValue.onSelectedValueChange,
150
+ getItemValues: inputContextValue.getItemValues,
151
+ triggerSelect: inputContextValue.triggerSelect
152
+ }, /* @__PURE__ */ React.createElement(SearchListItemContextProvider, {
153
+ selectedValue: itemContextValue.selectedValue,
154
+ onSelectedValueChange: itemContextValue.onSelectedValueChange,
155
+ registerItem: itemContextValue.registerItem,
156
+ unregisterItem: itemContextValue.unregisterItem
157
+ }, children));
158
+ };
159
+ SearchListRoot.displayName = "SearchList.Root";
160
+ var SearchListContent = /* @__PURE__ */ forwardRef(({ classNames, children }, forwardedRef) => {
161
+ return /* @__PURE__ */ React.createElement("div", {
162
+ role: "none",
163
+ // TODO(burdon): Remove p-1 hack.
164
+ className: mx("flex flex-col gap-2 bs-full is-full min-bs-0 overflow-hidden p-1", classNames),
165
+ ref: forwardedRef
166
+ }, children);
47
167
  });
48
- SearchListRoot.displayName = SEARCHLIST_NAME;
49
- var SearchListInput = /* @__PURE__ */ forwardRef(({ classNames, density: propsDensity, elevation: propsElevation, variant, ...props }, forwardedRef) => {
50
- var _effect = _useSignals();
51
- try {
52
- const { t } = useTranslation(translationKey);
53
- const placeholder = props.placeholder ?? t("search.placeholder");
54
- const { hasIosKeyboard } = useThemeContext();
55
- const { tx } = useThemeContext();
56
- const density = useDensityContext(propsDensity);
57
- const elevation = useElevationContext(propsElevation);
58
- return /* @__PURE__ */ React.createElement(CommandInput, {
59
- ...props,
60
- placeholder,
61
- className: tx("input.input", "input", {
62
- variant,
63
- disabled: props.disabled,
64
- density,
65
- elevation
66
- }, "mbe-cardSpacingBlock", classNames),
67
- ...props.autoFocus && !hasIosKeyboard && {
68
- autoFocus: true
69
- },
70
- ref: forwardedRef
71
- });
72
- } finally {
73
- _effect.f();
74
- }
168
+ SearchListContent.displayName = "SearchList.Content";
169
+ var SearchListViewport = /* @__PURE__ */ forwardRef(({ classNames, children }, forwardedRef) => {
170
+ return /* @__PURE__ */ React.createElement("div", {
171
+ role: "listbox",
172
+ className: mx("bs-full is-full min-bs-0 overflow-y-auto", classNames),
173
+ ref: forwardedRef
174
+ }, children);
75
175
  });
76
- var SearchListContent = /* @__PURE__ */ forwardRef(({ children, classNames, ...props }, forwardedRef) => {
77
- var _effect = _useSignals();
78
- try {
79
- return /* @__PURE__ */ React.createElement(CommandList, {
80
- ...props,
81
- className: mx(classNames),
82
- ref: forwardedRef
83
- }, children);
84
- } finally {
85
- _effect.f();
86
- }
176
+ SearchListViewport.displayName = "SearchList.Viewport";
177
+ var SearchListInput = /* @__PURE__ */ forwardRef(({ classNames, density: propsDensity, elevation: propsElevation, variant, placeholder, onChange, ...props }, forwardedRef) => {
178
+ const { query, onQueryChange, selectedValue, onSelectedValueChange, getItemValues, triggerSelect } = useSearchListInputContext("SearchList.Input");
179
+ const { t } = useTranslation(translationKey);
180
+ const { hasIosKeyboard, tx } = useThemeContext();
181
+ const density = useDensityContext(propsDensity);
182
+ const elevation = useElevationContext(propsElevation);
183
+ const defaultPlaceholder = t("search.placeholder");
184
+ const handleChange = useCallback((event) => {
185
+ onQueryChange(event.target.value);
186
+ onChange?.(event);
187
+ }, [
188
+ onQueryChange,
189
+ onChange
190
+ ]);
191
+ const handleKeyDown = useCallback((event) => {
192
+ const values = getItemValues();
193
+ if (values.length === 0) {
194
+ if (event.key === "Escape") {
195
+ onQueryChange("");
196
+ }
197
+ return;
198
+ }
199
+ const currentIndex = selectedValue !== void 0 ? values.indexOf(selectedValue) : -1;
200
+ switch (event.key) {
201
+ case "ArrowDown": {
202
+ event.preventDefault();
203
+ const nextIndex = currentIndex === -1 ? 0 : Math.min(currentIndex + 1, values.length - 1);
204
+ const nextValue = values[nextIndex];
205
+ if (nextValue !== void 0) {
206
+ onSelectedValueChange(nextValue);
207
+ }
208
+ break;
209
+ }
210
+ case "ArrowUp": {
211
+ event.preventDefault();
212
+ const prevIndex = currentIndex === -1 ? values.length - 1 : Math.max(currentIndex - 1, 0);
213
+ const prevValue = values[prevIndex];
214
+ if (prevValue !== void 0) {
215
+ onSelectedValueChange(prevValue);
216
+ }
217
+ break;
218
+ }
219
+ case "Enter": {
220
+ if (selectedValue !== void 0) {
221
+ event.preventDefault();
222
+ triggerSelect();
223
+ }
224
+ break;
225
+ }
226
+ case "Home": {
227
+ event.preventDefault();
228
+ const firstValue = values[0];
229
+ if (firstValue !== void 0) {
230
+ onSelectedValueChange(firstValue);
231
+ }
232
+ break;
233
+ }
234
+ case "End": {
235
+ event.preventDefault();
236
+ const lastValue = values[values.length - 1];
237
+ if (lastValue !== void 0) {
238
+ onSelectedValueChange(lastValue);
239
+ }
240
+ break;
241
+ }
242
+ case "Escape": {
243
+ event.preventDefault();
244
+ if (selectedValue !== void 0) {
245
+ onSelectedValueChange(void 0);
246
+ } else {
247
+ onQueryChange("");
248
+ }
249
+ break;
250
+ }
251
+ }
252
+ }, [
253
+ selectedValue,
254
+ onSelectedValueChange,
255
+ getItemValues,
256
+ triggerSelect,
257
+ onQueryChange
258
+ ]);
259
+ return /* @__PURE__ */ React.createElement("input", {
260
+ ...props,
261
+ ...props.autoFocus && !hasIosKeyboard && {
262
+ autoFocus: true
263
+ },
264
+ type: "text",
265
+ placeholder: placeholder ?? defaultPlaceholder,
266
+ className: tx("input.input", "input", {
267
+ variant,
268
+ disabled: props.disabled,
269
+ density,
270
+ elevation
271
+ }, classNames),
272
+ value: query,
273
+ onChange: handleChange,
274
+ onKeyDown: handleKeyDown,
275
+ ref: forwardedRef
276
+ });
87
277
  });
88
- var SearchListEmpty = /* @__PURE__ */ forwardRef(({ children, classNames, ...props }, forwardedRef) => {
89
- var _effect = _useSignals();
90
- try {
91
- return /* @__PURE__ */ React.createElement(CommandEmpty, {
92
- ...props,
93
- className: mx(classNames),
94
- ref: forwardedRef
95
- }, children);
96
- } finally {
97
- _effect.f();
98
- }
278
+ SearchListInput.displayName = "SearchList.Input";
279
+ var SearchListItem = /* @__PURE__ */ forwardRef(({ classNames, value, label, icon, checked, suffix, onSelect, disabled }, forwardedRef) => {
280
+ const { selectedValue, registerItem, unregisterItem } = useSearchListItemContext("SearchList.Item");
281
+ const internalRef = useRef(null);
282
+ const isSelected = selectedValue === value && !disabled;
283
+ useEffect(() => {
284
+ const element = internalRef.current;
285
+ if (element) {
286
+ registerItem(value, element, onSelect, disabled);
287
+ }
288
+ return () => unregisterItem(value);
289
+ }, [
290
+ value,
291
+ onSelect,
292
+ disabled,
293
+ registerItem,
294
+ unregisterItem
295
+ ]);
296
+ useEffect(() => {
297
+ if (isSelected && internalRef.current) {
298
+ internalRef.current.scrollIntoView({
299
+ block: "nearest",
300
+ behavior: "smooth"
301
+ });
302
+ }
303
+ }, [
304
+ isSelected
305
+ ]);
306
+ const handleClick = useCallback(() => {
307
+ if (!disabled) {
308
+ onSelect?.();
309
+ }
310
+ }, [
311
+ onSelect,
312
+ disabled
313
+ ]);
314
+ return /* @__PURE__ */ React.createElement("div", {
315
+ ref: (node) => {
316
+ internalRef.current = node;
317
+ if (typeof forwardedRef === "function") {
318
+ forwardedRef(node);
319
+ } else if (forwardedRef) {
320
+ forwardedRef.current = node;
321
+ }
322
+ },
323
+ role: "option",
324
+ "aria-selected": isSelected,
325
+ "aria-disabled": disabled,
326
+ "data-selected": isSelected,
327
+ "data-disabled": disabled,
328
+ "data-value": value,
329
+ tabIndex: -1,
330
+ className: mx("flex gap-2 items-center", "plb-1 pli-2 rounded-sm select-none cursor-pointer data-[selected=true]:bg-hoverOverlay hover:bg-hoverOverlay", disabled && "opacity-50 cursor-not-allowed hover:bg-transparent data-[selected=true]:bg-transparent", classNames),
331
+ onClick: handleClick
332
+ }, icon && /* @__PURE__ */ React.createElement(Icon, {
333
+ icon,
334
+ size: 5
335
+ }), /* @__PURE__ */ React.createElement("span", {
336
+ className: "is-0 grow truncate"
337
+ }, label), suffix && /* @__PURE__ */ React.createElement("span", {
338
+ className: mx("shrink-0", descriptionText)
339
+ }, suffix), checked && /* @__PURE__ */ React.createElement(Icon, {
340
+ icon: "ph--check--regular",
341
+ size: 5
342
+ }));
99
343
  });
100
- var SearchListItem = /* @__PURE__ */ forwardRef(({ children, classNames, ...props }, forwardedRef) => {
101
- var _effect = _useSignals();
102
- try {
103
- return /* @__PURE__ */ React.createElement(CommandItem, {
104
- ...props,
105
- className: mx(searchListItem, classNames),
106
- ref: forwardedRef
107
- }, children);
108
- } finally {
109
- _effect.f();
110
- }
344
+ SearchListItem.displayName = "SearchList.Item";
345
+ var SearchListEmpty = ({ classNames, children }) => {
346
+ return /* @__PURE__ */ React.createElement("div", {
347
+ role: "status",
348
+ className: mx("flex flex-col is-full pli-2 plb-1", classNames)
349
+ }, children);
350
+ };
351
+ SearchListEmpty.displayName = "SearchList.Empty";
352
+ var SearchListGroup = /* @__PURE__ */ forwardRef(({ classNames, heading, children }, forwardedRef) => {
353
+ return /* @__PURE__ */ React.createElement("div", {
354
+ ref: forwardedRef,
355
+ role: "group",
356
+ className: mx("flex flex-col", classNames)
357
+ }, heading && /* @__PURE__ */ React.createElement("div", {
358
+ role: "presentation",
359
+ className: "pli-2 plb-1 text-xs font-medium text-description"
360
+ }, heading), children);
111
361
  });
112
- SearchListItem.displayName = SEARCHLIST_ITEM_NAME;
362
+ SearchListGroup.displayName = "SearchList.Group";
113
363
  var SearchList = {
114
364
  Root: SearchListRoot,
115
- Input: SearchListInput,
116
365
  Content: SearchListContent,
366
+ Viewport: SearchListViewport,
367
+ Input: SearchListInput,
368
+ Item: SearchListItem,
117
369
  Empty: SearchListEmpty,
118
- Item: SearchListItem
370
+ Group: SearchListGroup
371
+ };
372
+
373
+ // src/components/SearchList/hooks/useGlobalFilter.tsx
374
+ import React2, { createContext as createContext2, useContext, useMemo as useMemo2 } from "react";
375
+ var GlobalFilterContext = /* @__PURE__ */ createContext2({});
376
+ var GlobalFilterProvider = ({ children, filter }) => {
377
+ const value = useMemo2(() => ({
378
+ filter
379
+ }), [
380
+ filter
381
+ ]);
382
+ return /* @__PURE__ */ React2.createElement(GlobalFilterContext.Provider, {
383
+ value
384
+ }, children);
385
+ };
386
+ var useGlobalFilter = () => {
387
+ return useContext(GlobalFilterContext);
388
+ };
389
+ var useGlobalFilteredObjects = (objects) => {
390
+ const { filter } = useGlobalFilter();
391
+ return useMemo2(() => {
392
+ if (!objects) {
393
+ return [];
394
+ }
395
+ if (!filter) {
396
+ return objects;
397
+ }
398
+ return filter(objects);
399
+ }, [
400
+ objects,
401
+ filter
402
+ ]);
403
+ };
404
+
405
+ // src/components/SearchList/hooks/useSearchListInput.ts
406
+ var useSearchListInput = () => {
407
+ const { query, onQueryChange, selectedValue, onSelectedValueChange, getItemValues, triggerSelect } = useSearchListInputContext("useSearchListInput");
408
+ return {
409
+ query,
410
+ onQueryChange,
411
+ selectedValue,
412
+ onSelectedValueChange,
413
+ getItemValues,
414
+ triggerSelect
415
+ };
416
+ };
417
+
418
+ // src/components/SearchList/hooks/useSearchListItem.ts
419
+ var useSearchListItem = () => {
420
+ const { selectedValue, registerItem, unregisterItem } = useSearchListItemContext("useSearchListItem");
421
+ return {
422
+ selectedValue,
423
+ registerItem,
424
+ unregisterItem
425
+ };
426
+ };
427
+
428
+ // src/components/SearchList/hooks/useSearchListResults.ts
429
+ import commandScore from "command-score";
430
+ import { useCallback as useCallback2, useEffect as useEffect2, useMemo as useMemo3, useRef as useRef2, useState as useState2 } from "react";
431
+ var useSearchListResults = ({ items, filter, fuzzy = true, extract, minScore = 0 }) => {
432
+ const [query, setQuery] = useState2("");
433
+ const queryRef = useRef2("");
434
+ useEffect2(() => {
435
+ queryRef.current = "";
436
+ setQuery("");
437
+ }, [
438
+ items
439
+ ]);
440
+ const defaultExtract = useCallback2((item) => {
441
+ if (typeof item === "string") {
442
+ return item;
443
+ }
444
+ return item?.label ?? "";
445
+ }, []);
446
+ const extractFn = extract ?? defaultExtract;
447
+ const defaultFilter = useCallback2((item, query2) => {
448
+ const searchable = extractFn(item);
449
+ return searchable.toLowerCase().includes(query2.toLowerCase());
450
+ }, [
451
+ extractFn
452
+ ]);
453
+ const filterFn = filter ?? defaultFilter;
454
+ const handleSearch = useCallback2((searchQuery) => {
455
+ queryRef.current = searchQuery;
456
+ setQuery(searchQuery);
457
+ }, []);
458
+ const results = useMemo3(() => {
459
+ const currentQuery = queryRef.current;
460
+ if (!currentQuery) {
461
+ return items;
462
+ }
463
+ if (fuzzy) {
464
+ const scored = items.map((item) => ({
465
+ item,
466
+ score: commandScore(extractFn(item), currentQuery)
467
+ })).filter(({ score }) => score > minScore).sort((a, b) => b.score - a.score);
468
+ return scored.map(({ item }) => item);
469
+ } else {
470
+ return items.filter((item) => filterFn(item, currentQuery));
471
+ }
472
+ }, [
473
+ items,
474
+ query,
475
+ filterFn,
476
+ fuzzy,
477
+ extractFn,
478
+ minScore
479
+ ]);
480
+ return {
481
+ results,
482
+ handleSearch
483
+ };
119
484
  };
120
485
 
121
486
  // src/components/Combobox/Combobox.tsx
@@ -123,170 +488,150 @@ var COMBOBOX_NAME = "Combobox";
123
488
  var COMBOBOX_CONTENT_NAME = "ComboboxContent";
124
489
  var COMBOBOX_ITEM_NAME = "ComboboxItem";
125
490
  var COMBOBOX_TRIGGER_NAME = "ComboboxTrigger";
126
- var [ComboboxProvider, useComboboxContext] = createContext(COMBOBOX_NAME, {});
491
+ var [ComboboxProvider, useComboboxContext] = createContext3(COMBOBOX_NAME, {});
127
492
  var ComboboxRoot = ({ modal, modalId: propsModalId, open: propsOpen, defaultOpen, onOpenChange: propsOnOpenChange, value: propsValue, defaultValue, onValueChange: propsOnValueChange, placeholder, children }) => {
128
- var _effect = _useSignals2();
129
- try {
130
- const modalId = useId(COMBOBOX_NAME, propsModalId);
131
- const [open = false, onOpenChange] = useControllableState({
132
- prop: propsOpen,
133
- onChange: propsOnOpenChange,
134
- defaultProp: defaultOpen
135
- });
136
- const [value = "", onValueChange] = useControllableState({
137
- prop: propsValue,
138
- onChange: propsOnValueChange,
139
- defaultProp: defaultValue
140
- });
141
- return /* @__PURE__ */ React2.createElement(Popover.Root, {
142
- open,
143
- onOpenChange,
144
- modal
145
- }, /* @__PURE__ */ React2.createElement(ComboboxProvider, {
146
- isCombobox: true,
147
- modalId,
148
- placeholder,
149
- open,
150
- onOpenChange,
151
- value,
152
- onValueChange
153
- }, children));
154
- } finally {
155
- _effect.f();
156
- }
493
+ const modalId = useId(COMBOBOX_NAME, propsModalId);
494
+ const [open = false, onOpenChange] = useControllableState2({
495
+ prop: propsOpen,
496
+ onChange: propsOnOpenChange,
497
+ defaultProp: defaultOpen
498
+ });
499
+ const [value = "", onValueChange] = useControllableState2({
500
+ prop: propsValue,
501
+ onChange: propsOnValueChange,
502
+ defaultProp: defaultValue
503
+ });
504
+ return /* @__PURE__ */ React3.createElement(Popover.Root, {
505
+ open,
506
+ onOpenChange,
507
+ modal
508
+ }, /* @__PURE__ */ React3.createElement(ComboboxProvider, {
509
+ isCombobox: true,
510
+ modalId,
511
+ placeholder,
512
+ open,
513
+ onOpenChange,
514
+ value,
515
+ onValueChange
516
+ }, children));
157
517
  };
158
- var ComboboxContent = /* @__PURE__ */ forwardRef2(({ side = "bottom", collisionPadding = 48, sideOffset, align, alignOffset, avoidCollisions, collisionBoundary, arrowPadding, sticky, hideWhenDetached, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onPointerDownOutside, onFocusOutside, onInteractOutside, forceMount, children, classNames, ...props }, forwardedRef) => {
159
- var _effect = _useSignals2();
160
- try {
161
- const { modalId } = useComboboxContext(COMBOBOX_CONTENT_NAME);
162
- return /* @__PURE__ */ React2.createElement(Popover.Content, {
163
- side,
164
- sideOffset,
165
- align,
166
- alignOffset,
167
- avoidCollisions,
168
- collisionBoundary,
169
- collisionPadding,
170
- arrowPadding,
171
- sticky,
172
- hideWhenDetached,
173
- onOpenAutoFocus,
174
- onCloseAutoFocus,
175
- onEscapeKeyDown,
176
- onPointerDownOutside,
177
- onFocusOutside,
178
- onInteractOutside,
179
- forceMount,
180
- classNames: [
181
- "is-[--radix-popover-trigger-width] max-bs-[--radix-popover-content-available-height] grid grid-rows-[min-content_1fr]",
182
- classNames
183
- ],
184
- id: modalId,
185
- ref: forwardedRef
186
- }, /* @__PURE__ */ React2.createElement(SearchList.Root, {
187
- ...props,
188
- classNames: "contents density-fine",
189
- role: "none"
190
- }, children));
191
- } finally {
192
- _effect.f();
193
- }
518
+ var ComboboxContent = /* @__PURE__ */ forwardRef2(({ side = "bottom", collisionPadding = 48, sideOffset, align, alignOffset, avoidCollisions, collisionBoundary, arrowPadding, sticky, hideWhenDetached, onOpenAutoFocus, onCloseAutoFocus, onEscapeKeyDown, onPointerDownOutside, onFocusOutside, onInteractOutside, forceMount, children, classNames, onSearch, value, defaultValue, debounceMs, label }, forwardedRef) => {
519
+ const { modalId } = useComboboxContext(COMBOBOX_CONTENT_NAME);
520
+ return /* @__PURE__ */ React3.createElement(Popover.Content, {
521
+ side,
522
+ sideOffset,
523
+ align,
524
+ alignOffset,
525
+ avoidCollisions,
526
+ collisionBoundary,
527
+ collisionPadding,
528
+ arrowPadding,
529
+ sticky,
530
+ hideWhenDetached,
531
+ onOpenAutoFocus,
532
+ onCloseAutoFocus,
533
+ onEscapeKeyDown,
534
+ onPointerDownOutside,
535
+ onFocusOutside,
536
+ onInteractOutside,
537
+ forceMount,
538
+ classNames: [
539
+ "is-[--radix-popover-trigger-width] max-bs-[--radix-popover-content-available-height] grid grid-rows-[min-content_1fr]",
540
+ classNames
541
+ ],
542
+ id: modalId,
543
+ ref: forwardedRef
544
+ }, /* @__PURE__ */ React3.createElement(SearchList.Root, {
545
+ onSearch,
546
+ value,
547
+ defaultValue,
548
+ debounceMs
549
+ }, /* @__PURE__ */ React3.createElement(SearchList.Content, null, children)));
194
550
  });
195
551
  ComboboxContent.displayName = COMBOBOX_CONTENT_NAME;
196
552
  var ComboboxTrigger = /* @__PURE__ */ forwardRef2(({ children, onClick, ...props }, forwardedRef) => {
197
- var _effect = _useSignals2();
198
- try {
199
- const { modalId, open, onOpenChange, placeholder, value } = useComboboxContext(COMBOBOX_TRIGGER_NAME);
200
- const handleClick = useCallback((event) => {
201
- onClick?.(event);
202
- onOpenChange?.(true);
203
- }, [
204
- onClick,
205
- onOpenChange
206
- ]);
207
- return /* @__PURE__ */ React2.createElement(Popover.Trigger, {
208
- asChild: true
209
- }, /* @__PURE__ */ React2.createElement(Button, {
210
- ...props,
211
- role: "combobox",
212
- "aria-expanded": open,
213
- "aria-controls": modalId,
214
- "aria-haspopup": "dialog",
215
- onClick: handleClick,
216
- ref: forwardedRef
217
- }, children ?? /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement("span", {
218
- className: mx2("font-normal text-start flex-1 min-is-0 truncate mie-2", !value && staticPlaceholderText)
219
- }, value || placeholder), /* @__PURE__ */ React2.createElement(Icon, {
220
- icon: "ph--caret-down--bold",
221
- size: 3
222
- }))));
223
- } finally {
224
- _effect.f();
225
- }
553
+ const { modalId, open, onOpenChange, placeholder, value } = useComboboxContext(COMBOBOX_TRIGGER_NAME);
554
+ const handleClick = useCallback3((event) => {
555
+ onClick?.(event);
556
+ onOpenChange?.(true);
557
+ }, [
558
+ onClick,
559
+ onOpenChange
560
+ ]);
561
+ return /* @__PURE__ */ React3.createElement(Popover.Trigger, {
562
+ asChild: true
563
+ }, /* @__PURE__ */ React3.createElement(Button, {
564
+ ...props,
565
+ role: "combobox",
566
+ "aria-expanded": open,
567
+ "aria-controls": modalId,
568
+ "aria-haspopup": "dialog",
569
+ onClick: handleClick,
570
+ ref: forwardedRef
571
+ }, children ?? /* @__PURE__ */ React3.createElement(React3.Fragment, null, /* @__PURE__ */ React3.createElement("span", {
572
+ className: mx2("font-normal text-start flex-1 min-is-0 truncate mie-2", !value && staticPlaceholderText)
573
+ }, value || placeholder), /* @__PURE__ */ React3.createElement(Icon2, {
574
+ icon: "ph--caret-down--bold",
575
+ size: 3
576
+ }))));
226
577
  });
227
578
  ComboboxTrigger.displayName = COMBOBOX_TRIGGER_NAME;
228
579
  var ComboboxVirtualTrigger = Popover.VirtualTrigger;
229
580
  var ComboboxInput = /* @__PURE__ */ forwardRef2(({ classNames, ...props }, forwardedRef) => {
230
- var _effect = _useSignals2();
231
- try {
232
- return /* @__PURE__ */ React2.createElement(SearchList.Input, {
233
- ...props,
234
- classNames: [
235
- "mli-cardSpacingChrome mbs-cardSpacingChrome mbe-0 is-[calc(100%-2*var(--dx-cardSpacingChrome))]",
236
- classNames
237
- ],
238
- ref: forwardedRef
239
- });
240
- } finally {
241
- _effect.f();
242
- }
581
+ return /* @__PURE__ */ React3.createElement(SearchList.Input, {
582
+ ...props,
583
+ classNames: [
584
+ "mli-cardSpacingChrome mbs-cardSpacingChrome mbe-0 is-[calc(100%-2*var(--dx-cardSpacingChrome))]",
585
+ classNames
586
+ ],
587
+ ref: forwardedRef
588
+ });
243
589
  });
244
590
  var ComboboxList = /* @__PURE__ */ forwardRef2(({ classNames, ...props }, forwardedRef) => {
245
- var _effect = _useSignals2();
246
- try {
247
- return /* @__PURE__ */ React2.createElement(SearchList.Content, {
248
- ...props,
249
- classNames: [
250
- "min-bs-0 overflow-y-auto plb-cardSpacingChrome",
251
- classNames
252
- ],
253
- ref: forwardedRef
254
- });
255
- } finally {
256
- _effect.f();
257
- }
591
+ return /* @__PURE__ */ React3.createElement(SearchList.Viewport, {
592
+ ...props,
593
+ classNames: [
594
+ "plb-cardSpacingChrome",
595
+ classNames
596
+ ],
597
+ ref: forwardedRef
598
+ });
258
599
  });
259
- var ComboboxItem = /* @__PURE__ */ forwardRef2(({ classNames, onSelect, ...props }, forwardedRef) => {
260
- var _effect = _useSignals2();
261
- try {
262
- const { onValueChange, onOpenChange } = useComboboxContext(COMBOBOX_ITEM_NAME);
263
- const handleSelect = useCallback((nextValue) => {
264
- onSelect?.(nextValue);
265
- onValueChange?.(nextValue);
600
+ var ComboboxItem = /* @__PURE__ */ forwardRef2(({ classNames, onSelect, value, closeOnSelect = true, ...props }, forwardedRef) => {
601
+ const { onValueChange, onOpenChange } = useComboboxContext(COMBOBOX_ITEM_NAME);
602
+ const handleSelect = useCallback3(() => {
603
+ onSelect?.();
604
+ if (value !== void 0) {
605
+ onValueChange?.(value);
606
+ }
607
+ if (closeOnSelect) {
266
608
  onOpenChange?.(false);
267
- }, [
268
- onSelect,
269
- onValueChange,
270
- onOpenChange
271
- ]);
272
- return /* @__PURE__ */ React2.createElement(SearchList.Item, {
273
- ...props,
274
- classNames: [
275
- "mli-cardSpacingChrome pli-cardSpacingChrome",
276
- classNames
277
- ],
278
- onSelect: handleSelect,
279
- ref: forwardedRef
280
- });
281
- } finally {
282
- _effect.f();
283
- }
609
+ }
610
+ }, [
611
+ onSelect,
612
+ onValueChange,
613
+ onOpenChange,
614
+ value,
615
+ closeOnSelect
616
+ ]);
617
+ return /* @__PURE__ */ React3.createElement(SearchList.Item, {
618
+ ...props,
619
+ value,
620
+ classNames: [
621
+ "mli-cardSpacingChrome pli-cardSpacingChrome",
622
+ classNames
623
+ ],
624
+ onSelect: handleSelect,
625
+ ref: forwardedRef
626
+ });
284
627
  });
285
628
  ComboboxItem.displayName = COMBOBOX_ITEM_NAME;
286
629
  var ComboboxArrow = Popover.Arrow;
287
630
  var ComboboxEmpty = SearchList.Empty;
631
+ var ComboboxPortal = Popover.Portal;
288
632
  var Combobox = {
289
633
  Root: ComboboxRoot,
634
+ Portal: ComboboxPortal,
290
635
  Content: ComboboxContent,
291
636
  Trigger: ComboboxTrigger,
292
637
  VirtualTrigger: ComboboxVirtualTrigger,
@@ -298,14 +643,14 @@ var Combobox = {
298
643
  };
299
644
 
300
645
  // src/components/Listbox/Listbox.tsx
301
- import { useSignals as _useSignals3 } from "@preact-signals/safe-react/tracking";
302
646
  import { useArrowNavigationGroup } from "@fluentui/react-tabster";
303
647
  import { useComposedRefs } from "@radix-ui/react-compose-refs";
304
648
  import { createContextScope } from "@radix-ui/react-context";
305
- import { useControllableState as useControllableState2 } from "@radix-ui/react-use-controllable-state";
306
- import React3, { forwardRef as forwardRef3, useCallback as useCallback2, useEffect, useRef } from "react";
307
- import { Icon as Icon2 } from "@dxos/react-ui";
308
- import { mx as mx3 } from "@dxos/react-ui-theme";
649
+ import { useControllableState as useControllableState3 } from "@radix-ui/react-use-controllable-state";
650
+ import React4, { forwardRef as forwardRef3, useCallback as useCallback4, useEffect as useEffect3, useRef as useRef3 } from "react";
651
+ import { Icon as Icon3 } from "@dxos/react-ui";
652
+ import { mx as mx3 } from "@dxos/ui-theme";
653
+ var commandItem = "flex items-center overflow-hidden";
309
654
  var LISTBOX_NAME = "Listbox";
310
655
  var LISTBOX_OPTION_NAME = "ListboxOption";
311
656
  var LISTBOX_OPTION_LABEL_NAME = "ListboxOptionLabel";
@@ -317,108 +662,88 @@ var [createListboxOptionContext, createListboxOptionScope] = createContextScope(
317
662
  var [ListboxProvider, useListboxContext] = createListboxContext(LISTBOX_NAME);
318
663
  var [ListboxOptionProvider, useListboxOptionContext] = createListboxOptionContext(LISTBOX_OPTION_NAME);
319
664
  var ListboxRoot = /* @__PURE__ */ forwardRef3((props, forwardedRef) => {
320
- var _effect = _useSignals3();
321
- try {
322
- const { __listboxScope, children, classNames, value: propsValue, defaultValue, onValueChange, autoFocus, ...rootProps } = props;
323
- const arrowGroup = useArrowNavigationGroup({
324
- axis: "vertical"
325
- });
326
- const ref = useRef(null);
327
- const rootRef = useComposedRefs(ref, forwardedRef);
328
- const [selectedValue, setSelectedValue] = useControllableState2({
329
- prop: propsValue,
330
- defaultProp: defaultValue,
331
- onChange: onValueChange
332
- });
333
- const handleValueChange = (value) => {
334
- setSelectedValue(value);
335
- };
336
- useEffect(() => {
337
- ref.current?.querySelector('[aria-selected="true"]')?.focus();
338
- }, [
339
- autoFocus
340
- ]);
341
- return /* @__PURE__ */ React3.createElement(ListboxProvider, {
342
- scope: __listboxScope,
343
- selectedValue,
344
- onValueChange: handleValueChange
345
- }, /* @__PURE__ */ React3.createElement("ul", {
346
- role: "listbox",
347
- ...rootProps,
348
- className: mx3("is-full p-cardSpacingChrome", classNames),
349
- ref: rootRef,
350
- ...arrowGroup
351
- }, children));
352
- } finally {
353
- _effect.f();
354
- }
665
+ const { __listboxScope, children, classNames, value: propsValue, defaultValue, onValueChange, autoFocus, ...rootProps } = props;
666
+ const arrowGroup = useArrowNavigationGroup({
667
+ axis: "vertical"
668
+ });
669
+ const ref = useRef3(null);
670
+ const rootRef = useComposedRefs(ref, forwardedRef);
671
+ const [selectedValue, setSelectedValue] = useControllableState3({
672
+ prop: propsValue,
673
+ defaultProp: defaultValue,
674
+ onChange: onValueChange
675
+ });
676
+ const handleValueChange = (value) => {
677
+ setSelectedValue(value);
678
+ };
679
+ useEffect3(() => {
680
+ ref.current?.querySelector('[aria-selected="true"]')?.focus();
681
+ }, [
682
+ autoFocus
683
+ ]);
684
+ return /* @__PURE__ */ React4.createElement(ListboxProvider, {
685
+ scope: __listboxScope,
686
+ selectedValue,
687
+ onValueChange: handleValueChange
688
+ }, /* @__PURE__ */ React4.createElement("ul", {
689
+ role: "listbox",
690
+ ...rootProps,
691
+ className: mx3("is-full p-cardSpacingChrome", classNames),
692
+ ref: rootRef,
693
+ ...arrowGroup
694
+ }, children));
355
695
  });
356
696
  ListboxRoot.displayName = LISTBOX_NAME;
357
697
  var ListboxOption = /* @__PURE__ */ forwardRef3((props, forwardedRef) => {
358
- var _effect = _useSignals3();
359
- try {
360
- const { __listboxScope, children, classNames, value, ...rootProps } = props;
361
- const { selectedValue, onValueChange } = useListboxContext(LISTBOX_OPTION_NAME, __listboxScope);
362
- const isSelected = selectedValue === value;
363
- const handleSelect = useCallback2(() => {
364
- onValueChange(value);
365
- }, [
366
- value,
367
- onValueChange
368
- ]);
369
- return /* @__PURE__ */ React3.createElement(ListboxOptionProvider, {
370
- scope: __listboxScope,
371
- value,
372
- isSelected
373
- }, /* @__PURE__ */ React3.createElement("li", {
374
- role: "option",
375
- ...rootProps,
376
- "aria-selected": isSelected,
377
- tabIndex: 0,
378
- className: mx3("dx-focus-ring", commandItem, searchListItem, classNames),
379
- onClick: handleSelect,
380
- onKeyDown: ({ key }) => {
381
- if ([
382
- "Enter",
383
- " "
384
- ].includes(key)) {
385
- handleSelect();
386
- }
387
- },
388
- ref: forwardedRef
389
- }, children));
390
- } finally {
391
- _effect.f();
392
- }
698
+ const { __listboxScope, children, classNames, value, ...rootProps } = props;
699
+ const { selectedValue, onValueChange } = useListboxContext(LISTBOX_OPTION_NAME, __listboxScope);
700
+ const isSelected = selectedValue === value;
701
+ const handleSelect = useCallback4(() => {
702
+ onValueChange(value);
703
+ }, [
704
+ value,
705
+ onValueChange
706
+ ]);
707
+ return /* @__PURE__ */ React4.createElement(ListboxOptionProvider, {
708
+ scope: __listboxScope,
709
+ value,
710
+ isSelected
711
+ }, /* @__PURE__ */ React4.createElement("li", {
712
+ role: "option",
713
+ ...rootProps,
714
+ "aria-selected": isSelected,
715
+ tabIndex: 0,
716
+ className: mx3("dx-focus-ring", "plb-1 pli-2 rounded-sm select-none cursor-pointer data-[selected=true]:bg-hoverOverlay hover:bg-hoverOverlay", commandItem, classNames),
717
+ onClick: handleSelect,
718
+ onKeyDown: ({ key }) => {
719
+ if ([
720
+ "Enter",
721
+ " "
722
+ ].includes(key)) {
723
+ handleSelect();
724
+ }
725
+ },
726
+ ref: forwardedRef
727
+ }, children));
393
728
  });
394
729
  ListboxOption.displayName = LISTBOX_OPTION_NAME;
395
730
  var ListboxOptionLabel = /* @__PURE__ */ forwardRef3(({ children, classNames, ...rootProps }, forwardedRef) => {
396
- var _effect = _useSignals3();
397
- try {
398
- return /* @__PURE__ */ React3.createElement("span", {
399
- ...rootProps,
400
- className: mx3("grow truncate", classNames),
401
- ref: forwardedRef
402
- }, children);
403
- } finally {
404
- _effect.f();
405
- }
731
+ return /* @__PURE__ */ React4.createElement("span", {
732
+ ...rootProps,
733
+ className: mx3("grow truncate", classNames),
734
+ ref: forwardedRef
735
+ }, children);
406
736
  });
407
737
  ListboxOptionLabel.displayName = LISTBOX_OPTION_LABEL_NAME;
408
738
  var ListboxOptionIndicator = /* @__PURE__ */ forwardRef3((props, forwardedRef) => {
409
- var _effect = _useSignals3();
410
- try {
411
- const { __listboxOptionScope, classNames, ...rootProps } = props;
412
- const { isSelected } = useListboxOptionContext(LISTBOX_OPTION_INDICATOR_NAME, __listboxOptionScope);
413
- return /* @__PURE__ */ React3.createElement(Icon2, {
414
- icon: "ph--check--regular",
415
- ...rootProps,
416
- classNames: mx3(!isSelected && "invisible", classNames),
417
- ref: forwardedRef
418
- });
419
- } finally {
420
- _effect.f();
421
- }
739
+ const { __listboxOptionScope, classNames, ...rootProps } = props;
740
+ const { isSelected } = useListboxOptionContext(LISTBOX_OPTION_INDICATOR_NAME, __listboxOptionScope);
741
+ return /* @__PURE__ */ React4.createElement(Icon3, {
742
+ icon: "ph--check--regular",
743
+ ...rootProps,
744
+ classNames: mx3(!isSelected && "invisible", classNames),
745
+ ref: forwardedRef
746
+ });
422
747
  });
423
748
  ListboxOptionIndicator.displayName = LISTBOX_OPTION_INDICATOR_NAME;
424
749
  var Listbox = {
@@ -429,13 +754,17 @@ var Listbox = {
429
754
  };
430
755
  export {
431
756
  Combobox,
757
+ GlobalFilterProvider,
432
758
  Listbox,
433
759
  SearchList,
434
- commandItem,
435
760
  createListboxScope,
436
- searchListItem,
437
761
  translationKey,
438
762
  translations,
439
- useListboxContext
763
+ useGlobalFilter,
764
+ useGlobalFilteredObjects,
765
+ useListboxContext,
766
+ useSearchListInput,
767
+ useSearchListItem,
768
+ useSearchListResults
440
769
  };
441
770
  //# sourceMappingURL=index.mjs.map