@dovetail-v2/refine 0.3.11-alpha.2 → 0.3.11-alpha.3
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/components/ShowContent/tabs.d.ts +2 -0
- package/dist/components/StateTag/StateTag.d.ts +1 -0
- package/dist/components/YamlEditor/MonacoYamlDiffEditor.d.ts +1 -1
- package/dist/components/YamlEditor/MonacoYamlEditor.d.ts +1 -1
- package/dist/components/YamlEditor/index.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/i18n.d.ts +2 -0
- package/dist/locales/en-US/index.d.ts +1 -0
- package/dist/locales/zh-CN/index.d.ts +1 -0
- package/dist/models/deployment-model.d.ts +2 -0
- package/dist/models/replicaset-model.d.ts +1 -0
- package/dist/refine.cjs +19795 -302
- package/dist/refine.js +19778 -302
- package/dist/style.css +4 -2
- package/package.json +1 -1
- package/dist/MonacoYamlDiffEditor-7a07db88.cjs +0 -59
- package/dist/MonacoYamlDiffEditor-9232e9fc.js +0 -42
- package/dist/MonacoYamlEditor-3d613ea5.js +0 -197
- package/dist/MonacoYamlEditor-b2219fcd.cjs +0 -214
- package/dist/index-2db85ce1.js +0 -19469
- package/dist/index-4e942497.cjs +0 -19468
|
@@ -2,4 +2,6 @@ import { i18n as I18nType } from 'i18next';
|
|
|
2
2
|
import { ResourceModel, PodModel } from 'src/models';
|
|
3
3
|
import { ShowTab } from './fields';
|
|
4
4
|
export declare const EventsTab: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType) => ShowTab<Model>;
|
|
5
|
+
export declare const ConditionsTab: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType) => ShowTab<Model>;
|
|
6
|
+
export declare const LabelAnnotationsTab: <Model extends ResourceModel<import("k8s-api-provider").Unstructured>>(i18n: I18nType) => ShowTab<Model>;
|
|
5
7
|
export declare const PodLogTab: <Model extends PodModel>(i18n: I18nType, apiUrl: string) => ShowTab<Model>;
|
|
@@ -15,5 +15,5 @@ type Props<T extends string | Record<string, unknown> = string> = {
|
|
|
15
15
|
schemas?: JSONSchema7[] | null;
|
|
16
16
|
readOnly?: boolean;
|
|
17
17
|
};
|
|
18
|
-
declare function MonacoYamlEditor<T extends string | Record<string, unknown> = string>(props: Props<T>): JSX.Element;
|
|
18
|
+
export declare function MonacoYamlEditor<T extends string | Record<string, unknown> = string>(props: Props<T>): JSX.Element;
|
|
19
19
|
export default MonacoYamlEditor;
|
|
@@ -16,6 +16,7 @@ export * from './WorkloadPodsTable';
|
|
|
16
16
|
export * from './Dropdowns/CronJobDropdown';
|
|
17
17
|
export * from './Dropdowns/K8sDropdown';
|
|
18
18
|
export * from './DropdownMenuItems';
|
|
19
|
+
export * from './EventsTable';
|
|
19
20
|
export * from './ResourceUsageBar';
|
|
20
21
|
export * from './WorkloadReplicas';
|
|
21
22
|
export * from './CronjobJobsTable';
|
package/dist/i18n.d.ts
CHANGED
|
@@ -252,6 +252,7 @@ export declare const resources: {
|
|
|
252
252
|
name_duplicated: string;
|
|
253
253
|
input_correct_port: string;
|
|
254
254
|
optional_with_bracket: string;
|
|
255
|
+
label_annotations: string;
|
|
255
256
|
};
|
|
256
257
|
};
|
|
257
258
|
'zh-CN': {
|
|
@@ -520,6 +521,7 @@ export declare const resources: {
|
|
|
520
521
|
node_port_duplicated: string;
|
|
521
522
|
all: string;
|
|
522
523
|
optional_with_bracket: string;
|
|
524
|
+
label_annotations: string;
|
|
523
525
|
};
|
|
524
526
|
};
|
|
525
527
|
};
|
|
@@ -13,5 +13,7 @@ export declare class DeploymentModel extends WorkloadModel {
|
|
|
13
13
|
init(): Promise<void>;
|
|
14
14
|
private getReplicaSets;
|
|
15
15
|
get stateDisplay(): ResourceState.UPDATING | ResourceState.READY | ResourceState.STOPPED;
|
|
16
|
+
get revision(): string | undefined;
|
|
17
|
+
get currentReplicaSet(): ReplicaSetModel | undefined;
|
|
16
18
|
}
|
|
17
19
|
export {};
|
|
@@ -12,6 +12,7 @@ export declare class ReplicaSetModel extends ResourceModel<RequiredReplicaSet> {
|
|
|
12
12
|
constructor(_rawYaml: RequiredReplicaSet, _globalStore: GlobalStore);
|
|
13
13
|
init(): Promise<void>;
|
|
14
14
|
private getPods;
|
|
15
|
+
get revision(): string | undefined;
|
|
15
16
|
get ownerDeploymentName(): string | undefined;
|
|
16
17
|
}
|
|
17
18
|
export {};
|