@alauda-fe/dynamic-plugin-shared 0.0.4-alpha.20 → 0.0.4-alpha.21
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/package.json
CHANGED
|
@@ -5449,6 +5449,7 @@ interface K8sYamlDisplayDialogData {
|
|
|
5449
5449
|
ellipsis?: boolean;
|
|
5450
5450
|
extra?: string;
|
|
5451
5451
|
resource: KubernetesResource;
|
|
5452
|
+
clusterName: string;
|
|
5452
5453
|
}
|
|
5453
5454
|
declare class K8sYamlDisplayDialogComponent {
|
|
5454
5455
|
codeEditorOptions: IEditorConstructionOptions;
|
|
@@ -5575,10 +5576,15 @@ declare class ResourceYamlEditorComponent<T extends KubernetesResource$1> implem
|
|
|
5575
5576
|
autoFillNamespace: boolean;
|
|
5576
5577
|
extraExamples: YamlExample[];
|
|
5577
5578
|
clusterName: string;
|
|
5579
|
+
readonly clusterName$: Observable<string>;
|
|
5578
5580
|
namespace: string;
|
|
5579
5581
|
hasFolded: boolean;
|
|
5580
5582
|
/**
|
|
5581
5583
|
* 自动获取的 schema,当没有手动提供 schema 时使用
|
|
5584
|
+
/**
|
|
5585
|
+
*
|
|
5586
|
+
*
|
|
5587
|
+
* @memberof ResourceYamlEditorComponent
|
|
5582
5588
|
*/
|
|
5583
5589
|
autoSchema$: Observable<OpenAPIV3SchemaObject$1>;
|
|
5584
5590
|
/**
|