@k8slens/extensions 5.3.0-git.81b972a2d0.0 → 5.3.0-git.820b2d1b7a.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.
Files changed (65) hide show
  1. package/dist/src/common/{utils/makeCss.d.ts → __tests__/base-store.test.d.ts} +1 -9
  2. package/dist/src/common/base-store.d.ts +3 -2
  3. package/dist/src/common/cluster-store.d.ts +2 -3
  4. package/dist/src/common/cluster-types.d.ts +7 -1
  5. package/dist/src/common/hotbar-store.d.ts +1 -0
  6. package/dist/src/common/k8s-api/endpoints/ingress.api.d.ts +10 -7
  7. package/dist/src/common/k8s-api/endpoints/job.api.d.ts +0 -1
  8. package/dist/src/common/k8s-api/kube-api.d.ts +12 -3
  9. package/dist/src/common/k8s-api/kube-object.d.ts +9 -1
  10. package/dist/src/common/k8s-api/kube-object.store.d.ts +25 -7
  11. package/dist/src/common/k8s-api/kube-watch-api.d.ts +29 -8
  12. package/dist/src/common/user-store/user-store.d.ts +1 -0
  13. package/dist/src/common/utils/paths.d.ts +1 -0
  14. package/dist/src/common/weblink-store.d.ts +1 -0
  15. package/dist/src/extensions/extension-api.js +219 -184
  16. package/dist/src/extensions/extension-store.d.ts +1 -0
  17. package/dist/src/extensions/extensions-store.d.ts +1 -0
  18. package/dist/src/extensions/main-api/k8s-api.d.ts +1 -1
  19. package/dist/src/extensions/registries/workloads-overview-detail-registry.d.ts +6 -3
  20. package/dist/src/extensions/renderer-api/k8s-api.d.ts +1 -1
  21. package/dist/src/main/catalog/catalog-entity-registry.d.ts +2 -2
  22. package/dist/src/main/cluster-manager.d.ts +2 -0
  23. package/dist/src/main/cluster.d.ts +5 -10
  24. package/dist/src/main/context-handler.d.ts +8 -5
  25. package/dist/src/main/extension-filesystem.d.ts +1 -0
  26. package/dist/src/main/kube-auth-proxy.d.ts +1 -8
  27. package/dist/src/main/lens-proxy.d.ts +1 -1
  28. package/dist/src/main/prometheus/helm.d.ts +1 -1
  29. package/dist/src/main/prometheus/lens.d.ts +1 -1
  30. package/dist/src/main/prometheus/operator.d.ts +1 -1
  31. package/dist/src/main/prometheus/provider-registry.d.ts +2 -1
  32. package/dist/src/main/prometheus/stacklight.d.ts +1 -1
  33. package/dist/src/main/proxy-functions/kube-api-request.d.ts +1 -1
  34. package/dist/src/main/proxy-functions/types.d.ts +2 -0
  35. package/dist/src/main/shell-session/node-shell-session.d.ts +2 -2
  36. package/dist/src/main/shell-session/shell-session.d.ts +8 -3
  37. package/dist/src/main/utils/shell-env.d.ts +1 -3
  38. package/dist/src/renderer/api/terminal-api.d.ts +29 -15
  39. package/dist/src/renderer/api/websocket-api.d.ts +55 -32
  40. package/dist/src/renderer/bootstrap.d.ts +1 -1
  41. package/dist/src/renderer/{components/app.d.ts → cluster-frame.d.ts} +6 -4
  42. package/dist/src/renderer/components/+catalog/catalog.d.ts +0 -1
  43. package/dist/src/renderer/components/+user-management/{select-options.d.ts → +cluster-role-bindings/__tests__/dialog.test.d.ts} +1 -7
  44. package/dist/src/renderer/components/+user-management/+cluster-role-bindings/dialog.d.ts +2 -3
  45. package/dist/src/renderer/components/+user-management/+role-bindings/__tests__/dialog.test.d.ts +21 -0
  46. package/dist/src/renderer/components/+user-management/+role-bindings/dialog.d.ts +2 -3
  47. package/dist/src/renderer/components/+workloads-daemonsets/daemonsets.d.ts +0 -1
  48. package/dist/src/renderer/components/+workloads-overview/overview.d.ts +3 -0
  49. package/dist/src/renderer/components/badge/badge.d.ts +1 -0
  50. package/dist/src/renderer/components/cluster-manager/cluster-status.d.ts +6 -7
  51. package/dist/src/renderer/components/cluster-manager/lens-views.d.ts +12 -8
  52. package/dist/src/renderer/components/cluster-settings/components/__tests__/cluster-local-terminal-settings.test.d.ts +21 -0
  53. package/dist/src/renderer/components/cluster-settings/components/{cluster-home-dir-setting.d.ts → cluster-local-terminal-settings.d.ts} +1 -12
  54. package/dist/src/renderer/components/cluster-settings/components/index.d.ts +1 -1
  55. package/dist/src/renderer/components/dialog/dialog.d.ts +1 -0
  56. package/dist/src/renderer/components/dock/edit-resource.d.ts +1 -1
  57. package/dist/src/renderer/components/dock/terminal.d.ts +7 -11
  58. package/dist/src/renderer/components/item-object-list/item-list-layout.d.ts +6 -0
  59. package/dist/src/renderer/components/kube-object-list-layout/kube-object-list-layout.d.ts +4 -0
  60. package/dist/src/renderer/components/layout/sidebar.d.ts +1 -1
  61. package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
  62. package/dist/src/renderer/components/table/table-cell.d.ts +1 -0
  63. package/dist/src/renderer/initializers/kube-object-detail-registry.d.ts +1 -1
  64. package/dist/src/renderer/{lens-app.d.ts → root-frame.d.ts} +4 -1
  65. package/package.json +1 -1
