@k8slens/extensions 5.2.1-git.936927af98.0 → 5.2.1-git.ab5eb356c4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/common/catalog/catalog-entity.d.ts +18 -0
- package/dist/src/common/catalog-entities/__tests__/kubernetes-cluster.test.d.ts +1 -0
- package/dist/src/common/catalog-entities/kubernetes-cluster.d.ts +1 -0
- package/dist/src/extensions/extension-api.js +46 -136
- package/dist/src/extensions/main-api/k8s-api.d.ts +1 -1
- package/dist/src/extensions/registries/command-registry.d.ts +2 -2
- package/dist/src/extensions/renderer-api/k8s-api.d.ts +1 -1
- package/dist/src/renderer/api/catalog-entity-registry.d.ts +3 -1
- package/dist/src/renderer/api/terminal-api.d.ts +0 -2
- package/dist/src/renderer/components/+add-cluster/add-cluster.d.ts +1 -1
- package/dist/src/renderer/components/+apps-helm-charts/helm-charts.d.ts +1 -0
- package/dist/src/renderer/components/+apps-releases/releases.d.ts +1 -0
- package/dist/src/renderer/components/+catalog/__tests__/catalog-add-button.test.d.ts +1 -0
- package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +0 -1
- package/dist/src/renderer/components/activate-entity-command/activate-entity-command.d.ts +30 -0
- package/dist/src/renderer/components/activate-entity-command/index.d.ts +21 -0
- package/dist/src/renderer/components/delete-cluster-dialog/save-config.d.ts +1 -1
- package/dist/src/renderer/components/input/input.d.ts +1 -1
- package/dist/src/renderer/components/kube-detail-params/params.d.ts +1 -0
- package/dist/src/renderer/components/layout/sidebar.d.ts +1 -1
- package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
export { isAllowedResource } from "../../common/utils/allowed-resource";
|
|
22
22
|
export { ResourceStack } from "../../common/k8s/resource-stack";
|
|
23
23
|
export { apiManager } from "../../common/k8s-api/api-manager";
|
|
24
|
-
export { KubeApi, forCluster } from "../../common/k8s-api/kube-api";
|
|
24
|
+
export { KubeApi, forCluster, forRemoteCluster } from "../../common/k8s-api/kube-api";
|
|
25
25
|
export { KubeObject } from "../../common/k8s-api/kube-object";
|
|
26
26
|
export { KubeObjectStore } from "../../common/k8s-api/kube-object.store";
|
|
27
27
|
export { Pod, podsApi, PodsApi } from "../../common/k8s-api/endpoints/pods.api";
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
import { BaseRegistry } from "./base-registry";
|
|
22
22
|
import type { LensExtension } from "../lens-extension";
|
|
23
23
|
import type { CatalogEntity } from "../../common/catalog";
|
|
24
|
-
export
|
|
24
|
+
export interface CommandContext {
|
|
25
25
|
entity?: CatalogEntity;
|
|
26
|
-
}
|
|
26
|
+
}
|
|
27
27
|
export interface CommandRegistration {
|
|
28
28
|
id: string;
|
|
29
29
|
title: string;
|
|
@@ -22,7 +22,7 @@ export { isAllowedResource } from "../../common/utils/allowed-resource";
|
|
|
22
22
|
export { ResourceStack } from "../../common/k8s/resource-stack";
|
|
23
23
|
export { apiManager } from "../../common/k8s-api/api-manager";
|
|
24
24
|
export { KubeObjectStore } from "../../common/k8s-api/kube-object.store";
|
|
25
|
-
export { KubeApi, forCluster } from "../../common/k8s-api/kube-api";
|
|
25
|
+
export { KubeApi, forCluster, forRemoteCluster } from "../../common/k8s-api/kube-api";
|
|
26
26
|
export { KubeObject } from "../../common/k8s-api/kube-object";
|
|
27
27
|
export { Pod, podsApi, PodsApi } from "../../common/k8s-api/endpoints";
|
|
28
28
|
export { Node, nodesApi, NodesApi } from "../../common/k8s-api/endpoints";
|
|
@@ -25,7 +25,7 @@ import { Disposer } from "../utils";
|
|
|
25
25
|
export declare type EntityFilter = (entity: CatalogEntity) => any;
|
|
26
26
|
export declare class CatalogEntityRegistry {
|
|
27
27
|
private categoryRegistry;
|
|
28
|
-
|
|
28
|
+
protected activeEntityId: string | undefined;
|
|
29
29
|
protected _entities: import("mobx").ObservableMap<string, CatalogEntity<import("../../common/catalog").CatalogEntityMetadata, import("../../common/catalog").CatalogEntityStatus, import("../../common/catalog").CatalogEntitySpec>>;
|
|
30
30
|
protected filters: import("mobx").ObservableSet<EntityFilter>;
|
|
31
31
|
/**
|
|
@@ -33,6 +33,8 @@ export declare class CatalogEntityRegistry {
|
|
|
33
33
|
*/
|
|
34
34
|
protected rawEntities: (CatalogEntityData & CatalogEntityKindData)[];
|
|
35
35
|
constructor(categoryRegistry: CatalogCategoryRegistry);
|
|
36
|
+
get activeEntity(): CatalogEntity | null;
|
|
37
|
+
set activeEntity(raw: CatalogEntity | string | null);
|
|
36
38
|
init(): void;
|
|
37
39
|
updateItems(items: (CatalogEntityData & CatalogEntityKindData)[]): void;
|
|
38
40
|
protected updateItem(item: (CatalogEntityData & CatalogEntityKindData)): void;
|
|
@@ -51,13 +51,11 @@ export declare class TerminalApi extends WebSocketApi {
|
|
|
51
51
|
};
|
|
52
52
|
onReady: EventEmitter<[]>;
|
|
53
53
|
isReady: boolean;
|
|
54
|
-
shellRunCommandsFinished: boolean;
|
|
55
54
|
readonly url: string;
|
|
56
55
|
constructor(options: TerminalApiQuery);
|
|
57
56
|
connect(): void;
|
|
58
57
|
destroy(): void;
|
|
59
58
|
removeAllListeners(): void;
|
|
60
|
-
_onShellRunCommandsFinished: (data: string) => void;
|
|
61
59
|
protected _onReady(data: string): boolean;
|
|
62
60
|
reconnect(): void;
|
|
63
61
|
sendCommand(key: string, channel?: TerminalChannels): void;
|
|
@@ -30,7 +30,7 @@ export declare class AddCluster extends React.Component {
|
|
|
30
30
|
kubeContexts: import("mobx").ObservableMap<string, Option>;
|
|
31
31
|
customConfig: string;
|
|
32
32
|
isWaiting: boolean;
|
|
33
|
-
|
|
33
|
+
errors: string[];
|
|
34
34
|
constructor(props: {});
|
|
35
35
|
componentDidMount(): void;
|
|
36
36
|
get allErrors(): string[];
|
|
@@ -28,6 +28,7 @@ interface Props extends RouteComponentProps<HelmChartsRouteParams> {
|
|
|
28
28
|
export declare class HelmCharts extends Component<Props> {
|
|
29
29
|
componentDidMount(): void;
|
|
30
30
|
get selectedChart(): HelmChart;
|
|
31
|
+
onDetails: (chart: HelmChart) => void;
|
|
31
32
|
showDetails: (chart: HelmChart) => void;
|
|
32
33
|
hideDetails: () => void;
|
|
33
34
|
render(): JSX.Element;
|
|
@@ -28,6 +28,7 @@ interface Props extends RouteComponentProps<ReleaseRouteParams> {
|
|
|
28
28
|
export declare class HelmReleases extends Component<Props> {
|
|
29
29
|
componentDidMount(): void;
|
|
30
30
|
get selectedRelease(): HelmRelease;
|
|
31
|
+
onDetails: (item: HelmRelease) => void;
|
|
31
32
|
showDetails: (item: HelmRelease) => void;
|
|
32
33
|
hideDetails: () => void;
|
|
33
34
|
renderRemoveDialogMessage(selectedItems: HelmRelease[]): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./entity-settings.scss";
|
|
22
21
|
import React from "react";
|
|
23
22
|
import type { RouteComponentProps } from "react-router";
|
|
24
23
|
import type { CatalogEntity } from "../../api/catalog-entity";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
import React from "react";
|
|
22
|
+
import { CatalogEntity } from "../../api/catalog-entity";
|
|
23
|
+
export declare class ActivateEntityCommand extends React.Component {
|
|
24
|
+
get options(): {
|
|
25
|
+
label: string;
|
|
26
|
+
value: CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>;
|
|
27
|
+
}[];
|
|
28
|
+
onSelect(entity: CatalogEntity): void;
|
|
29
|
+
render(): JSX.Element;
|
|
30
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2021 OpenLens Authors
|
|
3
|
+
*
|
|
4
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
* this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
* the Software without restriction, including without limitation the rights to
|
|
7
|
+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
8
|
+
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9
|
+
* subject to the following conditions:
|
|
10
|
+
*
|
|
11
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
* copies or substantial portions of the Software.
|
|
13
|
+
*
|
|
14
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
16
|
+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
17
|
+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
18
|
+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
|
+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
export * from "./activate-entity-command";
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import
|
|
21
|
+
import { KubeConfig } from "@kubernetes/client-node";
|
|
22
22
|
export declare function saveKubeconfig(config: KubeConfig, path: string): Promise<void>;
|
|
@@ -80,7 +80,7 @@ interface State {
|
|
|
80
80
|
}
|
|
81
81
|
export declare class Input extends React.Component<InputProps, State> {
|
|
82
82
|
static defaultProps: object;
|
|
83
|
-
input: InputElement;
|
|
83
|
+
input: InputElement | null;
|
|
84
84
|
validators: InputValidator[];
|
|
85
85
|
state: State;
|
|
86
86
|
setValue(value?: string): void;
|
|
@@ -10,6 +10,7 @@ export declare const kubeDetailsUrlParam: import("../../navigation").PageParam<s
|
|
|
10
10
|
* last clicked Node should be "active" while Pod details are shown).
|
|
11
11
|
*/
|
|
12
12
|
export declare const kubeSelectedUrlParam: import("../../navigation").PageParam<string>;
|
|
13
|
+
export declare function toggleDetails(selfLink: string, resetSelected?: boolean): void;
|
|
13
14
|
export declare function showDetails(selfLink?: string, resetSelected?: boolean): void;
|
|
14
15
|
export declare function hideDetails(): void;
|
|
15
16
|
export declare function getDetailsUrl(selfLink: string, resetSelected?: boolean, mergeGlobals?: boolean): string;
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
19
19
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
20
|
*/
|
|
21
|
-
import "./sidebar.scss";
|
|
22
21
|
import type { TabLayoutRoute } from "./tab-layout";
|
|
23
22
|
import React from "react";
|
|
24
23
|
import { ClusterPageMenuRegistration } from "../../../extensions/registries";
|
|
@@ -32,6 +31,7 @@ export declare class Sidebar extends React.Component<Props> {
|
|
|
32
31
|
renderTreeFromTabRoutes(tabRoutes?: TabLayoutRoute[]): React.ReactNode;
|
|
33
32
|
getTabLayoutRoutes(menu: ClusterPageMenuRegistration): TabLayoutRoute[];
|
|
34
33
|
renderRegisteredMenus(): JSX.Element[];
|
|
34
|
+
renderCluster(): JSX.Element;
|
|
35
35
|
get clusterEntity(): import("../../api/catalog-entity").CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>;
|
|
36
36
|
render(): JSX.Element;
|
|
37
37
|
}
|
|
@@ -26,5 +26,5 @@ interface Styles extends Partial<Record<SwitchClassKey, string>> {
|
|
|
26
26
|
interface Props extends SwitchProps {
|
|
27
27
|
classes: Styles;
|
|
28
28
|
}
|
|
29
|
-
export declare const Switcher: React.ComponentType<Pick<Props, "name" | "id" | "key" | "value" | "type" | "resource" | "style" | "dir" | "form" | "slot" | "title" | "color" | "className" | "prefix" | "defaultValue" | "hidden" | "ref" | "disabled" | "onDrag" | "onDoubleClick" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "autoFocus" | "icon" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "readOnly" | "required" | "inputProps" | "action" | "innerRef" | "checkedIcon" | "disableFocusRipple" | "edge" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "inputRef"> & import("@material-ui/core/styles").StyledComponentProps<"track" | "checked" | "root" | "
|
|
29
|
+
export declare const Switcher: React.ComponentType<Pick<Props, "name" | "id" | "key" | "value" | "type" | "resource" | "style" | "dir" | "form" | "slot" | "title" | "color" | "className" | "prefix" | "defaultValue" | "hidden" | "ref" | "disabled" | "onDrag" | "onDoubleClick" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "autoFocus" | "icon" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "readOnly" | "required" | "inputProps" | "action" | "innerRef" | "checkedIcon" | "disableFocusRipple" | "edge" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "inputRef"> & import("@material-ui/core/styles").StyledComponentProps<"track" | "checked" | "root" | "switchBase" | "thumb" | "focusVisible">>;
|
|
30
30
|
export {};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@k8slens/extensions",
|
|
3
3
|
"productName": "OpenLens extensions",
|
|
4
4
|
"description": "OpenLens - Open Source Kubernetes IDE: extensions",
|
|
5
|
-
"version": "5.2.1-git.
|
|
5
|
+
"version": "5.2.1-git.ab5eb356c4.0",
|
|
6
6
|
"copyright": "© 2021 OpenLens Authors",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/src/extensions/extension-api.js",
|