From b102aecad5d40ba264ef28612a5918142651075e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 28 Mar 2022 13:25:03 +0000 Subject: [PATCH] Deployed 13945d677b to master with MkDocs 1.3.0 and mike 1.1.2 --- .../api/classes/Main.Ipc/index.html | 2 +- .../api/classes/Main.LensExtension/index.html | 4 +- .../Renderer.Component.DrawerItem/index.html | 1551 ----------------- .../Renderer.Component.DrawerTitle/index.html | 1551 ----------------- .../api/classes/Renderer.Ipc/index.html | 2 +- .../index.html | 39 +- .../classes/Renderer.K8sApi.Pod/index.html | 8 +- .../Renderer.K8sApi.ReplicaSet/index.html | 4 +- .../classes/Renderer.LensExtension/index.html | 4 +- .../index.html | 322 ++-- .../index.html | 722 ++++---- .../index.html | 23 +- .../Renderer.K8sApi.IPodContainer/index.html | 2 +- .../api/modules/Renderer.Component/index.html | 112 +- .../guides/renderer-extension/index.html | 231 ++- master/search/search_index.json | 2 +- master/sitemap.xml | 10 - master/sitemap.xml.gz | Bin 2276 -> 2271 bytes 18 files changed, 754 insertions(+), 3835 deletions(-) delete mode 100644 master/extensions/api/classes/Renderer.Component.DrawerItem/index.html delete mode 100644 master/extensions/api/classes/Renderer.Component.DrawerTitle/index.html diff --git a/master/extensions/api/classes/Main.Ipc/index.html b/master/extensions/api/classes/Main.Ipc/index.html index 3f68b86c4b..abfac305ff 100644 --- a/master/extensions/api/classes/Main.Ipc/index.html +++ b/master/extensions/api/classes/Main.Ipc/index.html @@ -918,7 +918,7 @@

[IpcPrefix]#

Readonly [IpcPrefix]: string

Inherited from#

-

IpcRegistrar.__@IpcPrefix@48127

+

IpcRegistrar.__@IpcPrefix@48490


extension#

Protected extension: LensExtension

diff --git a/master/extensions/api/classes/Main.LensExtension/index.html b/master/extensions/api/classes/Main.LensExtension/index.html index 09d9f6beca..dca2bc369b 100644 --- a/master/extensions/api/classes/Main.LensExtension/index.html +++ b/master/extensions/api/classes/Main.LensExtension/index.html @@ -1061,7 +1061,7 @@

[Disposers]#

[Disposers]: ExtendableDisposer

Inherited from#

-

LensExtension.__@Disposers@24100

+

LensExtension.__@Disposers@24184


appMenus#

appMenus: MenuRegistration[] = []

@@ -1152,7 +1152,7 @@ does not modify the shell environment

Returns#

void

Inherited from#

-

LensExtension.__@setLensExtensionDependencies@24103

+

LensExtension.__@setLensExtensionDependencies@24187


activate#

activate(): Promise<void>

diff --git a/master/extensions/api/classes/Renderer.Component.DrawerItem/index.html b/master/extensions/api/classes/Renderer.Component.DrawerItem/index.html deleted file mode 100644 index 733890eaac..0000000000 --- a/master/extensions/api/classes/Renderer.Component.DrawerItem/index.html +++ /dev/null @@ -1,1551 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - Class: DrawerItem - Lens Extension Development - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - Skip to content - - -
-
- -
- - - - - - -
- - -
- -
- - - - - - -
-
- - - -
-
-
- - - - -
-
-
- - - - - - -
-
- - - - -

Class: DrawerItem#

-

Renderer.Component.DrawerItem

-

Hierarchy#

- -

DrawerItem

-

Table of contents#

-

Constructors#

- -

Properties#

- -

Methods#

- -

Constructors#

-

constructor#

-

new DrawerItem(props)

-

Parameters#

- - - - - - - - - - - - - -
NameType
propsDrawerItemProps | Readonly<DrawerItemProps>
-

Inherited from#

-

React.Component<DrawerItemProps>.constructor

-

new DrawerItem(props, context)

-

deprecated

-

see https://reactjs.org/docs/legacy-context.html

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
propsDrawerItemProps
contextany
-

Inherited from#

-

React.Component<DrawerItemProps>.constructor

-

Properties#

-

context#

-

context: any

-

If using the new style context, re-declare this in your class to be the -React.ContextType of your static contextType. -Should be used with type annotation or static contextType.

-
static contextType = MyContext
-// For TS pre-3.7:
-context!: React.ContextType<typeof MyContext>
-// For TS 3.7 and above:
-declare context: React.ContextType<typeof MyContext>
-
-

see https://reactjs.org/docs/context.html

-

Inherited from#

-

React.Component.context

-
-

props#

-

Readonly props: Readonly<DrawerItemProps> & Readonly<{ children?: ReactNode }>

-

Inherited from#

-

React.Component.props

-
-

refs#

-

refs: Object

-

deprecated -https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs

-

Index signature#

-

▪ [key: string]: ReactInstance

-

Inherited from#

-

React.Component.refs

-
-

state#

-

state: Readonly<{}>

-

Inherited from#

-

React.Component.state

-
-

contextType#

-

Static Optional contextType: Context<any>

-

If set, this.context will be set at runtime to the current value of the given Context.

-

Usage:

-
type MyContext = number
-const Ctx = React.createContext<MyContext>(0)
-
-class Foo extends React.Component {
-  static contextType = Ctx
-  context!: React.ContextType<typeof Ctx>
-  render () {
-    return <>My context's value: {this.context}</>;
-  }
-}
-
-

see https://reactjs.org/docs/context.html#classcontexttype

-

Inherited from#

-

React.Component.contextType

-

Methods#

-

UNSAFE_componentWillMount#

-

Optional UNSAFE_componentWillMount(): void

-

Called immediately before mounting occurs, and before Component#render. -Avoid introducing any side-effects or subscriptions in this method.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use componentDidMount or the constructor instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillMount

-
-

UNSAFE_componentWillReceiveProps#

-

Optional UNSAFE_componentWillReceiveProps(nextProps, nextContext): void

-

Called when the component may be receiving new props. -React may call this even if props have not changed, so be sure to compare new and existing -props if you only want to handle changes.

-

Calling Component#setState generally does not trigger this method.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use static getDerivedStateFromProps instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerItemProps>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillReceiveProps

-
-

UNSAFE_componentWillUpdate#

-

Optional UNSAFE_componentWillUpdate(nextProps, nextState, nextContext): void

-

Called immediately before rendering when new props or state is received. Not called for the initial render.

-

Note: You cannot call Component#setState here.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use getSnapshotBeforeUpdate instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerItemProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillUpdate

-
-

componentDidCatch#

-

Optional componentDidCatch(error, errorInfo): void

-

Catches exceptions generated in descendant components. Unhandled exceptions will cause -the entire component tree to unmount.

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
errorError
errorInfoErrorInfo
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidCatch

-
-

componentDidMount#

-

Optional componentDidMount(): void

-

Called immediately after a component is mounted. Setting state here will trigger re-rendering.

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidMount

-
-

componentDidUpdate#

-

Optional componentDidUpdate(prevProps, prevState, snapshot?): void

-

Called immediately after updating occurs. Not called for the initial render.

-

The snapshot is only present if getSnapshotBeforeUpdate is present and returns non-null.

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
prevPropsReadonly<DrawerItemProps>
prevStateReadonly<{}>
snapshot?any
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidUpdate

-
-

componentWillMount#

-

Optional componentWillMount(): void

-

Called immediately before mounting occurs, and before Component#render. -Avoid introducing any side-effects or subscriptions in this method.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use componentDidMount or the constructor instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillMount

-
-

componentWillReceiveProps#

-

Optional componentWillReceiveProps(nextProps, nextContext): void

-

Called when the component may be receiving new props. -React may call this even if props have not changed, so be sure to compare new and existing -props if you only want to handle changes.

-

Calling Component#setState generally does not trigger this method.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use static getDerivedStateFromProps instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerItemProps>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillReceiveProps

-
-

componentWillUnmount#

-

Optional componentWillUnmount(): void

-

Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as -cancelled network requests, or cleaning up any DOM elements created in componentDidMount.

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillUnmount

-
-

componentWillUpdate#

-

Optional componentWillUpdate(nextProps, nextState, nextContext): void

-

Called immediately before rendering when new props or state is received. Not called for the initial render.

-

Note: You cannot call Component#setState here.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerItemProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillUpdate

-
-

forceUpdate#

-

forceUpdate(callback?): void

-

