@dovetail-v2/refine 0.1.2 → 0.1.4-pod-exec-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/{MonacoYamlDiffEditor-f0cf18e8.js → MonacoYamlDiffEditor-706f5a4e.js} +1 -1
- package/dist/{index-903eb91c.js → index-bce2a951.js} +16197 -2294
- package/dist/refine.js +164 -158
- package/dist/refine.umd.cjs +15580 -1677
- package/dist/style.css +229 -11
- package/lib/App.d.ts +2 -0
- package/lib/Dovetail.d.ts +18 -0
- package/lib/components/Breadcrumb/index.d.ts +5 -0
- package/lib/components/ConditionsTable/ConditionsTable.d.ts +7 -0
- package/lib/components/ConditionsTable/index.d.ts +1 -0
- package/lib/components/CreateButton/index.d.ts +1 -0
- package/lib/components/CronJobDropdown/index.d.ts +8 -0
- package/lib/components/CronjobJobsTable/index.d.ts +8 -0
- package/lib/components/DeleteButton/index.d.ts +2 -0
- package/lib/components/DeleteManyButton/index.d.ts +4 -0
- package/lib/components/DrawerShow/DrawerShow.d.ts +8 -0
- package/lib/components/DrawerShow/index.d.ts +1 -0
- package/lib/components/DurationTime/index.d.ts +5 -0
- package/lib/components/EditButton/index.d.ts +2 -0
- package/lib/components/EditField/index.d.ts +15 -0
- package/lib/components/ErrorContent/index.d.ts +17 -0
- package/lib/components/EventsTable/EventsTable.d.ts +6 -0
- package/lib/components/EventsTable/index.d.ts +1 -0
- package/lib/components/Form/FormModal.d.ts +10 -0
- package/lib/components/Form/RefineFormContent.d.ts +11 -0
- package/lib/components/Form/RefineFormPage.d.ts +6 -0
- package/lib/components/Form/YamlForm.d.ts +28 -0
- package/lib/components/Form/index.d.ts +7 -0
- package/lib/components/Form/type.d.ts +17 -0
- package/lib/components/Form/useReactHookForm.d.ts +29 -0
- package/lib/components/Form/useRefineForm.d.ts +13 -0
- package/lib/components/Form/useYamlForm.d.ts +51 -0
- package/lib/components/FormErrorAlert/index.d.ts +9 -0
- package/lib/components/FormLayout/index.d.ts +7 -0
- package/lib/components/FormWidgets/KeyValueListWidget.d.ts +5 -0
- package/lib/components/FormWidgets/MetadataForm.d.ts +1 -0
- package/lib/components/FormWidgets/NameInputWidget.d.ts +50 -0
- package/lib/components/FormWidgets/NamespaceSelectWidget.d.ts +8 -0
- package/lib/components/FormWidgets/index.d.ts +4 -0
- package/lib/components/FormWidgets/widget.d.ts +5 -0
- package/lib/components/ImageNames/index.d.ts +5 -0
- package/lib/components/IngressRulesComponent/index.d.ts +5 -0
- package/lib/components/IngressRulesTable/IngressRulesTable.d.ts +7 -0
- package/lib/components/IngressRulesTable/index.d.ts +1 -0
- package/lib/components/K8sDropdown/index.d.ts +9 -0
- package/lib/components/KeyValue/KeyValue.d.ts +7 -0
- package/lib/components/KeyValue/KeyValueAnnotation.d.ts +5 -0
- package/lib/components/KeyValue/KeyValueSecret.d.ts +4 -0
- package/lib/components/KeyValue/index.d.ts +3 -0
- package/lib/components/Layout/index.d.ts +3 -0
- package/lib/components/LinkFallback/index.d.ts +3 -0
- package/lib/components/ListPage/index.d.ts +9 -0
- package/lib/components/Menu/index.d.ts +1 -0
- package/lib/components/NamespacesFilter/index.d.ts +11 -0
- package/lib/components/NetworkPolicyRulesViewer/NetworkPolicyRulesViewer.d.ts +8 -0
- package/lib/components/NetworkPolicyRulesViewer/index.d.ts +1 -0
- package/lib/components/PageShow/PageShow.d.ts +12 -0
- package/lib/components/PageShow/index.d.ts +1 -0
- package/lib/components/PodContainersTable/PodContainersTable.d.ts +8 -0
- package/lib/components/PodContainersTable/index.d.ts +1 -0
- package/lib/components/PodDropdown/index.d.ts +9 -0
- package/lib/components/PodLog/index.d.ts +6 -0
- package/lib/components/PodSelectorTable/index.d.ts +6 -0
- package/lib/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/components/PodShellModal/index.d.ts +9 -0
- package/lib/components/PortsTable/index.d.ts +7 -0
- package/lib/components/ReferenceLink/index.d.ts +8 -0
- package/lib/components/ReplicasDropdown/index.d.ts +9 -0
- package/lib/components/ResourceCRUD/ResourceCRUD.d.ts +7 -0
- package/lib/components/ResourceCRUD/create/index.d.ts +7 -0
- package/lib/components/ResourceCRUD/index.d.ts +4 -0
- package/lib/components/ResourceCRUD/list/index.d.ts +8 -0
- package/lib/components/ResourceCRUD/show/index.d.ts +8 -0
- package/lib/components/ResourceFiledDisplays.d.ts +6 -0
- package/lib/components/ResourceLink/index.d.ts +8 -0
- package/lib/components/ResourceSelect/index.d.ts +11 -0
- package/lib/components/ResourceUsageBar/index.d.ts +8 -0
- package/lib/components/Separator/index.d.ts +2 -0
- package/lib/components/ServiceComponents/index.d.ts +10 -0
- package/lib/components/Shell/index.d.ts +54 -0
- package/lib/components/ShowContent/ShowContent.d.ts +18 -0
- package/lib/components/ShowContent/fields.d.ts +68 -0
- package/lib/components/ShowContent/groups.d.ts +23 -0
- package/lib/components/ShowContent/index.d.ts +4 -0
- package/lib/components/ShowContent/tabs.d.ts +5 -0
- package/lib/components/StateTag/StateTag.d.ts +10 -0
- package/lib/components/StateTag/index.d.ts +1 -0
- package/lib/components/Table/TableToolBar.d.ts +8 -0
- package/lib/components/Table/TableWidgets.d.ts +6 -0
- package/lib/components/Table/index.d.ts +43 -0
- package/lib/components/Tabs/index.d.ts +10 -0
- package/lib/components/Tags/index.d.ts +6 -0
- package/lib/components/TextTags/index.d.ts +6 -0
- package/lib/components/Time/index.d.ts +8 -0
- package/lib/components/ValueDisplay/index.d.ts +9 -0
- package/lib/components/WorkloadDropdown/index.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/WorkloadPodsTable.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/index.d.ts +1 -0
- package/lib/components/WorkloadReplicas/index.d.ts +17 -0
- package/lib/components/YamlEditor/MonacoYamlDiffEditor.d.ts +9 -0
- package/lib/components/YamlEditor/MonacoYamlEditor.d.ts +19 -0
- package/lib/components/YamlEditor/YamlEditorComponent.d.ts +27 -0
- package/lib/components/YamlEditor/index.d.ts +1 -0
- package/lib/components/YamlEditor/style.d.ts +11 -0
- package/lib/components/YamlEditor/yaml.worker.d.ts +1 -0
- package/lib/components/index.d.ts +47 -0
- package/lib/constants/auth.d.ts +5 -0
- package/lib/constants/index.d.ts +3 -0
- package/lib/constants/k8s.d.ts +487 -0
- package/lib/constants/state.d.ts +15 -0
- package/lib/contexts/component.d.ts +7 -0
- package/lib/contexts/configs.d.ts +3 -0
- package/lib/contexts/global-store.d.ts +5 -0
- package/lib/contexts/index.d.ts +3 -0
- package/lib/hooks/index.d.ts +8 -0
- package/lib/hooks/useDeleteModal/index.d.ts +1 -0
- package/lib/hooks/useDeleteModal/useDeleteManyModal.d.ts +7 -0
- package/lib/hooks/useDeleteModal/useDeleteModal.d.ts +7 -0
- package/lib/hooks/useDownloadYAML.d.ts +7 -0
- package/lib/hooks/useEagleTable/columns.d.ts +41 -0
- package/lib/hooks/useEagleTable/index.d.ts +2 -0
- package/lib/hooks/useEagleTable/useEagleTable.d.ts +55 -0
- package/lib/hooks/useEdit.d.ts +4 -0
- package/lib/hooks/useGlobalStore.d.ts +3 -0
- package/lib/hooks/useK8sYamlEditor.d.ts +5 -0
- package/lib/hooks/useNamespaceRefineFilter.d.ts +5 -0
- package/lib/hooks/useOpenForm.d.ts +7 -0
- package/lib/hooks/useSchema.d.ts +14 -0
- package/lib/hooks/useSubmitForm.d.ts +14 -0
- package/lib/hooks/useTableData.d.ts +19 -0
- package/lib/i18n.d.ts +353 -0
- package/lib/index.d.ts +11 -0
- package/lib/locales/en-US/index.d.ts +175 -0
- package/lib/locales/index.d.ts +2 -0
- package/lib/locales/zh-CN/index.d.ts +175 -0
- package/lib/main.d.ts +3 -0
- package/lib/models/cronjob-model.d.ts +15 -0
- package/lib/models/daemonset-model.d.ts +15 -0
- package/lib/models/deployment-model.d.ts +13 -0
- package/lib/models/event-model.d.ts +7 -0
- package/lib/models/index.d.ts +19 -0
- package/lib/models/ingress-model.d.ts +20 -0
- package/lib/models/job-model.d.ts +20 -0
- package/lib/models/network-policy-model.d.ts +9 -0
- package/lib/models/node-model.d.ts +17 -0
- package/lib/models/persistent-volume-claim.d.ts +9 -0
- package/lib/models/persistent-volume.d.ts +9 -0
- package/lib/models/pod-metrics-model.d.ts +8 -0
- package/lib/models/pod-model.d.ts +20 -0
- package/lib/models/resource-model.d.ts +21 -0
- package/lib/models/service-model.d.ts +24 -0
- package/lib/models/statefulset-model.d.ts +13 -0
- package/lib/models/storage-class.d.ts +12 -0
- package/lib/models/types/index.d.ts +1 -0
- package/lib/models/types/metric.d.ts +25 -0
- package/lib/models/workload-base-model.d.ts +12 -0
- package/lib/models/workload-model.d.ts +18 -0
- package/lib/pages/configmaps/index.d.ts +4 -0
- package/lib/pages/cronjobs/create/index.d.ts +3 -0
- package/lib/pages/cronjobs/index.d.ts +3 -0
- package/lib/pages/cronjobs/list/index.d.ts +3 -0
- package/lib/pages/cronjobs/show/index.d.ts +3 -0
- package/lib/pages/daemonsets/create/index.d.ts +3 -0
- package/lib/pages/daemonsets/index.d.ts +3 -0
- package/lib/pages/daemonsets/list/index.d.ts +3 -0
- package/lib/pages/daemonsets/show/index.d.ts +3 -0
- package/lib/pages/deployments/index.d.ts +2 -0
- package/lib/pages/deployments/list/index.d.ts +3 -0
- package/lib/pages/deployments/show/index.d.ts +3 -0
- package/lib/pages/ingresses/index.d.ts +4 -0
- package/lib/pages/jobs/index.d.ts +4 -0
- package/lib/pages/networkPolicies/index.d.ts +4 -0
- package/lib/pages/nodes/index.d.ts +2 -0
- package/lib/pages/nodes/list/index.d.ts +3 -0
- package/lib/pages/nodes/show/index.d.ts +3 -0
- package/lib/pages/persistentvolumeclaims/index.d.ts +4 -0
- package/lib/pages/persistentvolumes/index.d.ts +4 -0
- package/lib/pages/pods/create/index.d.ts +3 -0
- package/lib/pages/pods/index.d.ts +3 -0
- package/lib/pages/pods/list/index.d.ts +3 -0
- package/lib/pages/pods/show/index.d.ts +3 -0
- package/lib/pages/secrets/index.d.ts +4 -0
- package/lib/pages/services/index.d.ts +4 -0
- package/lib/pages/statefulsets/index.d.ts +4 -0
- package/lib/pages/storageclasses/form/index.d.ts +9 -0
- package/lib/pages/storageclasses/index.d.ts +44 -0
- package/lib/plugins/index.d.ts +4 -0
- package/lib/plugins/model-plugin.d.ts +13 -0
- package/lib/plugins/relation-plugin.d.ts +26 -0
- package/lib/plugins/type.d.ts +8 -0
- package/lib/providers/index.d.ts +1 -0
- package/lib/providers/router-provider/index.d.ts +21 -0
- package/lib/src/components/Form/FormModal.d.ts +1 -0
- package/lib/src/components/PodDropdown/index.d.ts +9 -0
- package/lib/src/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/src/components/PodShellModal/index.d.ts +10 -0
- package/lib/src/components/Shell/index.d.ts +54 -0
- package/lib/src/components/index.d.ts +3 -0
- package/lib/src/i18n.d.ts +1 -0
- package/lib/src/locales/en-US/index.d.ts +1 -0
- package/lib/src/utils/shell.d.ts +16 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/resource.d.ts +62 -0
- package/lib/utils/addId.d.ts +3 -0
- package/lib/utils/download.d.ts +1 -0
- package/lib/utils/error.d.ts +20 -0
- package/lib/utils/form.d.ts +3 -0
- package/lib/utils/k8s.d.ts +3 -0
- package/lib/utils/labels.d.ts +9 -0
- package/lib/utils/match-selector.d.ts +3 -0
- package/lib/utils/openapi.d.ts +45 -0
- package/lib/utils/schema.d.ts +17 -0
- package/lib/utils/selector.d.ts +3 -0
- package/lib/utils/shell.d.ts +15 -0
- package/lib/utils/string.d.ts +1 -0
- package/lib/utils/time.d.ts +13 -0
- package/lib/utils/unit.d.ts +12 -0
- package/lib/utils/yaml.d.ts +2 -0
- package/package.json +14 -5
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { TableProps as BaseTableProps, RequiredColumnProps } from '@cloudtower/eagle';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { FormType } from 'src/types';
|
|
4
|
+
export type IDObject = {
|
|
5
|
+
id: string;
|
|
6
|
+
};
|
|
7
|
+
export type SorterOrder = 'descend' | 'ascend' | undefined;
|
|
8
|
+
export type Column<Data extends {
|
|
9
|
+
id: string;
|
|
10
|
+
}> = RequiredColumnProps<Data> & {
|
|
11
|
+
display?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export type TableProps<Data extends {
|
|
14
|
+
id: string;
|
|
15
|
+
}> = {
|
|
16
|
+
tableKey: string;
|
|
17
|
+
className?: string;
|
|
18
|
+
loading: boolean;
|
|
19
|
+
error?: boolean;
|
|
20
|
+
data: Data[];
|
|
21
|
+
total: number;
|
|
22
|
+
refetch?: () => void;
|
|
23
|
+
rowKey: (string & keyof Data) | ((record: Data) => string);
|
|
24
|
+
columns: Array<Column<Data>>;
|
|
25
|
+
scroll?: BaseTableProps<Data>['scroll'];
|
|
26
|
+
currentPage: number;
|
|
27
|
+
defaultSize: number;
|
|
28
|
+
onActive?: (key: unknown, record: Data) => void;
|
|
29
|
+
onSelect?: (keys: React.Key[], rows: Data[]) => void;
|
|
30
|
+
onPageChange: (page: number) => void;
|
|
31
|
+
onSizeChange?: (size: number) => void;
|
|
32
|
+
onSorterChange?: (order: SorterOrder | null, key?: string) => void;
|
|
33
|
+
RowMenu?: React.FC<{
|
|
34
|
+
record: Data;
|
|
35
|
+
formType?: FormType;
|
|
36
|
+
}>;
|
|
37
|
+
empty?: string;
|
|
38
|
+
showMenuColumn?: boolean;
|
|
39
|
+
};
|
|
40
|
+
declare function Table<Data extends {
|
|
41
|
+
id: string;
|
|
42
|
+
}>(props: TableProps<Data>): JSX.Element;
|
|
43
|
+
export default Table;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface ValueDisplayProps {
|
|
3
|
+
value: React.ReactNode;
|
|
4
|
+
useOverflow?: boolean;
|
|
5
|
+
style?: React.CSSProperties;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function ValueDisplay(props: ValueDisplayProps): JSX.Element;
|
|
9
|
+
export default ValueDisplay;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WorkloadModel } from '../../models';
|
|
3
|
+
import { DropdownSize } from '../K8sDropdown';
|
|
4
|
+
type Props<Model extends WorkloadModel> = {
|
|
5
|
+
record: Model;
|
|
6
|
+
size?: DropdownSize;
|
|
7
|
+
};
|
|
8
|
+
export declare function WorkloadDropdown<Model extends WorkloadModel>(props: React.PropsWithChildren<Props<Model>>): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { LabelSelector } from 'kubernetes-types/meta/v1';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
interface WorkloadPodsTableProps {
|
|
4
|
+
namespace?: string;
|
|
5
|
+
selector?: LabelSelector;
|
|
6
|
+
hideToolbar?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const WorkloadPodsTable: React.FC<WorkloadPodsTableProps>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WorkloadPodsTable';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WorkloadModel, JobModel } from '../../models';
|
|
3
|
+
interface WorkloadReplicasFormProps {
|
|
4
|
+
defaultValue: number;
|
|
5
|
+
record: WorkloadModel;
|
|
6
|
+
label: string;
|
|
7
|
+
}
|
|
8
|
+
interface WorkloadReplicasFormHandler {
|
|
9
|
+
submit: () => Promise<unknown> | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare const WorkloadReplicasForm: React.ForwardRefExoticComponent<WorkloadReplicasFormProps & React.RefAttributes<WorkloadReplicasFormHandler>>;
|
|
12
|
+
export interface WorkloadReplicasProps {
|
|
13
|
+
record: WorkloadModel | JobModel;
|
|
14
|
+
editable?: boolean;
|
|
15
|
+
}
|
|
16
|
+
export declare function WorkloadReplicas({ record, editable }: WorkloadReplicasProps): JSX.Element;
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type JSONSchema7 } from 'json-schema';
|
|
2
|
+
import * as monaco from 'monaco-editor';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
type Props = {
|
|
5
|
+
className?: string;
|
|
6
|
+
id?: string;
|
|
7
|
+
defaultValue: string;
|
|
8
|
+
height?: string;
|
|
9
|
+
onChange?: (val: string) => void;
|
|
10
|
+
onValidate?: (valid: boolean, schemaValid: boolean) => void;
|
|
11
|
+
isScrollOnFocus?: boolean;
|
|
12
|
+
onEditorCreate?: (editor: monaco.editor.IStandaloneCodeEditor) => void;
|
|
13
|
+
onBlur?: () => void;
|
|
14
|
+
getInstance?: (ins: monaco.editor.IStandaloneCodeEditor) => void;
|
|
15
|
+
schema?: JSONSchema7;
|
|
16
|
+
readOnly?: boolean;
|
|
17
|
+
};
|
|
18
|
+
declare const MonacoYamlEditor: React.FC<Props>;
|
|
19
|
+
export default MonacoYamlEditor;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { JSONSchema7 } from 'json-schema';
|
|
2
|
+
import type * as monaco from 'monaco-editor';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
export type YamlEditorProps = {
|
|
5
|
+
eleRef?: React.MutableRefObject<HTMLDivElement>;
|
|
6
|
+
title?: string;
|
|
7
|
+
defaultValue?: string;
|
|
8
|
+
errorMsgs?: string[];
|
|
9
|
+
schema: JSONSchema7;
|
|
10
|
+
id?: string;
|
|
11
|
+
className?: string;
|
|
12
|
+
height?: string;
|
|
13
|
+
collapsable?: boolean;
|
|
14
|
+
isDefaultCollapsed?: boolean;
|
|
15
|
+
readOnly?: boolean;
|
|
16
|
+
onChange?: (value: string) => void;
|
|
17
|
+
onValidate?: (valid: boolean, schemaValid: boolean) => void;
|
|
18
|
+
onEditorCreate?: (editor: monaco.editor.IStandaloneCodeEditor) => void;
|
|
19
|
+
onBlur?: () => void;
|
|
20
|
+
};
|
|
21
|
+
export type YamlEditorHandle = {
|
|
22
|
+
setValue: (value: string) => void;
|
|
23
|
+
setEditorValue: (value: string) => void;
|
|
24
|
+
getEditorValue: () => string;
|
|
25
|
+
getEditorInstance: () => monaco.editor.IStandaloneCodeEditor | null;
|
|
26
|
+
};
|
|
27
|
+
export declare const YamlEditorComponent: React.ForwardRefExoticComponent<YamlEditorProps & React.RefAttributes<YamlEditorHandle>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './YamlEditorComponent';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const ToolBarStyle: import("@linaria/core").LinariaClassName;
|
|
2
|
+
export declare const ToolBarHeaderStyle: import("@linaria/core").LinariaClassName;
|
|
3
|
+
export declare const ErrorIconStyle: import("@linaria/core").LinariaClassName;
|
|
4
|
+
export declare const WrapperStyle: import("@linaria/core").LinariaClassName;
|
|
5
|
+
export declare const TitleStyle: import("@linaria/core").LinariaClassName;
|
|
6
|
+
export declare const IconStyle: import("@linaria/core").LinariaClassName;
|
|
7
|
+
export declare const DisabledIconStyle: import("@linaria/core").LinariaClassName;
|
|
8
|
+
export declare const PlainCodeStyle: import("@linaria/core").LinariaClassName;
|
|
9
|
+
export declare const ErrorMsgStyle: import("@linaria/core").LinariaClassName;
|
|
10
|
+
export declare const ErrorWrapperStyle: import("@linaria/core").LinariaClassName;
|
|
11
|
+
export declare const YamlEditorStyle: import("@linaria/core").LinariaClassName;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'monaco-yaml/yaml.worker.js';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from './Breadcrumb';
|
|
2
|
+
export * from './FormWidgets';
|
|
3
|
+
export * from './PageShow';
|
|
4
|
+
export * from './Time';
|
|
5
|
+
export * from './ConditionsTable';
|
|
6
|
+
export * from './FormLayout';
|
|
7
|
+
export * from './PodContainersTable';
|
|
8
|
+
export * from './WorkloadDropdown';
|
|
9
|
+
export * from './ReplicasDropdown';
|
|
10
|
+
export * from './PodDropdown';
|
|
11
|
+
export * from './CreateButton';
|
|
12
|
+
export * from './ImageNames';
|
|
13
|
+
export * from './ResourceCRUD';
|
|
14
|
+
export * from './WorkloadPodsTable';
|
|
15
|
+
export * from './CronJobDropdown';
|
|
16
|
+
export * from './K8sDropdown';
|
|
17
|
+
export * from './ResourceUsageBar';
|
|
18
|
+
export * from './WorkloadReplicas';
|
|
19
|
+
export * from './CronjobJobsTable';
|
|
20
|
+
export * from './KeyValue';
|
|
21
|
+
export * from './Separator';
|
|
22
|
+
export * from './YamlEditor';
|
|
23
|
+
export * from './DeleteButton';
|
|
24
|
+
export * from './Layout';
|
|
25
|
+
export * from './ShowContent';
|
|
26
|
+
export * from './DeleteManyButton';
|
|
27
|
+
export * from './ListPage';
|
|
28
|
+
export * from './StateTag';
|
|
29
|
+
export * from './DrawerShow';
|
|
30
|
+
export * from './Menu';
|
|
31
|
+
export * from './Table';
|
|
32
|
+
export * from './EditButton';
|
|
33
|
+
export * from './ReferenceLink';
|
|
34
|
+
export * from './ResourceLink';
|
|
35
|
+
export * from './NamespacesFilter';
|
|
36
|
+
export * from './Form';
|
|
37
|
+
export * from './ServiceComponents';
|
|
38
|
+
export * from './Tags';
|
|
39
|
+
export * from './TextTags';
|
|
40
|
+
export * from './PodLog';
|
|
41
|
+
export * from './NetworkPolicyRulesViewer';
|
|
42
|
+
export * from './ResourceFiledDisplays';
|
|
43
|
+
export * from './Tabs';
|
|
44
|
+
export * as ValueDisplay from './ValueDisplay';
|
|
45
|
+
export * from './ResourceSelect';
|
|
46
|
+
export * from './Shell';
|
|
47
|
+
export * from './PodShellModal';
|