@k8slens/extensions 5.3.0-git.f51ce1e34b.0 → 5.3.0-git.fa21b63c77.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 (42) hide show
  1. package/dist/src/common/catalog/catalog-entity.d.ts +4 -1
  2. package/dist/src/common/catalog-entities/kubernetes-cluster.d.ts +9 -1
  3. package/dist/src/common/catalog-entities/web-link.d.ts +2 -0
  4. package/dist/src/common/hotbar-store.d.ts +5 -0
  5. package/dist/src/common/k8s-api/endpoints/nodes.api.d.ts +25 -44
  6. package/dist/src/common/kube-helpers.d.ts +9 -14
  7. package/dist/src/common/user-store/preferences-helpers.d.ts +8 -1
  8. package/dist/src/common/user-store/user-store.d.ts +1 -1
  9. package/dist/src/common/utils/iter.d.ts +16 -9
  10. package/dist/src/extensions/common-api/catalog.d.ts +2 -1
  11. package/dist/src/extensions/extension-api.js +305 -699
  12. package/dist/src/main/cluster.d.ts +0 -1
  13. package/dist/src/main/helm/helm-chart-manager.d.ts +4 -0
  14. package/dist/src/main/helm/helm-repo-manager.d.ts +1 -0
  15. package/dist/src/main/kubectl.d.ts +1 -1
  16. package/dist/src/main/utils/update-channel.d.ts +6 -0
  17. package/dist/src/renderer/components/+catalog/catalog-entity-drawer-menu.d.ts +0 -1
  18. package/dist/src/renderer/components/+catalog/catalog-entity-item.d.ts +1 -1
  19. package/dist/src/renderer/components/+catalog/catalog.d.ts +2 -0
  20. package/dist/src/renderer/components/+catalog/hotbar-toggle-menu-item.d.ts +27 -0
  21. package/dist/src/renderer/components/+config-maps/config-map-details.d.ts +1 -1
  22. package/dist/src/renderer/components/+config-pod-disruption-budgets/pod-disruption-budgets-details.d.ts +1 -1
  23. package/dist/src/renderer/components/+config-resource-quotas/resource-quota-details.d.ts +1 -1
  24. package/dist/src/renderer/components/+config-secrets/secret-details.d.ts +1 -1
  25. package/dist/src/renderer/components/+custom-resources/crd-details.d.ts +1 -1
  26. package/dist/src/renderer/components/+custom-resources/crd-resource-details.d.ts +2 -2
  27. package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +1 -2
  28. package/dist/src/renderer/components/+events/event-details.d.ts +1 -1
  29. package/dist/src/renderer/components/+events/kube-event-details.d.ts +1 -1
  30. package/dist/src/renderer/components/+network-endpoints/endpoint-details.d.ts +1 -1
  31. package/dist/src/renderer/components/+network-ingresses/ingress-details.d.ts +1 -1
  32. package/dist/src/renderer/components/+network-policies/network-policy-details.d.ts +1 -1
  33. package/dist/src/renderer/components/+network-services/service-details.d.ts +1 -1
  34. package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts +9 -8
  35. package/dist/src/renderer/components/+storage-classes/storage-class-details.d.ts +1 -1
  36. package/dist/src/renderer/components/+workloads-cronjobs/cronjob-details.d.ts +1 -1
  37. package/dist/src/{common/custom-errors.d.ts → renderer/components/__tests__/nodes.api.test.d.ts} +1 -3
  38. package/dist/src/renderer/components/hotbar/hotbar-entity-icon.d.ts +0 -2
  39. package/dist/src/renderer/components/kube-object-meta/kube-object-meta.d.ts +1 -1
  40. package/dist/src/renderer/components/layout/setting-layout.d.ts +0 -1
  41. package/dist/src/renderer/components/layout/sidebar.d.ts +3 -1
  42. package/package.json +1 -1
@@ -293,7 +293,6 @@ export declare class Cluster implements ClusterModel, ClusterState {
293
293
  accessible: boolean;
294
294
  disconnected: boolean;
295
295
  };
296
- protected getAllowedNamespacesErrorCount: number;
297
296
  protected getAllowedNamespaces(): Promise<string[]>;
298
297
  protected getAllowedResources(): Promise<KubeResource[]>;
299
298
  isAllowedResource(kind: string): boolean;
@@ -20,6 +20,10 @@
20
20
  */
21
21
  import type { HelmRepo } from "./helm-repo-manager";
22
22
  import type { RepoHelmChartList } from "../../common/k8s-api/endpoints/helm-charts.api";