Parameters#

- - - - - - - - - - - - - -
NameType
callback?() => void
-

Returns#

-

void

-

Inherited from#

-

React.Component.forceUpdate

-
-

getSnapshotBeforeUpdate#

-

Optional getSnapshotBeforeUpdate(prevProps, prevState): any

-

Runs before React applies the result of render to the document, and -returns an object to be given to componentDidUpdate. Useful for saving -things such as scroll position before render causes changes to it.

-

Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated -lifecycle events from running.

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
prevPropsReadonly<DrawerItemProps>
prevStateReadonly<{}>
-

Returns#

-

any

-

Inherited from#

-

React.Component.getSnapshotBeforeUpdate

-
-

render#

-

render(): Element

-

Returns#

-

Element

-

Overrides#

-

React.Component.render

-
-

setState#

-

setState<K>(state, callback?): void

-

Type parameters#

- - - - - - - - - - - - - -
NameType
Kextends never
-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
state{} | (prevState: Readonly<{}>, props: Readonly<DrawerItemProps>) => {} | Pick<{}, K> | Pick<{}, K>
callback?() => void
-

Returns#

-

void

-

Inherited from#

-

React.Component.setState

-
-

shouldComponentUpdate#

-

Optional shouldComponentUpdate(nextProps, nextState, nextContext): boolean

-

Called to determine whether the change in props and state should trigger a re-render.

-

Component always returns true. -PureComponent implements a shallow comparison on props and state and returns true if any -props or states have changed.

-

If false is returned, Component#render, componentWillUpdate -and componentDidUpdate will not be called.

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerItemProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

boolean

-

Inherited from#

-

React.Component.shouldComponentUpdate

- - - - - - - -
- -
-
- -
- - - - -
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/master/extensions/api/classes/Renderer.Component.DrawerTitle/index.html b/master/extensions/api/classes/Renderer.Component.DrawerTitle/index.html deleted file mode 100644 index 249e7f0792..0000000000 --- a/master/extensions/api/classes/Renderer.Component.DrawerTitle/index.html +++ /dev/null @@ -1,1551 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - Class: DrawerTitle - Lens Extension Development - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - Skip to content - - -
-
- -
- - - - - - -
- - -
- -
- - - - - - -
-
- - - -
-
-
- - - - -
-
-
- - - - - - -
-
- - - - -

Class: DrawerTitle#

-

Renderer.Component.DrawerTitle

-

Hierarchy#

- -

DrawerTitle

-

Table of contents#

-

Constructors#

- -

Properties#

- -

Methods#

- -

Constructors#

-

constructor#

-

new DrawerTitle(props)

-

Parameters#

- - - - - - - - - - - - - -
NameType
propsDrawerTitleProps | Readonly<DrawerTitleProps>
-

Inherited from#

-

React.Component<DrawerTitleProps>.constructor

-

new DrawerTitle(props, context)

-

deprecated

-

see https://reactjs.org/docs/legacy-context.html

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
propsDrawerTitleProps
contextany
-

Inherited from#

-

React.Component<DrawerTitleProps>.constructor

-

Properties#

-

context#

-

context: any

-

If using the new style context, re-declare this in your class to be the -React.ContextType of your static contextType. -Should be used with type annotation or static contextType.

-
static contextType = MyContext
-// For TS pre-3.7:
-context!: React.ContextType<typeof MyContext>
-// For TS 3.7 and above:
-declare context: React.ContextType<typeof MyContext>
-
-

see https://reactjs.org/docs/context.html

-

Inherited from#

-

React.Component.context

-
-

props#

-

Readonly props: Readonly<DrawerTitleProps> & Readonly<{ children?: ReactNode }>

-

Inherited from#

-

React.Component.props

-
-

refs#

-

refs: Object

-

deprecated -https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs

-

Index signature#

-

▪ [key: string]: ReactInstance

-

Inherited from#

-

React.Component.refs

-
-

state#

-

state: Readonly<{}>

-

Inherited from#

-

React.Component.state

-
-

contextType#

-

Static Optional contextType: Context<any>

-

If set, this.context will be set at runtime to the current value of the given Context.

-

Usage:

-
type MyContext = number
-const Ctx = React.createContext<MyContext>(0)
-
-class Foo extends React.Component {
-  static contextType = Ctx
-  context!: React.ContextType<typeof Ctx>
-  render () {
-    return <>My context's value: {this.context}</>;
-  }
-}
-
-

see https://reactjs.org/docs/context.html#classcontexttype

-

Inherited from#

-

React.Component.contextType

-

Methods#

-

UNSAFE_componentWillMount#

-

Optional UNSAFE_componentWillMount(): void

-

Called immediately before mounting occurs, and before Component#render. -Avoid introducing any side-effects or subscriptions in this method.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use componentDidMount or the constructor instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillMount

-
-

UNSAFE_componentWillReceiveProps#

-

Optional UNSAFE_componentWillReceiveProps(nextProps, nextContext): void

-

Called when the component may be receiving new props. -React may call this even if props have not changed, so be sure to compare new and existing -props if you only want to handle changes.

-

Calling Component#setState generally does not trigger this method.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use static getDerivedStateFromProps instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerTitleProps>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillReceiveProps

-
-

UNSAFE_componentWillUpdate#

-

Optional UNSAFE_componentWillUpdate(nextProps, nextState, nextContext): void

-

Called immediately before rendering when new props or state is received. Not called for the initial render.

-

Note: You cannot call Component#setState here.

-

This method will not stop working in React 17.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use getSnapshotBeforeUpdate instead

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerTitleProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillUpdate

-
-

componentDidCatch#

-

Optional componentDidCatch(error, errorInfo): void

-

Catches exceptions generated in descendant components. Unhandled exceptions will cause -the entire component tree to unmount.

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
errorError
errorInfoErrorInfo
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidCatch

-
-

componentDidMount#

-

Optional componentDidMount(): void

-

Called immediately after a component is mounted. Setting state here will trigger re-rendering.

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidMount

-
-

componentDidUpdate#

-

Optional componentDidUpdate(prevProps, prevState, snapshot?): void

-

Called immediately after updating occurs. Not called for the initial render.

-

The snapshot is only present if getSnapshotBeforeUpdate is present and returns non-null.

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
prevPropsReadonly<DrawerTitleProps>
prevStateReadonly<{}>
snapshot?any
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentDidUpdate

-
-

componentWillMount#

-

Optional componentWillMount(): void

-

Called immediately before mounting occurs, and before Component#render. -Avoid introducing any side-effects or subscriptions in this method.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use componentDidMount or the constructor instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillMount

-
-

componentWillReceiveProps#

-

Optional componentWillReceiveProps(nextProps, nextContext): void

-

Called when the component may be receiving new props. -React may call this even if props have not changed, so be sure to compare new and existing -props if you only want to handle changes.

-

Calling Component#setState generally does not trigger this method.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use static getDerivedStateFromProps instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerTitleProps>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillReceiveProps

-
-

componentWillUnmount#

-

Optional componentWillUnmount(): void

-

Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as -cancelled network requests, or cleaning up any DOM elements created in componentDidMount.

-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillUnmount

-
-

componentWillUpdate#

-

Optional componentWillUpdate(nextProps, nextState, nextContext): void

-

Called immediately before rendering when new props or state is received. Not called for the initial render.

-

Note: You cannot call Component#setState here.

-

Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps -prevents this from being invoked.

-

deprecated 16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update

-

see https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerTitleProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.componentWillUpdate

-
-

forceUpdate#

-

forceUpdate(callback?): void

-

Parameters#

- - - - - - - - - - - - - -
NameType
callback?() => void
-

Returns#

-

void

-

Inherited from#

-

React.Component.forceUpdate

-
-

getSnapshotBeforeUpdate#

-

Optional getSnapshotBeforeUpdate(prevProps, prevState): any

-

Runs before React applies the result of render to the document, and -returns an object to be given to componentDidUpdate. Useful for saving -things such as scroll position before render causes changes to it.

-

Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated -lifecycle events from running.

-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
prevPropsReadonly<DrawerTitleProps>
prevStateReadonly<{}>
-

Returns#

-

any

-

Inherited from#

-

React.Component.getSnapshotBeforeUpdate

-
-

render#

-

render(): Element

-

Returns#

-

Element

-

Overrides#

-

React.Component.render

-
-

setState#

-

setState<K>(state, callback?): void

-

Type parameters#

- - - - - - - - - - - - - -
NameType
Kextends never
-

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
state{} | (prevState: Readonly<{}>, props: Readonly<DrawerTitleProps>) => {} | Pick<{}, K> | Pick<{}, K>
callback?() => void
-

