@dxos/react-ui-searchlist 0.8.4-main.c1de068 → 0.8.4-main.c85a9c8dae

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