@@ -26,6 +26,7 @@ export interface BadgeProps extends React.HTMLAttributes<any>, TooltipDecoratorP
26
26
  label?: React.ReactNode;
27
27
  expandable?: boolean;
28
28
  disabled?: boolean;
29
+ scrollable?: boolean;
29
30
  }
30
31
  export declare class Badge extends React.Component<BadgeProps> {
31
32
  static defaultProps: Partial<BadgeProps>;
@@ -21,24 +21,23 @@
21
21
  import React from "react";
22
22
  import type { Cluster } from "../../../main/cluster";
23
23
  import { IClassName } from "../../utils";
24
- import type { KubeAuthProxyLog } from "../../../main/kube-auth-proxy";
25
- import type { ClusterId } from "../../../common/cluster-types";
24
+ import type { ClusterId, KubeAuthUpdate } from "../../../common/cluster-types";
26
25
  interface Props {
27
26
  className?: IClassName;
28
27
  clusterId: ClusterId;
29
28
  }
30
29
  export declare class ClusterStatus extends React.Component<Props> {
31
- authOutput: KubeAuthProxyLog[];
30
+ authOutput: KubeAuthUpdate[];
32
31
  isReconnecting: boolean;
33
32
  constructor(props: Props);
34
33
  get cluster(): Cluster;
35
34
  get hasErrors(): boolean;
36
- componentDidMount(): Promise<void>;
37
- componentWillUnmount(): void;
38
- activateCluster: (force?: boolean) => Promise<void>;
35
+ componentDidMount(): void;
39
36
  reconnect: () => Promise<void>;
40
37
  manageProxySettings: () => void;
41
- renderContent(): JSX.Element;
38
+ renderAuthenticationOutput(): JSX.Element;
39
+ renderStatusIcon(): JSX.Element;
40
+ renderReconnectionHelp(): JSX.Element;
42
41
  render(): JSX.Element;
43
42
  }
44
43
  export {};
@@ -19,13 +19,17 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  import type { ClusterId } from "../../../common/cluster-types";
22
+ import { Singleton } from "../../utils";
22
23
  export interface LensView {
23
- isLoaded?: boolean;
24
- clusterId: ClusterId;
25
- view: HTMLIFrameElement;
24
+ isLoaded: boolean;
25
+ frame: HTMLIFrameElement;
26
+ }
27
+ export declare class ClusterFrameHandler extends Singleton {
28
+ private views;
29
+ constructor();
30
+ hasLoadedView(clusterId: string): boolean;
31
+ initView(clusterId: ClusterId): void;
32
+ private prevVisibleClusterChange?;
33
+ setVisibleCluster(clusterId: ClusterId | null): void;
34
+ clearVisibleCluster(): void;
26
35
  }
27
- export declare const lensViews: import("mobx").ObservableMap<string, LensView>;
28
- export declare function hasLoadedView(clusterId: ClusterId): boolean;
29
- export declare function initView(clusterId: ClusterId): Promise<void>;
30
- export declare function autoCleanOnRemove(clusterId: ClusterId, iframe: HTMLIFrameElement): Promise<void>;
31
- export declare function refreshViews(visibleClusterId?: string): void;
@@ -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 {};
@@ -18,20 +18,9 @@
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 React from "react";
22
21
  import type { Cluster } from "../../../../main/cluster";
23
22
  interface Props {
24
23
  cluster: Cluster;
25
24
  }
26
- export declare class ClusterHomeDirSetting extends React.Component<Props> {
27
- directory: string;
28
- defaultNamespace: string;
29
- constructor(props: Props);
30
- componentDidMount(): Promise<void>;
31
- saveCWD: () => void;
32
- onChangeTerminalCWD: (value: string) => void;
33
- saveDefaultNamespace: () => void;
34
- onChangeDefaultNamespace: (value: string) => void;
35
- render(): JSX.Element;
36
- }
25
+ export declare const ClusterLocalTerminalSetting: ({ cluster }: Props) => JSX.Element;
37
26
  export {};
@@ -19,7 +19,7 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  export * from "./cluster-accessible-namespaces";
22
- export * from "./cluster-home-dir-setting";
22
+ export * from "./cluster-local-terminal-settings";
23
23
  export * from "./cluster-kubeconfig";
24
24
  export * from "./cluster-metrics-setting";
25
25
  export * from "./cluster-name-setting";
@@ -36,6 +36,7 @@ interface DialogState {
36
36
  }
37
37
  export declare class Dialog extends React.PureComponent<DialogProps, DialogState> {
38
38
  private contentElem;
39
+ ref: React.RefObject<HTMLDivElement>;
39
40
  static defaultProps: DialogProps;
40
41
  closeOnNavigate: import("mobx").IReactionDisposer;
41
42
  state: DialogState;
@@ -32,7 +32,7 @@ export declare class EditResource extends React.Component<Props> {
32
32
  get isReadyForEditing(): boolean;
33
33
  get resource(): KubeObject | undefined;
34
34
  get draft(): string;
35
- saveDraft(draft: string | object): void;
35
+ saveDraft(draft: string): void;
36
36
  onChange: (draft: string) => void;
37
37
  onError: (error?: Error | string) => void;
38
38
  save: () => Promise<JSX.Element>;
@@ -19,28 +19,24 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  /// <reference types="lodash" />
22
- import { Terminal as XTerm } from "xterm";
23
- import { FitAddon } from "xterm-addon-fit";
24
22
  import { TabId } from "./dock.store";
25
- import type { TerminalApi } from "../../api/terminal-api";
23
+ import { TerminalApi } from "../../api/terminal-api";
26
24
  export declare class Terminal {
27
25
  tabId: TabId;
28
26
  protected api: TerminalApi;
29
- static spawningPool: HTMLElement;
30
- static init(): void;
27
+ static readonly spawningPool: HTMLDivElement;
31
28
  static preloadFonts(): Promise<void>;
32
- xterm: XTerm;
33
- fitAddon: FitAddon;
34
- scrollPos: number;
35
- disposers: Function[];
29
+ private xterm;
30
+ private readonly fitAddon;
31
+ private scrollPos;
32
+ private disposer;
36
33
  protected setTheme(colors: Record<string, string>): void;
37
34
  get elem(): HTMLElement;
38
35
  get viewport(): Element;
39
- constructor(tabId: TabId, api: TerminalApi);
40
36
  get isActive(): boolean;
41
37
  attachTo(parentElem: HTMLElement): void;
42
38
  detach(): void;
43
- init(): Promise<void>;
39
+ constructor(tabId: TabId, api: TerminalApi);
44
40
  destroy(): void;
45
41
  fit: () => void;
46
42
  fitLazy: import("lodash").DebouncedFunc<() => void>;
@@ -70,6 +70,12 @@ export interface ItemListLayoutProps<I extends ItemObject> {
70
70
  onDetails?: (item: I) => void;
71
71
  customizeRemoveDialog?: (selectedItems: I[]) => Partial<ConfirmDialogParams>;
72
72
  renderFooter?: (parent: ItemListLayout<I>) => React.ReactNode;
73
+ /**
74
+ * Message to display when a store failed to load
75
+ *
76
+ * @default "Failed to load items"
77
+ */
78
+ failedToLoadMessage?: React.ReactNode;
73
79
  filterCallbacks?: ItemsFilters<I>;
74
80
  }
75
81
  export declare class ItemListLayout<I extends ItemObject> extends React.Component<ItemListLayoutProps<I>> {
@@ -18,6 +18,7 @@
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 "./kube-object-list-layout.scss";
21
22
  import React from "react";
22
23
  import type { KubeObject } from "../../../common/k8s-api/kube-object";
23
24
  import { ItemListLayoutProps } from "../item-object-list/item-list-layout";
@@ -25,11 +26,14 @@ import type { KubeObjectStore } from "../../../common/k8s-api/kube-object.store"
25
26
  export interface KubeObjectListLayoutProps<K extends KubeObject> extends ItemListLayoutProps<K> {
26
27
  store: KubeObjectStore<K>;
27
28
  dependentStores?: KubeObjectStore<KubeObject>[];
29
+ subscribeStores?: boolean;
28
30
  }
29
31
  export declare class KubeObjectListLayout<K extends KubeObject> extends React.Component<KubeObjectListLayoutProps<K>> {
30
32
  static defaultProps: object;
31
33
  constructor(props: KubeObjectListLayoutProps<K>);
34
+ loadErrors: string[];
32
35
  get selectedItem(): K;
33
36
  componentDidMount(): void;
37
+ renderLoadErrors(): JSX.Element;
34
38
  render(): JSX.Element;
35
39
  }
@@ -26,7 +26,7 @@ interface Props {
26
26
  }
27
27
  export declare class Sidebar extends React.Component<Props> {
28
28
  static displayName: string;
29
- componentDidMount(): Promise<void>;
29
+ componentDidMount(): void;
30
30
  renderCustomResources(): JSX.Element | JSX.Element[];
31
31
  renderTreeFromTabRoutes(tabRoutes?: TabLayoutRoute[]): React.ReactNode;
32
32
  getTabLayoutRoutes(menu: ClusterPageMenuRegistration): TabLayoutRoute[];
@@ -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" | "key" | "id" | "value" | "type" | "size" | "resource" | "style" | "dir" | "form" | "slot" | "title" | "color" | "className" | "prefix" | "defaultValue" | "hidden" | "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" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "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" | "ref" | "role" | "disabled" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "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" | "thumb" | "focusVisible" | "switchBase">>;
29
+ export declare const Switcher: React.ComponentType<Pick<Props, "name" | "key" | "id" | "value" | "type" | "size" | "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" | "role" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "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" | "thumb" | "focusVisible" | "switchBase">>;
30
30
  export {};
@@ -26,6 +26,7 @@ export interface TableCellProps extends React.DOMAttributes<HTMLDivElement> {
26
26
  id?: string;
27
27
  className?: string;
28
28
  title?: ReactNode;
29
+ scrollable?: boolean;
29
30
  checkbox?: boolean;
30
31
  isChecked?: boolean;
31
32
  renderBoolean?: boolean;
@@ -18,4 +18,4 @@
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
- export declare function intiKubeObjectDetailRegistry(): void;
21
+ export declare function initKubeObjectDetailRegistry(): void;
@@ -19,8 +19,11 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  import React from "react";
22
- export declare class LensApp extends React.Component {
22
+ export declare class RootFrame extends React.Component {
23
+ static readonly logPrefix = "[ROOT-FRAME]:";
24
+ static displayName: string;
23
25
  static init(rootElem: HTMLElement): Promise<void>;
26
+ constructor(props: {});
24
27
  componentDidMount(): void;
25
28
  render(): JSX.Element;
26
29
  }
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.3.0-git.81b972a2d0.0",
5
+ "version": "5.3.0-git.820b2d1b7a.0",
6
6
  "copyright": "© 2021 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",