Returns#

-

void

-

Inherited from#

-

React.Component.setState

-
-

shouldComponentUpdate#

-

Optional shouldComponentUpdate(nextProps, nextState, nextContext): boolean

-

Called to determine whether the change in props and state should trigger a re-render.

-

Component always returns true. -PureComponent implements a shallow comparison on props and state and returns true if any -props or states have changed.

-

If false is returned, Component#render, componentWillUpdate -and componentDidUpdate will not be called.

-

Parameters#

- - - - - - - - - - - - - - - - - - - - - -
NameType
nextPropsReadonly<DrawerTitleProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

boolean

-

Inherited from#

-

React.Component.shouldComponentUpdate

- - - - - - - -
- -
-
- -
- - - - -
-
-
-
- - - - - - - - \ No newline at end of file diff --git a/master/extensions/api/classes/Renderer.Ipc/index.html b/master/extensions/api/classes/Renderer.Ipc/index.html index b3a22b79d3..263c2be150 100644 --- a/master/extensions/api/classes/Renderer.Ipc/index.html +++ b/master/extensions/api/classes/Renderer.Ipc/index.html @@ -918,7 +918,7 @@

[IpcPrefix]#

Readonly [IpcPrefix]: string

Inherited from#

-

IpcRegistrar.__@IpcPrefix@48127

+

IpcRegistrar.__@IpcPrefix@48490


extension#

Protected extension: LensExtension

diff --git a/master/extensions/api/classes/Renderer.K8sApi.PersistentVolumeClaim/index.html b/master/extensions/api/classes/Renderer.K8sApi.PersistentVolumeClaim/index.html index 7d81609ccf..25e505d310 100644 --- a/master/extensions/api/classes/Renderer.K8sApi.PersistentVolumeClaim/index.html +++ b/master/extensions/api/classes/Renderer.K8sApi.PersistentVolumeClaim/index.html @@ -1215,48 +1215,13 @@

KubeObject.metadata


spec#

-

spec: Object

-

Type declaration#

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameType
accessModesstring[]
resourcesObject
resources.requestsObject
resources.requests.storagestring
selectorLabelSelector
storageClassNamestring
+

spec: PersistentVolumeClaimSpec

Inherited from#

KubeObject.spec


status#

status: Object

-

Type declaration#

+

Type declaration#

diff --git a/master/extensions/api/classes/Renderer.K8sApi.Pod/index.html b/master/extensions/api/classes/Renderer.K8sApi.Pod/index.html index 526e97856a..3ffc48abc4 100644 --- a/master/extensions/api/classes/Renderer.K8sApi.Pod/index.html +++ b/master/extensions/api/classes/Renderer.K8sApi.Pod/index.html @@ -1459,7 +1459,7 @@ - + @@ -1519,7 +1519,7 @@ - +
imagePullSecrets?{ name: string }[]LocalObjectReference[]
initContainers
volumes?{ configMap: { name: string } ; emptyDir: { medium?: string ; sizeLimit?: string } ; name: string ; persistentVolumeClaim: { claimName: string } ; secret: { defaultMode: number ; secretName: string } }[]PodVolume[]
@@ -1966,9 +1966,9 @@ creation timestamp of this object.

WorkloadKubeObject.getTolerations


getVolumes#

-

getVolumes(): { configMap: { name: string } ; emptyDir: { medium?: string ; sizeLimit?: string } ; name: string ; persistentVolumeClaim: { claimName: string } ; secret: { defaultMode: number ; secretName: string } }[]

+

getVolumes(): PodVolume[]

Returns#

-

{ configMap: { name: string } ; emptyDir: { medium?: string ; sizeLimit?: string } ; name: string ; persistentVolumeClaim: { claimName: string } ; secret: { defaultMode: number ; secretName: string } }[]

+

PodVolume[]


hasIssues#

hasIssues(): boolean

diff --git a/master/extensions/api/classes/Renderer.K8sApi.ReplicaSet/index.html b/master/extensions/api/classes/Renderer.K8sApi.ReplicaSet/index.html index 6b5c345736..516481d798 100644 --- a/master/extensions/api/classes/Renderer.K8sApi.ReplicaSet/index.html +++ b/master/extensions/api/classes/Renderer.K8sApi.ReplicaSet/index.html @@ -1347,7 +1347,7 @@ template.spec.imagePullSecrets? -{ name: string }[] +LocalObjectReference[] template.spec.initContainers @@ -1407,7 +1407,7 @@ template.spec.volumes? -{ configMap: { name: string } ; emptyDir: { medium?: string ; sizeLimit?: string } ; name: string ; persistentVolumeClaim: { claimName: string } ; secret: { defaultMode: number ; secretName: string } }[] +PodVolume[] diff --git a/master/extensions/api/classes/Renderer.LensExtension/index.html b/master/extensions/api/classes/Renderer.LensExtension/index.html index c068416573..c2aa744f6f 100644 --- a/master/extensions/api/classes/Renderer.LensExtension/index.html +++ b/master/extensions/api/classes/Renderer.LensExtension/index.html @@ -1181,7 +1181,7 @@

[Disposers]#

[Disposers]: ExtendableDisposer

Inherited from#

-

LensExtension.__@Disposers@24100

+

LensExtension.__@Disposers@24184


additionalCategoryColumns#

additionalCategoryColumns: AdditionalCategoryColumnRegistration[] = []

@@ -1307,7 +1307,7 @@

Returns#

void

Inherited from#

-

LensExtension.__@setLensExtensionDependencies@24103

+

LensExtension.__@setLensExtensionDependencies@24187


activate#

activate(): Promise<void>

diff --git a/master/extensions/api/interfaces/Renderer.Component.DrawerItemLabelsProps/index.html b/master/extensions/api/interfaces/Renderer.Component.DrawerItemLabelsProps/index.html index 2416ea7c64..99b266d52f 100644 --- a/master/extensions/api/interfaces/Renderer.Component.DrawerItemLabelsProps/index.html +++ b/master/extensions/api/interfaces/Renderer.Component.DrawerItemLabelsProps/index.html @@ -3309,7 +3309,7 @@ A hint could be a sample value or a brief description of the expected format.

DrawerItemProps.itemType


labels#

-

labels: string[]

+

labels: string[] | Record<string, string>


labelsOnly#

Optional labelsOnly: boolean

@@ -3327,804 +3327,804 @@ A hint could be a sample value or a brief description of the expected format.

DrawerItemProps.name


onAbort#

-

Optional onAbort: ReactEventHandler<any>

+

Optional onAbort: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAbort


onAbortCapture#

-

Optional onAbortCapture: ReactEventHandler<any>

+

Optional onAbortCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAbortCapture


onAnimationEnd#

-

Optional onAnimationEnd: AnimationEventHandler<any>

+

Optional onAnimationEnd: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationEnd


onAnimationEndCapture#

-

Optional onAnimationEndCapture: AnimationEventHandler<any>

+

Optional onAnimationEndCapture: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationEndCapture


onAnimationIteration#

-

Optional onAnimationIteration: AnimationEventHandler<any>

+

Optional onAnimationIteration: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationIteration


onAnimationIterationCapture#

-

Optional onAnimationIterationCapture: AnimationEventHandler<any>

+

Optional onAnimationIterationCapture: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationIterationCapture


onAnimationStart#

-

Optional onAnimationStart: AnimationEventHandler<any>

+

Optional onAnimationStart: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationStart


onAnimationStartCapture#

-

Optional onAnimationStartCapture: AnimationEventHandler<any>

+

Optional onAnimationStartCapture: AnimationEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAnimationStartCapture


onAuxClick#

-

Optional onAuxClick: MouseEventHandler<any>

+

Optional onAuxClick: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAuxClick


onAuxClickCapture#

-

Optional onAuxClickCapture: MouseEventHandler<any>

+

Optional onAuxClickCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onAuxClickCapture


onBeforeInput#

-

Optional onBeforeInput: FormEventHandler<any>

+

Optional onBeforeInput: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onBeforeInput


onBeforeInputCapture#

-

Optional onBeforeInputCapture: FormEventHandler<any>

+

Optional onBeforeInputCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onBeforeInputCapture


onBlur#

-

Optional onBlur: FocusEventHandler<any>

+

Optional onBlur: FocusEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onBlur


onBlurCapture#

-

Optional onBlurCapture: FocusEventHandler<any>

+

Optional onBlurCapture: FocusEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onBlurCapture


onCanPlay#

-

Optional onCanPlay: ReactEventHandler<any>

+

