@k8slens/extensions 5.2.1-git.be1a2ebe59.0 → 5.2.1-git.cc3f79a9b2.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 (24) hide show
  1. package/dist/src/common/custom-errors.d.ts +1 -1
  2. package/dist/src/common/routes/catalog.d.ts +2 -0
  3. package/dist/src/common/user-store/preferences-helpers.d.ts +1 -0
  4. package/dist/src/common/user-store/user-store.d.ts +1 -0
  5. package/dist/src/extensions/extension-api.js +2272 -431
  6. package/dist/src/extensions/registries/command-registry.d.ts +2 -2
  7. package/dist/src/main/{routes/utils/index.d.ts → __test__/lens-proxy.test.d.ts} +1 -1
  8. package/dist/src/main/context-handler.d.ts +1 -1
  9. package/dist/src/main/lens-proxy.d.ts +1 -0
  10. package/dist/src/main/{routes/utils → utils}/parse-query.d.ts +0 -0
  11. package/dist/src/renderer/api/catalog-entity-registry.d.ts +3 -1
  12. package/dist/src/renderer/bootstrap.d.ts +1 -1
  13. package/dist/src/renderer/components/+add-cluster/add-cluster.d.ts +2 -4
  14. package/dist/src/renderer/components/+catalog/catalog.d.ts +1 -1
  15. package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +0 -1
  16. package/dist/src/renderer/components/activate-entity-command/activate-entity-command.d.ts +30 -0
  17. package/dist/src/renderer/components/activate-entity-command/index.d.ts +21 -0
  18. package/dist/src/renderer/components/app.d.ts +1 -1
  19. package/dist/src/renderer/components/dock/terminal.d.ts +2 -0
  20. package/dist/src/renderer/components/input/input.d.ts +1 -1
  21. package/dist/src/renderer/components/menu/menu.d.ts +6 -0
  22. package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
  23. package/dist/src/renderer/lens-app.d.ts +1 -1
  24. package/package.json +4 -4
@@ -19,5 +19,5 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  export declare class ExecValidationNotFoundError extends Error {
22
- constructor(execPath: string);
22
+ constructor(execPath: string, isAbsolute: boolean);
23
23
  }
@@ -24,4 +24,6 @@ export interface CatalogViewRouteParam {
24
24
  kind?: string;
25
25
  }
26
26
  export declare const catalogRoute: RouteProps;
27
+ export declare const getPreviousTabUrl: (path: string) => string;
27
28
  export declare const catalogURL: ({ params, query, fragment }?: import("../utils/buildUrl").URLParams<CatalogViewRouteParam, {}>) => string;
29
+ export declare const browseCatalogTab = "browse";
@@ -59,5 +59,6 @@ export declare const DESCRIPTORS: {
59
59
  hiddenTableColumns: PreferenceDescription<[string, string[]][], Map<string, ObservableToggleSet<string>>>;
60
60
  syncKubeconfigEntries: PreferenceDescription<KubeconfigSyncEntry[], Map<string, KubeconfigSyncValue>>;
61
61
  editorConfiguration: PreferenceDescription<EditorConfiguration, EditorConfiguration>;
62
+ terminalCopyOnSelect: PreferenceDescription<boolean, boolean>;
62
63
  };
63
64
  export {};
@@ -45,6 +45,7 @@ export declare class UserStore extends BaseStore<UserStoreModel> {
45
45
  shell?: string;
46
46
  downloadBinariesPath?: string;
47
47
  kubectlBinariesPath?: string;
48
+ terminalCopyOnSelect: boolean;
48
49
  /**
49
50
  * Download kubectl binaries matching cluster version
50
51
  */