@dccs/react-autocomplete-mui
Version:
React-Autocomplete without the tears
1 lines • 408 kB
JavaScript
(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{208:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",(function(){return Autocomplete_Autocomplete}));var react=__webpack_require__(0),Autocomplete=__webpack_require__(844),TextField=__webpack_require__(843);var lib=__webpack_require__(143),__assign=function(){return(__assign=Object.assign||function(t){for(var s,i=1,n=arguments.length;i<n;i++)for(var p in s=arguments[i])Object.prototype.hasOwnProperty.call(s,p)&&(t[p]=s[p]);return t}).apply(this,arguments)},__rest=function(s,e){var t={};for(var p in s)Object.prototype.hasOwnProperty.call(s,p)&&e.indexOf(p)<0&&(t[p]=s[p]);if(null!=s&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(p=Object.getOwnPropertySymbols(s);i<p.length;i++)e.indexOf(p[i])<0&&Object.prototype.propertyIsEnumerable.call(s,p[i])&&(t[p[i]]=s[p[i]])}return t};function DefaultAutocomplete(props){var onChange=props.onChange,onInputChange=(props.variant,props.onInputChange),textFieldProps=props.textFieldProps,keyProp=props.keyProp,textProp=props.textProp,options=props.options,value=props.value,highlightQuery=props.highlightQuery,highlightQueryStyle=props.highlightQueryStyle,others=__rest(props,["onChange","variant","onInputChange","textFieldProps","keyProp","textProp","options","value","highlightQuery","highlightQueryStyle"]),_a=react.useState(keyToOption(value)),selectedOption=_a[0],setSelectedOption=_a[1],_b=react.useState(""),inputValue=_b[0],setInputValue=_b[1];function keyToOption(key){if(key&&options&&options.length>0){var option=options.find((function(o){return getKeyFromOption(o)===key}));if(option)return option;console.error("@dccs/react-autocomplete-mui: no option found for "+key+"!")}return""}function getTextFromOption(option){var text=textProp(option);return text||(console.error("@dccs/react-autocomplete-mui: TextProp returned undefiend or null!",option),option.toString?option.toString():"")}function getKeyFromOption(option){var key=keyProp(option);if(key)return key;console.error("@dccs/react-autocomplete-mui: KeyProp returned undefiend or null!",option)}return react.useEffect((function(){setSelectedOption(keyToOption(value))}),[value]),react.createElement(Autocomplete.a,__assign({getOptionLabel:function handleGetOptionLabel(option){return option?getTextFromOption(option):""},renderOption:function renderOption(option,state){return option?highlightQuery?Object(lib.HighlightQuery)(getTextFromOption(option),state.inputValue,highlightQueryStyle):getTextFromOption(option):""},onChange:function handleChange(e,option){setSelectedOption(option),onChange&&onChange(e,option?getKeyFromOption(option):void 0)},onInputChange:function handleInputChange(e,query,reason){setInputValue(query||""),onInputChange&&onInputChange(e,query,reason)},options:options,value:selectedOption,filterOptions:function handleFilterOptions(oArray,state){return inputValue?oArray.filter((function(o){return function stringCompare(a,b){return a===b||!!a.toLowerCase().includes(b.toLowerCase())}(getTextFromOption(o),inputValue)})):oArray},renderInput:function(params){return react.createElement(TextField.a,__assign({},params,{autoComplete:"off"},textFieldProps))}},others))}try{DefaultAutocomplete.displayName="DefaultAutocomplete",DefaultAutocomplete.__docgenInfo={description:"",displayName:"DefaultAutocomplete",props:{variant:{defaultValue:null,description:"",name:"variant",required:!1,type:{name:'"default"'}},options:{defaultValue:null,description:"list of options",name:"options",required:!1,type:{name:"T[]"}},textProp:{defaultValue:null,description:"should return text which should be displayed when option is selected and in list of options",name:"textProp",required:!0,type:{name:"(option: T) => string"}},keyProp:{defaultValue:null,description:"should return property of option that should be used to compare two options and which should be returned by onChange as value\nif the whole object should be returned in onChange as value just give define (o)=>o as keyProp",name:"keyProp",required:!0,type:{name:"(option: T) => any"}},onChange:{defaultValue:null,description:"called when option has been selected",name:"onChange",required:!1,type:{name:"(e: ChangeEvent<{}>, value: any) => void"}},textFieldProps:{defaultValue:null,description:"properties which will be passed to the input",name:"textFieldProps",required:!1,type:{name:"TextFieldProps"}},highlightQuery:{defaultValue:null,description:"set to true if current query should be highlighted in option list",name:"highlightQuery",required:!1,type:{name:"boolean"}},highlightQueryStyle:{defaultValue:null,description:"style that should be applied to the part of the option that matches the current query",name:"highlightQueryStyle",required:!1,type:{name:"CSSProperties"}},classes:{defaultValue:null,description:"Override or extend the styles applied to the component.",name:"classes",required:!1,type:{name:"Partial<Record<AutocompleteClassKey, string>>"}},loading:{defaultValue:null,description:"If `true`, the component is in a loading state.",name:"loading",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"The default input value. Use when the component is not controlled.",name:"defaultValue",required:!1,type:{name:"any"}},defaultChecked:{defaultValue:null,description:"",name:"defaultChecked",required:!1,type:{name:"boolean"}},suppressContentEditableWarning:{defaultValue:null,description:"",name:"suppressContentEditableWarning",required:!1,type:{name:"boolean"}},suppressHydrationWarning:{defaultValue:null,description:"",name:"suppressHydrationWarning",required:!1,type:{name:"boolean"}},accessKey:{defaultValue:null,description:"",name:"accessKey",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"",name:"className",required:!1,type:{name:"string"}},contentEditable:{defaultValue:null,description:"",name:"contentEditable",required:!1,type:{name:"boolean"}},contextMenu:{defaultValue:null,description:"",name:"contextMenu",required:!1,type:{name:"string"}},dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"string"}},draggable:{defaultValue:null,description:"",name:"draggable",required:!1,type:{name:"boolean"}},hidden:{defaultValue:null,description:"",name:"hidden",required:!1,type:{name:"boolean"}},id:{defaultValue:null,description:"This prop is used to help implement the accessibility logic.\nIf you don't provide this prop. It falls back to a randomly generated id.",name:"id",required:!1,type:{name:"string"}},lang:{defaultValue:null,description:"",name:"lang",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"",name:"placeholder",required:!1,type:{name:"string"}},slot:{defaultValue:null,description:"",name:"slot",required:!1,type:{name:"string"}},spellCheck:{defaultValue:null,description:"",name:"spellCheck",required:!1,type:{name:"boolean"}},style:{defaultValue:null,description:"",name:"style",required:!1,type:{name:"CSSProperties"}},tabIndex:{defaultValue:null,description:"",name:"tabIndex",required:!1,type:{name:"number"}},title:{defaultValue:null,description:"",name:"title",required:!1,type:{name:"string"}},inputMode:{defaultValue:null,description:"",name:"inputMode",required:!1,type:{name:"string"}},is:{defaultValue:null,description:"",name:"is",required:!1,type:{name:"string"}},radioGroup:{defaultValue:null,description:"",name:"radioGroup",required:!1,type:{name:"string"}},role:{defaultValue:null,description:"",name:"role",required:!1,type:{name:"string"}},about:{defaultValue:null,description:"",name:"about",required:!1,type:{name:"string"}},datatype:{defaultValue:null,description:"",name:"datatype",required:!1,type:{name:"string"}},inlist:{defaultValue:null,description:"",name:"inlist",required:!1,type:{name:"any"}},prefix:{defaultValue:null,description:"",name:"prefix",required:!1,type:{name:"string"}},property:{defaultValue:null,description:"",name:"property",required:!1,type:{name:"string"}},resource:{defaultValue:null,description:"",name:"resource",required:!1,type:{name:"string"}},typeof:{defaultValue:null,description:"",name:"typeof",required:!1,type:{name:"string"}},vocab:{defaultValue:null,description:"",name:"vocab",required:!1,type:{name:"string"}},autoCapitalize:{defaultValue:null,description:"",name:"autoCapitalize",required:!1,type:{name:"string"}},autoCorrect:{defaultValue:null,description:"",name:"autoCorrect",required:!1,type:{name:"string"}},autoSave:{defaultValue:null,description:"",name:"autoSave",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"",name:"color",required:!1,type:{name:"string"}},itemProp:{defaultValue:null,description:"",name:"itemProp",required:!1,type:{name:"string"}},itemScope:{defaultValue:null,description:"",name:"itemScope",required:!1,type:{name:"boolean"}},itemType:{defaultValue:null,description:"",name:"itemType",required:!1,type:{name:"string"}},itemID:{defaultValue:null,description:"",name:"itemID",required:!1,type:{name:"string"}},itemRef:{defaultValue:null,description:"",name:"itemRef",required:!1,type:{name:"string"}},results:{defaultValue:null,description:"",name:"results",required:!1,type:{name:"number"}},security:{defaultValue:null,description:"",name:"security",required:!1,type:{name:"string"}},unselectable:{defaultValue:null,description:"",name:"unselectable",required:!1,type:{name:'"on" | "off"'}},"aria-activedescendant":{defaultValue:null,description:"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",name:"aria-activedescendant",required:!1,type:{name:"string"}},"aria-atomic":{defaultValue:null,description:"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.",name:"aria-atomic",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-autocomplete":{defaultValue:null,description:"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.",name:"aria-autocomplete",required:!1,type:{name:'"none" | "inline" | "list" | "both"'}},"aria-busy":{defaultValue:null,description:"Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.",name:"aria-busy",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-checked":{defaultValue:null,description:'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',name:"aria-checked",required:!1,type:{name:'boolean | "false" | "true" | "mixed"'}},"aria-colcount":{defaultValue:null,description:"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.",name:"aria-colcount",required:!1,type:{name:"number"}},"aria-colindex":{defaultValue:null,description:"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.",name:"aria-colindex",required:!1,type:{name:"number"}},"aria-colspan":{defaultValue:null,description:"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",name:"aria-colspan",required:!1,type:{name:"number"}},"aria-controls":{defaultValue:null,description:"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.",name:"aria-controls",required:!1,type:{name:"string"}},"aria-current":{defaultValue:null,description:"Indicates the element that represents the current item within a container or set of related elements.",name:"aria-current",required:!1,type:{name:'boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time"'}},"aria-describedby":{defaultValue:null,description:"Identifies the element (or elements) that describes the object.\n@see aria-labelledby",name:"aria-describedby",required:!1,type:{name:"string"}},"aria-details":{defaultValue:null,description:"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",name:"aria-details",required:!1,type:{name:"string"}},"aria-disabled":{defaultValue:null,description:"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.",name:"aria-disabled",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-dropeffect":{defaultValue:null,description:"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1",name:"aria-dropeffect",required:!1,type:{name:'"none" | "copy" | "execute" | "link" | "move" | "popup"'}},"aria-errormessage":{defaultValue:null,description:"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.",name:"aria-errormessage",required:!1,type:{name:"string"}},"aria-expanded":{defaultValue:null,description:"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",name:"aria-expanded",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-flowto":{defaultValue:null,description:"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.",name:"aria-flowto",required:!1,type:{name:"string"}},"aria-grabbed":{defaultValue:null,description:'Indicates an element\'s "grabbed" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1',name:"aria-grabbed",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-haspopup":{defaultValue:null,description:"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",name:"aria-haspopup",required:!1,type:{name:'boolean | "listbox" | "false" | "true" | "menu" | "tree" | "grid" | "dialog"'}},"aria-hidden":{defaultValue:null,description:"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.",name:"aria-hidden",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-invalid":{defaultValue:null,description:"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.",name:"aria-invalid",required:!1,type:{name:'boolean | "false" | "true" | "grammar" | "spelling"'}},"aria-keyshortcuts":{defaultValue:null,description:"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",name:"aria-keyshortcuts",required:!1,type:{name:"string"}},"aria-label":{defaultValue:null,description:"Defines a string value that labels the current element.\n@see aria-labelledby.",name:"aria-label",required:!1,type:{name:"string"}},"aria-labelledby":{defaultValue:null,description:"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.",name:"aria-labelledby",required:!1,type:{name:"string"}},"aria-level":{defaultValue:null,description:"Defines the hierarchical level of an element within a structure.",name:"aria-level",required:!1,type:{name:"number"}},"aria-live":{defaultValue:null,description:"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",name:"aria-live",required:!1,type:{name:'"off" | "assertive" | "polite"'}},"aria-modal":{defaultValue:null,description:"Indicates whether an element is modal when displayed.",name:"aria-modal",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-multiline":{defaultValue:null,description:"Indicates whether a text box accepts multiple lines of input or only a single line.",name:"aria-multiline",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-multiselectable":{defaultValue:null,description:"Indicates that the user may select more than one item from the current selectable descendants.",name:"aria-multiselectable",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-orientation":{defaultValue:null,description:"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",name:"aria-orientation",required:!1,type:{name:'"horizontal" | "vertical"'}},"aria-owns":{defaultValue:null,description:"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.",name:"aria-owns",required:!1,type:{name:"string"}},"aria-placeholder":{defaultValue:null,description:"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.",name:"aria-placeholder",required:!1,type:{name:"string"}},"aria-posinset":{defaultValue:null,description:"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.",name:"aria-posinset",required:!1,type:{name:"number"}},"aria-pressed":{defaultValue:null,description:'Indicates the current "pressed" state of toggle buttons.\n@see aria-checked\n@see aria-selected.',name:"aria-pressed",required:!1,type:{name:'boolean | "false" | "true" | "mixed"'}},"aria-readonly":{defaultValue:null,description:"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.",name:"aria-readonly",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-relevant":{defaultValue:null,description:"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.",name:"aria-relevant",required:!1,type:{name:'"additions" | "additions text" | "all" | "removals" | "text"'}},"aria-required":{defaultValue:null,description:"Indicates that user input is required on the element before a form may be submitted.",name:"aria-required",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-roledescription":{defaultValue:null,description:"Defines a human-readable, author-localized description for the role of an element.",name:"aria-roledescription",required:!1,type:{name:"string"}},"aria-rowcount":{defaultValue:null,description:"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.",name:"aria-rowcount",required:!1,type:{name:"number"}},"aria-rowindex":{defaultValue:null,description:"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.",name:"aria-rowindex",required:!1,type:{name:"number"}},"aria-rowspan":{defaultValue:null,description:"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",name:"aria-rowspan",required:!1,type:{name:"number"}},"aria-selected":{defaultValue:null,description:'Indicates the current "selected" state of various widgets.\n@see aria-checked\n@see aria-pressed.',name:"aria-selected",required:!1,type:{name:'boolean | "false" | "true"'}},"aria-setsize":{defaultValue:null,description:"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.",name:"aria-setsize",required:!1,type:{name:"number"}},"aria-sort":{defaultValue:null,description:"Indicates if items in a table or grid are sorted in ascending or descending order.",name:"aria-sort",required:!1,type:{name:'"none" | "ascending" | "descending" | "other"'}},"aria-valuemax":{defaultValue:null,description:"Defines the maximum allowed value for a range widget.",name:"aria-valuemax",required:!1,type:{name:"number"}},"aria-valuemin":{defaultValue:null,description:"Defines the minimum allowed value for a range widget.",name:"aria-valuemin",required:!1,type:{name:"number"}},"aria-valuenow":{defaultValue:null,description:"Defines the current value for a range widget.\n@see aria-valuetext.",name:"aria-valuenow",required:!1,type:{name:"number"}},"aria-valuetext":{defaultValue:null,description:"Defines the human readable text alternative of aria-valuenow for a range widget.",name:"aria-valuetext",required:!1,type:{name:"string"}},dangerouslySetInnerHTML:{defaultValue:null,description:"",name:"dangerouslySetInnerHTML",required:!1,type:{name:"{ __html: string; }"}},onCopy:{defaultValue:null,description:"",name:"onCopy",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onCopyCapture:{defaultValue:null,description:"",name:"onCopyCapture",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onCut:{defaultValue:null,description:"",name:"onCut",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onCutCapture:{defaultValue:null,description:"",name:"onCutCapture",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onPaste:{defaultValue:null,description:"",name:"onPaste",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onPasteCapture:{defaultValue:null,description:"",name:"onPasteCapture",required:!1,type:{name:"(event: ClipboardEvent<HTMLDivElement>) => void"}},onCompositionEnd:{defaultValue:null,description:"",name:"onCompositionEnd",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onCompositionEndCapture:{defaultValue:null,description:"",name:"onCompositionEndCapture",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onCompositionStart:{defaultValue:null,description:"",name:"onCompositionStart",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onCompositionStartCapture:{defaultValue:null,description:"",name:"onCompositionStartCapture",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onCompositionUpdate:{defaultValue:null,description:"",name:"onCompositionUpdate",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onCompositionUpdateCapture:{defaultValue:null,description:"",name:"onCompositionUpdateCapture",required:!1,type:{name:"(event: CompositionEvent<HTMLDivElement>) => void"}},onFocus:{defaultValue:null,description:"",name:"onFocus",required:!1,type:{name:"(event: FocusEvent<HTMLDivElement>) => void"}},onFocusCapture:{defaultValue:null,description:"",name:"onFocusCapture",required:!1,type:{name:"(event: FocusEvent<HTMLDivElement>) => void"}},onBlur:{defaultValue:null,description:"",name:"onBlur",required:!1,type:{name:"(event: FocusEvent<HTMLDivElement>) => void"}},onBlurCapture:{defaultValue:null,description:"",name:"onBlurCapture",required:!1,type:{name:"(event: FocusEvent<HTMLDivElement>) => void"}},onChangeCapture:{defaultValue:null,description:"",name:"onChangeCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onBeforeInput:{defaultValue:null,description:"",name:"onBeforeInput",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onBeforeInputCapture:{defaultValue:null,description:"",name:"onBeforeInputCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onInput:{defaultValue:null,description:"",name:"onInput",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onInputCapture:{defaultValue:null,description:"",name:"onInputCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onReset:{defaultValue:null,description:"",name:"onReset",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onResetCapture:{defaultValue:null,description:"",name:"onResetCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onSubmit:{defaultValue:null,description:"",name:"onSubmit",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onSubmitCapture:{defaultValue:null,description:"",name:"onSubmitCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onInvalid:{defaultValue:null,description:"",name:"onInvalid",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onInvalidCapture:{defaultValue:null,description:"",name:"onInvalidCapture",required:!1,type:{name:"(event: FormEvent<HTMLDivElement>) => void"}},onLoad:{defaultValue:null,description:"",name:"onLoad",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadCapture:{defaultValue:null,description:"",name:"onLoadCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onError:{defaultValue:null,description:"",name:"onError",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onErrorCapture:{defaultValue:null,description:"",name:"onErrorCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onKeyDown:{defaultValue:null,description:"",name:"onKeyDown",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onKeyDownCapture:{defaultValue:null,description:"",name:"onKeyDownCapture",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onKeyPress:{defaultValue:null,description:"",name:"onKeyPress",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onKeyPressCapture:{defaultValue:null,description:"",name:"onKeyPressCapture",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onKeyUp:{defaultValue:null,description:"",name:"onKeyUp",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onKeyUpCapture:{defaultValue:null,description:"",name:"onKeyUpCapture",required:!1,type:{name:"(event: KeyboardEvent<HTMLDivElement>) => void"}},onAbort:{defaultValue:null,description:"",name:"onAbort",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onAbortCapture:{defaultValue:null,description:"",name:"onAbortCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onCanPlay:{defaultValue:null,description:"",name:"onCanPlay",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onCanPlayCapture:{defaultValue:null,description:"",name:"onCanPlayCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onCanPlayThrough:{defaultValue:null,description:"",name:"onCanPlayThrough",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onCanPlayThroughCapture:{defaultValue:null,description:"",name:"onCanPlayThroughCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onDurationChange:{defaultValue:null,description:"",name:"onDurationChange",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onDurationChangeCapture:{defaultValue:null,description:"",name:"onDurationChangeCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEmptied:{defaultValue:null,description:"",name:"onEmptied",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEmptiedCapture:{defaultValue:null,description:"",name:"onEmptiedCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEncrypted:{defaultValue:null,description:"",name:"onEncrypted",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEncryptedCapture:{defaultValue:null,description:"",name:"onEncryptedCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEnded:{defaultValue:null,description:"",name:"onEnded",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onEndedCapture:{defaultValue:null,description:"",name:"onEndedCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadedData:{defaultValue:null,description:"",name:"onLoadedData",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadedDataCapture:{defaultValue:null,description:"",name:"onLoadedDataCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadedMetadata:{defaultValue:null,description:"",name:"onLoadedMetadata",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadedMetadataCapture:{defaultValue:null,description:"",name:"onLoadedMetadataCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadStart:{defaultValue:null,description:"",name:"onLoadStart",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onLoadStartCapture:{defaultValue:null,description:"",name:"onLoadStartCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPause:{defaultValue:null,description:"",name:"onPause",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPauseCapture:{defaultValue:null,description:"",name:"onPauseCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPlay:{defaultValue:null,description:"",name:"onPlay",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPlayCapture:{defaultValue:null,description:"",name:"onPlayCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPlaying:{defaultValue:null,description:"",name:"onPlaying",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onPlayingCapture:{defaultValue:null,description:"",name:"onPlayingCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onProgress:{defaultValue:null,description:"",name:"onProgress",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onProgressCapture:{defaultValue:null,description:"",name:"onProgressCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onRateChange:{defaultValue:null,description:"",name:"onRateChange",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onRateChangeCapture:{defaultValue:null,description:"",name:"onRateChangeCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSeeked:{defaultValue:null,description:"",name:"onSeeked",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSeekedCapture:{defaultValue:null,description:"",name:"onSeekedCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSeeking:{defaultValue:null,description:"",name:"onSeeking",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSeekingCapture:{defaultValue:null,description:"",name:"onSeekingCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onStalled:{defaultValue:null,description:"",name:"onStalled",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onStalledCapture:{defaultValue:null,description:"",name:"onStalledCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSuspend:{defaultValue:null,description:"",name:"onSuspend",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSuspendCapture:{defaultValue:null,description:"",name:"onSuspendCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onTimeUpdate:{defaultValue:null,description:"",name:"onTimeUpdate",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onTimeUpdateCapture:{defaultValue:null,description:"",name:"onTimeUpdateCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onVolumeChange:{defaultValue:null,description:"",name:"onVolumeChange",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onVolumeChangeCapture:{defaultValue:null,description:"",name:"onVolumeChangeCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onWaiting:{defaultValue:null,description:"",name:"onWaiting",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onWaitingCapture:{defaultValue:null,description:"",name:"onWaitingCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onAuxClick:{defaultValue:null,description:"",name:"onAuxClick",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onAuxClickCapture:{defaultValue:null,description:"",name:"onAuxClickCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onClick:{defaultValue:null,description:"",name:"onClick",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onClickCapture:{defaultValue:null,description:"",name:"onClickCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onContextMenu:{defaultValue:null,description:"",name:"onContextMenu",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onContextMenuCapture:{defaultValue:null,description:"",name:"onContextMenuCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onDoubleClick:{defaultValue:null,description:"",name:"onDoubleClick",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onDoubleClickCapture:{defaultValue:null,description:"",name:"onDoubleClickCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onDrag:{defaultValue:null,description:"",name:"onDrag",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragCapture:{defaultValue:null,description:"",name:"onDragCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragEnd:{defaultValue:null,description:"",name:"onDragEnd",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragEndCapture:{defaultValue:null,description:"",name:"onDragEndCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragEnter:{defaultValue:null,description:"",name:"onDragEnter",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragEnterCapture:{defaultValue:null,description:"",name:"onDragEnterCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragExit:{defaultValue:null,description:"",name:"onDragExit",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragExitCapture:{defaultValue:null,description:"",name:"onDragExitCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragLeave:{defaultValue:null,description:"",name:"onDragLeave",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragLeaveCapture:{defaultValue:null,description:"",name:"onDragLeaveCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragOver:{defaultValue:null,description:"",name:"onDragOver",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragOverCapture:{defaultValue:null,description:"",name:"onDragOverCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragStart:{defaultValue:null,description:"",name:"onDragStart",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDragStartCapture:{defaultValue:null,description:"",name:"onDragStartCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDrop:{defaultValue:null,description:"",name:"onDrop",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onDropCapture:{defaultValue:null,description:"",name:"onDropCapture",required:!1,type:{name:"(event: DragEvent<HTMLDivElement>) => void"}},onMouseDown:{defaultValue:null,description:"",name:"onMouseDown",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseDownCapture:{defaultValue:null,description:"",name:"onMouseDownCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseEnter:{defaultValue:null,description:"",name:"onMouseEnter",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseLeave:{defaultValue:null,description:"",name:"onMouseLeave",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseMove:{defaultValue:null,description:"",name:"onMouseMove",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseMoveCapture:{defaultValue:null,description:"",name:"onMouseMoveCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseOut:{defaultValue:null,description:"",name:"onMouseOut",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseOutCapture:{defaultValue:null,description:"",name:"onMouseOutCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseOver:{defaultValue:null,description:"",name:"onMouseOver",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseOverCapture:{defaultValue:null,description:"",name:"onMouseOverCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseUp:{defaultValue:null,description:"",name:"onMouseUp",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onMouseUpCapture:{defaultValue:null,description:"",name:"onMouseUpCapture",required:!1,type:{name:"(event: MouseEvent<HTMLDivElement, MouseEvent>) => void"}},onSelect:{defaultValue:null,description:"",name:"onSelect",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onSelectCapture:{defaultValue:null,description:"",name:"onSelectCapture",required:!1,type:{name:"(event: SyntheticEvent<HTMLDivElement, Event>) => void"}},onTouchCancel:{defaultValue:null,description:"",name:"onTouchCancel",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchCancelCapture:{defaultValue:null,description:"",name:"onTouchCancelCapture",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchEnd:{defaultValue:null,description:"",name:"onTouchEnd",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchEndCapture:{defaultValue:null,description:"",name:"onTouchEndCapture",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchMove:{defaultValue:null,description:"",name:"onTouchMove",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchMoveCapture:{defaultValue:null,description:"",name:"onTouchMoveCapture",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchStart:{defaultValue:null,description:"",name:"onTouchStart",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onTouchStartCapture:{defaultValue:null,description:"",name:"onTouchStartCapture",required:!1,type:{name:"(event: TouchEvent<HTMLDivElement>) => void"}},onPointerDown:{defaultValue:null,description:"",name:"onPointerDown",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerDownCapture:{defaultValue:null,description:"",name:"onPointerDownCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerMove:{defaultValue:null,description:"",name:"onPointerMove",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerMoveCapture:{defaultValue:null,description:"",name:"onPointerMoveCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerUp:{defaultValue:null,description:"",name:"onPointerUp",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerUpCapture:{defaultValue:null,description:"",name:"onPointerUpCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerCancel:{defaultValue:null,description:"",name:"onPointerCancel",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerCancelCapture:{defaultValue:null,description:"",name:"onPointerCancelCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerEnter:{defaultValue:null,description:"",name:"onPointerEnter",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerEnterCapture:{defaultValue:null,description:"",name:"onPointerEnterCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerLeave:{defaultValue:null,description:"",name:"onPointerLeave",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerLeaveCapture:{defaultValue:null,description:"",name:"onPointerLeaveCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerOver:{defaultValue:null,description:"",name:"onPointerOver",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerOverCapture:{defaultValue:null,description:"",name:"onPointerOverCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerOut:{defaultValue:null,description:"",name:"onPointerOut",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onPointerOutCapture:{defaultValue:null,description:"",name:"onPointerOutCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onGotPointerCapture:{defaultValue:null,description:"",name:"onGotPointerCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onGotPointerCaptureCapture:{defaultValue:null,description:"",name:"onGotPointerCaptureCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onLostPointerCapture:{defaultValue:null,description:"",name:"onLostPointerCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onLostPointerCaptureCapture:{defaultValue:null,description:"",name:"onLostPointerCaptureCapture",required:!1,type:{name:"(event: PointerEvent<HTMLDivElement>) => void"}},onScroll:{defaultValue:null,description:"",name:"onScroll",required:!1,type:{name:"(event: UIEvent<HTMLDivElement>) => void"}},onScrollCapture:{defaultValue:null,description:"",name:"onScrollCapture",required:!1,type:{name:"(event: UIEvent<HTMLDivElement>) => void"}},onWheel:{defaultValue:null,description:"",name:"onWheel",required:!1,type:{name:"(event: WheelEvent<HTMLDivElement>) => void"}},onWheelCapture:{defaultValue:null,description:"",name:"onWheelCapture",required:!1,type:{name:"(event: WheelEvent<HTMLDivElement>) => void"}},onAnimationStart:{defaultValue:null,description:"",name:"onAnimationStart",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onAnimationStartCapture:{defaultValue:null,description:"",name:"onAnimationStartCapture",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onAnimationEnd:{defaultValue:null,description:"",name:"onAnimationEnd",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onAnimationEndCapture:{defaultValue:null,description:"",name:"onAnimationEndCapture",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onAnimationIteration:{defaultValue:null,description:"",name:"onAnimationIteration",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onAnimationIterationCapture:{defaultValue:null,description:"",name:"onAnimationIterationCapture",required:!1,type:{name:"(event: AnimationEvent<HTMLDivElement>) => void"}},onTransitionEnd:{defaultValue:null,description:"",name:"onTransitionEnd",required:!1,type:{name:"(event: TransitionEvent<HTMLDivElement>) => void"}},onTransitionEndCapture:{defaultValue:null,description:"",name:"onTransitionEndCapture",required:!1,type:{name:"(event: TransitionEvent<HTMLDivElement>) => void"}},css:{defaultValue:null,description:"",name:"css",required:!1,type:{name:"InterpolationWithTheme<any>"}},ChipProps:{defaultValue:null,description:"Props applied to the [`Chip`](/api/chip/) element.",name:"ChipProps",required:!1,type:{name:"object"}},closeIcon:{defaultValue:null,description:"The icon to display in place of the default close icon.",name:"closeIcon",required:!1,type:{name:"ReactNode"}},clearText:{defaultValue:null,description:"Override the default text for the *clear* icon button.\n\nFor localization purposes, you can use the provided [translations](/guides/localization/).",name:"clearText",required:!1,type:{name:"string"}},closeText:{defaultValue:null,description:"Override the default text for the *close popup* icon button.\n\nFor localization purposes, you can use the provided [translations](/guides/localization/).",name:"closeText",required:!1,type:{name:"string"}},disabled:{defaultValue:null,description:"If `true`, the input will be disabled.",name:"disabled",required:!1,type:{name:"boolean"}},disablePortal:{defaultValue:null,description:"Disable the portal behavior.\nThe children stay within it's parent DOM hierarchy.",name:"disablePortal",required:!1,type:{name:"boolean"}},forcePopupIcon:{defaultValue:null,description:"Force the visibility display of the popup icon.",name:"forcePopupIcon",required:!1,type:{name:'boolean | "auto"'}},ListboxComponent:{defaultValue:null,description:"The component used to render the listbox.",name:"ListboxComponent",required:!1,type:{name:"ComponentType<HTMLAttributes<HTMLElement>>"}},ListboxProps:{defaultValue:null,description:"Props applied to the Listbox element.",name:"ListboxProps",required:!1,type:{name:"object"}},loadingText:{defaultValue:null,description:"Text to display when in a loading state.\n\nFor localization purposes, you can use the provided [translations](/guides/localization/).",name:"loadingText",required:!1,type:{name:"ReactNode"}},noOptionsText:{defaultValue:null,description:"Text to display when there are no options.\n\nFor localization purposes, you can use the provided [translations](/guides/localization/).",name:"noOptionsText",required:!1,type:{name:"ReactNode"}},openText:{defaultValue:null,description:"Override the default text for the *open popup* icon button.\n\nFor localization purposes, you can use the provided [translations](/guides/localization/).",name:"openText",required:!1,type:{name:"string"}},PaperComponent:{defaultValue:null,description:"The component used to render the body of the popup.",name:"PaperComponent",required:!1,type:{name:"ComponentType<HTMLAttributes<HTMLElement>>"}},PopperComponent:{defaultValue:null,description:"The component used to position the popup.",name:"PopperComponent",required:!1,type:{name:"ComponentType<PopperProps>"}},popupIcon:{defaultValue:null,description:"The icon to display in place of the default popup icon.",name:"popupIcon",required:!1,type:{name:"ReactNode"}},renderGroup:{defaultValue:null,description:"Render the group.\n@param option The group to render.\n@returns",name:"renderGroup",required:!1,type:{name:"(params: RenderGroupParams) => ReactNode"}},renderOption:{defaultValue:null,description:"Render the option, use `getOptionLabel` by default.\n@param option The option to render.\n@param state The state of the component.\n@returns",name:"renderOption",required:!1,type:{name:"(option: any, state: RenderOptionState) => ReactNode"}},renderTags:{defaultValue:null,description:"Render the selected value.\n@param value The `value` provided to the component.\n@param getTagProps A tag props getter.\n@returns",name:"renderTags",required:!1,type:{name:"(value: any, getTagProps: GetTagProps) => ReactNode"}},size:{defaultValue:null,description:"The size of the autocomplete.",name:"size",required:!1,type:{name:'"small" | "medium"'}},autoComplete:{defaultValue:null,description:"If `true`, the portion of the selected suggestion that has not been typed by the user,\nknown as the completion string, appears inline after the input cursor in the textbox.\nThe inline completion string is visually highlighted and has a selected state.",name:"autoComplete",required:!1,type:{name:"boolean"}},autoHighlight:{defaultValue:null,description:"If `true`, the first option is automatically highlighted.",name:"autoHighlight",required:!1,type:{name:"boolean"}},autoSelect:{defaultValue:null,description:"If `true`, the selected option becomes the value of the input\nwhen the Autocomplete loses focus unless the user chooses\na different option or changes the character string in the input.",name:"autoSelect",required:!1,type:{name:"boolean"}},blurOnSelect:{defaultValue:null,description:"Control if the input should be blurred when an option is selected:\n\n- `false` the input is not blurred.\n- `true` the input is always blurred.\n- `touch` the input is blurred after a touch event.\n- `mouse` the input is blurred after a mouse event.",name:"blurOnSelect",required:!1,type:{name:'boolean | "touch" | "mouse"'}},clearOnEscape:{defaultValue:null,description:"If `true`, clear all values when the user presses escape and the popup is closed.",name:"clearOnEscape",required:!1,type:{name:"boolean"}},debug:{defaultValue:null,description:"If `true`, the popup will ignore the blur event if the input if filled.\nYou can inspect the popup markup with your browser tools.\nConsider this option when you need to customize the component.",name:"debug",required:!1,type:{name:"boolean"}},disableClearable:{defaultValue:null,description:"If `true`, the input can't be cleared.",name:"disableClearable",required:!1,type:{name:"boolean"}},disa