Optional onCanPlay: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCanPlay


onCanPlayCapture#

-

Optional onCanPlayCapture: ReactEventHandler<any>

+

Optional onCanPlayCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCanPlayCapture


onCanPlayThrough#

-

Optional onCanPlayThrough: ReactEventHandler<any>

+

Optional onCanPlayThrough: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCanPlayThrough


onCanPlayThroughCapture#

-

Optional onCanPlayThroughCapture: ReactEventHandler<any>

+

Optional onCanPlayThroughCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCanPlayThroughCapture


onChange#

-

Optional onChange: FormEventHandler<any>

+

Optional onChange: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onChange


onChangeCapture#

-

Optional onChangeCapture: FormEventHandler<any>

+

Optional onChangeCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onChangeCapture


onClick#

-

Optional onClick: MouseEventHandler<any>

+

Optional onClick: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onClick


onClickCapture#

-

Optional onClickCapture: MouseEventHandler<any>

+

Optional onClickCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onClickCapture


onCompositionEnd#

-

Optional onCompositionEnd: CompositionEventHandler<any>

+

Optional onCompositionEnd: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionEnd


onCompositionEndCapture#

-

Optional onCompositionEndCapture: CompositionEventHandler<any>

+

Optional onCompositionEndCapture: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionEndCapture


onCompositionStart#

-

Optional onCompositionStart: CompositionEventHandler<any>

+

Optional onCompositionStart: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionStart


onCompositionStartCapture#

-

Optional onCompositionStartCapture: CompositionEventHandler<any>

+

Optional onCompositionStartCapture: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionStartCapture


onCompositionUpdate#

-

Optional onCompositionUpdate: CompositionEventHandler<any>

+

Optional onCompositionUpdate: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionUpdate


onCompositionUpdateCapture#

-

Optional onCompositionUpdateCapture: CompositionEventHandler<any>

+

Optional onCompositionUpdateCapture: CompositionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCompositionUpdateCapture


onContextMenu#

-

Optional onContextMenu: MouseEventHandler<any>

+

Optional onContextMenu: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onContextMenu


onContextMenuCapture#

-

Optional onContextMenuCapture: MouseEventHandler<any>

+

Optional onContextMenuCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onContextMenuCapture


onCopy#

-

Optional onCopy: ClipboardEventHandler<any>

+

Optional onCopy: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCopy


onCopyCapture#

-

Optional onCopyCapture: ClipboardEventHandler<any>

+

Optional onCopyCapture: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCopyCapture


onCut#

-

Optional onCut: ClipboardEventHandler<any>

+

Optional onCut: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCut


onCutCapture#

-

Optional onCutCapture: ClipboardEventHandler<any>

+

Optional onCutCapture: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onCutCapture


onDoubleClick#

-

Optional onDoubleClick: MouseEventHandler<any>

+

Optional onDoubleClick: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDoubleClick


onDoubleClickCapture#

-

Optional onDoubleClickCapture: MouseEventHandler<any>

+

Optional onDoubleClickCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDoubleClickCapture


onDrag#

-

Optional onDrag: DragEventHandler<any>

+

Optional onDrag: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDrag


onDragCapture#

-

Optional onDragCapture: DragEventHandler<any>

+

Optional onDragCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragCapture


onDragEnd#

-

Optional onDragEnd: DragEventHandler<any>

+

Optional onDragEnd: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragEnd


onDragEndCapture#

-

Optional onDragEndCapture: DragEventHandler<any>

+

Optional onDragEndCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragEndCapture


onDragEnter#

-

Optional onDragEnter: DragEventHandler<any>

+

Optional onDragEnter: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragEnter


onDragEnterCapture#

-

Optional onDragEnterCapture: DragEventHandler<any>

+

Optional onDragEnterCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragEnterCapture


onDragExit#

-

Optional onDragExit: DragEventHandler<any>

+

Optional onDragExit: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragExit


onDragExitCapture#

-

Optional onDragExitCapture: DragEventHandler<any>

+

Optional onDragExitCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragExitCapture


onDragLeave#

-

Optional onDragLeave: DragEventHandler<any>

+

Optional onDragLeave: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragLeave


onDragLeaveCapture#

-

Optional onDragLeaveCapture: DragEventHandler<any>

+

Optional onDragLeaveCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragLeaveCapture


onDragOver#

-

Optional onDragOver: DragEventHandler<any>

+

Optional onDragOver: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragOver


onDragOverCapture#

-

Optional onDragOverCapture: DragEventHandler<any>

+

Optional onDragOverCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragOverCapture


onDragStart#

-

Optional onDragStart: DragEventHandler<any>

+

Optional onDragStart: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragStart


onDragStartCapture#

-

Optional onDragStartCapture: DragEventHandler<any>

+

Optional onDragStartCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDragStartCapture


onDrop#

-

Optional onDrop: DragEventHandler<any>

+

Optional onDrop: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDrop


onDropCapture#

-

Optional onDropCapture: DragEventHandler<any>

+

Optional onDropCapture: DragEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDropCapture


onDurationChange#

-

Optional onDurationChange: ReactEventHandler<any>

+

Optional onDurationChange: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDurationChange


onDurationChangeCapture#

-

Optional onDurationChangeCapture: ReactEventHandler<any>

+

Optional onDurationChangeCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onDurationChangeCapture


onEmptied#

-

Optional onEmptied: ReactEventHandler<any>

+

Optional onEmptied: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEmptied


onEmptiedCapture#

-

Optional onEmptiedCapture: ReactEventHandler<any>

+

Optional onEmptiedCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEmptiedCapture


onEncrypted#

-

Optional onEncrypted: ReactEventHandler<any>

+

Optional onEncrypted: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEncrypted


onEncryptedCapture#

-

Optional onEncryptedCapture: ReactEventHandler<any>

+

Optional onEncryptedCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEncryptedCapture


onEnded#

-

Optional onEnded: ReactEventHandler<any>

+

Optional onEnded: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEnded


onEndedCapture#

-

Optional onEndedCapture: ReactEventHandler<any>

+

Optional onEndedCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onEndedCapture


onError#

-

Optional onError: ReactEventHandler<any>

+

Optional onError: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onError


onErrorCapture#

-

Optional onErrorCapture: ReactEventHandler<any>

+

Optional onErrorCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onErrorCapture


onFocus#

-

Optional onFocus: FocusEventHandler<any>

+

Optional onFocus: FocusEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onFocus


onFocusCapture#

-

Optional onFocusCapture: FocusEventHandler<any>

+

Optional onFocusCapture: FocusEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onFocusCapture


onGotPointerCapture#

-

Optional onGotPointerCapture: PointerEventHandler<any>

+

Optional onGotPointerCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onGotPointerCapture


onGotPointerCaptureCapture#

-

Optional onGotPointerCaptureCapture: PointerEventHandler<any>

+

Optional onGotPointerCaptureCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onGotPointerCaptureCapture


onInput#

-

Optional onInput: FormEventHandler<any>

+

Optional onInput: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onInput


onInputCapture#

-

Optional onInputCapture: FormEventHandler<any>

+

Optional onInputCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onInputCapture


onInvalid#

-

Optional onInvalid: FormEventHandler<any>

+

Optional onInvalid: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onInvalid


onInvalidCapture#

-

Optional onInvalidCapture: FormEventHandler<any>

+

Optional onInvalidCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onInvalidCapture


onKeyDown#

-

Optional onKeyDown: KeyboardEventHandler<any>

+

Optional onKeyDown: KeyboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onKeyDown


onKeyDownCapture#

-

Optional onKeyDownCapture: KeyboardEventHandler<any>

+

Optional onKeyDownCapture: KeyboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onKeyDownCapture


onKeyPress#

-

Optional onKeyPress: KeyboardEventHandler<any>

+

Optional onKeyPress: KeyboardEventHandler<HTMLDivElement>

deprecated

Inherited from#

DrawerItemProps.onKeyPress


onKeyPressCapture#

-

Optional onKeyPressCapture: KeyboardEventHandler<any>

+

Optional onKeyPressCapture: KeyboardEventHandler<HTMLDivElement>

deprecated

Inherited from#

DrawerItemProps.onKeyPressCapture


onKeyUp#

-

Optional onKeyUp: KeyboardEventHandler<any>

+

Optional onKeyUp: KeyboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onKeyUp


onKeyUpCapture#

-

Optional onKeyUpCapture: KeyboardEventHandler<any>

+

Optional onKeyUpCapture: KeyboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onKeyUpCapture


onLoad#

-

Optional onLoad: ReactEventHandler<any>

