@ahanapediatrics/react-volume-meter
Version:
A volume meter React component
20 lines • 248 kB
JavaScript
(window.webpackJsonp=window.webpackJsonp||[]).push([[0],{1029:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),function(module){var _storybook_react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(394);module._StorybookPreserveDecorators=!0,Object(_storybook_react__WEBPACK_IMPORTED_MODULE_0__.configure)([__webpack_require__(1063)],module)}.call(this,__webpack_require__(1030)(module))},1063:function(module,exports,__webpack_require__){var map={"./src/components/VolumeMeter.stories.tsx":1064};function webpackContext(req){var id=webpackContextResolve(req);return __webpack_require__(id)}function webpackContextResolve(req){if(!__webpack_require__.o(map,req)){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}return map[req]}webpackContext.keys=function webpackContextKeys(){return Object.keys(map)},webpackContext.resolve=webpackContextResolve,module.exports=webpackContext,webpackContext.id=1063},1064:function(module,exports,__webpack_require__){"use strict";var __importDefault=this&&this.__importDefault||function(mod){return mod&&mod.__esModule?mod:{default:mod}};Object.defineProperty(exports,"__esModule",{value:!0});const ahana_fp_1=__webpack_require__(389),storybook_state_1=__webpack_require__(1078);__webpack_require__(1070);const react_1=__importDefault(__webpack_require__(1)),__1=__webpack_require__(211),VolumeMeter_1=__webpack_require__(390);exports.default={title:"VolumeMeter",component:VolumeMeter_1.VolumeMeter};const getAudioContext=()=>{const audioContext=new AudioContext;return{audioContext:audioContext,contextState:audioContext.state}},instrumentGUM=owner=>{const originalGUM=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(owner),"getUserMedia");originalGUM?(console.log("Instrumenting GUM"),Object.defineProperty(owner,"getUserMedia",{configurable:originalGUM.configurable,enumerable:originalGUM.enumerable,value:function(constraints,...args){return console.log("Calling Native getUserMedia"),console.log("Constraints: "+JSON.stringify(constraints)),originalGUM.value.call(navigator.mediaDevices,constraints,...args)}})):console.log("Could not get GUM")};instrumentGUM(navigator.mediaDevices),instrumentGUM(navigator),exports.base=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.getUserMedia({audio:!0}).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState))),exports.base.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty()}))]};const selectStream=deviceId=>navigator.mediaDevices.getUserMedia({audio:{deviceId:deviceId}});exports.withInputSelection=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.enumerateDevices().then(devices=>{const audioDevices=devices.filter(d=>"audioinput"===d.kind);return store.set({audioDevices:audioDevices}),selectStream(audioDevices.map(d=>d.deviceId)[0])}).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState),react_1.default.createElement("button",{type:"button",onClick:()=>{console.log("Creating new AudioContext");const{audioContext:audioContext}=getAudioContext();store.set({audioContext:audioContext})}},"New Context"),react_1.default.createElement("div",null,react_1.default.createElement("select",{value:store.state.selectedId,onChange:e=>{store.set({selectedId:e.target.value}),selectStream(e.target.value).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e2=>{console.error("Error selecting stream"),console.error(e2)})}},react_1.default.createElement("option",{disabled:!0},"Please select an input..."),store.state.audioDevices.map(d=>react_1.default.createElement("option",{key:d.deviceId,value:d.deviceId},d.label)))))),exports.withInputSelection.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty(),audioDevices:[],selectedId:""}))]},exports.withActivateButton=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.getUserMedia({audio:!0}).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext,activateButton:onClick=>react_1.default.createElement("span",{onClick:onClick,style:{cursor:"pointer"}},"Go For Sound")}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState))),exports.withActivateButton.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty()}))]},exports.withNoInputStream=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState))),exports.withNoInputStream.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty()}))]},exports.withDisabledStream=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.getUserMedia({audio:!0}).then(stream=>{stream.getAudioTracks().map(t=>t.enabled=store.state.enabled),store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState),react_1.default.createElement("div",null,react_1.default.createElement("button",{onClick:()=>{store.state.stream.ifPresent(s=>s.getAudioTracks().map(t=>t.enabled=!store.state.enabled)),store.set({enabled:!store.state.enabled})}},store.state.enabled?"Mute":"Unmute")))),exports.withDisabledStream.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty(),enabled:!1}))]},exports.withStoppableStream=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.getUserMedia({audio:!0}).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState),react_1.default.createElement("div",null,react_1.default.createElement("button",{onClick:()=>{store.state.stream.ifPresent(s=>s.getAudioTracks().map(t=>t.stop()))}},"Stop"," ")))),exports.withStoppableStream.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty()}))]},exports.disabledMeter=({store:store})=>(store.state.audioContext.addEventListener("statechange",()=>{console.log("AudioContext state is now "+store.state.audioContext.state),store.set({contextState:store.state.audioContext.state})}),store.state.stream.isPresent()||navigator.mediaDevices.getUserMedia({audio:!0}).then(stream=>{store.set({stream:ahana_fp_1.Optional.of(stream)})}).catch(e=>{console.error("Error getting UserMedia"),console.error(e)}),react_1.default.createElement("div",null,react_1.default.createElement(VolumeMeter_1.VolumeMeter,{enabled:store.state.enabled,blocks:20,stream:store.state.stream,height:50,shape:__1.VmShape.VM_FLAT,width:300,audioContext:store.state.audioContext}),react_1.default.createElement("div",null,"Audio Context State: ",store.state.contextState),react_1.default.createElement("div",null,react_1.default.createElement("button",{onClick:()=>{store.set({enabled:!store.state.enabled})}},store.state.enabled?"Disabled":"Enable")))),exports.disabledMeter.story={decorators:[storybook_state_1.StateDecorator(Object.assign(Object.assign({},getAudioContext()),{stream:ahana_fp_1.Optional.empty(),enabled:!1}))]};try{exports.base.displayName="base",exports.base.__docgenInfo={description:"",displayName:"base",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#base"]={docgenInfo:exports.base.__docgenInfo,name:"base",path:"src/components/VolumeMeter.stories.tsx#base"})}catch(__react_docgen_typescript_loader_error){}try{exports.withInputSelection.displayName="withInputSelection",exports.withInputSelection.__docgenInfo={description:"",displayName:"withInputSelection",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<OptionsState>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#withInputSelection"]={docgenInfo:exports.withInputSelection.__docgenInfo,name:"withInputSelection",path:"src/components/VolumeMeter.stories.tsx#withInputSelection"})}catch(__react_docgen_typescript_loader_error){}try{exports.withActivateButton.displayName="withActivateButton",exports.withActivateButton.__docgenInfo={description:"",displayName:"withActivateButton",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#withActivateButton"]={docgenInfo:exports.withActivateButton.__docgenInfo,name:"withActivateButton",path:"src/components/VolumeMeter.stories.tsx#withActivateButton"})}catch(__react_docgen_typescript_loader_error){}try{exports.withNoInputStream.displayName="withNoInputStream",exports.withNoInputStream.__docgenInfo={description:"",displayName:"withNoInputStream",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#withNoInputStream"]={docgenInfo:exports.withNoInputStream.__docgenInfo,name:"withNoInputStream",path:"src/components/VolumeMeter.stories.tsx#withNoInputStream"})}catch(__react_docgen_typescript_loader_error){}try{exports.withDisabledStream.displayName="withDisabledStream",exports.withDisabledStream.__docgenInfo={description:"",displayName:"withDisabledStream",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State & { enabled: boolean; }>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#withDisabledStream"]={docgenInfo:exports.withDisabledStream.__docgenInfo,name:"withDisabledStream",path:"src/components/VolumeMeter.stories.tsx#withDisabledStream"})}catch(__react_docgen_typescript_loader_error){}try{exports.withStoppableStream.displayName="withStoppableStream",exports.withStoppableStream.__docgenInfo={description:"",displayName:"withStoppableStream",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#withStoppableStream"]={docgenInfo:exports.withStoppableStream.__docgenInfo,name:"withStoppableStream",path:"src/components/VolumeMeter.stories.tsx#withStoppableStream"})}catch(__react_docgen_typescript_loader_error){}try{exports.disabledMeter.displayName="disabledMeter",exports.disabledMeter.__docgenInfo={description:"",displayName:"disabledMeter",props:{store:{defaultValue:null,description:"",name:"store",required:!0,type:{name:"Store<State & { enabled: boolean; }>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/VolumeMeter.stories.tsx#disabledMeter"]={docgenInfo:exports.disabledMeter.__docgenInfo,name:"disabledMeter",path:"src/components/VolumeMeter.stories.tsx#disabledMeter"})}catch(__react_docgen_typescript_loader_error){}},1071:function(module,exports,__webpack_require__){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});const events_1=__webpack_require__(1072),functions_1=__webpack_require__(391);class Animator extends events_1.EventEmitter{constructor(ctx,renderer){super(),this.rafId=0,this.isStopping=!1,this.ctx=ctx,this.renderer=renderer}changeStream(s){const{isStopping:isStopping}=this;this.stop(),s.ifPresent(stream=>{var _a;if(stream.id===(null===(_a=this.stream)||void 0===_a?void 0:_a.id))isStopping||this.start();else{this.stream=stream;const a=functions_1.setupAnalyzer({audioContext:this.ctx,stream:stream});a.minDecibels=-100,a.maxDecibels=-30,a.fftSize=64,this.analyser=a}})}start(){this.renderer.start(),this.isStopping=!1,this.emit("start");const drawLoop=()=>{if(this.isStopping||!this.analyser)return void(this.isStopping=!1);const volume=(analyser=>{const buckets=new Uint8Array(analyser.frequencyBinCount);return analyser.getByteFrequencyData(buckets),buckets.reduce((a,b)=>a+b)/analyser.frequencyBinCount/128})(this.analyser);this.renderer.draw(volume),this.rafId=window.requestAnimationFrame(drawLoop)};drawLoop()}stop(){this.emit("stop"),this.renderer.stop(),this.isStopping=!0,window.cancelAnimationFrame(this.rafId)}}exports.Animator=Animator},1073:function(module,exports,__webpack_require__){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});const __1=__webpack_require__(211),MeterRenderer_1=__webpack_require__(392);class BlockRenderer extends MeterRenderer_1.MeterRenderer{constructor(ctx,{height:height,width:width,shape:shape=__1.VmShape.VM_STEPPED,blocks:blocks=5}){super(ctx,{height:height,width:width,shape:shape}),this.bucketCount=blocks,this.bucketSize=1/blocks,this.barWidth=width/(blocks+1),this.bucketCeilings=Array(blocks).fill(0).map((_,i)=>(i+1)*this.bucketSize),this.init()}draw(volume){super.draw(volume);const{prevVolume:prevVolume,canvasCtx:canvasCtx,barWidth:barWidth,height:height,shape:shape,bucketSize:bucketSize,bucketCount:bucketCount}=this,vol=Math.max(volume,.9*prevVolume);this.prevVolume=vol,this.clear(),this.bucketCeilings.forEach((bucketCeiling,i)=>{let color="grey";vol>bucketCeiling&&(color=bucketCeiling>.8?"red":"green"),canvasCtx.fillStyle=color,this.watchdogExpired&&(canvasCtx.fillStyle="orange");const x=barWidth*(bucketCount+1)*bucketSize*i,y=height-(shape===__1.VmShape.VM_STEPPED?height*(i+1)*(1/(bucketCount+1)):height);canvasCtx.fillRect(x,y,barWidth,height-y),this.watchdogExpired||bucketCeiling>vol&&vol>bucketCeiling-this.bucketSize&&(canvasCtx.fillStyle=vol>.8?"red":"green",canvasCtx.fillRect(x,y,vol%this.bucketSize/this.bucketSize*barWidth,height-y))})}}exports.BlockRenderer=BlockRenderer},1074:function(module,exports,__webpack_require__){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});const MeterRenderer_1=__webpack_require__(392);class CircleRenderer extends MeterRenderer_1.MeterRenderer{constructor(ctx,options){super(ctx,options),this.init()}draw(volume){super.draw(volume);const{prevVolume:prevVolume,canvasCtx:canvasCtx,height:height,width:width}=this,vol=Math.max(volume,.9*prevVolume);this.prevVolume=vol,this.clear();let color="green";vol>.8&&(color="red");const radius=Math.min(height,width)/2;canvasCtx.fillStyle="transparent",canvasCtx.strokeStyle="transparent",this.watchdogExpired&&(canvasCtx.fillStyle="orange"),canvasCtx.beginPath(),canvasCtx.arc(width/2,height/2,radius-10,0,2*Math.PI),canvasCtx.stroke(),canvasCtx.fill(),this.watchdogExpired||(canvasCtx.fillStyle=color,canvasCtx.beginPath(),canvasCtx.arc(width/2,height/2,(radius-10)*vol,0,2*Math.PI),canvasCtx.stroke(),canvasCtx.fill())}}exports.CircleRenderer=CircleRenderer},1075:function(module,exports,__webpack_require__){"use strict";var __importDefault=this&&this.__importDefault||function(mod){return mod&&mod.__esModule?mod:{default:mod}};Object.defineProperty(exports,"__esModule",{value:!0});const styled_components_1=__importDefault(__webpack_require__(1076));exports.StyledVolumeMeter=styled_components_1.default.div`
height: ${props=>props.height}px;
width: ${props=>props.width}px;
position: relative;
`,exports.MeterDisplay=styled_components_1.default.canvas`
display: ${props=>props.show?"block":"none"};
`;exports.Alert=styled_components_1.default.div`
position: absolute;
top: ${10}px;
bottom: ${10}px;
left: 0;
right: 0;
line-height: ${props=>props.height-20}px;
margin: auto;
text-align: center;
background-color: lightgray;
`,exports.Clickable=styled_components_1.default.span`
cursor: pointer;
text-decoration: underline;
`;try{exports.StyledVolumeMeter.displayName="StyledVolumeMeter",exports.StyledVolumeMeter.__docgenInfo={description:"",displayName:"StyledVolumeMeter",props:{dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"string"}},slot:{defaultValue:null,description:"",name:"slot",required:!1,type:{name:"string"}},style:{defaultValue:null,description:"",name:"style",required:!1,type:{name:"CSSProperties"}},title:{defaultValue:null,description:"",name:"title",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"((instance: HTMLDivElement) => void) | RefObject<HTMLDivElement>"}},key:{defaultValue:null,description:"",name:"key",required:!1,type:{name:"ReactText"}},defaultChecked:{defaultValue:null,description:"",name:"defaultChecked",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"",name:"defaultValue",required:!1,type:{name:"string | number | string[]"}},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 | "true" | "false" | "inherit"'}},contextMenu:{defaultValue:null,description:"",name:"contextMenu",required:!1,type:{name:"string"}},draggable:{defaultValue:null,description:"",name:"draggable",required:!1,type:{name:"Booleanish"}},hidden:{defaultValue:null,description:"",name:"hidden",required:!1,type:{name:"boolean"}},id:{defaultValue:null,description:"",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"}},spellCheck:{defaultValue:null,description:"",name:"spellCheck",required:!1,type:{name:"Booleanish"}},tabIndex:{defaultValue:null,description:"",name:"tabIndex",required:!1,type:{name:"number"}},translate:{defaultValue:null,description:"",name:"translate",required:!1,type:{name:'"yes" | "no"'}},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"'}},inputMode:{defaultValue:null,description:"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",name:"inputMode",required:!1,type:{name:'"text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search"'}},is:{defaultValue:null,description:"Specify that a standard HTML element should behave like a defined custom built-in element\n@see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is",name:"is",required:!1,type:{name:"string"}},"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:"Booleanish"}},"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" | "both" | "inline" | "list"'}},"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:"Booleanish"}},"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 | "true" | "false" | "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 | "time" | "true" | "false" | "page" | "step" | "location" | "date"'}},"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:"Booleanish"}},"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:'"copy" | "link" | "none" | "move" | "execute" | "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:"Booleanish"}},"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:"Booleanish"}},"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 | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"'}},"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:"Booleanish"}},"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 | "true" | "false" | "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:"Booleanish"}},"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:"Booleanish"}},"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:"Booleanish"}},"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 | "true" | "false" | "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:"Booleanish"}},"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:'"text" | "all" | "additions" | "additions text" | "removals"'}},"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:"Booleanish"}},"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:"Booleanish"}},"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"}},onChange:{defaultValue:null,description:"",name:"onChange",required:!1,type:{name:"(event: FormEvent<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>) => v