@k8slens/extensions 6.0.1-git.d9785ad4dc.0 → 6.0.1-git.ef12676b89.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/utils/__tests__/union-env-path.test.d.ts +5 -0
- package/dist/src/common/utils/index.d.ts +0 -1
- package/dist/src/common/utils/open-link-in-browser.global-override-for-injectable.d.ts +9 -0
- package/dist/src/common/utils/open-link-in-browser.injectable.d.ts +3 -0
- package/dist/src/common/utils/union-env-path.d.ts +12 -0
- package/dist/src/common/vars/package-json.injectable.d.ts +6 -0
- package/dist/src/extensions/common-api/utils.d.ts +6 -1
- package/dist/src/extensions/extension-api.js +119 -108
- package/dist/src/main/utils/shell-env.d.ts +1 -1
- package/dist/src/renderer/components/dock/terminal/terminal.d.ts +3 -1
- package/dist/src/renderer/port-forward/open-port-forward.injectable.d.ts +4 -0
- package/dist/src/renderer/port-forward/port-forward-utils.d.ts +0 -1
- package/package.json +1 -1
- package/dist/src/common/utils/openBrowser.d.ts +0 -17
@@ -0,0 +1,9 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
|
+
*/
|
5
|
+
declare const _default: {
|
6
|
+
injectable: import("@ogre-tools/injectable").Injectable<import("./open-link-in-browser.injectable").OpenLinkInBrowser, unknown, void>;
|
7
|
+
overridingInstantiate: import("@ogre-tools/injectable").Instantiate<import("./open-link-in-browser.injectable").OpenLinkInBrowser, void>;
|
8
|
+
};
|
9
|
+
export default _default;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
4
|
+
*/
|
5
|
+
/**
|
6
|
+
* Join all entires with a PATH env var delimated string together
|
7
|
+
* @param PATHs Any number of PATH env variables
|
8
|
+
*
|
9
|
+
* NOTE: This function does not attempt to handle any sort of escape sequences since after testing
|
10
|
+
* it was found that `zsh` (at least on `macOS`) does not when trying to find programs
|
11
|
+
*/
|
12
|
+
export declare function unionPATHs(...PATHs: string[]): string;
|
@@ -12,6 +12,10 @@ declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable
|
|
12
12
|
email: string;
|
13
13
|
};
|
14
14
|
scripts: {
|
15
|
+
"adr:create": string;
|
16
|
+
"adr:change-status": string;
|
17
|
+
"adr:update-readme": string;
|
18
|
+
"adr:list": string;
|
15
19
|
dev: string;
|
16
20
|
"dev-build": string;
|
17
21
|
"debug-build": string;
|
@@ -208,6 +212,7 @@ declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable
|
|
208
212
|
"winston-console-format": string;
|
209
213
|
"winston-transport-browserconsole": string;
|
210
214
|
ws: string;
|
215
|
+
"xterm-link-provider": string;
|
211
216
|
};
|
212
217
|
devDependencies: {
|
213
218
|
"@async-fn/jest": string;
|
@@ -278,6 +283,7 @@ declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable
|
|
278
283
|
"@types/webpack-node-externals": string;
|
279
284
|
"@typescript-eslint/eslint-plugin": string;
|
280
285
|
"@typescript-eslint/parser": string;
|
286
|
+
adr: string;
|
281
287
|
ansi_up: string;
|
282
288
|
"chart.js": string;
|
283
289
|
"circular-dependency-plugin": string;
|
@@ -2,6 +2,11 @@
|
|
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
|
-
export { Singleton,
|
5
|
+
export { Singleton, getAppVersion } from "../../common/utils";
|
6
6
|
export { prevDefault, stopPropagation } from "../../renderer/utils/prevDefault";
|
7
7
|
export { cssNames } from "../../renderer/utils/cssNames";
|
8
|
+
/**
|
9
|
+
* @deprecated Use {@link openBrowser} instead
|
10
|
+
*/
|
11
|
+
export declare const openExternal: import("../../common/utils/open-link-in-browser.injectable").OpenLinkInBrowser;
|
12
|
+
export declare const openBrowser: import("../../common/utils/open-link-in-browser.injectable").OpenLinkInBrowser;
|