+

Optional onLoad: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoad


onLoadCapture#

-

Optional onLoadCapture: ReactEventHandler<any>

+

Optional onLoadCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadCapture


onLoadStart#

-

Optional onLoadStart: ReactEventHandler<any>

+

Optional onLoadStart: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadStart


onLoadStartCapture#

-

Optional onLoadStartCapture: ReactEventHandler<any>

+

Optional onLoadStartCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadStartCapture


onLoadedData#

-

Optional onLoadedData: ReactEventHandler<any>

+

Optional onLoadedData: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadedData


onLoadedDataCapture#

-

Optional onLoadedDataCapture: ReactEventHandler<any>

+

Optional onLoadedDataCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadedDataCapture


onLoadedMetadata#

-

Optional onLoadedMetadata: ReactEventHandler<any>

+

Optional onLoadedMetadata: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadedMetadata


onLoadedMetadataCapture#

-

Optional onLoadedMetadataCapture: ReactEventHandler<any>

+

Optional onLoadedMetadataCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLoadedMetadataCapture


onLostPointerCapture#

-

Optional onLostPointerCapture: PointerEventHandler<any>

+

Optional onLostPointerCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLostPointerCapture


onLostPointerCaptureCapture#

-

Optional onLostPointerCaptureCapture: PointerEventHandler<any>

+

Optional onLostPointerCaptureCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onLostPointerCaptureCapture


onMouseDown#

-

Optional onMouseDown: MouseEventHandler<any>

+

Optional onMouseDown: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseDown


onMouseDownCapture#

-

Optional onMouseDownCapture: MouseEventHandler<any>

+

Optional onMouseDownCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseDownCapture


onMouseEnter#

-

Optional onMouseEnter: MouseEventHandler<any>

+

Optional onMouseEnter: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseEnter


onMouseLeave#

-

Optional onMouseLeave: MouseEventHandler<any>

+

Optional onMouseLeave: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseLeave


onMouseMove#

-

Optional onMouseMove: MouseEventHandler<any>

+

Optional onMouseMove: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseMove


onMouseMoveCapture#

-

Optional onMouseMoveCapture: MouseEventHandler<any>

+

Optional onMouseMoveCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseMoveCapture


onMouseOut#

-

Optional onMouseOut: MouseEventHandler<any>

+

Optional onMouseOut: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseOut


onMouseOutCapture#

-

Optional onMouseOutCapture: MouseEventHandler<any>

+

Optional onMouseOutCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseOutCapture


onMouseOver#

-

Optional onMouseOver: MouseEventHandler<any>

+

Optional onMouseOver: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseOver


onMouseOverCapture#

-

Optional onMouseOverCapture: MouseEventHandler<any>

+

Optional onMouseOverCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseOverCapture


onMouseUp#

-

Optional onMouseUp: MouseEventHandler<any>

+

Optional onMouseUp: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseUp


onMouseUpCapture#

-

Optional onMouseUpCapture: MouseEventHandler<any>

+

Optional onMouseUpCapture: MouseEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onMouseUpCapture


onPaste#

-

Optional onPaste: ClipboardEventHandler<any>

+

Optional onPaste: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPaste


onPasteCapture#

-

Optional onPasteCapture: ClipboardEventHandler<any>

+

Optional onPasteCapture: ClipboardEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPasteCapture


onPause#

-

Optional onPause: ReactEventHandler<any>

+

Optional onPause: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPause


onPauseCapture#

-

Optional onPauseCapture: ReactEventHandler<any>

+

Optional onPauseCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPauseCapture


onPlay#

-

Optional onPlay: ReactEventHandler<any>

+

Optional onPlay: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPlay


onPlayCapture#

-

Optional onPlayCapture: ReactEventHandler<any>

+

Optional onPlayCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPlayCapture


onPlaying#

-

Optional onPlaying: ReactEventHandler<any>

+

Optional onPlaying: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPlaying


onPlayingCapture#

-

Optional onPlayingCapture: ReactEventHandler<any>

+

Optional onPlayingCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPlayingCapture


onPointerCancel#

-

Optional onPointerCancel: PointerEventHandler<any>

+

Optional onPointerCancel: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerCancel


onPointerCancelCapture#

-

Optional onPointerCancelCapture: PointerEventHandler<any>

+

Optional onPointerCancelCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerCancelCapture


onPointerDown#

-

Optional onPointerDown: PointerEventHandler<any>

+

Optional onPointerDown: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerDown


onPointerDownCapture#

-

Optional onPointerDownCapture: PointerEventHandler<any>

+

Optional onPointerDownCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerDownCapture


onPointerEnter#

-

Optional onPointerEnter: PointerEventHandler<any>

+

Optional onPointerEnter: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerEnter


onPointerEnterCapture#

-

Optional onPointerEnterCapture: PointerEventHandler<any>

+

Optional onPointerEnterCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerEnterCapture


onPointerLeave#

-

Optional onPointerLeave: PointerEventHandler<any>

+

Optional onPointerLeave: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerLeave


onPointerLeaveCapture#

-

Optional onPointerLeaveCapture: PointerEventHandler<any>

+

Optional onPointerLeaveCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerLeaveCapture


onPointerMove#

-

Optional onPointerMove: PointerEventHandler<any>

+

Optional onPointerMove: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerMove


onPointerMoveCapture#

-

Optional onPointerMoveCapture: PointerEventHandler<any>

+

Optional onPointerMoveCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerMoveCapture


onPointerOut#

-

Optional onPointerOut: PointerEventHandler<any>

+

Optional onPointerOut: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerOut


onPointerOutCapture#

-

Optional onPointerOutCapture: PointerEventHandler<any>

+

Optional onPointerOutCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerOutCapture


onPointerOver#

-

Optional onPointerOver: PointerEventHandler<any>

+

Optional onPointerOver: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerOver


onPointerOverCapture#

-

Optional onPointerOverCapture: PointerEventHandler<any>

+

Optional onPointerOverCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerOverCapture


onPointerUp#

-

Optional onPointerUp: PointerEventHandler<any>

+

Optional onPointerUp: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerUp


onPointerUpCapture#

-

Optional onPointerUpCapture: PointerEventHandler<any>

+

Optional onPointerUpCapture: PointerEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onPointerUpCapture


onProgress#

-

Optional onProgress: ReactEventHandler<any>

+

Optional onProgress: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onProgress


onProgressCapture#

-

Optional onProgressCapture: ReactEventHandler<any>

+

Optional onProgressCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onProgressCapture


onRateChange#

-

Optional onRateChange: ReactEventHandler<any>

+

Optional onRateChange: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onRateChange


onRateChangeCapture#

-

Optional onRateChangeCapture: ReactEventHandler<any>

+

Optional onRateChangeCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onRateChangeCapture


onReset#

-

Optional onReset: FormEventHandler<any>

+

Optional onReset: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onReset


onResetCapture#

-

Optional onResetCapture: FormEventHandler<any>

+

Optional onResetCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onResetCapture


onScroll#

-

Optional onScroll: UIEventHandler<any>

+

Optional onScroll: UIEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onScroll


onScrollCapture#

-

Optional onScrollCapture: UIEventHandler<any>

+

Optional onScrollCapture: UIEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onScrollCapture


onSeeked#

-

Optional onSeeked: ReactEventHandler<any>

+

Optional onSeeked: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSeeked


onSeekedCapture#

-

Optional onSeekedCapture: ReactEventHandler<any>

+

Optional onSeekedCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSeekedCapture


onSeeking#

-

Optional onSeeking: ReactEventHandler<any>

+

Optional onSeeking: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSeeking


onSeekingCapture#

-

Optional onSeekingCapture: ReactEventHandler<any>

+

Optional onSeekingCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSeekingCapture


onSelect#

-

Optional onSelect: ReactEventHandler<any>

+

Optional onSelect: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSelect


onSelectCapture#

-

Optional onSelectCapture: ReactEventHandler<any>

+

Optional onSelectCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSelectCapture


onStalled#

-

Optional onStalled: ReactEventHandler<any>

+

Optional onStalled: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onStalled


onStalledCapture#

-

Optional onStalledCapture: ReactEventHandler<any>

+

Optional onStalledCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onStalledCapture


onSubmit#

-

Optional onSubmit: FormEventHandler<any>

+

Optional onSubmit: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSubmit


onSubmitCapture#

-

Optional onSubmitCapture: FormEventHandler<any>

+

Optional onSubmitCapture: FormEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSubmitCapture


onSuspend#

-

Optional onSuspend: ReactEventHandler<any>

+

Optional onSuspend: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSuspend


onSuspendCapture#

