@k8slens/extensions 5.3.0-git.b9cee0cbc7.0 → 5.3.0-git.c0c0b3ae11.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/catalog/catalog-entity.d.ts +4 -1
- package/dist/src/common/catalog-entities/kubernetes-cluster.d.ts +9 -1
- package/dist/src/common/catalog-entities/web-link.d.ts +2 -0
- package/dist/src/common/cluster-store.d.ts +0 -1
- package/dist/src/common/hotbar-store.d.ts +5 -0
- package/dist/src/common/k8s-api/endpoints/nodes.api.d.ts +25 -44
- package/dist/src/common/k8s-api/endpoints/secret.api.d.ts +5 -6
- package/dist/src/common/k8s-api/json-api.d.ts +2 -0
- package/dist/src/common/k8s-api/kube-api.d.ts +1 -1
- package/dist/src/common/kube-helpers.d.ts +9 -14
- package/dist/src/common/routes/port-forwards.d.ts +1 -0
- package/dist/src/common/user-store/preferences-helpers.d.ts +14 -0
- package/dist/src/common/user-store/user-store.d.ts +2 -0
- package/dist/src/common/utils/array.d.ts +30 -0
- package/dist/src/common/utils/index.d.ts +2 -1
- package/dist/src/common/utils/iter.d.ts +23 -9
- package/dist/src/common/utils/sort-compare.d.ts +50 -0
- package/dist/src/extensions/common-api/catalog.d.ts +2 -1
- package/dist/src/extensions/extension-api.js +1124 -1083
- package/dist/src/main/cluster.d.ts +0 -1
- package/dist/src/main/helm/helm-chart-manager.d.ts +5 -0
- package/dist/src/main/helm/helm-repo-manager.d.ts +1 -0
- package/dist/src/main/kubectl.d.ts +1 -1
- package/dist/src/main/utils/update-channel.d.ts +6 -0
- package/dist/src/renderer/components/+catalog/catalog-entity-details.d.ts +0 -1
- package/dist/src/renderer/components/+catalog/catalog-entity-drawer-menu.d.ts +0 -1
- package/dist/src/renderer/components/+catalog/catalog-entity-item.d.ts +1 -1
- package/dist/src/renderer/components/+catalog/catalog.d.ts +2 -0
- package/dist/src/renderer/components/+catalog/hotbar-toggle-menu-item.d.ts +27 -0
- package/dist/src/renderer/components/+config-maps/config-map-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-pod-disruption-budgets/pod-disruption-budgets-details.d.ts +1 -1
- package/dist/src/renderer/components/+config-resource-quotas/resource-quota-details.d.ts +1 -1
- package/dist/src/{common/custom-errors.d.ts → renderer/components/+config-secrets/__tests__/secret-details.test.d.ts} +1 -3
- package/dist/src/renderer/components/+config-secrets/secret-details.d.ts +5 -4
- package/dist/src/renderer/components/+custom-resources/crd-details.d.ts +1 -1
- package/dist/src/renderer/components/+custom-resources/crd-resource-details.d.ts +2 -2
- package/dist/src/renderer/components/+entity-settings/entity-settings.d.ts +1 -2
- package/dist/src/renderer/components/+events/event-details.d.ts +1 -1
- package/dist/src/renderer/components/+events/kube-event-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-endpoints/endpoint-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-ingresses/ingress-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-policies/network-policy-details.d.ts +1 -1
- package/dist/src/renderer/components/+network-port-forwards/port-forward-details.d.ts +33 -0
- package/dist/src/renderer/components/+network-port-forwards/port-forwards.d.ts +10 -1
- package/dist/src/renderer/components/+network-services/service-details.d.ts +1 -1
- package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts +9 -8
- package/dist/src/renderer/components/+storage-classes/storage-class-details.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-cronjobs/cronjob-details.d.ts +1 -1
- package/dist/src/renderer/components/+workloads-pods/pod-details-list.d.ts +0 -3
- package/dist/src/renderer/components/__tests__/nodes.api.test.d.ts +21 -0
- package/dist/src/renderer/components/hotbar/hotbar-entity-icon.d.ts +0 -2
- package/dist/src/renderer/components/kube-object-meta/kube-object-meta.d.ts +1 -1
- package/dist/src/renderer/components/layout/setting-layout.d.ts +0 -1
- package/dist/src/renderer/components/layout/sidebar.d.ts +3 -1
- package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
- package/dist/src/renderer/components/table/__tests__/getSorted.test.d.ts +21 -0
- package/dist/src/renderer/components/table/sorting.d.ts +22 -0
- package/dist/src/renderer/components/table/table.d.ts +20 -3
- package/dist/src/renderer/components/virtual-list/virtual-list.d.ts +6 -0
- package/dist/src/renderer/port-forward/port-forward-dialog.d.ts +0 -1
- package/dist/src/renderer/port-forward/port-forward-item.d.ts +1 -0
- package/dist/src/renderer/port-forward/port-forward.store.d.ts +1 -0
- package/dist/src/renderer/utils/__tests__/converted-name.test.d.ts +21 -0
- package/dist/src/renderer/utils/index.d.ts +9 -10
- package/dist/src/renderer/utils/name-parts.d.ts +27 -0
- 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;
|
|
@@ -30,5 +34,6 @@ export declare class HelmChartManager {
|
|
|
30
34
|
private executeCommand;
|
|
31
35
|
getReadme(name: string, version?: string): Promise<string>;
|
|
32
36
|
getValues(name: string, version?: string): Promise<string>;
|
|
37
|
+
protected updateYamlCache(): Promise<void>;
|
|
33
38
|
protected cachedYaml(): Promise<RepoHelmChartList>;
|
|
34
39
|
}
|
|
@@ -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():
|
|
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;
|
|
@@ -18,7 +18,6 @@
|
|
|
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 "./catalog-entity-details.scss";
|
|
22
21
|
import { Component } from "react";
|
|
23
22
|
import type { CatalogCategory, CatalogEntity } from "../../../common/catalog";
|
|
24
23
|
import type { CatalogEntityItem } from "./catalog-entity-item";
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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> {
|
|
@@ -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
|
|
22
|
-
constructor(execPath: string, isAbsolute: boolean);
|
|
23
|
-
}
|
|
21
|
+
export {};
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./secret-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
+
import { ObservableToggleSet } from "../../utils";
|
|
23
24
|
import type { KubeObjectDetailsProps } from "../kube-object-details";
|
|
24
|
-
import
|
|
25
|
+
import { Secret } from "../../../common/k8s-api/endpoints";
|
|
25
26
|
interface Props extends KubeObjectDetailsProps<Secret> {
|
|
26
27
|
}
|
|
27
28
|
export declare class SecretDetails extends React.Component<Props> {
|
|
@@ -29,13 +30,13 @@ export declare class SecretDetails extends React.Component<Props> {
|
|
|
29
30
|
data: {
|
|
30
31
|
[name: string]: string;
|
|
31
32
|
};
|
|
32
|
-
revealSecret:
|
|
33
|
-
[name: string]: boolean;
|
|
34
|
-
};
|
|
33
|
+
revealSecret: ObservableToggleSet<string>;
|
|
35
34
|
constructor(props: Props);
|
|
36
35
|
componentDidMount(): Promise<void>;
|
|
37
36
|
saveSecret: () => Promise<void>;
|
|
38
37
|
editData: (name: string, value: string, encoded: boolean) => void;
|
|
38
|
+
renderSecret: ([name, value]: [string, string]) => JSX.Element;
|
|
39
|
+
renderData(): JSX.Element;
|
|
39
40
|
render(): JSX.Element;
|
|
40
41
|
}
|
|
41
42
|
export {};
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./crd-details.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
-
import
|
|
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
|
|
25
|
-
import
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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 "./port-forward-details.scss";
|
|
22
|
+
import React from "react";
|
|
23
|
+
import type { PortForwardItem } from "../../port-forward";
|
|
24
|
+
interface Props {
|
|
25
|
+
portForward: PortForwardItem;
|
|
26
|
+
hideDetails(): void;
|
|
27
|
+
}
|
|
28
|
+
export declare class PortForwardDetails extends React.Component<Props> {
|
|
29
|
+
renderResourceName(): JSX.Element;
|
|
30
|
+
renderContent(): JSX.Element;
|
|
31
|
+
render(): JSX.Element;
|
|
32
|
+
}
|
|
33
|
+
export {};
|
|
@@ -20,9 +20,18 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import "./port-forwards.scss";
|
|
22
22
|
import React from "react";
|
|
23
|
+
import type { RouteComponentProps } from "react-router-dom";
|
|
23
24
|
import { PortForwardItem } from "../../port-forward";
|
|
24
|
-
|
|
25
|
+
import { PortForwardsRouteParams } from "../../../common/routes";
|
|
26
|
+
interface Props extends RouteComponentProps<PortForwardsRouteParams> {
|
|
27
|
+
}
|
|
28
|
+
export declare class PortForwards extends React.Component<Props> {
|
|
25
29
|
componentDidMount(): void;
|
|
30
|
+
get selectedPortForward(): PortForwardItem;
|
|
31
|
+
onDetails: (item: PortForwardItem) => void;
|
|
32
|
+
showDetails: (item: PortForwardItem) => void;
|
|
33
|
+
hideDetails: () => void;
|
|
26
34
|
renderRemoveDialogMessage(selectedItems: PortForwardItem[]): JSX.Element;
|
|
27
35
|
render(): JSX.Element;
|
|
28
36
|
}
|
|
37
|
+
export {};
|
|
@@ -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
|
|
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> {
|
package/dist/src/renderer/components/+pod-security-policies/pod-security-policy-details.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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> {
|
|
@@ -29,12 +29,9 @@ interface Props extends OptionalProps {
|
|
|
29
29
|
interface OptionalProps {
|
|
30
30
|
maxCpu?: number;
|
|
31
31
|
maxMemory?: number;
|
|
32
|
-
showTitle?: boolean;
|
|
33
32
|
}
|
|
34
33
|
export declare class PodDetailsList extends React.Component<Props> {
|
|
35
|
-
static defaultProps: OptionalProps;
|
|
36
34
|
private metricsWatcher;
|
|
37
|
-
private sortingCallbacks;
|
|
38
35
|
componentDidMount(): void;
|
|
39
36
|
componentWillUnmount(): void;
|
|
40
37
|
renderCpuUsage(id: string, usage: number): string | 0 | JSX.Element;
|
|
@@ -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 {};
|
|
@@ -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
|
|
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("
|
|
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 {};
|
|
@@ -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" | "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" | "
|
|
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" | "switchBase" | "thumb" | "focusVisible">>;
|
|
30
30
|
export {};
|
|
@@ -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 {};
|
|
@@ -0,0 +1,22 @@
|
|
|
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 type { TableSortCallback } from "./table";
|
|
22
|
+
export declare function getSorted<T>(rawItems: T[], sortingCallback: TableSortCallback<T> | undefined, orderByRaw: string): T[];
|
|
@@ -48,9 +48,25 @@ export interface TableProps<Item> extends React.DOMAttributes<HTMLDivElement> {
|
|
|
48
48
|
onSort?: (params: TableSortParams) => void;
|
|
49
49
|
noItems?: React.ReactNode;
|
|
50
50
|
selectedItemId?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Use virtual list component to render only visible rows. By default uses a
|
|
53
|
+
* auto sizer to fill available height
|
|
54
|
+
*/
|
|
51
55
|
virtual?: boolean;
|
|
52
|
-
|
|
53
|
-
|
|
56
|
+
/**
|
|
57
|
+
* Only used when virtual is true. Sets the virtual list to be a fixed height.
|
|
58
|
+
* Needed when used in contexts that already have a parent component that
|
|
59
|
+
* is `overflow-y: scroll`,
|
|
60
|
+
*/
|
|
61
|
+
virtualHeight?: number;
|
|
62
|
+
/**
|
|
63
|
+
* Row padding in pixels
|
|
64
|
+
*/
|
|
65
|
+
rowPadding?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Row line height in pixels
|
|
68
|
+
*/
|
|
69
|
+
rowLineHeight?: number;
|
|
54
70
|
customRowHeights?: (item: Item, lineHeight: number, paddings: number) => number;
|
|
55
71
|
getTableRow?: (uid: string) => React.ReactElement<TableRowProps>;
|
|
56
72
|
renderRow?: (item: Item) => React.ReactElement<TableRowProps>;
|
|
@@ -61,9 +77,10 @@ export declare class Table<Item> extends React.Component<TableProps<Item>> {
|
|
|
61
77
|
static defaultProps: TableProps<any>;
|
|
62
78
|
constructor(props: TableProps<Item>);
|
|
63
79
|
componentDidMount(): void;
|
|
80
|
+
get isSortable(): boolean;
|
|
64
81
|
get sortParams(): Partial<TableSortParams>;
|
|
65
82
|
renderHead(): React.ReactElement<TableHeadProps, string | React.JSXElementConstructor<any>>;
|
|
66
|
-
getSorted(
|
|
83
|
+
getSorted(rawItems: Item[]): Item[];
|
|
67
84
|
protected onSort({ sortBy, orderBy }: TableSortParams): void;
|
|
68
85
|
sort(colName: TableSortBy): void;
|
|
69
86
|
private getContent;
|