Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/esm/useAutocomplete/useAutocomplete.d.ts 15.5 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
  import * as React from 'react';
  import { PartiallyRequired } from '@mui/types';
  export interface CreateFilterOptionsConfig<Value> {
    ignoreAccents?: boolean;
    ignoreCase?: boolean;
    limit?: number;
    matchFrom?: 'any' | 'start';
    stringify?: (option: Value) => string;
    trim?: boolean;
  }
  export interface FilterOptionsState<Value> {
    inputValue: string;
    getOptionLabel: (option: Value) => string;
  }
  export interface AutocompleteGroupedOption<Value = string> {
    key: number;
    index: number;
    group: string;
    options: Value[];
  }
  export function createFilterOptions<Value>(config?: CreateFilterOptionsConfig<Value>): (options: Value[], state: FilterOptionsState<Value>) => Value[];
  export type AutocompleteFreeSoloValueMapping<FreeSolo> = FreeSolo extends true ? string : never;
  export type AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo> = Multiple extends true ? Array<Value | AutocompleteFreeSoloValueMapping<FreeSolo>> : DisableClearable extends true ? NonNullable<Value | AutocompleteFreeSoloValueMapping<FreeSolo>> : Value | null | AutocompleteFreeSoloValueMapping<FreeSolo>;
  export interface UseAutocompleteProps<Value, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined> {
    /**
     * @internal The prefix of the state class name, temporary for Joy UI
     * @default 'Mui'
     */
    unstable_classNamePrefix?: string;
    /**
     * @internal
     * Temporary for Joy UI because the parent listbox is the document object
     * TODO v6: Normalize the logic and remove this param.
     */
    unstable_isActiveElementInListbox?: (listbox: React.RefObject<HTMLElement | null>) => boolean;
    /**
     * If `true`, the portion of the selected suggestion that the user hasn't typed,
     * known as the completion string, appears inline after the input cursor in the textbox.
     * The inline completion string is visually highlighted and has a selected state.
     * @default false
     */
    autoComplete?: boolean;
    /**
     * If `true`, the first option is automatically highlighted.
     * @default false
     */
    autoHighlight?: boolean;
    /**
     * If `true`, the selected option becomes the value of the input
     * when the Autocomplete loses focus unless the user chooses
     * a different option or changes the character string in the input.
     *
     * When using the `freeSolo` mode, the typed value will be the input value
     * if the Autocomplete loses focus without highlighting an option.
     * @default false
     */
    autoSelect?: boolean;
    /**
     * Control if the input should be blurred when an option is selected:
     *
     * - `false` the input is not blurred.
     * - `true` the input is always blurred.
     * - `touch` the input is blurred after a touch event.
     * - `mouse` the input is blurred after a mouse event.
     * @default false
     */
    blurOnSelect?: 'touch' | 'mouse' | true | false;
    /**
     * If `true`, the input's text is cleared on blur if no value is selected.
     *
     * Set it to `true` if you want to help the user enter a new value.
     * Set it to `false` if you want to help the user resume their search.
     * @default !props.freeSolo
     */
    clearOnBlur?: boolean;
    /**
     * If `true`, clear all values when the user presses escape and the popup is closed.
     * @default false
     */
    clearOnEscape?: boolean;
    /**
     * The component name that is using this hook. Used for warnings.
     */
    componentName?: string;
    /**
     * The default value. Use when the component is not controlled.
     * @default props.multiple ? [] : null
     */
    defaultValue?: AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo>;
    /**
     * If `true`, the input can't be cleared.
     * @default false
     */
    disableClearable?: DisableClearable;
    /**
     * If `true`, the popup won't close when a value is selected.
     * @default false
     */
    disableCloseOnSelect?: boolean;
    /**
     * If `true`, the component is disabled.
     * @default false
     */
    disabled?: boolean;
    /**
     * If `true`, will allow focus on disabled items.
     * @default false
     */
    disabledItemsFocusable?: boolean;
    /**
     * If `true`, the list box in the popup will not wrap focus.
     * @default false
     */
    disableListWrap?: boolean;
    /**
     * A function that determines the filtered options to be rendered on search.
     *
     * @default createFilterOptions()
     * @param {Value[]} options The options to render.
     * @param {object} state The state of the component.
     * @returns {Value[]}
     */
    filterOptions?: (options: Value[], state: FilterOptionsState<Value>) => Value[];
    /**
     * If `true`, hide the selected options from the list box.
     * @default false
     */
    filterSelectedOptions?: boolean;
    /**
     * If `true`, the Autocomplete is free solo, meaning that the user input is not bound to provided options.
     * @default false
     */
    freeSolo?: FreeSolo;
    /**
     * Used to determine the disabled state for a given option.
     *
     * @param {Value} option The option to test.
     * @template Value The option shape. Will be the same shape as an item of the options.
     * @returns {boolean}
     */
    getOptionDisabled?: (option: Value) => boolean;
    /**
     * Used to determine the key for a given option.
     * This can be useful when the labels of options are not unique (since labels are used as keys by default).
     *
     * @param {Value} option The option to get the key for.
     * @returns {string | number}
     */
    getOptionKey?: (option: Value | AutocompleteFreeSoloValueMapping<FreeSolo>) => string | number;
    /**
     * Used to determine the string value for a given option.
     * It's used to fill the input (and the list box options if `renderOption` is not provided).
     *
     * If used in free solo mode, it must accept both the type of the options and a string.
     *
     * @param {Value} option
     * @returns {string}
     * @default (option) => option.label ?? option
     */
    getOptionLabel?: (option: Value | AutocompleteFreeSoloValueMapping<FreeSolo>) => string;
    /**
     * If provided, the options will be grouped under the returned string.
     * The groupBy value is also used as the text for group headings when `renderGroup` is not provided.
     *
     * @param {Value} option The Autocomplete option.
     * @returns {string}
     */
    groupBy?: (option: Value) => string;
  
    /**
     * If `true`, the component handles the "Home" and "End" keys when the popup is open.
     * It should move focus to the first option and last option, respectively.
     * @default !props.freeSolo
     */
    handleHomeEndKeys?: boolean;
    /**
     * This prop is used to help implement the accessibility logic.
     * If you don't provide an id it will fall back to a randomly generated one.
     */
    id?: string;
    /**
     * If `true`, the highlight can move to the input.
     * @default false
     */
    includeInputInList?: boolean;
    /**
     * The input value.
     */
    inputValue?: string;
    /**
     * Used to determine if the option represents the given value.
     * Uses strict equality by default.
     * ⚠️ Both arguments need to be handled, an option can only match with one value.
     *
     * @param {Value} option The option to test.
     * @param {Value} value The value to test against.
     * @returns {boolean}
     */
    isOptionEqualToValue?: (option: Value, value: Value) => boolean;
    /**
     * If `true`, `value` must be an array and the menu will support multiple selections.
     * @default false
     */
    multiple?: Multiple;
    /**
     * Callback fired when the value changes.
     *
     * @param {React.SyntheticEvent} event The event source of the callback.
     * @param {Value|Value[]} value The new value of the component.
     * @param {string} reason One of "createOption", "selectOption", "removeOption", "blur" or "clear".
     * @param {string} [details]
     */
    onChange?: (event: React.SyntheticEvent, value: AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo>, reason: AutocompleteChangeReason, details?: AutocompleteChangeDetails<Value>) => void;
    /**
     * Callback fired when the popup requests to be closed.
     * Use in controlled mode (see open).
     *
     * @param {React.SyntheticEvent} event The event source of the callback.
     * @param {string} reason Can be: `"toggleInput"`, `"escape"`, `"selectOption"`, `"removeOption"`, `"blur"`.
     */
    onClose?: (event: React.SyntheticEvent, reason: AutocompleteCloseReason) => void;
    /**
     * Callback fired when the highlight option changes.
     *
     * @param {React.SyntheticEvent} event The event source of the callback.
     * @param {Value} option The highlighted option.
     * @param {string} reason Can be: `"keyboard"`, `"mouse"`, `"touch"`.
     */
    onHighlightChange?: (event: React.SyntheticEvent, option: Value | null, reason: AutocompleteHighlightChangeReason) => void;
    /**
     * Callback fired when the input value changes.
     *
     * @param {React.SyntheticEvent} event The event source of the callback.
     * @param {string} value The new value of the text input.
     * @param {string} reason Can be: `"input"` (user input), `"reset"` (programmatic change), `"clear"`, `"blur"`, `"selectOption"`, `"removeOption"`
     */
    onInputChange?: (event: React.SyntheticEvent, value: string, reason: AutocompleteInputChangeReason) => void;
    /**
     * Callback fired when the popup requests to be opened.
     * Use in controlled mode (see open).
     *
     * @param {React.SyntheticEvent} event The event source of the callback.
     */
    onOpen?: (event: React.SyntheticEvent) => void;
    /**
     * If `true`, the component is shown.
     */
    open?: boolean;
    /**
     * If `true`, the popup will open on input focus.
     * @default false
     */
    openOnFocus?: boolean;
    /**
     * A list of options that will be shown in the Autocomplete.
     */
    options: ReadonlyArray<Value>;
    /**
     * If `true`, the component becomes readonly. It is also supported for multiple tags where the tag cannot be deleted.
     * @default false
     */
    readOnly?: boolean;
    /**
     * If `true`, the input's text is selected on focus.
     * It helps the user clear the selected value.
     * @default !props.freeSolo
     */
    selectOnFocus?: boolean;
    /**
     * The value of the autocomplete.
     *
     * The value must have reference equality with the option in order to be selected.
     * You can customize the equality behavior with the `isOptionEqualToValue` prop.
     */
    value?: AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo>;
  }
  export interface UseAutocompleteParameters<Value, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined> extends UseAutocompleteProps<Value, Multiple, DisableClearable, FreeSolo> {}
  export type AutocompleteHighlightChangeReason = 'keyboard' | 'mouse' | 'touch';
  export type AutocompleteChangeReason = 'createOption' | 'selectOption' | 'removeOption' | 'clear' | 'blur';
  export interface AutocompleteChangeDetails<Value = string> {
    option: Value;
  }
  export type AutocompleteCloseReason = 'createOption' | 'toggleInput' | 'escape' | 'selectOption' | 'removeOption' | 'blur';
  export type AutocompleteInputChangeReason = 'input' | 'reset' | 'clear' | 'blur' | 'selectOption' | 'removeOption';
  export type AutocompleteGetItemProps<Multiple extends boolean | undefined> = Multiple extends true ? (args: {
    index: number;
  }) => {
    key: number;
    'data-item-index': number;
    tabIndex: -1;
    onDelete: (event: any) => void;
  } : (args?: {
    index?: number;
  }) => {
    'data-item-index': number;
    tabIndex: -1;
    onDelete: (event: any) => void;
  };
  export type AutocompleteGetTagProps = ({
    index
  }: {
    index: number;
  }) => {
    key: number;
    'data-tag-index': number;
    tabIndex: -1;
    onDelete: (event: any) => void;
  };
  export function useAutocomplete<Value, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false>(props: PartiallyRequired<UseAutocompleteProps<Value, Multiple, DisableClearable, FreeSolo>, 'groupBy'>): UseAutocompleteReturnValue<Value, Multiple, DisableClearable, FreeSolo, true>;
  export function useAutocomplete<Value, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false>(props: Omit<UseAutocompleteProps<Value, Multiple, DisableClearable, FreeSolo>, 'groupBy'>): UseAutocompleteReturnValue<Value, Multiple, DisableClearable, FreeSolo, false>;
  export interface UseAutocompleteRenderedOption<Value> {
    option: Value;
    index: number;
  }
  export interface UseAutocompleteReturnValue<Value, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false, HasGroupBy extends boolean = false> {
    /**
     * Resolver for the root slot's props.
     * @param externalProps props for the root slot
     * @returns props that should be spread on the root slot
     */
    getRootProps: (externalProps?: any) => React.HTMLAttributes<HTMLDivElement>;
    /**
     * Resolver for the input element's props.
     * @returns props that should be spread on the input element
     */
    getInputProps: () => React.InputHTMLAttributes<HTMLInputElement> & {
      ref: React.Ref<HTMLInputElement>;
    };
    /**
     * Resolver for the input label element's props.
     * @returns props that should be spread on the input label element
     */
    getInputLabelProps: () => Omit<React.HTMLAttributes<HTMLLabelElement>, 'color'>;
    /**
     * Resolver for the `clear` button element's props.
     * @returns props that should be spread on the *clear* button element
     */
    getClearProps: () => React.HTMLAttributes<HTMLButtonElement>;
    /**
     * An item props getter
     */
    getItemProps: AutocompleteGetItemProps<Multiple>;
    /**
     * Resolver for the popup icon's props.
     * @returns props that should be spread on the popup icon
     */
    getPopupIndicatorProps: () => React.HTMLAttributes<HTMLButtonElement>;
    /**
     * @deprecated Use `getItemProps` instead
     *
     * A tag props getter.
     */
    getTagProps: AutocompleteGetTagProps;
    /**
     * Resolver for the listbox component's props.
     * @returns props that should be spread on the listbox component
     */
    getListboxProps: () => React.HTMLAttributes<HTMLUListElement>;
    /**
     * Resolver for the rendered option element's props.
     * @param renderedOption option rendered on the Autocomplete
     * @returns props that should be spread on the li element
     */
    getOptionProps: (renderedOption: UseAutocompleteRenderedOption<Value>) => React.HTMLAttributes<HTMLLIElement> & {
      key: any;
    };
    /**
     * Id for the Autocomplete.
     */
    id: string;
    /**
     * The input value.
     */
    inputValue: string;
    /**
     * The value of the autocomplete.
     */
    value: AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo>;
    /**
     * If `true`, the component input has some values.
     */
    dirty: boolean;
    /**
     * If `true`, the listbox is being displayed.
     */
    expanded: boolean;
    /**
     * If `true`, the popup is open on the component.
     */
    popupOpen: boolean;
    /**
     * If `true`, the component is focused.
     */
    focused: boolean;
    /**
     * An HTML element that is used to set the position of the component.
     */
    anchorEl: null | HTMLElement;
    /**
     * Setter for the component `anchorEl`.
     * @returns function for setting `anchorEl`
     */
    setAnchorEl: () => void;
    /**
     * Index of the focused item for the component.
     */
    focusedItem: number;
    /**
     * @deprecated Use `focusedItem` instead
     *
     * Index of the focused tag for the component.
     */
    focusedTag: number;
    /**
     * The options to render.
     * - If `groupBy` is provided, the options are grouped and represented as `AutocompleteGroupedOption<Value>[]`.
     * - Otherwise, the options are represented as a flat array of `Value[]`.
     */
    groupedOptions: HasGroupBy extends true ? AutocompleteGroupedOption<Value>[] : Value[];
  }
  export default useAutocomplete;