From 667920c417f4210ca8e16b4e0afd46c22c80b002 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 4 May 2022 16:52:42 +0000 Subject: [PATCH] Deployed dbdde19222 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 +- .../index.html | 1680 ----------------- .../Renderer.Component.MenuActions/index.html | 1599 ---------------- .../api/classes/Renderer.Ipc/index.html | 2 +- .../classes/Renderer.LensExtension/index.html | 15 +- .../index.html | 44 +- .../index.html | 882 +++++++++ .../index.html | 917 +++++++++ .../index.html | 850 +++++++++ .../index.html | 901 +++++++++ .../index.html | 1006 ++++++++++ .../Renderer.Component.IconProps/index.html | 549 +++--- .../index.html | 66 +- .../index.html | 50 +- .../Renderer.Component.MenuProps/index.html | 11 + .../api/modules/Common.Catalog/index.html | 1 + .../api/modules/Common.Types/index.html | 50 +- .../api/modules/Renderer.Component/index.html | 31 +- .../modules/Renderer.Navigation/index.html | 1 + master/search/search_index.json | 2 +- master/sitemap.xml | 35 +- master/sitemap.xml.gz | Bin 2301 -> 2331 bytes 23 files changed, 5056 insertions(+), 3642 deletions(-) delete mode 100644 master/extensions/api/classes/Renderer.Component.ConfirmDialog/index.html delete mode 100644 master/extensions/api/classes/Renderer.Component.MenuActions/index.html create mode 100644 master/extensions/api/interfaces/Common.Catalog.CatalogEntityContextMenuNavigate/index.html create mode 100644 master/extensions/api/interfaces/Common.Types.KubeObjectContextMenuItem/index.html create mode 100644 master/extensions/api/interfaces/Common.Types.KubeObjectHandlers/index.html create mode 100644 master/extensions/api/interfaces/Common.Types.KubeObjectOnContextMenuOpenContext/index.html create mode 100644 master/extensions/api/interfaces/Renderer.Component.BaseIconProps/index.html diff --git a/master/extensions/api/classes/Main.Ipc/index.html b/master/extensions/api/classes/Main.Ipc/index.html index d669edf22e..a0ad6f14bf 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@56181

+

IpcRegistrar.__@IpcPrefix@56400


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 cac89dc65b..34b3625cf3 100644 --- a/master/extensions/api/classes/Main.LensExtension/index.html +++ b/master/extensions/api/classes/Main.LensExtension/index.html @@ -1069,7 +1069,7 @@

[Disposers]#

[Disposers]: ExtendableDisposer

Inherited from#

-

LensExtension.__@Disposers@24360

+

LensExtension.__@Disposers@24410


appMenus#

appMenus: MenuRegistration[] = []

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

Returns#

void

Inherited from#

-

LensExtension.__@setLensExtensionDependencies@24320

+

LensExtension.__@setLensExtensionDependencies@24370


activate#

activate(): Promise<void>

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

Class: ConfirmDialog#

-

Renderer.Component.ConfirmDialog

-

Hierarchy#

- -

ConfirmDialog

-

Table of contents#

-

Constructors#

- -

Properties#

- -

Accessors#

- -

Methods#

- -

Constructors#

-

constructor#

-

new ConfirmDialog(props)

-

Parameters#

- - - - - - - - - - - - - -
NameType
propsConfirmDialogProps
-

Overrides#

-

React.Component<ConfirmDialogProps\>.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

-
-

isSaving#

-

isSaving: boolean = false

-
-

props#

-

Readonly props: Readonly<ConfirmDialogProps> & 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

-
-

defaultParams#

-

Static defaultParams: Partial<ConfirmDialogParams>

-

Accessors#

-

params#

-

get params(): ConfirmDialogParams

-

Returns#

-

ConfirmDialogParams

-

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<ConfirmDialogProps>
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<ConfirmDialogProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

void

-

Inherited from#

-

React.Component.UNSAFE_componentWillUpdate

-
-

close#

-

close(): Promise<void>

-

Returns#

-

Promise<void>

-
-

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<ConfirmDialogProps>
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<ConfirmDialogProps>
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<ConfirmDialogProps>
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<ConfirmDialogProps>
prevStateReadonly<{}>
-

Returns#

-

any

-

Inherited from#

-

React.Component.getSnapshotBeforeUpdate

-
-

ok#

-

ok(): Promise<void>

-

Returns#

-

Promise<void>

-
-

onClose#

-

onClose(): void

-

Returns#

-

void

-
-

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<ConfirmDialogProps>) => {} | 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<ConfirmDialogProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

boolean

-

Inherited from#

-

React.Component.shouldComponentUpdate

-
-

confirm#

-

Static confirm(params): Promise<boolean>

-

Parameters#