-

Optional onSuspendCapture: ReactEventHandler<any>

+

Optional onSuspendCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onSuspendCapture


onTimeUpdate#

-

Optional onTimeUpdate: ReactEventHandler<any>

+

Optional onTimeUpdate: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTimeUpdate


onTimeUpdateCapture#

-

Optional onTimeUpdateCapture: ReactEventHandler<any>

+

Optional onTimeUpdateCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTimeUpdateCapture


onTouchCancel#

-

Optional onTouchCancel: TouchEventHandler<any>

+

Optional onTouchCancel: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchCancel


onTouchCancelCapture#

-

Optional onTouchCancelCapture: TouchEventHandler<any>

+

Optional onTouchCancelCapture: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchCancelCapture


onTouchEnd#

-

Optional onTouchEnd: TouchEventHandler<any>

+

Optional onTouchEnd: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchEnd


onTouchEndCapture#

-

Optional onTouchEndCapture: TouchEventHandler<any>

+

Optional onTouchEndCapture: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchEndCapture


onTouchMove#

-

Optional onTouchMove: TouchEventHandler<any>

+

Optional onTouchMove: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchMove


onTouchMoveCapture#

-

Optional onTouchMoveCapture: TouchEventHandler<any>

+

Optional onTouchMoveCapture: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchMoveCapture


onTouchStart#

-

Optional onTouchStart: TouchEventHandler<any>

+

Optional onTouchStart: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchStart


onTouchStartCapture#

-

Optional onTouchStartCapture: TouchEventHandler<any>

+

Optional onTouchStartCapture: TouchEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTouchStartCapture


onTransitionEnd#

-

Optional onTransitionEnd: TransitionEventHandler<any>

+

Optional onTransitionEnd: TransitionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTransitionEnd


onTransitionEndCapture#

-

Optional onTransitionEndCapture: TransitionEventHandler<any>

+

Optional onTransitionEndCapture: TransitionEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onTransitionEndCapture


onVolumeChange#

-

Optional onVolumeChange: ReactEventHandler<any>

+

Optional onVolumeChange: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onVolumeChange


onVolumeChangeCapture#

-

Optional onVolumeChangeCapture: ReactEventHandler<any>

+

Optional onVolumeChangeCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onVolumeChangeCapture


onWaiting#

-

Optional onWaiting: ReactEventHandler<any>

+

Optional onWaiting: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onWaiting


onWaitingCapture#

-

Optional onWaitingCapture: ReactEventHandler<any>

+

Optional onWaitingCapture: ReactEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onWaitingCapture


onWheel#

-

Optional onWheel: WheelEventHandler<any>

+

Optional onWheel: WheelEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onWheel


onWheelCapture#

-

Optional onWheelCapture: WheelEventHandler<any>

+

Optional onWheelCapture: WheelEventHandler<HTMLDivElement>

Inherited from#

DrawerItemProps.onWheelCapture


diff --git a/master/extensions/api/interfaces/Renderer.Component.DrawerItemProps/index.html b/master/extensions/api/interfaces/Renderer.Component.DrawerItemProps/index.html index aaa7cc2695..40e40541d1 100644 --- a/master/extensions/api/interfaces/Renderer.Component.DrawerItemProps/index.html +++ b/master/extensions/api/interfaces/Renderer.Component.DrawerItemProps/index.html @@ -2568,7 +2568,7 @@

Renderer.Component.DrawerItemProps

Hierarchy#

DrawerItemProps

↳↳ DrawerItemLabelsProps

@@ -3184,22 +3184,22 @@ A hint could be a sample value or a brief description of the expected format.

className#

Optional className: string

-

Overrides#

+

Inherited from#

React.HTMLAttributes.className


color#

Optional color: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.color


contentEditable#

Optional contentEditable: Booleanish | "inherit"

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.contentEditable


contextMenu#

Optional contextMenu: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.contextMenu


dangerouslySetInnerHTML#

@@ -3219,86 +3219,86 @@ A hint could be a sample value or a brief description of the expected format.

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.dangerouslySetInnerHTML


datatype#

Optional datatype: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.datatype


defaultChecked#

Optional defaultChecked: boolean

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.defaultChecked


defaultValue#

Optional defaultValue: string | number | readonly string[]

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.defaultValue


dir#

Optional dir: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.dir


draggable#

Optional draggable: Booleanish

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.draggable


hidden#

Optional hidden: boolean

-

Overrides#

+

Overrides#

React.HTMLAttributes.hidden


id#

Optional id: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.id


inlist#

Optional inlist: any

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.inlist


inputMode#

Optional inputMode: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal"

Hints at the type of data that might be entered by the user while editing the element or its contents

see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.inputMode


is#

Optional is: string

Specify that a standard HTML element should behave like a defined custom built-in element

see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.is


itemID#

Optional itemID: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.itemID


itemProp#

Optional itemProp: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.itemProp


itemRef#

Optional itemRef: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.itemRef


itemScope#

Optional itemScope: boolean

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.itemScope


itemType#

Optional itemType: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.itemType


labelsOnly#

@@ -3306,832 +3306,832 @@ A hint could be a sample value or a brief description of the expected format.

lang#

Optional lang: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.lang


name#

name: ReactNode


onAbort#

-

Optional onAbort: ReactEventHandler<any>

-

Inherited from#

+

Optional onAbort: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAbort


onAbortCapture#

-

Optional onAbortCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onAbortCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAbortCapture


onAnimationEnd#

-

Optional onAnimationEnd: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationEnd: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationEnd


onAnimationEndCapture#

-

Optional onAnimationEndCapture: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationEndCapture: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationEndCapture


onAnimationIteration#

-

Optional onAnimationIteration: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationIteration: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationIteration


onAnimationIterationCapture#

-

Optional onAnimationIterationCapture: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationIterationCapture: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationIterationCapture


onAnimationStart#

-

Optional onAnimationStart: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationStart: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationStart


onAnimationStartCapture#

-

Optional onAnimationStartCapture: AnimationEventHandler<any>

-

Inherited from#

+

Optional onAnimationStartCapture: AnimationEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAnimationStartCapture


onAuxClick#

-

Optional onAuxClick: MouseEventHandler<any>

-

Inherited from#

+

Optional onAuxClick: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAuxClick


onAuxClickCapture#

-

Optional onAuxClickCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onAuxClickCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onAuxClickCapture


onBeforeInput#

-

Optional onBeforeInput: FormEventHandler<any>

-

Inherited from#

+

Optional onBeforeInput: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onBeforeInput


onBeforeInputCapture#

-

Optional onBeforeInputCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onBeforeInputCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onBeforeInputCapture


onBlur#

-

Optional onBlur: FocusEventHandler<any>

-

Inherited from#

+

Optional onBlur: FocusEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onBlur


onBlurCapture#

-

Optional onBlurCapture: FocusEventHandler<any>

-

Inherited from#

+

Optional onBlurCapture: FocusEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onBlurCapture


onCanPlay#

-

Optional onCanPlay: ReactEventHandler<any>

-

Inherited from#

+

Optional onCanPlay: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCanPlay


onCanPlayCapture#

-

Optional onCanPlayCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onCanPlayCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCanPlayCapture


onCanPlayThrough#

-

Optional onCanPlayThrough: ReactEventHandler<any>

-

Inherited from#

+

Optional onCanPlayThrough: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCanPlayThrough


onCanPlayThroughCapture#

-

Optional onCanPlayThroughCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onCanPlayThroughCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCanPlayThroughCapture


onChange#

-

Optional onChange: FormEventHandler<any>

-

Inherited from#

+

Optional onChange: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onChange


onChangeCapture#

-

Optional onChangeCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onChangeCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onChangeCapture


onClick#

-

Optional onClick: MouseEventHandler<any>

-

Inherited from#

+

Optional onClick: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onClick


onClickCapture#

-

Optional onClickCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onClickCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onClickCapture


onCompositionEnd#

-

Optional onCompositionEnd: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionEnd: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionEnd


onCompositionEndCapture#

-

Optional onCompositionEndCapture: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionEndCapture: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionEndCapture


onCompositionStart#

-

Optional onCompositionStart: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionStart: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionStart


onCompositionStartCapture#

-

Optional onCompositionStartCapture: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionStartCapture: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionStartCapture


onCompositionUpdate#

-

Optional onCompositionUpdate: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionUpdate: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionUpdate


onCompositionUpdateCapture#

-

Optional onCompositionUpdateCapture: CompositionEventHandler<any>

-

Inherited from#

+

