@k8slens/extensions 5.6.0-git.e1c1e00a2b.0 → 5.6.0-git.e2320141a4.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/app-paths/app-path-injection-token.d.ts +0 -1
- package/dist/src/common/application-update/selected-update-channel/default-update-channel.injectable.d.ts +2 -0
- package/dist/src/common/application-update/selected-update-channel/selected-update-channel.injectable.d.ts +8 -0
- package/dist/src/common/application-update/update-channels.d.ts +11 -0
- package/dist/src/common/ipc/index.d.ts +0 -1
- package/dist/src/common/k8s-api/endpoints/cluster.api.d.ts +7 -0
- package/dist/src/common/k8s-api/endpoints/metrics.api.d.ts +1 -1
- package/dist/src/common/k8s-api/kube-api.d.ts +9 -0
- package/dist/src/common/terminal/channels.d.ts +28 -0
- package/dist/src/common/user-store/preferences-helpers.d.ts +2 -6
- package/dist/src/common/user-store/user-store.d.ts +7 -3
- package/dist/src/common/utils/buildUrl.d.ts +1 -1
- package/dist/src/common/utils/reject-promise.d.ts +1 -1
- package/dist/src/common/utils/type-narrowing.d.ts +5 -0
- package/dist/src/common/vars/base-bundled-binaries-dir.injectable.d.ts +2 -2
- package/dist/src/common/vars/normalized-platform-architecture.injectable.d.ts +2 -0
- package/dist/src/common/vars/package-json.injectable.d.ts +352 -0
- package/dist/src/common/vars.d.ts +1 -1
- package/dist/src/extensions/extensions-store/extensions-store.d.ts +5 -4
- package/dist/src/extensions/registries/entity-setting-registry.d.ts +1 -1
- package/dist/src/main/app-paths/app-name/product-name.injectable.d.ts +2 -0
- package/dist/src/main/kube-auth-proxy/kube-auth-proxy.d.ts +1 -0
- package/dist/src/main/start-main-application/lens-window/application-window/application-window.injectable.d.ts +1 -1
- package/dist/src/main/start-main-application/lens-window/application-window/create-lens-window.injectable.d.ts +1 -1
- package/dist/src/main/start-main-application/lens-window/application-window/lens-window-injection-token.d.ts +1 -1
- package/dist/src/main/start-main-application/lens-window/navigate.injectable.d.ts +1 -1
- package/dist/src/main/start-main-application/lens-window/splash-window/splash-window.injectable.d.ts +1 -1
- package/dist/src/main/{app-paths/register-channel → utils/channel}/ipc-main/ipc-main.injectable.d.ts +0 -1
- package/dist/src/renderer/api/terminal-api.d.ts +2 -22
- package/dist/src/renderer/api/websocket-api.d.ts +4 -4
- package/dist/src/renderer/components/animate/animate.d.ts +6 -1
- package/dist/src/renderer/components/animate/request-animation-frame.injectable.d.ts +2 -0
- package/dist/src/renderer/components/dock/dock/create-dock-tab.injectable.d.ts +1 -1
- package/dist/src/renderer/components/dock/terminal/terminal.d.ts +6 -3
- package/dist/src/renderer/components/drawer/drawer-title.d.ts +5 -1
- package/dist/src/renderer/components/input/input.d.ts +7 -8
- package/dist/src/renderer/components/input/input_validators.d.ts +28 -15
- package/dist/src/renderer/components/notifications/notifications-store.injectable.d.ts +3 -0
- package/dist/src/renderer/components/notifications/notifications.d.ts +7 -12
- package/dist/src/renderer/components/notifications/notifications.store.d.ts +0 -1
- package/dist/src/renderer/components/select/select.d.ts +1 -1
- package/dist/src/renderer/components/wizard/wizard.d.ts +2 -0
- package/dist/src/renderer/{app-paths/get-value-from-registered-channel/ipc-renderer → utils/channel}/ipc-renderer.injectable.d.ts +0 -1
- package/package.json +1 -1
- package/dist/src/common/ipc/update-available.d.ts +0 -19
- package/dist/src/common/ipc-channel/channel.d.ts +0 -8
- package/dist/src/common/ipc-channel/create-channel/create-channel.d.ts +0 -6
- package/dist/src/common/vars/bundled-binaries-normalized-arch.injectable.d.ts +0 -2
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import type { PathName } from "./app-path-names";
|
|
2
2
|
export declare type AppPaths = Record<PathName, string>;
|
|
3
3
|
export declare const appPathsInjectionToken: import("@ogre-tools/injectable").InjectionToken<AppPaths, void>;
|
|
4
|
-
export declare const appPathsIpcChannel: import("../ipc-channel/channel").Channel<AppPaths>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IComputedValue } from "mobx";
|
|
2
|
+
import type { UpdateChannel, UpdateChannelId } from "../update-channels";
|
|
3
|
+
export interface SelectedUpdateChannel {
|
|
4
|
+
value: IComputedValue<UpdateChannel>;
|
|
5
|
+
setValue: (channelId?: UpdateChannelId) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const selectedUpdateChannelInjectable: import("@ogre-tools/injectable").Injectable<SelectedUpdateChannel, unknown, void>;
|
|
8
|
+
export default selectedUpdateChannelInjectable;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
export declare type UpdateChannelId = "alpha" | "beta" | "latest";
|
|
6
|
+
export declare const updateChannels: Record<UpdateChannelId, UpdateChannel>;
|
|
7
|
+
export interface UpdateChannel {
|
|
8
|
+
readonly id: UpdateChannelId;
|
|
9
|
+
readonly label: string;
|
|
10
|
+
readonly moreStableUpdateChannel: UpdateChannel | null;
|
|
11
|
+
}
|
|
@@ -7,7 +7,13 @@ import { KubeObject } from "../kube-object";
|
|
|
7
7
|
import type { DerivedKubeApiOptions, IgnoredKubeApiOptions } from "../kube-api";
|
|
8
8
|
import { KubeApi } from "../kube-api";
|
|
9
9
|
export declare class ClusterApi extends KubeApi<Cluster> {
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated This field is legacy and never used.
|
|
12
|
+
*/
|
|
10
13
|
static kind: string;
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This field is legacy and never used.
|
|
16
|
+
*/
|
|
11
17
|
static namespaced: boolean;
|
|
12
18
|
constructor(opts?: DerivedKubeApiOptions & IgnoredKubeApiOptions);
|
|
13
19
|
}
|
|
@@ -68,5 +74,6 @@ export interface Cluster {
|
|
|
68
74
|
export declare class Cluster extends KubeObject {
|
|
69
75
|
static kind: string;
|
|
70
76
|
static apiBase: string;
|
|
77
|
+
static namespaced: boolean;
|
|
71
78
|
getStatus(): ClusterStatus;
|
|
72
79
|
}
|
|
@@ -45,7 +45,7 @@ export interface IResourceMetrics<T extends MetricData> {
|
|
|
45
45
|
networkTransmit: T;
|
|
46
46
|
}
|
|
47
47
|
export declare const metricsApi: {
|
|
48
|
-
getMetrics<T = IMetricsQuery>(query: T, reqParams?: IMetricsReqParams): Promise<T extends object ? { [K in keyof
|
|
48
|
+
getMetrics<T = IMetricsQuery>(query: T, reqParams?: IMetricsReqParams): Promise<T extends object ? T extends infer T_1 ? { [K in keyof T_1]: MetricData; } : never : MetricData>;
|
|
49
49
|
getMetricProviders(): Promise<MetricProviderInfo[]>;
|
|
50
50
|
};
|
|
51
51
|
export declare function normalizeMetrics(metrics: MetricData | undefined | null, frames?: number): MetricData;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
|
+
/// <reference types="node" />
|
|
5
6
|
import type { KubeObjectConstructor, KubeJsonApiDataFor, KubeObjectMetadata, KubeObjectScope } from "./kube-object";
|
|
6
7
|
import { KubeObject } from "./kube-object";
|
|
7
8
|
import type { IKubeWatchEvent } from "./kube-watch-event";
|
|
@@ -10,6 +11,7 @@ import { KubeJsonApi } from "./kube-json-api";
|
|
|
10
11
|
import type { Disposer } from "../utils";
|
|
11
12
|
import type { RequestInit } from "node-fetch";
|
|
12
13
|
import type AbortController from "abort-controller";
|
|
14
|
+
import { Agent } from "https";
|
|
13
15
|
import type { Patch } from "rfc6902";
|
|
14
16
|
import type { PartialDeep } from "type-fest";
|
|
15
17
|
/**
|
|
@@ -137,6 +139,13 @@ export interface IRemoteKubeApiConfig {
|
|
|
137
139
|
clientCertificateData?: string;
|
|
138
140
|
clientKeyData?: string;
|
|
139
141
|
};
|
|
142
|
+
/**
|
|
143
|
+
* Custom instance of https.agent to use for the requests
|
|
144
|
+
*
|
|
145
|
+
* @remarks the custom agent replaced default agent, options skipTLSVerify,
|
|
146
|
+
* clientCertificateData, clientKeyData and caData are ignored.
|
|
147
|
+
*/
|
|
148
|
+
agent?: Agent;
|
|
140
149
|
}
|
|
141
150
|
export declare function forCluster<Object extends KubeObject<any, any, KubeObjectScope>, Api extends KubeApi<Object>, Data extends KubeJsonApiDataFor<Object>>(cluster: ILocalKubeApiConfig, kubeClass: KubeObjectConstructor<Object, Data>, apiClass: new (apiOpts: KubeApiOptions<Object>) => Api): Api;
|
|
142
151
|
export declare function forCluster<Object extends KubeObject<any, any, KubeObjectScope>, Data extends KubeJsonApiDataFor<Object>>(cluster: ILocalKubeApiConfig, kubeClass: KubeObjectConstructor<Object, Data>, apiClass?: new (apiOpts: KubeApiOptions<Object>) => KubeApi<Object>): KubeApi<Object>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum TerminalChannels {
|
|
6
|
+
STDIN = "stdin",
|
|
7
|
+
STDOUT = "stdout",
|
|
8
|
+
CONNECTED = "connected",
|
|
9
|
+
RESIZE = "resize",
|
|
10
|
+
PING = "ping"
|
|
11
|
+
}
|
|
12
|
+
export declare type TerminalMessage = {
|
|
13
|
+
type: TerminalChannels.STDIN;
|
|
14
|
+
data: string;
|
|
15
|
+
} | {
|
|
16
|
+
type: TerminalChannels.STDOUT;
|
|
17
|
+
data: string;
|
|
18
|
+
} | {
|
|
19
|
+
type: TerminalChannels.CONNECTED;
|
|
20
|
+
} | {
|
|
21
|
+
type: TerminalChannels.RESIZE;
|
|
22
|
+
data: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
};
|
|
26
|
+
} | {
|
|
27
|
+
type: TerminalChannels.PING;
|
|
28
|
+
};
|
|
@@ -33,11 +33,6 @@ export interface DownloadMirror {
|
|
|
33
33
|
}
|
|
34
34
|
export declare const defaultPackageMirror = "default";
|
|
35
35
|
export declare const packageMirrors: Map<string, DownloadMirror>;
|
|
36
|
-
export interface UpdateChannelInfo {
|
|
37
|
-
label: string;
|
|
38
|
-
}
|
|
39
|
-
export declare const updateChannels: import("type-fest/source/readonly-deep").ReadonlyMapDeep<string, UpdateChannelInfo>;
|
|
40
|
-
export declare const defaultUpdateChannel: string;
|
|
41
36
|
export declare type ExtensionRegistryLocation = "default" | "npmrc" | "custom";
|
|
42
37
|
export declare type ExtensionRegistry = {
|
|
43
38
|
location: "default" | "npmrc";
|
|
@@ -55,6 +50,8 @@ export declare type UserStoreFlatModel = {
|
|
|
55
50
|
};
|
|
56
51
|
export declare type UserPreferencesModel = {
|
|
57
52
|
[field in keyof typeof DESCRIPTORS]: PreferencesModelType<field>;
|
|
53
|
+
} & {
|
|
54
|
+
updateChannel: string;
|
|
58
55
|
};
|
|
59
56
|
export declare const DESCRIPTORS: {
|
|
60
57
|
httpsProxy: PreferenceDescription<string | undefined, string | undefined>;
|
|
@@ -74,7 +71,6 @@ export declare const DESCRIPTORS: {
|
|
|
74
71
|
editorConfiguration: PreferenceDescription<Partial<Required<BaseEditorConfiguration>> | undefined, Required<BaseEditorConfiguration>>;
|
|
75
72
|
terminalCopyOnSelect: PreferenceDescription<boolean, boolean>;
|
|
76
73
|
terminalConfig: PreferenceDescription<TerminalConfig, TerminalConfig>;
|
|
77
|
-
updateChannel: PreferenceDescription<string, string>;
|
|
78
74
|
extensionRegistryUrl: PreferenceDescription<ExtensionRegistry, ExtensionRegistry>;
|
|
79
75
|
};
|
|
80
76
|
export {};
|
|
@@ -5,13 +5,18 @@
|
|
|
5
5
|
import { BaseStore } from "../base-store";
|
|
6
6
|
import { DESCRIPTORS } from "./preferences-helpers";
|
|
7
7
|
import type { UserPreferencesModel, StoreType } from "./preferences-helpers";
|
|
8
|
+
import type { SelectedUpdateChannel } from "../application-update/selected-update-channel/selected-update-channel.injectable";
|
|
8
9
|
export interface UserStoreModel {
|
|
9
10
|
lastSeenAppVersion: string;
|
|
10
11
|
preferences: UserPreferencesModel;
|
|
11
12
|
}
|
|
13
|
+
interface Dependencies {
|
|
14
|
+
selectedUpdateChannel: SelectedUpdateChannel;
|
|
15
|
+
}
|
|
12
16
|
export declare class UserStore extends BaseStore<UserStoreModel> {
|
|
17
|
+
private readonly dependencies;
|
|
13
18
|
readonly displayName = "UserStore";
|
|
14
|
-
constructor();
|
|
19
|
+
constructor(dependencies: Dependencies);
|
|
15
20
|
lastSeenAppVersion: string;
|
|
16
21
|
/**
|
|
17
22
|
* used in add-cluster page for providing context
|
|
@@ -38,7 +43,6 @@ export declare class UserStore extends BaseStore<UserStoreModel> {
|
|
|
38
43
|
kubectlBinariesPath: StoreType<typeof DESCRIPTORS["kubectlBinariesPath"]>;
|
|
39
44
|
terminalCopyOnSelect: StoreType<typeof DESCRIPTORS["terminalCopyOnSelect"]>;
|
|
40
45
|
terminalConfig: StoreType<typeof DESCRIPTORS["terminalConfig"]>;
|
|
41
|
-
updateChannel: StoreType<typeof DESCRIPTORS["updateChannel"]>;
|
|
42
46
|
extensionRegistryUrl: StoreType<typeof DESCRIPTORS["extensionRegistryUrl"]>;
|
|
43
47
|
/**
|
|
44
48
|
* Download kubectl binaries matching cluster version
|
|
@@ -63,7 +67,6 @@ export declare class UserStore extends BaseStore<UserStoreModel> {
|
|
|
63
67
|
syncKubeconfigEntries: StoreType<typeof DESCRIPTORS["syncKubeconfigEntries"]>;
|
|
64
68
|
get isNewVersion(): boolean;
|
|
65
69
|
get resolvedShell(): string | undefined;
|
|
66
|
-
get isAllowedToDowngrade(): boolean;
|
|
67
70
|
startMainReactions(): void;
|
|
68
71
|
/**
|
|
69
72
|
* Checks if a column (by ID) for a table (by ID) is configured to be hidden
|
|
@@ -81,3 +84,4 @@ export declare class UserStore extends BaseStore<UserStoreModel> {
|
|
|
81
84
|
protected fromStore({ lastSeenAppVersion, preferences }?: Partial<UserStoreModel>): void;
|
|
82
85
|
toJSON(): UserStoreModel;
|
|
83
86
|
}
|
|
87
|
+
export {};
|
|
@@ -12,4 +12,4 @@ export interface URLParams<P extends object = {}, Q extends object = {}> {
|
|
|
12
12
|
fragment?: string;
|
|
13
13
|
}
|
|
14
14
|
export declare function buildURL<P extends object = {}, Q extends object = {}>(path: string, { params, query, fragment }?: URLParams<P, Q>): string;
|
|
15
|
-
export declare function buildURLPositional<P extends object = {}, Q extends object = {}>(path: string): (params?: P
|
|
15
|
+
export declare function buildURLPositional<P extends object = {}, Q extends object = {}>(path: string): (params?: P, query?: Q, fragment?: string) => string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
|
-
import "abort-controller
|
|
5
|
+
import type { AbortSignal } from "abort-controller";
|
|
6
6
|
/**
|
|
7
7
|
* Creates a new promise that will be rejected when the signal rejects.
|
|
8
8
|
*
|
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
5
|
/// <reference types="node" />
|
|
6
|
+
/// <reference types="node" />
|
|
7
|
+
/// <reference types="node" />
|
|
8
|
+
/// <reference types="node" />
|
|
6
9
|
import type { ExecException, ExecFileException } from "child_process";
|
|
7
10
|
import type { IncomingMessage } from "http";
|
|
8
11
|
/**
|
|
@@ -96,6 +99,8 @@ export declare function bindPredicate<FnArgs extends any[], T>(fn: (arg1: unknow
|
|
|
96
99
|
export declare function hasDefiniteField<Field extends keyof T, T>(field: Field): (val: T) => val is T & {
|
|
97
100
|
[f in Field]-?: NonNullable<T[Field]>;
|
|
98
101
|
};
|
|
102
|
+
export declare function isPromiseSettledRejected<T>(result: PromiseSettledResult<T>): result is PromiseRejectedResult;
|
|
103
|
+
export declare function isPromiseSettledFulfilled<T>(result: PromiseSettledResult<T>): result is PromiseFulfilledResult<T>;
|
|
99
104
|
export declare function isErrnoException(error: unknown): error is NodeJS.ErrnoException;
|
|
100
105
|
export declare function isExecException(error: unknown): error is ExecException;
|
|
101
106
|
export declare function isExecFileException(error: unknown): error is ExecFileException;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default
|
|
1
|
+
declare const baseBundledBinariesDirectoryInjectable: import("@ogre-tools/injectable").Injectable<string, unknown, void>;
|
|
2
|
+
export default baseBundledBinariesDirectoryInjectable;
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable<{
|
|
2
|
+
name: string;
|
|
3
|
+
productName: string;
|
|
4
|
+
description: string;
|
|
5
|
+
homepage: string;
|
|
6
|
+
version: string;
|
|
7
|
+
main: string;
|
|
8
|
+
copyright: string;
|
|
9
|
+
license: string;
|
|
10
|
+
author: {
|
|
11
|
+
name: string;
|
|
12
|
+
email: string;
|
|
13
|
+
};
|
|
14
|
+
scripts: {
|
|
15
|
+
dev: string;
|
|
16
|
+
"dev-build": string;
|
|
17
|
+
"debug-build": string;
|
|
18
|
+
"dev-run": string;
|
|
19
|
+
"dev:main": string;
|
|
20
|
+
"dev:renderer": string;
|
|
21
|
+
compile: string;
|
|
22
|
+
"compile:main": string;
|
|
23
|
+
"compile:renderer": string;
|
|
24
|
+
"compile:extension-types": string;
|
|
25
|
+
"npm:fix-build-version": string;
|
|
26
|
+
"npm:fix-package-version": string;
|
|
27
|
+
"build:linux": string;
|
|
28
|
+
"build:mac": string;
|
|
29
|
+
"build:win": string;
|
|
30
|
+
integration: string;
|
|
31
|
+
"test:unit": string;
|
|
32
|
+
"test:integration": string;
|
|
33
|
+
dist: string;
|
|
34
|
+
"dist:dir": string;
|
|
35
|
+
"download:binaries": string;
|
|
36
|
+
"build:tray-icons": string;
|
|
37
|
+
"build:theme-vars": string;
|
|
38
|
+
lint: string;
|
|
39
|
+
"lint:fix": string;
|
|
40
|
+
"mkdocs-serve-local": string;
|
|
41
|
+
"verify-docs": string;
|
|
42
|
+
"typedocs-extensions-api": string;
|
|
43
|
+
"version-checkout": string;
|
|
44
|
+
"version-commit": string;
|
|
45
|
+
version: string;
|
|
46
|
+
postversion: string;
|
|
47
|
+
};
|
|
48
|
+
config: {
|
|
49
|
+
k8sProxyVersion: string;
|
|
50
|
+
bundledKubectlVersion: string;
|
|
51
|
+
bundledHelmVersion: string;
|
|
52
|
+
sentryDsn: string;
|
|
53
|
+
contentSecurityPolicy: string;
|
|
54
|
+
};
|
|
55
|
+
engines: {
|
|
56
|
+
node: string;
|
|
57
|
+
};
|
|
58
|
+
jest: {
|
|
59
|
+
collectCoverage: boolean;
|
|
60
|
+
verbose: boolean;
|
|
61
|
+
transform: {
|
|
62
|
+
"^.+\\.(t|j)sx?$": string[];
|
|
63
|
+
};
|
|
64
|
+
testEnvironment: string;
|
|
65
|
+
resolver: string;
|
|
66
|
+
moduleNameMapper: {
|
|
67
|
+
"\\.(css|scss)$": string;
|
|
68
|
+
"\\.(svg|png|jpg|eot|woff2?|ttf)$": string;
|
|
69
|
+
};
|
|
70
|
+
modulePathIgnorePatterns: string[];
|
|
71
|
+
setupFiles: string[];
|
|
72
|
+
setupFilesAfterEnv: string[];
|
|
73
|
+
runtime: string;
|
|
74
|
+
};
|
|
75
|
+
build: {
|
|
76
|
+
generateUpdatesFilesForAllChannels: boolean;
|
|
77
|
+
files: string[];
|
|
78
|
+
afterSign: string;
|
|
79
|
+
extraResources: (string | {
|
|
80
|
+
from: string;
|
|
81
|
+
to: string;
|
|
82
|
+
filter: string;
|
|
83
|
+
} | {
|
|
84
|
+
from: string;
|
|
85
|
+
to: string;
|
|
86
|
+
filter: string[];
|
|
87
|
+
})[];
|
|
88
|
+
linux: {
|
|
89
|
+
category: string;
|
|
90
|
+
artifactName: string;
|
|
91
|
+
target: string[];
|
|
92
|
+
extraResources: {
|
|
93
|
+
from: string;
|
|
94
|
+
to: string;
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
97
|
+
rpm: {
|
|
98
|
+
fpm: string[];
|
|
99
|
+
};
|
|
100
|
+
mac: {
|
|
101
|
+
hardenedRuntime: boolean;
|
|
102
|
+
gatekeeperAssess: boolean;
|
|
103
|
+
entitlements: string;
|
|
104
|
+
entitlementsInherit: string;
|
|
105
|
+
extraResources: {
|
|
106
|
+
from: string;
|
|
107
|
+
to: string;
|
|
108
|
+
}[];
|
|
109
|
+
};
|
|
110
|
+
win: {
|
|
111
|
+
target: string[];
|
|
112
|
+
extraResources: {
|
|
113
|
+
from: string;
|
|
114
|
+
to: string;
|
|
115
|
+
}[];
|
|
116
|
+
};
|
|
117
|
+
nsis: {
|
|
118
|
+
include: string;
|
|
119
|
+
oneClick: boolean;
|
|
120
|
+
allowElevation: boolean;
|
|
121
|
+
createStartMenuShortcut: boolean;
|
|
122
|
+
allowToChangeInstallationDirectory: boolean;
|
|
123
|
+
};
|
|
124
|
+
protocols: {
|
|
125
|
+
name: string;
|
|
126
|
+
schemes: string[];
|
|
127
|
+
role: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
dependencies: {
|
|
131
|
+
"@astronautlabs/jsonpath": string;
|
|
132
|
+
"@hapi/call": string;
|
|
133
|
+
"@hapi/subtext": string;
|
|
134
|
+
"@kubernetes/client-node": string;
|
|
135
|
+
"@material-ui/styles": string;
|
|
136
|
+
"@ogre-tools/fp": string;
|
|
137
|
+
"@ogre-tools/injectable": string;
|
|
138
|
+
"@ogre-tools/injectable-extension-for-auto-registration": string;
|
|
139
|
+
"@ogre-tools/injectable-react": string;
|
|
140
|
+
"@sentry/electron": string;
|
|
141
|
+
"@sentry/integrations": string;
|
|
142
|
+
"@side/jest-runtime": string;
|
|
143
|
+
"@types/circular-dependency-plugin": string;
|
|
144
|
+
"abort-controller": string;
|
|
145
|
+
"auto-bind": string;
|
|
146
|
+
"await-lock": string;
|
|
147
|
+
byline: string;
|
|
148
|
+
chokidar: string;
|
|
149
|
+
conf: string;
|
|
150
|
+
"crypto-js": string;
|
|
151
|
+
"electron-devtools-installer": string;
|
|
152
|
+
"electron-updater": string;
|
|
153
|
+
"electron-window-state": string;
|
|
154
|
+
filehound: string;
|
|
155
|
+
"fs-extra": string;
|
|
156
|
+
"glob-to-regexp": string;
|
|
157
|
+
got: string;
|
|
158
|
+
"grapheme-splitter": string;
|
|
159
|
+
handlebars: string;
|
|
160
|
+
history: string;
|
|
161
|
+
"http-proxy": string;
|
|
162
|
+
immer: string;
|
|
163
|
+
joi: string;
|
|
164
|
+
"js-yaml": string;
|
|
165
|
+
jsdom: string;
|
|
166
|
+
lodash: string;
|
|
167
|
+
"mac-ca": string;
|
|
168
|
+
marked: string;
|
|
169
|
+
"md5-file": string;
|
|
170
|
+
mobx: string;
|
|
171
|
+
"mobx-observable-history": string;
|
|
172
|
+
"mobx-react": string;
|
|
173
|
+
"mobx-utils": string;
|
|
174
|
+
"mock-fs": string;
|
|
175
|
+
moment: string;
|
|
176
|
+
"moment-timezone": string;
|
|
177
|
+
"monaco-editor": string;
|
|
178
|
+
"monaco-editor-webpack-plugin": string;
|
|
179
|
+
"node-fetch": string;
|
|
180
|
+
"node-pty": string;
|
|
181
|
+
npm: string;
|
|
182
|
+
"p-limit": string;
|
|
183
|
+
"path-to-regexp": string;
|
|
184
|
+
"proper-lockfile": string;
|
|
185
|
+
react: string;
|
|
186
|
+
"react-dom": string;
|
|
187
|
+
"react-material-ui-carousel": string;
|
|
188
|
+
"react-router": string;
|
|
189
|
+
"react-virtualized-auto-sizer": string;
|
|
190
|
+
"readable-stream": string;
|
|
191
|
+
request: string;
|
|
192
|
+
"request-promise-native": string;
|
|
193
|
+
rfc6902: string;
|
|
194
|
+
selfsigned: string;
|
|
195
|
+
semver: string;
|
|
196
|
+
"shell-env": string;
|
|
197
|
+
spdy: string;
|
|
198
|
+
tar: string;
|
|
199
|
+
"tcp-port-used": string;
|
|
200
|
+
tempy: string;
|
|
201
|
+
"typed-regex": string;
|
|
202
|
+
"url-parse": string;
|
|
203
|
+
uuid: string;
|
|
204
|
+
"win-ca": string;
|
|
205
|
+
winston: string;
|
|
206
|
+
"winston-console-format": string;
|
|
207
|
+
"winston-transport-browserconsole": string;
|
|
208
|
+
ws: string;
|
|
209
|
+
};
|
|
210
|
+
devDependencies: {
|
|
211
|
+
"@async-fn/jest": string;
|
|
212
|
+
"@material-ui/core": string;
|
|
213
|
+
"@material-ui/icons": string;
|
|
214
|
+
"@material-ui/lab": string;
|
|
215
|
+
"@pmmmwh/react-refresh-webpack-plugin": string;
|
|
216
|
+
"@sentry/types": string;
|
|
217
|
+
"@swc/core": string;
|
|
218
|
+
"@swc/jest": string;
|
|
219
|
+
"@testing-library/dom": string;
|
|
220
|
+
"@testing-library/jest-dom": string;
|
|
221
|
+
"@testing-library/react": string;
|
|
222
|
+
"@testing-library/user-event": string;
|
|
223
|
+
"@types/byline": string;
|
|
224
|
+
"@types/chart.js": string;
|
|
225
|
+
"@types/circular-dependency-plugin": string;
|
|
226
|
+
"@types/cli-progress": string;
|
|
227
|
+
"@types/color": string;
|
|
228
|
+
"@types/command-line-args": string;
|
|
229
|
+
"@types/crypto-js": string;
|
|
230
|
+
"@types/dompurify": string;
|
|
231
|
+
"@types/electron-devtools-installer": string;
|
|
232
|
+
"@types/fs-extra": string;
|
|
233
|
+
"@types/glob-to-regexp": string;
|
|
234
|
+
"@types/gunzip-maybe": string;
|
|
235
|
+
"@types/hapi__call": string;
|
|
236
|
+
"@types/hapi__subtext": string;
|
|
237
|
+
"@types/html-webpack-plugin": string;
|
|
238
|
+
"@types/http-proxy": string;
|
|
239
|
+
"@types/jest": string;
|
|
240
|
+
"@types/js-yaml": string;
|
|
241
|
+
"@types/jsdom": string;
|
|
242
|
+
"@types/lodash": string;
|
|
243
|
+
"@types/marked": string;
|
|
244
|
+
"@types/md5-file": string;
|
|
245
|
+
"@types/mini-css-extract-plugin": string;
|
|
246
|
+
"@types/mock-fs": string;
|
|
247
|
+
"@types/node": string;
|
|
248
|
+
"@types/node-fetch": string;
|
|
249
|
+
"@types/npm": string;
|
|
250
|
+
"@types/proper-lockfile": string;
|
|
251
|
+
"@types/randomcolor": string;
|
|
252
|
+
"@types/react": string;
|
|
253
|
+
"@types/react-beautiful-dnd": string;
|
|
254
|
+
"@types/react-dom": string;
|
|
255
|
+
"@types/react-router": string;
|
|
256
|
+
"@types/react-router-dom": string;
|
|
257
|
+
"@types/react-table": string;
|
|
258
|
+
"@types/react-virtualized-auto-sizer": string;
|
|
259
|
+
"@types/react-window": string;
|
|
260
|
+
"@types/readable-stream": string;
|
|
261
|
+
"@types/request": string;
|
|
262
|
+
"@types/request-promise-native": string;
|
|
263
|
+
"@types/semver": string;
|
|
264
|
+
"@types/sharp": string;
|
|
265
|
+
"@types/spdy": string;
|
|
266
|
+
"@types/tar": string;
|
|
267
|
+
"@types/tar-stream": string;
|
|
268
|
+
"@types/tcp-port-used": string;
|
|
269
|
+
"@types/tempy": string;
|
|
270
|
+
"@types/triple-beam": string;
|
|
271
|
+
"@types/url-parse": string;
|
|
272
|
+
"@types/uuid": string;
|
|
273
|
+
"@types/webpack": string;
|
|
274
|
+
"@types/webpack-dev-server": string;
|
|
275
|
+
"@types/webpack-env": string;
|
|
276
|
+
"@types/webpack-node-externals": string;
|
|
277
|
+
"@typescript-eslint/eslint-plugin": string;
|
|
278
|
+
"@typescript-eslint/parser": string;
|
|
279
|
+
ansi_up: string;
|
|
280
|
+
"chart.js": string;
|
|
281
|
+
"circular-dependency-plugin": string;
|
|
282
|
+
"cli-progress": string;
|
|
283
|
+
color: string;
|
|
284
|
+
"command-line-args": string;
|
|
285
|
+
concurrently: string;
|
|
286
|
+
"css-loader": string;
|
|
287
|
+
deepdash: string;
|
|
288
|
+
dompurify: string;
|
|
289
|
+
electron: string;
|
|
290
|
+
"electron-builder": string;
|
|
291
|
+
"electron-notarize": string;
|
|
292
|
+
esbuild: string;
|
|
293
|
+
"esbuild-loader": string;
|
|
294
|
+
eslint: string;
|
|
295
|
+
"eslint-plugin-header": string;
|
|
296
|
+
"eslint-plugin-import": string;
|
|
297
|
+
"eslint-plugin-react": string;
|
|
298
|
+
"eslint-plugin-react-hooks": string;
|
|
299
|
+
"eslint-plugin-unused-imports": string;
|
|
300
|
+
"flex.box": string;
|
|
301
|
+
"fork-ts-checker-webpack-plugin": string;
|
|
302
|
+
"gunzip-maybe": string;
|
|
303
|
+
"html-webpack-plugin": string;
|
|
304
|
+
"identity-obj-proxy": string;
|
|
305
|
+
"ignore-loader": string;
|
|
306
|
+
"include-media": string;
|
|
307
|
+
jest: string;
|
|
308
|
+
"jest-canvas-mock": string;
|
|
309
|
+
"jest-environment-jsdom": string;
|
|
310
|
+
"jest-fetch-mock": string;
|
|
311
|
+
"jest-mock-extended": string;
|
|
312
|
+
"make-plural": string;
|
|
313
|
+
"mini-css-extract-plugin": string;
|
|
314
|
+
"mock-http": string;
|
|
315
|
+
"node-gyp": string;
|
|
316
|
+
"node-loader": string;
|
|
317
|
+
nodemon: string;
|
|
318
|
+
playwright: string;
|
|
319
|
+
postcss: string;
|
|
320
|
+
"postcss-loader": string;
|
|
321
|
+
randomcolor: string;
|
|
322
|
+
"react-beautiful-dnd": string;
|
|
323
|
+
"react-refresh": string;
|
|
324
|
+
"react-refresh-typescript": string;
|
|
325
|
+
"react-router-dom": string;
|
|
326
|
+
"react-select": string;
|
|
327
|
+
"react-select-event": string;
|
|
328
|
+
"react-table": string;
|
|
329
|
+
"react-window": string;
|
|
330
|
+
sass: string;
|
|
331
|
+
"sass-loader": string;
|
|
332
|
+
sharp: string;
|
|
333
|
+
"style-loader": string;
|
|
334
|
+
tailwindcss: string;
|
|
335
|
+
"tar-stream": string;
|
|
336
|
+
"ts-loader": string;
|
|
337
|
+
"ts-node": string;
|
|
338
|
+
"type-fest": string;
|
|
339
|
+
"typed-emitter": string;
|
|
340
|
+
typedoc: string;
|
|
341
|
+
"typedoc-plugin-markdown": string;
|
|
342
|
+
typescript: string;
|
|
343
|
+
"typescript-plugin-css-modules": string;
|
|
344
|
+
webpack: string;
|
|
345
|
+
"webpack-cli": string;
|
|
346
|
+
"webpack-dev-server": string;
|
|
347
|
+
"webpack-node-externals": string;
|
|
348
|
+
xterm: string;
|
|
349
|
+
"xterm-addon-fit": string;
|
|
350
|
+
};
|
|
351
|
+
}, unknown, void>;
|
|
352
|
+
export default packageJsonInjectable;
|
|
@@ -30,7 +30,6 @@ export declare const isProduction: boolean;
|
|
|
30
30
|
* @deprecated Switch to using isDevelopmentInjectable
|
|
31
31
|
*/
|
|
32
32
|
export declare const isDevelopment: boolean;
|
|
33
|
-
export declare const isPublishConfigured: boolean;
|
|
34
33
|
export declare const productName: string;
|
|
35
34
|
/**
|
|
36
35
|
* @deprecated Switch to using appNameInjectable
|
|
@@ -82,3 +81,4 @@ export declare const kubernetesDocumentationWeblinkId = "kubernetes-documentatio
|
|
|
82
81
|
export declare const appSemVer: SemVer;
|
|
83
82
|
export declare const docsUrl: string;
|
|
84
83
|
export declare const sentryDsn: string;
|
|
84
|
+
export declare const contentSecurityPolicy: string;
|
|
@@ -11,15 +11,16 @@ export interface LensExtensionState {
|
|
|
11
11
|
enabled?: boolean;
|
|
12
12
|
name: string;
|
|
13
13
|
}
|
|
14
|
+
export interface IsEnabledExtensionDescriptor {
|
|
15
|
+
id: string;
|
|
16
|
+
isBundled: boolean;
|
|
17
|
+
}
|
|
14
18
|
export declare class ExtensionsStore extends BaseStore<LensExtensionsStoreModel> {
|
|
15
19
|
readonly displayName = "ExtensionsStore";
|
|
16
20
|
constructor();
|
|
17
21
|
get enabledExtensions(): string[];
|
|
18
22
|
protected state: import("mobx").ObservableMap<string, LensExtensionState>;
|
|
19
|
-
isEnabled({ id, isBundled }:
|
|
20
|
-
id: string;
|
|
21
|
-
isBundled: boolean;
|
|
22
|
-
}): boolean;
|
|
23
|
+
isEnabled({ id, isBundled }: IsEnabledExtensionDescriptor): boolean;
|
|
23
24
|
mergeState: (extensionsState: Record<LensExtensionId, LensExtensionState> | [LensExtensionId, LensExtensionState][]) => void;
|
|
24
25
|
protected fromStore({ extensions }: LensExtensionsStoreModel): void;
|
|
25
26
|
toJSON(): LensExtensionsStoreModel;
|
|
@@ -26,5 +26,5 @@ export interface RegisteredEntitySetting extends EntitySettingRegistration {
|
|
|
26
26
|
}
|
|
27
27
|
export declare class EntitySettingRegistry extends BaseRegistry<EntitySettingRegistration, RegisteredEntitySetting> {
|
|
28
28
|
getRegisteredItem(item: EntitySettingRegistration): RegisteredEntitySetting;
|
|
29
|
-
getItemsForKind: (kind: string, apiVersion: string, source?: string
|
|
29
|
+
getItemsForKind: (kind: string, apiVersion: string, source?: string) => RegisteredEntitySetting[];
|
|
30
30
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
5
|
/// <reference types="node" />
|
|
6
|
+
/// <reference types="node" />
|
|
6
7
|
import type { ChildProcess } from "child_process";
|
|
7
8
|
import type { Cluster } from "../../common/cluster/cluster";
|
|
8
9
|
import type { SelfSignedCert } from "selfsigned";
|
|
@@ -2,6 +2,6 @@ declare const applicationWindowInjectable: import("@ogre-tools/injectable").Inje
|
|
|
2
2
|
readonly visible: boolean;
|
|
3
3
|
show: () => Promise<void>;
|
|
4
4
|
close: () => void;
|
|
5
|
-
send: (args: import("./lens-window-injection-token").SendToViewArgs) =>
|
|
5
|
+
send: (args: import("./lens-window-injection-token").SendToViewArgs) => void;
|
|
6
6
|
}, import("./lens-window-injection-token").LensWindow, void>;
|
|
7
7
|
export default applicationWindowInjectable;
|
|
@@ -24,6 +24,6 @@ declare const createLensWindowInjectable: import("@ogre-tools/injectable").Injec
|
|
|
24
24
|
readonly visible: boolean;
|
|
25
25
|
show: () => Promise<void>;
|
|
26
26
|
close: () => void;
|
|
27
|
-
send: (args: SendToViewArgs) =>
|
|
27
|
+
send: (args: SendToViewArgs) => void;
|
|
28
28
|
}, unknown, void>;
|
|
29
29
|
export default createLensWindowInjectable;
|
|
@@ -7,7 +7,7 @@ export interface SendToViewArgs {
|
|
|
7
7
|
export interface LensWindow {
|
|
8
8
|
show: () => Promise<void>;
|
|
9
9
|
close: () => void;
|
|
10
|
-
send: (args: SendToViewArgs) =>
|
|
10
|
+
send: (args: SendToViewArgs) => void;
|
|
11
11
|
visible: boolean;
|
|
12
12
|
}
|
|
13
13
|
export declare const lensWindowInjectionToken: import("@ogre-tools/injectable").InjectionToken<LensWindow, void>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const navigateInjectable: import("@ogre-tools/injectable").Injectable<(url: string, frameId?: number
|
|
1
|
+
declare const navigateInjectable: import("@ogre-tools/injectable").Injectable<(url: string, frameId?: number) => Promise<void>, unknown, void>;
|
|
2
2
|
export default navigateInjectable;
|
package/dist/src/main/start-main-application/lens-window/splash-window/splash-window.injectable.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ declare const splashWindowInjectable: import("@ogre-tools/injectable").Injectabl
|
|
|
2
2
|
readonly visible: boolean;
|
|
3
3
|
show: () => Promise<void>;
|
|
4
4
|
close: () => void;
|
|
5
|
-
send: (args: import("../application-window/lens-window-injection-token").SendToViewArgs) =>
|
|
5
|
+
send: (args: import("../application-window/lens-window-injection-token").SendToViewArgs) => void;
|
|
6
6
|
}, import("../application-window/lens-window-injection-token").LensWindow, void>;
|
|
7
7
|
export default splashWindowInjectable;
|
|
@@ -4,27 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import type { WebSocketEvents } from "./websocket-api";
|
|
6
6
|
import { WebSocketApi } from "./websocket-api";
|
|
7
|
-
|
|
8
|
-
STDIN = "stdin",
|
|
9
|
-
STDOUT = "stdout",
|
|
10
|
-
CONNECTED = "connected",
|
|
11
|
-
RESIZE = "resize"
|
|
12
|
-
}
|
|
13
|
-
export declare type TerminalMessage = {
|
|
14
|
-
type: TerminalChannels.STDIN;
|
|
15
|
-
data: string;
|
|
16
|
-
} | {
|
|
17
|
-
type: TerminalChannels.STDOUT;
|
|
18
|
-
data: string;
|
|
19
|
-
} | {
|
|
20
|
-
type: TerminalChannels.CONNECTED;
|
|
21
|
-
} | {
|
|
22
|
-
type: TerminalChannels.RESIZE;
|
|
23
|
-
data: {
|
|
24
|
-
width: number;
|
|
25
|
-
height: number;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
7
|
+
import { type TerminalMessage } from "../../common/terminal/channels";
|
|
28
8
|
declare enum TerminalColor {
|
|
29
9
|
RED = "\u001B[31m",
|
|
30
10
|
GREEN = "\u001B[32m",
|
|
@@ -60,7 +40,7 @@ export declare class TerminalApi extends WebSocketApi<TerminalEvents> {
|
|
|
60
40
|
connect(): Promise<void>;
|
|
61
41
|
sendMessage(message: TerminalMessage): void;
|
|
62
42
|
sendTerminalSize(cols: number, rows: number): void;
|
|
63
|
-
protected _onMessage({ data, ...evt }: MessageEvent<
|
|
43
|
+
protected _onMessage({ data, ...evt }: MessageEvent<string>): void;
|
|
64
44
|
protected _onOpen(evt: Event): void;
|
|
65
45
|
protected _onClose(evt: CloseEvent): void;
|
|
66
46
|
protected emitStatus(data: string, options?: {
|
|
@@ -22,9 +22,9 @@ interface WebsocketApiParams {
|
|
|
22
22
|
/**
|
|
23
23
|
* The message for pinging the websocket
|
|
24
24
|
*
|
|
25
|
-
* @default "
|
|
25
|
+
* @default "{type: \"ping\"}"
|
|
26
26
|
*/
|
|
27
|
-
pingMessage?: string
|
|
27
|
+
pingMessage?: string;
|
|
28
28
|
/**
|
|
29
29
|
* If set to a number > 0, then the API will ping the socket on that interval.
|
|
30
30
|
*
|
|
@@ -53,7 +53,7 @@ export interface WebSocketEvents {
|
|
|
53
53
|
declare const WebSocketApi_base: new <T>() => TypedEventEmitter<T>;
|
|
54
54
|
export declare class WebSocketApi<Events extends WebSocketEvents> extends WebSocketApi_base<Events> {
|
|
55
55
|
protected socket: WebSocket | null;
|
|
56
|
-
protected pendingCommands:
|
|
56
|
+
protected pendingCommands: string[];
|
|
57
57
|
protected reconnectTimer?: number;
|
|
58
58
|
protected pingTimer?: number;
|
|
59
59
|
protected params: Defaulted<WebsocketApiParams, keyof typeof WebSocketApi["defaultParams"]>;
|
|
@@ -70,7 +70,7 @@ export declare class WebSocketApi<Events extends WebSocketEvents> extends WebSoc
|
|
|
70
70
|
reconnect(): void;
|
|
71
71
|
destroy(): void;
|
|
72
72
|
clearAllListeners(): void;
|
|
73
|
-
send(command: string
|
|
73
|
+
send(command: string): void;
|
|
74
74
|
protected flush(): void;
|
|
75
75
|
protected _onOpen(evt: Event): void;
|
|
76
76
|
protected _onMessage({ data }: MessageEvent): void;
|
|
@@ -14,4 +14,9 @@ export interface AnimateProps {
|
|
|
14
14
|
leaveDuration?: number;
|
|
15
15
|
children?: React.ReactNode;
|
|
16
16
|
}
|
|
17
|
-
|
|
17
|
+
interface Dependencies {
|
|
18
|
+
requestAnimationFrame: (callback: () => void) => void;
|
|
19
|
+
}
|
|
20
|
+
export declare const NonInjectedAnimate: (props: AnimateProps & Dependencies) => JSX.Element;
|
|
21
|
+
export declare const Animate: React.FunctionComponent<AnimateProps>;
|
|
22
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DockTab, DockTabCreate } from "./store";
|
|
2
|
-
declare const createDockTabInjectable: import("@ogre-tools/injectable").Injectable<(rawTabDesc: DockTabCreate, addNumber?: boolean
|
|
2
|
+
declare const createDockTabInjectable: import("@ogre-tools/injectable").Injectable<(rawTabDesc: DockTabCreate, addNumber?: boolean) => DockTab, unknown, void>;
|
|
3
3
|
export default createDockTabInjectable;
|
|
@@ -30,7 +30,10 @@ export declare class Terminal {
|
|
|
30
30
|
private get viewport();
|
|
31
31
|
attachTo(parentElem: HTMLElement): void;
|
|
32
32
|
detach(): void;
|
|
33
|
-
|
|
33
|
+
get fontFamily(): string;
|
|
34
|
+
get fontSize(): number;
|
|
35
|
+
get theme(): Record<string, string>;
|
|
36
|
+
constructor(dependencies: TerminalDependencies, { tabId, api, }: TerminalArguments);
|
|
34
37
|
destroy(): void;
|
|
35
38
|
fit: () => void;
|
|
36
39
|
fitLazy: import("lodash").DebouncedFunc<() => void>;
|
|
@@ -44,7 +47,7 @@ export declare class Terminal {
|
|
|
44
47
|
onClickLink: (evt: MouseEvent, link: string) => void;
|
|
45
48
|
onContextMenu: () => void;
|
|
46
49
|
onSelectionChange: () => void;
|
|
47
|
-
setFontSize: (
|
|
48
|
-
setFontFamily: (
|
|
50
|
+
setFontSize: (fontSize: number) => void;
|
|
51
|
+
setFontFamily: (fontFamily: string) => void;
|
|
49
52
|
keyHandler: (evt: KeyboardEvent) => boolean;
|
|
50
53
|
}
|
|
@@ -5,7 +5,11 @@
|
|
|
5
5
|
import React from "react";
|
|
6
6
|
export interface DrawerTitleProps {
|
|
7
7
|
className?: string;
|
|
8
|
-
children
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Prefer passing the value as `children`
|
|
11
|
+
*/
|
|
12
|
+
title?: React.ReactNode;
|
|
9
13
|
/**
|
|
10
14
|
* Specifies how large this title is
|
|
11
15
|
*
|
|
@@ -8,10 +8,9 @@ import type { DOMAttributes, InputHTMLAttributes, TextareaHTMLAttributes } from
|
|
|
8
8
|
import React from "react";
|
|
9
9
|
import type { TooltipProps } from "../tooltip";
|
|
10
10
|
import * as Validators from "./input_validators";
|
|
11
|
-
import type { InputValidator } from "./input_validators";
|
|
12
|
-
declare const InputValidators: {
|
|
13
|
-
|
|
14
|
-
AsyncInputValidationError: typeof Validators.AsyncInputValidationError;
|
|
11
|
+
import type { InputValidator, InputValidation, InputValidationResult, SyncValidationMessage } from "./input_validators";
|
|
12
|
+
declare const asyncInputValidator: typeof Validators.asyncInputValidator, inputValidator: typeof Validators.inputValidator, isAsyncValidator: typeof Validators.isAsyncValidator, unionInputValidatorsAsync: typeof Validators.unionInputValidatorsAsync, InputValidators: {
|
|
13
|
+
unionInputValidators(baseValidator: Pick<Validators.InputValidator<false>, "message" | "condition">, ...validators: Validators.InputValidator<false>[]): Validators.InputValidator<false>;
|
|
15
14
|
isRequired: Validators.InputValidator<false>;
|
|
16
15
|
isEmail: Validators.InputValidator<false>;
|
|
17
16
|
isNumber: Validators.InputValidator<false>;
|
|
@@ -30,8 +29,8 @@ declare const InputValidators: {
|
|
|
30
29
|
systemName: Validators.InputValidator<false>;
|
|
31
30
|
accountId: Validators.InputValidator<false>;
|
|
32
31
|
};
|
|
33
|
-
export { InputValidators };
|
|
34
|
-
export type { InputValidator };
|
|
32
|
+
export { InputValidators, asyncInputValidator, inputValidator, isAsyncValidator, unionInputValidatorsAsync, };
|
|
33
|
+
export type { InputValidator, InputValidation, InputValidationResult, SyncValidationMessage, };
|
|
35
34
|
declare type InputElement = HTMLInputElement | HTMLTextAreaElement;
|
|
36
35
|
declare type InputElementProps = InputHTMLAttributes<HTMLInputElement> & TextareaHTMLAttributes<HTMLTextAreaElement> & DOMAttributes<InputElement>;
|
|
37
36
|
export interface IconDataFnArg {
|
|
@@ -75,7 +74,7 @@ interface State {
|
|
|
75
74
|
export declare class Input extends React.Component<InputProps, State> {
|
|
76
75
|
static defaultProps: object;
|
|
77
76
|
input: InputElement | null;
|
|
78
|
-
validators: InputValidator
|
|
77
|
+
validators: InputValidator[];
|
|
79
78
|
state: State;
|
|
80
79
|
constructor(props: InputProps);
|
|
81
80
|
componentWillUnmount(): void;
|
|
@@ -94,7 +93,7 @@ export declare class Input extends React.Component<InputProps, State> {
|
|
|
94
93
|
onFocus(evt: React.FocusEvent<InputElement>): void;
|
|
95
94
|
onBlur(evt: React.FocusEvent<InputElement>): void;
|
|
96
95
|
setDirtyOnChange: import("lodash").DebouncedFunc<() => void>;
|
|
97
|
-
onChange(evt: React.ChangeEvent<any>): void
|
|
96
|
+
onChange(evt: React.ChangeEvent<any>): Promise<void>;
|
|
98
97
|
onKeyDown(evt: React.KeyboardEvent<InputElement>): void;
|
|
99
98
|
get showMaxLenIndicator(): boolean | 0 | undefined;
|
|
100
99
|
get isUncontrolled(): boolean;
|
|
@@ -3,29 +3,42 @@
|
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
5
|
import type { InputProps } from "./input";
|
|
6
|
-
import type
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export declare type
|
|
6
|
+
import type React from "react";
|
|
7
|
+
import type { SetRequired } from "type-fest";
|
|
8
|
+
export declare type InputValidationResult<IsAsync extends boolean> = IsAsync extends true ? Promise<void> : boolean;
|
|
9
|
+
export declare type InputValidation<IsAsync extends boolean> = (value: string, props?: InputProps) => InputValidationResult<IsAsync>;
|
|
10
|
+
export declare type SyncValidationMessage = React.ReactNode | ((value: string, props?: InputProps) => React.ReactNode);
|
|
11
|
+
export declare type InputValidator<IsAsync extends boolean = boolean> = {
|
|
10
12
|
/**
|
|
11
13
|
* Filters itself based on the input props
|
|
12
14
|
*/
|
|
13
15
|
condition?: (props: InputProps) => any;
|
|
14
|
-
} & (IsAsync extends
|
|
15
|
-
validate: (value: string, props: InputProps) => boolean;
|
|
16
|
-
message: ReactNode | ((value: string, props: InputProps) => ReactNode | string);
|
|
17
|
-
debounce?: undefined;
|
|
18
|
-
} : {
|
|
16
|
+
} & (IsAsync extends true ? {
|
|
19
17
|
/**
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
* This function MUST reject with an instance of {@link AsyncInputValidationError}
|
|
18
|
+
* The validation message maybe either specified from the `message` field (higher priority)
|
|
19
|
+
* or if that is not provided then the message will retrived from the rejected with value
|
|
23
20
|
*/
|
|
24
|
-
validate:
|
|
25
|
-
message?:
|
|
21
|
+
validate: InputValidation<true>;
|
|
22
|
+
message?: SyncValidationMessage;
|
|
26
23
|
debounce: number;
|
|
24
|
+
} : {
|
|
25
|
+
validate: InputValidation<false>;
|
|
26
|
+
message: SyncValidationMessage;
|
|
27
|
+
debounce?: undefined;
|
|
27
28
|
});
|
|
28
|
-
export declare function
|
|
29
|
+
export declare function isAsyncValidator(validator: InputValidator<boolean>): validator is InputValidator<true>;
|
|
30
|
+
export declare function asyncInputValidator(validator: InputValidator<true>): InputValidator<true>;
|
|
31
|
+
export declare function inputValidator(validator: InputValidator<false>): InputValidator<false>;
|
|
32
|
+
/**
|
|
33
|
+
* Create a new input validator from a list of syncronous input validators. Will match as valid if
|
|
34
|
+
* one of the input validators matches the input
|
|
35
|
+
*/
|
|
36
|
+
export declare function unionInputValidators(baseValidator: Pick<InputValidator<false>, "condition" | "message">, ...validators: InputValidator<false>[]): InputValidator<false>;
|
|
37
|
+
/**
|
|
38
|
+
* Create a new input validator from a list of syncronous or async input validators. Will match as
|
|
39
|
+
* valid if one of the input validators matches the input
|
|
40
|
+
*/
|
|
41
|
+
export declare function unionInputValidatorsAsync(baseValidator: SetRequired<Pick<InputValidator<boolean>, "condition" | "message">, "message">, ...validators: InputValidator<boolean>[]): InputValidator<true>;
|
|
29
42
|
export declare const isRequired: InputValidator<false>;
|
|
30
43
|
export declare const isEmail: InputValidator<false>;
|
|
31
44
|
export declare const isNumber: InputValidator<false>;
|
|
@@ -5,15 +5,10 @@
|
|
|
5
5
|
import "./notifications.scss";
|
|
6
6
|
import React from "react";
|
|
7
7
|
import type { Notification, NotificationMessage } from "./notifications.store";
|
|
8
|
-
export declare
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
componentDidMount(): void;
|
|
16
|
-
scrollToLastNotification(): void;
|
|
17
|
-
getMessage(notification: Notification): (React.ReactChild | React.ReactFragment | React.ReactPortal)[];
|
|
18
|
-
render(): JSX.Element;
|
|
19
|
-
}
|
|
8
|
+
export declare const Notifications: React.FC<{}> & {
|
|
9
|
+
ok: (message: NotificationMessage) => () => void;
|
|
10
|
+
checkedError: (message: unknown, fallback: string, customOpts?: Partial<Omit<Notification, "message">>) => () => void;
|
|
11
|
+
error: (message: NotificationMessage, customOpts?: Partial<Omit<Notification, "message">>) => () => void;
|
|
12
|
+
shortInfo: (message: NotificationMessage, customOpts?: Partial<Omit<Notification, "message">>) => () => void;
|
|
13
|
+
info: (message: NotificationMessage, customOpts?: Partial<Omit<Notification, "message">>) => () => void;
|
|
14
|
+
};
|
|
@@ -8,7 +8,7 @@ import type { ObservableSet } from "mobx";
|
|
|
8
8
|
import type { Props as ReactSelectProps, GroupBase, PropsValue } from "react-select";
|
|
9
9
|
export interface SelectOption<Value> {
|
|
10
10
|
value: Value;
|
|
11
|
-
label:
|
|
11
|
+
label: React.ReactNode;
|
|
12
12
|
isDisabled?: boolean;
|
|
13
13
|
isSelected?: boolean;
|
|
14
14
|
}
|
|
@@ -64,6 +64,8 @@ export interface WizardStepProps<D> extends WizardCommonProps<D> {
|
|
|
64
64
|
skip?: boolean;
|
|
65
65
|
scrollable?: boolean;
|
|
66
66
|
children?: React.ReactNode | React.ReactNode[];
|
|
67
|
+
testIdForNext?: string;
|
|
68
|
+
testIdForPrev?: string;
|
|
67
69
|
}
|
|
68
70
|
interface WizardStepState {
|
|
69
71
|
waiting?: boolean;
|
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.6.0-git.
|
|
5
|
+
"version": "5.6.0-git.e2320141a4.0",
|
|
6
6
|
"copyright": "© 2021 OpenLens Authors",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/src/extensions/extension-api.js",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
-
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
-
*/
|
|
5
|
-
import type { UpdateInfo } from "electron-updater";
|
|
6
|
-
export declare const UpdateAvailableChannel = "update-available";
|
|
7
|
-
export declare const AutoUpdateChecking = "auto-update:checking";
|
|
8
|
-
export declare const AutoUpdateNoUpdateAvailable = "auto-update:no-update";
|
|
9
|
-
export declare const AutoUpdateLogPrefix = "[UPDATE-CHECKER]";
|
|
10
|
-
export declare type UpdateAvailableFromMain = [backChannel: string, updateInfo: UpdateInfo];
|
|
11
|
-
export declare function areArgsUpdateAvailableFromMain(args: unknown[]): args is UpdateAvailableFromMain;
|
|
12
|
-
export declare type BackchannelArg = {
|
|
13
|
-
doUpdate: false;
|
|
14
|
-
} | {
|
|
15
|
-
doUpdate: true;
|
|
16
|
-
now: boolean;
|
|
17
|
-
};
|
|
18
|
-
export declare type UpdateAvailableToBackchannel = [updateDecision: BackchannelArg];
|
|
19
|
-
export declare function areArgsUpdateAvailableToBackchannel(args: unknown[]): args is UpdateAvailableToBackchannel;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
-
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
-
*/
|
|
5
|
-
import type { Channel } from "../channel";
|
|
6
|
-
export declare const createChannel: <Message>(name: string) => Channel<Message>;
|