- - - - - - - - - - - - - -
NameType
paramsConfirmDialogBooleanParams
-

Returns#

-

Promise<boolean>

-
-

open#

-

Static open(params): void

-

Parameters#

- - - - - - - - - - - - - -
NameType
paramsConfirmDialogParams
-

Returns#

-

void

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

Class: MenuActions#

-

Renderer.Component.MenuActions

-

Hierarchy#

- -

MenuActions

-

Table of contents#

-

Constructors#

- -

Properties#

- -

Methods#

- -

Constructors#

-

constructor#

-

new MenuActions(props)

-

Parameters#

- - - - - - - - - - - - - -
NameType
propsMenuActionsProps
-

Overrides#

-

React.Component<MenuActionsProps\>.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

-
-

id#

-

id: string

-
-

isOpen#

-

isOpen: boolean = !!this.props.toolbar

-
-

props#

-

Readonly props: Readonly<MenuActionsProps> & 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

-
-

defaultProps#

-

Static defaultProps: MenuActionsProps

-

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<MenuActionsProps>
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<MenuActionsProps>
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<MenuActionsProps>
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<MenuActionsProps>
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<MenuActionsProps>
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<MenuActionsProps>
prevStateReadonly<{}>
-

Returns#

-

any

-

Inherited from#

-

React.Component.getSnapshotBeforeUpdate

-
-

remove#

-

remove(): void

-

Returns#

-

void

-
-

render#

-

render(): Element

-

Returns#

-

Element

-

Overrides#

-

React.Component.render

-
-

renderTriggerIcon#

-

renderTriggerIcon(): Element

-

Returns#

-

Element

-
-

setState#

-

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

-

Type parameters#

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

Parameters#

- - - - - - - - - - - - - - - - - -
NameType
state{} | (prevState: Readonly<{}>, props: Readonly<MenuActionsProps>) => {} | 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<MenuActionsProps>
nextStateReadonly<{}>
nextContextany
-

Returns#

-

boolean

-

Inherited from#

-

React.Component.shouldComponentUpdate

-
-

toggle#

-

toggle(): void

-

Returns#

-

void

- - - - - - - -
- -
-
- -
- - - - -
-
-
-
- - - - - - - - \ 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 5505518148..9d2254006a 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@56181

+

IpcRegistrar.__@IpcPrefix@56400


extension#

Protected extension: LensExtension

diff --git a/master/extensions/api/classes/Renderer.LensExtension/index.html b/master/extensions/api/classes/Renderer.LensExtension/index.html index 747436dcf1..bfb9fa9119 100644 --- a/master/extensions/api/classes/Renderer.LensExtension/index.html +++ b/master/extensions/api/classes/Renderer.LensExtension/index.html @@ -876,6 +876,13 @@ kubeObjectDetailItems + + +
  • + + kubeObjectHandlers + +
  • @@ -1132,6 +1139,7 @@
  • id
  • isBundled
  • kubeObjectDetailItems
  • +
  • kubeObjectHandlers
  • kubeObjectMenuItems
  • kubeObjectStatusTexts
  • kubeWorkloadsOverviewItems
  • @@ -1189,7 +1197,7 @@

    [Disposers]#

    [Disposers]: ExtendableDisposer

    Inherited from#

    -

    LensExtension.__@Disposers@24360

    +

    LensExtension.__@Disposers@24410


    additionalCategoryColumns#

    additionalCategoryColumns: AdditionalCategoryColumnRegistration[] = []

    @@ -1231,6 +1239,9 @@

    kubeObjectDetailItems#

    kubeObjectDetailItems: KubeObjectDetailRegistration[] = []


    +

    kubeObjectHandlers#

    +

    kubeObjectHandlers: KubeObjectHandlerRegistration[] = []

    +

    kubeObjectMenuItems#

    kubeObjectMenuItems: KubeObjectMenuRegistration[] = []


    @@ -1322,7 +1333,7 @@

    Returns#

    void

    Inherited from#

    -

    LensExtension.__@setLensExtensionDependencies@24320

    +

    LensExtension.__@setLensExtensionDependencies@24370


    activate#

    activate(): Promise<void>

    diff --git a/master/extensions/api/interfaces/Common.Catalog.CatalogEntityContextMenuContext/index.html b/master/extensions/api/interfaces/Common.Catalog.CatalogEntityContextMenuContext/index.html index c9cf5134dd..ee195d0bb5 100644 --- a/master/extensions/api/interfaces/Common.Catalog.CatalogEntityContextMenuContext/index.html +++ b/master/extensions/api/interfaces/Common.Catalog.CatalogEntityContextMenuContext/index.html @@ -724,13 +724,6 @@ Properties - - -
  • - - Methods - -
  • @@ -753,19 +746,6 @@ - - - - - -
  • - - Methods - - -