Optional onCompositionUpdateCapture: CompositionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCompositionUpdateCapture


onContextMenu#

-

Optional onContextMenu: MouseEventHandler<any>

-

Inherited from#

+

Optional onContextMenu: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onContextMenu


onContextMenuCapture#

-

Optional onContextMenuCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onContextMenuCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onContextMenuCapture


onCopy#

-

Optional onCopy: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onCopy: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCopy


onCopyCapture#

-

Optional onCopyCapture: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onCopyCapture: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCopyCapture


onCut#

-

Optional onCut: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onCut: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCut


onCutCapture#

-

Optional onCutCapture: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onCutCapture: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onCutCapture


onDoubleClick#

-

Optional onDoubleClick: MouseEventHandler<any>

-

Inherited from#

+

Optional onDoubleClick: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDoubleClick


onDoubleClickCapture#

-

Optional onDoubleClickCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onDoubleClickCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDoubleClickCapture


onDrag#

-

Optional onDrag: DragEventHandler<any>

-

Inherited from#

+

Optional onDrag: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDrag


onDragCapture#

-

Optional onDragCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragCapture


onDragEnd#

-

Optional onDragEnd: DragEventHandler<any>

-

Inherited from#

+

Optional onDragEnd: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragEnd


onDragEndCapture#

-

Optional onDragEndCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragEndCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragEndCapture


onDragEnter#

-

Optional onDragEnter: DragEventHandler<any>

-

Inherited from#

+

Optional onDragEnter: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragEnter


onDragEnterCapture#

-

Optional onDragEnterCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragEnterCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragEnterCapture


onDragExit#

-

Optional onDragExit: DragEventHandler<any>

-

Inherited from#

+

Optional onDragExit: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragExit


onDragExitCapture#

-

Optional onDragExitCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragExitCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragExitCapture


onDragLeave#

-

Optional onDragLeave: DragEventHandler<any>

-

Inherited from#

+

Optional onDragLeave: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragLeave


onDragLeaveCapture#

-

Optional onDragLeaveCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragLeaveCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragLeaveCapture


onDragOver#

-

Optional onDragOver: DragEventHandler<any>

-

Inherited from#

+

Optional onDragOver: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragOver


onDragOverCapture#

-

Optional onDragOverCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragOverCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragOverCapture


onDragStart#

-

Optional onDragStart: DragEventHandler<any>

-

Inherited from#

+

Optional onDragStart: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragStart


onDragStartCapture#

-

Optional onDragStartCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDragStartCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDragStartCapture


onDrop#

-

Optional onDrop: DragEventHandler<any>

-

Inherited from#

+

Optional onDrop: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDrop


onDropCapture#

-

Optional onDropCapture: DragEventHandler<any>

-

Inherited from#

+

Optional onDropCapture: DragEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDropCapture


onDurationChange#

-

Optional onDurationChange: ReactEventHandler<any>

-

Inherited from#

+

Optional onDurationChange: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDurationChange


onDurationChangeCapture#

-

Optional onDurationChangeCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onDurationChangeCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onDurationChangeCapture


onEmptied#

-

Optional onEmptied: ReactEventHandler<any>

-

Inherited from#

+

Optional onEmptied: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEmptied


onEmptiedCapture#

-

Optional onEmptiedCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onEmptiedCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEmptiedCapture


onEncrypted#

-

Optional onEncrypted: ReactEventHandler<any>

-

Inherited from#

+

Optional onEncrypted: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEncrypted


onEncryptedCapture#

-

Optional onEncryptedCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onEncryptedCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEncryptedCapture


onEnded#

-

Optional onEnded: ReactEventHandler<any>

-

Inherited from#

+

Optional onEnded: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEnded


onEndedCapture#

-

Optional onEndedCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onEndedCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onEndedCapture


onError#

-

Optional onError: ReactEventHandler<any>

-

Inherited from#

+

Optional onError: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onError


onErrorCapture#

-

Optional onErrorCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onErrorCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onErrorCapture


onFocus#

-

Optional onFocus: FocusEventHandler<any>

-

Inherited from#

+

Optional onFocus: FocusEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onFocus


onFocusCapture#

-

Optional onFocusCapture: FocusEventHandler<any>

-

Inherited from#

+

Optional onFocusCapture: FocusEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onFocusCapture


onGotPointerCapture#

-

Optional onGotPointerCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onGotPointerCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onGotPointerCapture


onGotPointerCaptureCapture#

-

Optional onGotPointerCaptureCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onGotPointerCaptureCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onGotPointerCaptureCapture


onInput#

-

Optional onInput: FormEventHandler<any>

-

Inherited from#

+

Optional onInput: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onInput


onInputCapture#

-

Optional onInputCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onInputCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onInputCapture


onInvalid#

-

Optional onInvalid: FormEventHandler<any>

-

Inherited from#

+

Optional onInvalid: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onInvalid


onInvalidCapture#

-

Optional onInvalidCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onInvalidCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onInvalidCapture


onKeyDown#

-

Optional onKeyDown: KeyboardEventHandler<any>

-

Inherited from#

+

Optional onKeyDown: KeyboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onKeyDown


onKeyDownCapture#

-

Optional onKeyDownCapture: KeyboardEventHandler<any>

-

Inherited from#

+

Optional onKeyDownCapture: KeyboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onKeyDownCapture


onKeyPress#

-

Optional onKeyPress: KeyboardEventHandler<any>

+

Optional onKeyPress: KeyboardEventHandler<HTMLDivElement>

deprecated

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.onKeyPress


onKeyPressCapture#

-

Optional onKeyPressCapture: KeyboardEventHandler<any>

+

Optional onKeyPressCapture: KeyboardEventHandler<HTMLDivElement>

deprecated

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.onKeyPressCapture


onKeyUp#

-

Optional onKeyUp: KeyboardEventHandler<any>

-

Inherited from#

+

Optional onKeyUp: KeyboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onKeyUp


onKeyUpCapture#

-

Optional onKeyUpCapture: KeyboardEventHandler<any>

-

Inherited from#

+

Optional onKeyUpCapture: KeyboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onKeyUpCapture


onLoad#

-

Optional onLoad: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoad: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoad


onLoadCapture#

-

Optional onLoadCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadCapture


onLoadStart#

-

Optional onLoadStart: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadStart: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadStart


onLoadStartCapture#

-

Optional onLoadStartCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadStartCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadStartCapture


onLoadedData#

-

Optional onLoadedData: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadedData: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadedData


onLoadedDataCapture#

-

Optional onLoadedDataCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadedDataCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadedDataCapture


onLoadedMetadata#

-

Optional onLoadedMetadata: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadedMetadata: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadedMetadata


onLoadedMetadataCapture#

-

Optional onLoadedMetadataCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onLoadedMetadataCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLoadedMetadataCapture


onLostPointerCapture#

-

Optional onLostPointerCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onLostPointerCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLostPointerCapture


onLostPointerCaptureCapture#

-

Optional onLostPointerCaptureCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onLostPointerCaptureCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onLostPointerCaptureCapture


onMouseDown#

-

Optional onMouseDown: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseDown: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseDown


onMouseDownCapture#

-

Optional onMouseDownCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseDownCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseDownCapture


onMouseEnter#

-

Optional onMouseEnter: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseEnter: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseEnter


onMouseLeave#

-

Optional onMouseLeave: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseLeave: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseLeave


onMouseMove#

-

Optional onMouseMove: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseMove: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseMove


onMouseMoveCapture#

-

Optional onMouseMoveCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseMoveCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseMoveCapture


onMouseOut#

-

Optional onMouseOut: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseOut: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseOut


onMouseOutCapture#

-

Optional onMouseOutCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseOutCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseOutCapture


onMouseOver#

-

Optional onMouseOver: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseOver: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseOver


onMouseOverCapture#

-

Optional onMouseOverCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseOverCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseOverCapture


onMouseUp#

-

Optional onMouseUp: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseUp: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseUp


onMouseUpCapture#

-

Optional onMouseUpCapture: MouseEventHandler<any>

-

Inherited from#

+

Optional onMouseUpCapture: MouseEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onMouseUpCapture


onPaste#

-

Optional onPaste: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onPaste: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPaste


onPasteCapture#

-

Optional onPasteCapture: ClipboardEventHandler<any>

-

Inherited from#

+

Optional onPasteCapture: ClipboardEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPasteCapture


onPause#

-

Optional onPause: ReactEventHandler<any>

-

Inherited from#

+

Optional onPause: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPause


onPauseCapture#

-

Optional onPauseCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onPauseCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPauseCapture


onPlay#