23
+ export interface HelmCacheFile {
24
+ apiVersion: string;
25
+ entries: RepoHelmChartList;
26
+ }
23
27
  export declare class HelmChartManager {
24
28
  #private;
25
29
  protected repo: HelmRepo;
@@ -45,6 +45,7 @@ export declare class HelmRepoManager extends Singleton {
45
45
  private init;
46
46
  protected static parseHelmEnv(): Promise<HelmEnv>;
47
47
  repo(name: string): Promise<HelmRepo>;
48
+ private readConfig;
48
49
  repositories(): Promise<HelmRepo[]>;
49
50
  static update(): Promise<any>;
50
51
  static addRepo({ name, url }: HelmRepo): Promise<string>;
@@ -41,5 +41,5 @@ export declare class Kubectl {
41
41
  ensureKubectl(): Promise<boolean>;
42
42
  downloadKubectl(): Promise<void>;
43
43
  protected writeInitScripts(): Promise<void>;
44
- protected getDownloadMirror(): string;
44
+ protected getDownloadMirror(): import("../common/user-store/preferences-helpers").DownloadMirror;
45
45
  }
@@ -18,4 +18,10 @@
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
+ /**
22
+ * Compute the next update channel from the current updating channel
23
+ * @param defaultChannel The default (initial) channel to check
24
+ * @param channel The current channel that did not have a new version associated with it
25
+ * @returns The channel name of the next release version
26
+ */
21
27
  export declare function nextUpdateChannel(defaultChannel: string, channel: string): string;
@@ -30,7 +30,6 @@ export declare class CatalogEntityDrawerMenu<T extends CatalogEntity> extends Re
30
30
  constructor(props: CatalogEntityDrawerMenuProps<T>);
31
31
  componentDidMount(): void;
32
32
  onMenuItemClick(menuItem: CatalogEntityContextMenu): void;
33
- addToHotbar(entity: CatalogEntity): void;
34
33
  getMenuItems(entity: T): React.ReactChild[];
35
34
  render(): JSX.Element;
36
35
  }
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import type { CatalogEntity } from "../../api/catalog-entity";
2
+ import { CatalogEntity } from "../../api/catalog-entity";
3
3
  import type { ItemObject } from "../../../common/item.store";
4
4
  import type { CatalogEntityRegistry } from "../../api/catalog-entity-registry";
5
5
  export declare class CatalogEntityItem<T extends CatalogEntity> implements ItemObject {
@@ -40,12 +40,14 @@ export declare class Catalog extends React.Component<Props> {
40
40
  get routeActiveTab(): string;
41
41
  componentDidMount(): Promise<void>;
42
42
  addToHotbar(item: CatalogEntityItem<CatalogEntity>): void;
43
+ removeFromHotbar(item: CatalogEntityItem<CatalogEntity>): void;
43
44
  onDetails: (item: CatalogEntityItem<CatalogEntity>) => void;
44
45
  onMenuItemClick(menuItem: CatalogEntityContextMenu): void;
45
46
  get categories(): import("../../api/catalog-entity").CatalogCategory[];
46
47
  onTabChange: (tabId: string | null) => void;
47
48
  renderNavigation(): JSX.Element;
48
49
  renderItemMenu: (item: CatalogEntityItem<CatalogEntity>) => JSX.Element;
50
+ renderName(item: CatalogEntityItem<CatalogEntity>): JSX.Element;
49
51
  renderIcon(item: CatalogEntityItem<CatalogEntity>): JSX.Element;
50
52
  renderList(): JSX.Element;
51
53
  render(): JSX.Element;
@@ -0,0 +1,27 @@
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 { ReactNode } from "react";
22
+ import type { CatalogEntity } from "../../api/catalog-entity";
23
+ export declare function HotbarToggleMenuItem(props: {
24
+ entity: CatalogEntity;
25
+ addContent: ReactNode;
26
+ removeContent: ReactNode;
27
+ }): JSX.Element;
@@ -21,7 +21,7 @@
21
21
  import "./config-map-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { ConfigMap } from "../../../common/k8s-api/endpoints";
24
+ import { ConfigMap } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<ConfigMap> {
26
26
  }
27
27
  export declare class ConfigMapDetails extends React.Component<Props> {
@@ -21,7 +21,7 @@
21
21
  import "./pod-disruption-budgets-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { PodDisruptionBudget } from "../../../common/k8s-api/endpoints";
24
+ import { PodDisruptionBudget } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<PodDisruptionBudget> {
26
26
  }
27
27
  export declare class PodDisruptionBudgetDetails extends React.Component<Props> {
@@ -21,7 +21,7 @@
21
21
  import "./resource-quota-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { ResourceQuota } from "../../../common/k8s-api/endpoints/resource-quota.api";
24
+ import { ResourceQuota } from "../../../common/k8s-api/endpoints/resource-quota.api";
25
25
  interface Props extends KubeObjectDetailsProps<ResourceQuota> {
26
26
  }
27
27
  export declare class ResourceQuotaDetails extends React.Component<Props> {
@@ -21,7 +21,7 @@
21
21
  import "./secret-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { Secret } from "../../../common/k8s-api/endpoints";
24
+ import { Secret } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<Secret> {
26
26
  }
27
27
  export declare class SecretDetails extends React.Component<Props> {
@@ -20,7 +20,7 @@
20
20
  */
21
21
  import "./crd-details.scss";
22
22
  import React from "react";
23
- import type { CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
23
+ import { CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
24
24
  import type { KubeObjectDetailsProps } from "../kube-object-details";
25
25
  interface Props extends KubeObjectDetailsProps<CustomResourceDefinition> {
26
26
  }
@@ -21,8 +21,8 @@
21
21
  import "./crd-resource-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { AdditionalPrinterColumnsV1, CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
25
- import type { KubeObject, KubeObjectMetadata, KubeObjectStatus } from "../../../common/k8s-api/kube-object";
24
+ import { AdditionalPrinterColumnsV1, CustomResourceDefinition } from "../../../common/k8s-api/endpoints/crd.api";
25
+ import { KubeObject, KubeObjectMetadata, KubeObjectStatus } from "../../../common/k8s-api/kube-object";
26
26
  interface Props extends KubeObjectDetailsProps<KubeObject> {
27
27
  crd: CustomResourceDefinition;
28
28
  }
@@ -30,10 +30,9 @@ export declare class EntitySettings extends React.Component<Props> {
30
30
  get entityId(): string;
31
31
  get entity(): CatalogEntity;
32
32
  get menuItems(): import("../../../extensions/registries").RegisteredEntitySetting[];
33
- componentDidMount(): Promise<void>;
33
+ get activeSetting(): import("../../../extensions/registries").RegisteredEntitySetting;
34
34
  onTabChange: (tabId: string) => void;
35
35
  renderNavigation(): JSX.Element;
36
- ensureActiveTab(): void;
37
36
  render(): JSX.Element;
38
37
  }
39
38
  export {};
@@ -21,7 +21,7 @@
21
21
  import "./event-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { KubeEvent } from "../../../common/k8s-api/endpoints/events.api";
24
+ import { KubeEvent } from "../../../common/k8s-api/endpoints/events.api";
25
25
  interface Props extends KubeObjectDetailsProps<KubeEvent> {
26
26
  }
27
27
  export declare class EventDetails extends React.Component<Props> {
@@ -20,7 +20,7 @@
20
20
  */
21
21
  import "./kube-event-details.scss";
22
22
  import React from "react";
23
- import type { KubeObject } from "../../../common/k8s-api/kube-object";
23
+ import { KubeObject } from "../../../common/k8s-api/kube-object";
24
24
  export interface KubeEventDetailsProps {
25
25
  object: KubeObject;
26
26
  }
@@ -21,7 +21,7 @@
21
21
  import "./endpoint-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { Endpoint } from "../../../common/k8s-api/endpoints";
24
+ import { Endpoint } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<Endpoint> {
26
26
  }
27
27
  export declare class EndpointDetails extends React.Component<Props> {
@@ -20,7 +20,7 @@
20
20
  */
21
21
  import "./ingress-details.scss";
22
22
  import React from "react";
23
- import type { ILoadBalancerIngress, Ingress } from "../../../common/k8s-api/endpoints";
23
+ import { ILoadBalancerIngress, Ingress } from "../../../common/k8s-api/endpoints";
24
24
  import type { KubeObjectDetailsProps } from "../kube-object-details";
25
25
  import { IIngressMetrics } from "../../../common/k8s-api/endpoints/ingress.api";
26
26
  interface Props extends KubeObjectDetailsProps<Ingress> {
@@ -20,7 +20,7 @@
20
20
  */
21
21
  import "./network-policy-details.scss";
22
22
  import React from "react";
23
- import type { IPolicyEgress, IPolicyIngress, NetworkPolicy } from "../../../common/k8s-api/endpoints/network-policy.api";
23
+ import { IPolicyEgress, IPolicyIngress, NetworkPolicy } from "../../../common/k8s-api/endpoints/network-policy.api";
24
24
  import type { KubeObjectDetailsProps } from "../kube-object-details";
25
25
  interface Props extends KubeObjectDetailsProps<NetworkPolicy> {
26
26
  }
@@ -21,7 +21,7 @@
21
21
  import "./service-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { Service } from "../../../common/k8s-api/endpoints";
24
+ import { Service } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<Service> {
26
26
  }
27
27
  export declare class ServiceDetails extends React.Component<Props> {
@@ -21,17 +21,18 @@
21
21
  import "./pod-security-policy-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { PodSecurityPolicy } from "../../../common/k8s-api/endpoints";
24
+ import { PodSecurityPolicy } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<PodSecurityPolicy> {
26
26
  }
27
+ interface RuleGroup {
28
+ rule: string;
29
+ ranges?: {
30
+ max: number;
31
+ min: number;
32
+ }[];
33
+ }
27
34
  export declare class PodSecurityPolicyDetails extends React.Component<Props> {
28
- renderRuleGroup(title: React.ReactNode, group: {
29
- rule: string;
30
- ranges?: {
31
- max: number;
32
- min: number;
33
- }[];
34
- }): JSX.Element;
35
+ renderRuleGroup(title: React.ReactNode, group: RuleGroup): JSX.Element;
35
36
  render(): JSX.Element;
36
37
  }
37
38
  export {};
@@ -21,7 +21,7 @@
21
21
  import "./storage-class-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { StorageClass } from "../../../common/k8s-api/endpoints";
24
+ import { StorageClass } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<StorageClass> {
26
26
  }
27
27
  export declare class StorageClassDetails extends React.Component<Props> {
@@ -21,7 +21,7 @@
21
21
  import "./cronjob-details.scss";
22
22
  import React from "react";
23
23
  import type { KubeObjectDetailsProps } from "../kube-object-details";
24
- import type { CronJob } from "../../../common/k8s-api/endpoints";
24
+ import { CronJob } from "../../../common/k8s-api/endpoints";
25
25
  interface Props extends KubeObjectDetailsProps<CronJob> {
26
26
  }
27
27
  export declare class CronJobDetails extends React.Component<Props> {
@@ -18,6 +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 class ExecValidationNotFoundError extends Error {
22
- constructor(execPath: string, isAbsolute: boolean);
23
- }
21
+ export {};
@@ -33,11 +33,9 @@ interface Props extends DOMAttributes<HTMLElement> {
33
33
  export declare class HotbarEntityIcon extends React.Component<Props> {
34
34
  private contextMenu;
35
35
  constructor(props: Props);
36
- componentDidMount(): void;
37
36
  get kindIcon(): JSX.Element;
38
37
  get ledIcon(): JSX.Element;
39
38
  isActive(item: CatalogEntity): boolean;
40
- isPersisted(entity: CatalogEntity): boolean;
41
39
  render(): JSX.Element;
42
40
  }
43
41
  export {};
@@ -19,7 +19,7 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  import React from "react";
22
- import type { KubeMetaField, KubeObject } from "../../../common/k8s-api/kube-object";
22
+ import { KubeMetaField, KubeObject } from "../../../common/k8s-api/kube-object";
23
23
  export interface KubeObjectMetaProps {
24
24
  object: KubeObject;
25
25
  hideFields?: KubeMetaField[];
@@ -34,7 +34,6 @@ export interface SettingLayoutProps extends React.DOMAttributes<any> {
34
34
  */
35
35
  export declare class SettingLayout extends React.Component<SettingLayoutProps> {
36
36
  static defaultProps: object;
37
- back(evt?: React.MouseEvent | KeyboardEvent): void;
38
37
  componentDidMount(): Promise<void>;
39
38
  componentWillUnmount(): void;
40
39
  onEscapeKey: (evt: KeyboardEvent) => void;
@@ -26,13 +26,15 @@ interface Props {
26
26
  }
27
27
  export declare class Sidebar extends React.Component<Props> {
28
28
  static displayName: string;
29
+ private contextMenu;
30
+ constructor(props: Props);
29
31
  componentDidMount(): Promise<void>;
30
32
  renderCustomResources(): JSX.Element | JSX.Element[];
31
33
  renderTreeFromTabRoutes(tabRoutes?: TabLayoutRoute[]): React.ReactNode;
32
34
  getTabLayoutRoutes(menu: ClusterPageMenuRegistration): TabLayoutRoute[];
33
35
  renderRegisteredMenus(): JSX.Element[];
34
36
  renderCluster(): JSX.Element;
35
- get clusterEntity(): import("../../api/catalog-entity").CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>;
37
+ get clusterEntity(): import("../../../common/catalog").CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>;
36
38
  render(): JSX.Element;
37
39
  }
38
40
  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.3.0-git.f51ce1e34b.0",
5
+ "version": "5.3.0-git.fa21b63c77.0",
6
6
  "copyright": "© 2021 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",