-

Optional onPlay: ReactEventHandler<any>

-

Inherited from#

+

Optional onPlay: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPlay


onPlayCapture#

-

Optional onPlayCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onPlayCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPlayCapture


onPlaying#

-

Optional onPlaying: ReactEventHandler<any>

-

Inherited from#

+

Optional onPlaying: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPlaying


onPlayingCapture#

-

Optional onPlayingCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onPlayingCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPlayingCapture


onPointerCancel#

-

Optional onPointerCancel: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerCancel: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerCancel


onPointerCancelCapture#

-

Optional onPointerCancelCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerCancelCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerCancelCapture


onPointerDown#

-

Optional onPointerDown: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerDown: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerDown


onPointerDownCapture#

-

Optional onPointerDownCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerDownCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerDownCapture


onPointerEnter#

-

Optional onPointerEnter: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerEnter: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerEnter


onPointerEnterCapture#

-

Optional onPointerEnterCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerEnterCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerEnterCapture


onPointerLeave#

-

Optional onPointerLeave: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerLeave: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerLeave


onPointerLeaveCapture#

-

Optional onPointerLeaveCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerLeaveCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerLeaveCapture


onPointerMove#

-

Optional onPointerMove: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerMove: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerMove


onPointerMoveCapture#

-

Optional onPointerMoveCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerMoveCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerMoveCapture


onPointerOut#

-

Optional onPointerOut: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerOut: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerOut


onPointerOutCapture#

-

Optional onPointerOutCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerOutCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerOutCapture


onPointerOver#

-

Optional onPointerOver: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerOver: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerOver


onPointerOverCapture#

-

Optional onPointerOverCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerOverCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerOverCapture


onPointerUp#

-

Optional onPointerUp: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerUp: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerUp


onPointerUpCapture#

-

Optional onPointerUpCapture: PointerEventHandler<any>

-

Inherited from#

+

Optional onPointerUpCapture: PointerEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onPointerUpCapture


onProgress#

-

Optional onProgress: ReactEventHandler<any>

-

Inherited from#

+

Optional onProgress: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onProgress


onProgressCapture#

-

Optional onProgressCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onProgressCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onProgressCapture


onRateChange#

-

Optional onRateChange: ReactEventHandler<any>

-

Inherited from#

+

Optional onRateChange: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onRateChange


onRateChangeCapture#

-

Optional onRateChangeCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onRateChangeCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onRateChangeCapture


onReset#

-

Optional onReset: FormEventHandler<any>

-

Inherited from#

+

Optional onReset: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onReset


onResetCapture#

-

Optional onResetCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onResetCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onResetCapture


onScroll#

-

Optional onScroll: UIEventHandler<any>

-

Inherited from#

+

Optional onScroll: UIEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onScroll


onScrollCapture#

-

Optional onScrollCapture: UIEventHandler<any>

-

Inherited from#

+

Optional onScrollCapture: UIEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onScrollCapture


onSeeked#

-

Optional onSeeked: ReactEventHandler<any>

-

Inherited from#

+

Optional onSeeked: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSeeked


onSeekedCapture#

-

Optional onSeekedCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onSeekedCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSeekedCapture


onSeeking#

-

Optional onSeeking: ReactEventHandler<any>

-

Inherited from#

+

Optional onSeeking: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSeeking


onSeekingCapture#

-

Optional onSeekingCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onSeekingCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSeekingCapture


onSelect#

-

Optional onSelect: ReactEventHandler<any>

-

Inherited from#

+

Optional onSelect: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSelect


onSelectCapture#

-

Optional onSelectCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onSelectCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSelectCapture


onStalled#

-

Optional onStalled: ReactEventHandler<any>

-

Inherited from#

+

Optional onStalled: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onStalled


onStalledCapture#

-

Optional onStalledCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onStalledCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onStalledCapture


onSubmit#

-

Optional onSubmit: FormEventHandler<any>

-

Inherited from#

+

Optional onSubmit: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSubmit


onSubmitCapture#

-

Optional onSubmitCapture: FormEventHandler<any>

-

Inherited from#

+

Optional onSubmitCapture: FormEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSubmitCapture


onSuspend#

-

Optional onSuspend: ReactEventHandler<any>

-

Inherited from#

+

Optional onSuspend: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSuspend


onSuspendCapture#

-

Optional onSuspendCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onSuspendCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onSuspendCapture


onTimeUpdate#

-

Optional onTimeUpdate: ReactEventHandler<any>

-

Inherited from#

+

Optional onTimeUpdate: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTimeUpdate


onTimeUpdateCapture#

-

Optional onTimeUpdateCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onTimeUpdateCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTimeUpdateCapture


onTouchCancel#

-

Optional onTouchCancel: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchCancel: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchCancel


onTouchCancelCapture#

-

Optional onTouchCancelCapture: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchCancelCapture: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchCancelCapture


onTouchEnd#

-

Optional onTouchEnd: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchEnd: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchEnd


onTouchEndCapture#

-

Optional onTouchEndCapture: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchEndCapture: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchEndCapture


onTouchMove#

-

Optional onTouchMove: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchMove: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchMove


onTouchMoveCapture#

-

Optional onTouchMoveCapture: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchMoveCapture: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchMoveCapture


onTouchStart#

-

Optional onTouchStart: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchStart: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchStart


onTouchStartCapture#

-

Optional onTouchStartCapture: TouchEventHandler<any>

-

Inherited from#

+

Optional onTouchStartCapture: TouchEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTouchStartCapture


onTransitionEnd#

-

Optional onTransitionEnd: TransitionEventHandler<any>

-

Inherited from#

+

Optional onTransitionEnd: TransitionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTransitionEnd


onTransitionEndCapture#

-

Optional onTransitionEndCapture: TransitionEventHandler<any>

-

Inherited from#

+

Optional onTransitionEndCapture: TransitionEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onTransitionEndCapture


onVolumeChange#

-

Optional onVolumeChange: ReactEventHandler<any>

-

Inherited from#

+

Optional onVolumeChange: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onVolumeChange


onVolumeChangeCapture#

-

Optional onVolumeChangeCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onVolumeChangeCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onVolumeChangeCapture


onWaiting#

-

Optional onWaiting: ReactEventHandler<any>

-

Inherited from#

+

Optional onWaiting: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onWaiting


onWaitingCapture#

-

Optional onWaitingCapture: ReactEventHandler<any>

-

Inherited from#

+

Optional onWaitingCapture: ReactEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onWaitingCapture


onWheel#

-

Optional onWheel: WheelEventHandler<any>

-

Inherited from#

+

Optional onWheel: WheelEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onWheel


onWheelCapture#

-

Optional onWheelCapture: WheelEventHandler<any>

-

Inherited from#

+

Optional onWheelCapture: WheelEventHandler<HTMLDivElement>

+

Inherited from#

React.HTMLAttributes.onWheelCapture


placeholder#

Optional placeholder: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.placeholder


prefix#

Optional prefix: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.prefix


property#

Optional property: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.property


radioGroup#

Optional radioGroup: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.radioGroup


renderBoolean#

@@ -4139,77 +4139,77 @@ A hint could be a sample value or a brief description of the expected format.

resource#

Optional resource: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.resource


results#

Optional results: number

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.results


role#

Optional role: AriaRole

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.role


security#

Optional security: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.security


slot#

Optional slot: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.slot


spellCheck#

Optional spellCheck: Booleanish

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.spellCheck


style#

Optional style: CSSProperties

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.style


suppressContentEditableWarning#

Optional suppressContentEditableWarning: boolean

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.suppressContentEditableWarning


suppressHydrationWarning#

Optional suppressHydrationWarning: boolean

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.suppressHydrationWarning


tabIndex#

Optional tabIndex: number

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.tabIndex


title#

Optional title: string

-

Overrides#

+

Overrides#

React.HTMLAttributes.title


translate#

Optional translate: "yes" | "no"

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.translate


typeof#

Optional typeof: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.typeof


unselectable#

Optional unselectable: "on" | "off"

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.unselectable


vocab#

Optional vocab: string

-

Inherited from#

+

Inherited from#

React.HTMLAttributes.vocab

diff --git a/master/extensions/api/interfaces/Renderer.Component.DrawerTitleProps/index.html b/master/extensions/api/interfaces/Renderer.Component.DrawerTitleProps/index.html index f88d9fb8b0..d73a29e1f7 100644 --- a/master/extensions/api/interfaces/Renderer.Component.DrawerTitleProps/index.html +++ b/master/extensions/api/interfaces/Renderer.Component.DrawerTitleProps/index.html @@ -739,6 +739,13 @@