@alauda-fe/dynamic-plugin-shared 0.0.3-alpha.3 → 0.0.4-alpha.11

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.
@@ -1,32 +1,30 @@
1
1
  import * as _alauda_fe_dynamic_plugin_sdk from '@alauda-fe/dynamic-plugin-sdk';
2
- import { WorkspaceParams, TranslateService, TimeService, TranslatePipe, TranslateKey, FeatureGateService, WatchAPIResponse, K8sUtilService, Translation, TranslationValue, K8sResourceDefinition, ResourceType as ResourceType$1, K8sApiService, StringMap as StringMap$1, ResourceWriteParams } from '@alauda-fe/dynamic-plugin-sdk';
2
+ import { WorkspaceParams, TranslateService, TimeService, TranslatePipe, TranslateKey, FeatureGateService, WatchAPIResponse, K8sUtilService, Translation, TranslationValue, KubernetesResource as KubernetesResource$1, ConfigurableField, ResourceSelectorPopupRef, ProjectService, ClusterDataItem, K8sResourceDefinition, K8sApiService, StringMap as StringMap$1, ResourceWriteParams, KubernetesSchemaService, OpenAPIV3SchemaObject as OpenAPIV3SchemaObject$1, Arrayable as Arrayable$1 } from '@alauda-fe/dynamic-plugin-sdk';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, Subject, BehaviorSubject, ReplaySubject, Subscription } from 'rxjs';
5
5
  import { Primitive, ValueOf as ValueOf$1, UnionToIntersection } from 'ts-essentials';
6
6
  export { DeepPartial, DeepReadonly, Dictionary, ValueOf as LooseValueOf } from 'ts-essentials';
7
7
  import * as _alauda_code_editor from '@alauda/code-editor';
8
- import { CodeEditorActionsConfig } from '@alauda/code-editor';
8
+ import { IEditorConstructionOptions, MonacoEditor } from '@alauda/code-editor';
9
9
  import * as i1 from '@alauda/ui';
10
- import { Sort, ThemeService, AttrBoolean, FormItemControlDirective, MessageService, NotificationService, DialogRef, MultiSelectComponent, TooltipDirective, DateNavRange, DisabledTimeFn, TagType, TooltipComponent, BaseTooltip, DialogService, FormItemWidth, OptionFilterFn, TrackFn, SelectFilterOption, InputComponent, SortDirection } from '@alauda/ui';
10
+ import { Sort, ThemeService, AttrBoolean, FormItemControlDirective, MessageService, NotificationService, DialogRef, TooltipDirective, DateNavRange, DisabledTimeFn, TagType, TooltipComponent, BaseTooltip, FormItemWidth, OptionFilterFn, TrackFn, SelectFilterOption, InputComponent, SortDirection } from '@alauda/ui';
11
11
  import { Params, ParamMap, ActivatedRoute, ActivatedRouteSnapshot, CanDeactivate, RouterStateSnapshot, Router } from '@angular/router';
12
12
  import { CompareOperator } from 'compare-versions';
13
13
  export { CompareOperator as VersionCompareOperator, compareVersions as compareVersionToNum, satisfies as satisfiesVersion } from 'compare-versions';
14
14
  import * as _angular_forms from '@angular/forms';
15
- import { ValidatorFn, AsyncValidatorFn, AbstractControl, FormArray, ControlContainer, NgControl, Validator, ValidationErrors, DefaultValueAccessor, ControlValueAccessor, AsyncValidator, MaxLengthValidator, MinLengthValidator, NgForm, FormGroupDirective, FormGroup, FormBuilder, FormControl } from '@angular/forms';
15
+ import { AsyncValidatorFn, ValidatorFn, AbstractControl, FormArray, ControlContainer, NgControl, Validator, ValidationErrors, DefaultValueAccessor, ControlValueAccessor, AsyncValidator, MaxLengthValidator, MinLengthValidator, NgForm, FormGroupDirective, FormGroup, FormBuilder, FormControl } from '@angular/forms';
16
16
  import * as i0 from '@angular/core';
17
- import { AfterViewInit, OnDestroy, NgZone, PipeTransform, ChangeDetectorRef, OnInit, TemplateRef, ViewContainerRef, ElementRef, ComponentFactoryResolver, EventEmitter, OnChanges, SimpleChanges, Renderer2, Injector, ApplicationRef, QueryList, InjectionToken, Signal, TrackByFunction } from '@angular/core';
17
+ import { AfterViewInit, OnDestroy, NgZone, PipeTransform, ChangeDetectorRef, OnInit, TemplateRef, ViewContainerRef, ElementRef, Injector, EventEmitter, OnChanges, SimpleChanges, ApplicationRef, QueryList, InjectionToken, Signal, TrackByFunction } from '@angular/core';
18
18
  import { MarkedOptions } from 'marked';
19
19
  import { DecimalPipe, Location } from '@angular/common';
20
- import { CdkScrollable } from '@angular/cdk/scrolling';
21
- import dayjs, { Dayjs, ManipulateType, ConfigType } from 'dayjs';
20
+ import { CdkScrollable, CdkVirtualForOfContext, CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
21
+ import dayjs, { Dayjs, ConfigType, ManipulateType } from 'dayjs';
22
22
  import * as lodash from 'lodash';
23
23
  import * as _alauda_fe_dynamic_plugin_shared from '@alauda-fe/dynamic-plugin-shared';
24
24
  import { DomSanitizer } from '@angular/platform-browser';
25
25
  import { DomPortalOutlet, ComponentPortal } from '@angular/cdk/portal';
26
26
  import { BaseResourceFormComponent } from 'ng-resource-form-util';
27
27
  import { HttpErrorResponse } from '@angular/common/http';
28
- import * as monaco_editor_esm_vs_editor_editor_api from 'monaco-editor/esm/vs/editor/editor.api';
29
- import { Overlay } from '@angular/cdk/overlay';
30
28
 
31
29
  /**
32
30
  * @packageDocumentation
@@ -214,7 +212,46 @@ interface OpenAPIV3SchemaObject {
214
212
  default?: any;
215
213
  additionalProperties?: OpenAPIV3SchemaObject;
216
214
  }
215
+ interface OpenAPIV3SchemaObjects {
216
+ [name: string]: OpenAPIV3SchemaObject;
217
+ }
217
218
  type JSONSchema6TypeName = 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array' | 'null' | 'any';
219
+ interface OpenAPIV2Document {
220
+ swagger: string;
221
+ info: {
222
+ title: string;
223
+ version: string;
224
+ description?: string;
225
+ };
226
+ host?: string;
227
+ basePath?: string;
228
+ schemes?: string[];
229
+ consumes?: string[];
230
+ produces?: string[];
231
+ paths: Record<string, any>;
232
+ definitions: Record<string, OpenAPIV3SchemaObject>;
233
+ parameters?: Record<string, any>;
234
+ responses?: Record<string, any>;
235
+ securityDefinitions?: Record<string, any>;
236
+ security?: any[];
237
+ tags?: any[];
238
+ externalDocs?: any;
239
+ }
240
+ interface SchemaProperty {
241
+ name: string;
242
+ type: string;
243
+ description?: string;
244
+ required: boolean;
245
+ properties?: {
246
+ [key: string]: OpenAPIV3SchemaObject;
247
+ };
248
+ items?: OpenAPIV3SchemaObject;
249
+ }
250
+ interface SchemaBreadcrumb {
251
+ name: string;
252
+ path: string[];
253
+ schema: OpenAPIV3SchemaObject;
254
+ }
218
255
 
219
256
  /**
220
257
  * 此文件只维护 所有的 k8s 原生类型
@@ -464,6 +501,7 @@ declare const AccessMode: {
464
501
  readonly RWO: "ReadWriteOnce";
465
502
  readonly ROX: "ReadOnlyMany";
466
503
  readonly RWX: "ReadWriteMany";
504
+ readonly RWOP: "ReadWriteOncePod";
467
505
  };
468
506
  type AccessMode = ValueOf<typeof AccessMode>;
469
507
  declare const AccessModes: ("ReadWriteOnce" | "ReadOnlyMany" | "ReadWriteMany")[];
@@ -2807,12 +2845,13 @@ declare class ReadonlyFieldDirective implements OnInit, OnDestroy {
2807
2845
  aclReadonlyField$: Observable<boolean>;
2808
2846
  hidden: boolean;
2809
2847
  private isControlRequired;
2810
- private spanComponentRef;
2848
+ private spanComponentRef?;
2849
+ private templateViewRef?;
2811
2850
  private readonly templateContext;
2812
2851
  private readonly destroy$;
2813
2852
  readonly control: NgControl;
2814
- readonly cfr: ComponentFactoryResolver;
2815
2853
  readonly viewContainerRef: ViewContainerRef;
2854
+ readonly injector: Injector;
2816
2855
  readonly controlDirective: FormItemControlDirective;
2817
2856
  template: TemplateRef<any>;
2818
2857
  context: object;
@@ -2822,6 +2861,8 @@ declare class ReadonlyFieldDirective implements OnInit, OnDestroy {
2822
2861
  private applyValidators;
2823
2862
  private clearValidators;
2824
2863
  ngOnDestroy(): void;
2864
+ private attachReadonlyView;
2865
+ private detachReadonlyView;
2825
2866
  static ɵfac: i0.ɵɵFactoryDeclaration<ReadonlyFieldDirective, never>;
2826
2867
  static ɵdir: i0.ɵɵDirectiveDeclaration<ReadonlyFieldDirective, "[aclReadonlyField]", never, { "aclReadonlyField": { "alias": "aclReadonlyField"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "template": { "alias": "aclReadonlyFieldTemplate"; "required": false; }; "context": { "alias": "aclReadonlyFieldTemplateContext"; "required": false; }; }, {}, never, never, true, never>;
2827
2868
  }
@@ -2933,8 +2974,7 @@ declare class ControlValueTraceDirective implements OnInit, OnDestroy {
2933
2974
  destroy$$: Subject<void>;
2934
2975
  ngOnDestroy(): void;
2935
2976
  ngOnInit(): void;
2936
- constructor(ngControl: NgControl);
2937
- static ɵfac: i0.ɵɵFactoryDeclaration<ControlValueTraceDirective, [{ host: true; }]>;
2977
+ static ɵfac: i0.ɵɵFactoryDeclaration<ControlValueTraceDirective, never>;
2938
2978
  static ɵdir: i0.ɵɵDirectiveDeclaration<ControlValueTraceDirective, "[aclValueTrack]", never, { "aclValueTrackSkipFirst": { "alias": "aclValueTrackSkipFirst"; "required": false; }; "aclValueTrack": { "alias": "aclValueTrack"; "required": false; }; }, {}, never, never, true, never>;
2939
2979
  }
2940
2980
 
@@ -3160,8 +3200,7 @@ declare class SelectPrefixLabelDirective {
3160
3200
  queryElementByClassName(className: string): Element;
3161
3201
  createInlineLabel(value: string | TemplateRef<any>, className?: string): HTMLSpanElement;
3162
3202
  insertNode(container: Element, value: string | TemplateRef<any>, refChild?: Element): void;
3163
- constructor(elementRef: ElementRef, renderer: Renderer2, viewContainerRef: ViewContainerRef, multiSelectComponent: MultiSelectComponent);
3164
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectPrefixLabelDirective, [null, null, null, { optional: true; }]>;
3203
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectPrefixLabelDirective, never>;
3165
3204
  static ɵdir: i0.ɵɵDirectiveDeclaration<SelectPrefixLabelDirective, "aui-select[aclPrefixLabel],aui-multi-select[aclPrefixLabel]", never, { "aclPrefixLabel": { "alias": "aclPrefixLabel"; "required": false; }; }, {}, never, never, true, never>;
3166
3205
  }
3167
3206
 
@@ -3185,7 +3224,6 @@ declare class RelativeTimeComponent implements OnInit, OnDestroy {
3185
3224
  private readonly cdr;
3186
3225
  private readonly translate;
3187
3226
  private readonly destroy$;
3188
- constructor(cdr: ChangeDetectorRef, translate: TranslateService);
3189
3227
  time: dayjs.ConfigType;
3190
3228
  ngOnInit(): void;
3191
3229
  ngOnDestroy(): void;
@@ -3270,7 +3308,7 @@ declare class CurrentTimeComponent {
3270
3308
  * 效果:
3271
3309
  * 发生截取的文案会显示完整内容的 tooltip。未发生截取的文案不显示 tooltip。
3272
3310
  * @example:
3273
- * <span class="tw-text-overflow" aclTextTooltip>TEXT...</span>
3311
+ * <span aclTextTooltip>TEXT...</span>
3274
3312
  *
3275
3313
  * tooltip 的一些设置(位置、类型)可以使用 aui 相同设置。未传 tooltip content 则取元素 text content
3276
3314
  */
@@ -3567,7 +3605,7 @@ declare class StrongPasswordDirective extends BaseTooltip implements Validator,
3567
3605
  registerOnValidatorChange(fn: () => void): void;
3568
3606
  ngOnChanges(): void;
3569
3607
  onValidatorChange: () => void;
3570
- constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, elRef: ElementRef<HTMLInputElement>, renderer: Renderer2, cdr: ChangeDetectorRef, ngZone: NgZone);
3608
+ constructor();
3571
3609
  protected onFocus(): void;
3572
3610
  validate: (control: AbstractControl) => ValidationErrors;
3573
3611
  private resetContext;
@@ -3765,7 +3803,6 @@ declare class InterceptDeactivateService implements OnDestroy {
3765
3803
  private readonly dialog;
3766
3804
  private readonly translate;
3767
3805
  destroy$$: Subject<void>;
3768
- constructor(location: Location, router: Router, dialog: DialogService, translate: TranslateService);
3769
3806
  ngOnDestroy(): void;
3770
3807
  intercept({ title, content, context, errorFallback, }?: {
3771
3808
  title?: string;
@@ -3788,7 +3825,6 @@ declare class InterceptDeactivateDirective implements AfterViewInit, OnDestroy {
3788
3825
  enabled$$: Observable<boolean | ''>;
3789
3826
  enabled$: Observable<boolean>;
3790
3827
  destroy$$: Subject<void>;
3791
- constructor(elRef: ElementRef<HTMLElement>, interceptDeactivate: InterceptDeactivateService);
3792
3828
  ngAfterViewInit(): void;
3793
3829
  ngOnDestroy(): void;
3794
3830
  onBeforeUnload(): boolean;
@@ -3805,7 +3841,7 @@ declare abstract class BaseFormContainer<T = any> implements OnInit {
3805
3841
  initResource: T;
3806
3842
  initResource$: Observable<T>;
3807
3843
  private readonly ngForm;
3808
- codeEditorOptions: _alauda_fe_dynamic_plugin_shared.IEditorConstructionOptions;
3844
+ codeEditorOptions: _alauda_code_editor.IEditorConstructionOptions;
3809
3845
  actionsConfig: _alauda_code_editor.CodeEditorActionsConfig;
3810
3846
  formView: 'UI' | 'YAML';
3811
3847
  submitting: boolean;
@@ -4131,7 +4167,6 @@ declare class UploadFileComponent implements ControlValueAccessor {
4131
4167
  resultType: FileResultType;
4132
4168
  fileInput: ElementRef<HTMLInputElement>;
4133
4169
  valueChange: (ev: FileResult | FileResult[]) => void;
4134
- constructor(notification: NotificationService, translate: TranslateService);
4135
4170
  onClick(): void;
4136
4171
  onChange(e: Event): Promise<void>;
4137
4172
  writeValue(): void;
@@ -4447,7 +4482,7 @@ declare class MultiSearchActionInputComponent extends BaseResourceFormComponent<
4447
4482
  }>;
4448
4483
  editing: EventEmitter<void>;
4449
4484
  delete: EventEmitter<void>;
4450
- searchEvent: EventEmitter<void>;
4485
+ search: EventEmitter<void>;
4451
4486
  inputRef: InputComponent;
4452
4487
  toolTipRef: TooltipDirective;
4453
4488
  get hiddenState(): boolean;
@@ -4539,7 +4574,7 @@ declare class MultiSearchActionInputComponent extends BaseResourceFormComponent<
4539
4574
  isConditionSelected(current: string, conditionsModel: string): boolean;
4540
4575
  isValueSelected: (current: string, conditionsModel: string, condition: SearchConditionModel) => boolean;
4541
4576
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSearchActionInputComponent, never>;
4542
- static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchActionInputComponent, "acl-multi-search-action-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "isEditing": { "alias": "isEditing"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; "existingConditions": { "alias": "existingConditions"; "required": false; }; }, { "completed": "completed"; "editing": "editing"; "delete": "delete"; "searchEvent": "searchEvent"; }, never, never, true, never>;
4577
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchActionInputComponent, "acl-multi-search-action-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "isEditing": { "alias": "isEditing"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; "existingConditions": { "alias": "existingConditions"; "required": false; }; }, { "completed": "completed"; "editing": "editing"; "delete": "delete"; "search": "search"; }, never, never, true, never>;
4543
4578
  }
4544
4579
 
4545
4580
  declare class MultiSearchTagsComponent {
@@ -4551,7 +4586,7 @@ declare class MultiSearchTagsComponent {
4551
4586
  removeCondition: EventEmitter<SearchConditionModel>;
4552
4587
  setConditionEditing: EventEmitter<SearchConditionModel>;
4553
4588
  setConditionDeleting: EventEmitter<number>;
4554
- searchEvent: EventEmitter<void>;
4589
+ search: EventEmitter<void>;
4555
4590
  completed: EventEmitter<{
4556
4591
  activeCondition: SearchConditionModel;
4557
4592
  toContinue: boolean;
@@ -4563,7 +4598,7 @@ declare class MultiSearchTagsComponent {
4563
4598
  getConditionLabel(condition: SearchConditionModel): string;
4564
4599
  getValueContent(condition: SearchConditionModel): string;
4565
4600
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSearchTagsComponent, never>;
4566
- static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchTagsComponent, "acl-multi-search-tags", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "existingConditions": { "alias": "existingConditions"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; }, { "removeCondition": "removeCondition"; "setConditionEditing": "setConditionEditing"; "setConditionDeleting": "setConditionDeleting"; "searchEvent": "searchEvent"; "completed": "completed"; }, never, ["*"], true, never>;
4601
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchTagsComponent, "acl-multi-search-tags", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "existingConditions": { "alias": "existingConditions"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; }, { "removeCondition": "removeCondition"; "setConditionEditing": "setConditionEditing"; "setConditionDeleting": "setConditionDeleting"; "search": "search"; "completed": "completed"; }, never, ["*"], true, never>;
4567
4602
  }
4568
4603
 
4569
4604
  declare const DEFAULT_OPERATOR: string;
@@ -4576,7 +4611,7 @@ declare class MultiSearchComponent implements OnDestroy {
4576
4611
  conditionConfig$: Observable<SearchConditionConfig[]>;
4577
4612
  autoScroll: boolean;
4578
4613
  searchSuffix: boolean;
4579
- searchEvent: EventEmitter<SearchCondition[]>;
4614
+ search: EventEmitter<SearchCondition[]>;
4580
4615
  showFootAction: boolean;
4581
4616
  conditionsChange: EventEmitter<SearchCondition[]>;
4582
4617
  normalInputComponent: MultiSearchActionInputComponent;
@@ -4624,7 +4659,7 @@ declare class MultiSearchComponent implements OnDestroy {
4624
4659
  conditionInAction(condition: SearchConditionModel): boolean;
4625
4660
  ngOnDestroy(): void;
4626
4661
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSearchComponent, never>;
4627
- static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchComponent, "acl-multi-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "conditions": { "alias": "conditions"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; "searchSuffix": { "alias": "searchSuffix"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; }, { "searchEvent": "searchEvent"; "conditionsChange": "conditionsChange"; }, never, never, true, never>;
4662
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSearchComponent, "acl-multi-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "conditionCreatable": { "alias": "conditionCreatable"; "required": false; }; "conditions": { "alias": "conditions"; "required": false; }; "conditionConfig": { "alias": "conditionConfig"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; "searchSuffix": { "alias": "searchSuffix"; "required": false; }; "showFootAction": { "alias": "showFootAction"; "required": false; }; }, { "search": "search"; "conditionsChange": "conditionsChange"; }, never, never, true, never>;
4628
4663
  }
4629
4664
 
4630
4665
  /**
@@ -4990,22 +5025,15 @@ declare function queryListParams(): (queryParams: Params) => void;
4990
5025
 
4991
5026
  declare const K8S_RESOURCE_LIST_MODULE: readonly [typeof K8SResourceListFooterComponent, typeof K8sListFooterNoDataDirective, typeof K8sListFooterLoadingErrorDirective];
4992
5027
 
5028
+ declare class TableHeaderCellDefDirective {
5029
+ aclTableHeaderCellDef: string;
5030
+ templateRef: TemplateRef<any>;
5031
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableHeaderCellDefDirective, never>;
5032
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableHeaderCellDefDirective, "[aclTableHeaderCellDef]", never, { "aclTableHeaderCellDef": { "alias": "aclTableHeaderCellDef"; "required": false; }; }, {}, never, never, true, never>;
5033
+ }
4993
5034
  declare class TableCellDefDirective<Item extends object> {
4994
- templateRef: TemplateRef<{
4995
- $implicit: Item;
4996
- index: number;
4997
- even: boolean;
4998
- odd: boolean;
4999
- last: boolean;
5000
- }>;
5001
5035
  aclTableCellDef: string;
5002
- constructor(templateRef: TemplateRef<{
5003
- $implicit: Item;
5004
- index: number;
5005
- even: boolean;
5006
- odd: boolean;
5007
- last: boolean;
5008
- }>);
5036
+ templateRef: TemplateRef<any>;
5009
5037
  static ɵfac: i0.ɵɵFactoryDeclaration<TableCellDefDirective<any>, never>;
5010
5038
  static ɵdir: i0.ɵɵDirectiveDeclaration<TableCellDefDirective<any>, "[aclTableCellDef]", never, { "aclTableCellDef": { "alias": "aclTableCellDef"; "required": false; }; }, {}, never, never, true, never>;
5011
5039
  }
@@ -5013,7 +5041,7 @@ declare class TableCellDefDirective<Item extends object> {
5013
5041
  declare const KNOWN_COLUMNS: Set<string>;
5014
5042
  declare class TableUtilService<Item extends object, K8sUtil extends K8sUtilService = K8sUtilService> {
5015
5043
  readonly k8sUtil: K8sUtil;
5016
- constructor(k8sUtil: K8sUtil);
5044
+ constructor();
5017
5045
  getValueFromPath(item: Item, name?: string, path?: TableColumnDefPath<Item, unknown>, context?: unknown): string | number;
5018
5046
  defaultFilterFn(items: Item[], columnDefs: Array<TableColumnDef<Item, unknown>>, activeSort?: Sort, filterParams?: Record<string, unknown>, context?: unknown): Item[];
5019
5047
  static ɵfac: i0.ɵɵFactoryDeclaration<TableUtilService<any, any>, never>;
@@ -5153,14 +5181,8 @@ declare class TableComponent<Item extends object, Context = TableUtilService<Ite
5153
5181
  normalizeColumnDefSort(column: TableColumnDef<Item, Context>): TableColumnDef<Item, Context, object, string, string | number>;
5154
5182
  onSortChange($event: Sort): void;
5155
5183
  normalizeActionColumnDef(column: TableColumnDef<Item, Context>): NormalizedTableColumnDef<Item, Context>;
5156
- getColumnTemplate(column: string): TemplateRef<{
5157
- $implicit: Item;
5158
- index: number;
5159
- even: boolean;
5160
- odd: boolean;
5161
- last: boolean;
5162
- }>;
5163
- trackByFn(index: number, item: Item): string | number | Exclude<"name" extends infer T ? T extends "name" ? T extends keyof Item ? Item[T] : T extends `${infer FieldKey}[${infer IndexKey}]` ? FieldKey extends keyof Item ? lodash.IndexedFieldWithPossiblyUndefined<Item[FieldKey], IndexKey> : undefined : lodash.IndexedFieldWithPossiblyUndefined<Item, T> : never : never, null>;
5184
+ getColumnTemplate(column: string): TemplateRef<any>;
5185
+ trackByFn(index: number, item: Item): string | number;
5164
5186
  onUpdate(data: Item, columnDef: TableColumnDef<Item, Context>): void;
5165
5187
  getValue<T, F extends (...args: unknown[]) => T>(functionOrValue: T | F, ...args: Parameters<F>): T;
5166
5188
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, never>;
@@ -5181,30 +5203,98 @@ declare class TestTagComponent {
5181
5203
  static ɵcmp: i0.ɵɵComponentDeclaration<TestTagComponent, "acl-test-tag", never, {}, {}, never, never, true, never>;
5182
5204
  }
5183
5205
 
5206
+ declare class AclTableVirtualComponent<T> implements AfterViewInit, OnDestroy {
5207
+ dataSource: T[];
5208
+ itemSize: number;
5209
+ minBufferPx: number;
5210
+ maxBufferPx: number;
5211
+ height: string;
5212
+ trackBy: TrackByFunction<T>;
5213
+ placeholderActive: boolean;
5214
+ headerTemplate?: TemplateRef<any>;
5215
+ rowTemplate: TemplateRef<Omit<CdkVirtualForOfContext<T>, 'count' | 'cdkVirtualForOf' | 'first'>>;
5216
+ placeholderTemplate?: TemplateRef<any>;
5217
+ viewport?: CdkVirtualScrollViewport;
5218
+ scrollContainerRef: ElementRef<HTMLElement>;
5219
+ private destroy$;
5220
+ ngAfterViewInit(): void;
5221
+ ngOnDestroy(): void;
5222
+ private getScroller;
5223
+ private placeClass;
5224
+ private mutateVerticalScroll;
5225
+ private mutateHorizontalScroll;
5226
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualComponent<any>, never>;
5227
+ static ɵcmp: i0.ɵɵComponentDeclaration<AclTableVirtualComponent<any>, "acl-table-virtual", ["aclTableVirtual"], { "dataSource": { "alias": "dataSource"; "required": false; }; "itemSize": { "alias": "itemSize"; "required": false; }; "minBufferPx": { "alias": "minBufferPx"; "required": false; }; "maxBufferPx": { "alias": "maxBufferPx"; "required": false; }; "height": { "alias": "height"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "placeholderActive": { "alias": "placeholderActive"; "required": false; }; }, {}, ["headerTemplate", "rowTemplate", "placeholderTemplate"], never, true, never>;
5228
+ }
5229
+
5230
+ declare class AclTableVirtualHeaderDefDirective {
5231
+ templateRef: TemplateRef<any>;
5232
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualHeaderDefDirective, never>;
5233
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualHeaderDefDirective, "[aclTableVirtualHeader]", never, {}, {}, never, never, true, never>;
5234
+ }
5235
+ declare class AclTableVirtualRowDefDirective<T> {
5236
+ templateRef: TemplateRef<any>;
5237
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualRowDefDirective<any>, never>;
5238
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualRowDefDirective<any>, "[aclTableVirtualRow]", never, {}, {}, never, never, true, never>;
5239
+ }
5240
+ declare class AclTableVirtualPlaceholderDefDirective {
5241
+ templateRef: TemplateRef<any>;
5242
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualPlaceholderDefDirective, never>;
5243
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AclTableVirtualPlaceholderDefDirective, "[aclTableVirtualPlaceholder]", never, {}, {}, never, never, true, never>;
5244
+ }
5245
+
5246
+ declare class AclTableVirtualModule {
5247
+ static ɵfac: i0.ɵɵFactoryDeclaration<AclTableVirtualModule, never>;
5248
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AclTableVirtualModule, never, [typeof AclTableVirtualComponent, typeof AclTableVirtualHeaderDefDirective, typeof AclTableVirtualRowDefDirective, typeof AclTableVirtualPlaceholderDefDirective], [typeof AclTableVirtualComponent, typeof AclTableVirtualHeaderDefDirective, typeof AclTableVirtualRowDefDirective, typeof AclTableVirtualPlaceholderDefDirective]>;
5249
+ static ɵinj: i0.ɵɵInjectorDeclaration<AclTableVirtualModule>;
5250
+ }
5251
+
5252
+ declare class TerminatingTagComponent {
5253
+ resource: KubernetesResource$1;
5254
+ static ɵfac: i0.ɵɵFactoryDeclaration<TerminatingTagComponent, never>;
5255
+ static ɵcmp: i0.ɵɵComponentDeclaration<TerminatingTagComponent, "acl-deleting-tag", never, { "resource": { "alias": "resource"; "required": false; }; }, {}, never, never, true, never>;
5256
+ }
5257
+
5258
+ declare class PluginClusterSelectorComponent implements AfterViewInit {
5259
+ value: string;
5260
+ valueChange: EventEmitter<string>;
5261
+ disabled: boolean;
5262
+ disabled$: Observable<boolean>;
5263
+ projectName: string;
5264
+ popupTemplate: TemplateRef<any>;
5265
+ fields: ConfigurableField[];
5266
+ isActive: boolean;
5267
+ popupRef: ResourceSelectorPopupRef;
5268
+ private readonly popupService;
5269
+ private readonly cdr;
5270
+ private readonly elementRef;
5271
+ private readonly http;
5272
+ projectApi: ProjectService;
5273
+ displayFields: ConfigurableField[];
5274
+ filterClusters$: Observable<string[]>;
5275
+ getFilterFn(filterClusters: string[]): (clusters: ClusterDataItem[]) => ClusterDataItem[];
5276
+ ngAfterViewInit(): void;
5277
+ openPopup(): void;
5278
+ closePopup(): void;
5279
+ onSelect(item: {
5280
+ name: string;
5281
+ }): void;
5282
+ static ɵfac: i0.ɵɵFactoryDeclaration<PluginClusterSelectorComponent, never>;
5283
+ static ɵcmp: i0.ɵɵComponentDeclaration<PluginClusterSelectorComponent, "acl-plugin-cluster-selector", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "projectName": { "alias": "projectName"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
5284
+ static ngAcceptInputType_disabled: unknown;
5285
+ }
5286
+
5184
5287
  declare class UpdateDescriptionDialogComponent<T extends KubernetesResource> {
5185
5288
  private readonly dialogRef;
5186
5289
  private readonly k8sApi;
5187
5290
  private readonly k8sUtil;
5188
- data: {
5291
+ readonly data: {
5189
5292
  definition?: K8sResourceDefinition;
5190
- /**
5191
- * @deprecated use `definition` instead
5192
- */
5193
- type?: ResourceType$1;
5194
5293
  cluster?: string;
5195
5294
  resource: T;
5196
5295
  };
5197
5296
  description: string;
5198
5297
  confirming$$: BehaviorSubject<boolean>;
5199
- constructor(dialogRef: DialogRef, k8sApi: K8sApiService, k8sUtil: K8sUtilService, data: {
5200
- definition?: K8sResourceDefinition;
5201
- /**
5202
- * @deprecated use `definition` instead
5203
- */
5204
- type?: ResourceType$1;
5205
- cluster?: string;
5206
- resource: T;
5207
- });
5208
5298
  confirm(): void;
5209
5299
  static ɵfac: i0.ɵɵFactoryDeclaration<UpdateDescriptionDialogComponent<any>, never>;
5210
5300
  static ɵcmp: i0.ɵɵComponentDeclaration<UpdateDescriptionDialogComponent<any>, "ng-component", never, {}, {}, never, never, true, never>;
@@ -5253,10 +5343,10 @@ declare class UpdateKeyValueDialogComponent<R = unknown, Context = unknown, T =
5253
5343
  private readonly originalKeyValues;
5254
5344
  keyValues: T;
5255
5345
  private readonly destroy$$;
5256
- constructor(dialogRef: DialogRef<UpdateKeyValueDialogComponent<R, Context, T>, UpdateKeyValueDialogData<R, Context, T>>, message: MessageService, translate: TranslateService, data?: UpdateKeyValueDialogData<R, Context, T>);
5346
+ constructor();
5257
5347
  ngOnInit(): void;
5258
5348
  ngOnDestroy(): void;
5259
- static ɵfac: i0.ɵɵFactoryDeclaration<UpdateKeyValueDialogComponent<any, any, any>, [null, null, null, { optional: true; }]>;
5349
+ static ɵfac: i0.ɵɵFactoryDeclaration<UpdateKeyValueDialogComponent<any, any, any>, never>;
5260
5350
  static ɵcmp: i0.ɵɵComponentDeclaration<UpdateKeyValueDialogComponent<any, any, any>, "ng-component", never, {}, {}, never, never, true, never>;
5261
5351
  }
5262
5352
 
@@ -5324,21 +5414,6 @@ declare class K8sResourceMarkComponent {
5324
5414
  static ɵcmp: i0.ɵɵComponentDeclaration<K8sResourceMarkComponent, "acl-k8s-mark", never, { "size": { "alias": "size"; "required": false; }; "kind": { "alias": "kind"; "required": false; "isSignal": true; }; "apiVersion": { "alias": "apiVersion"; "required": false; "isSignal": true; }; "resource": { "alias": "resource"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5325
5415
  }
5326
5416
 
5327
- type IEditorConstructionOptions = monaco_editor_esm_vs_editor_editor_api.editor.IEditorConstructionOptions & {
5328
- language?: string;
5329
- tabSize?: number;
5330
- };
5331
- declare const createActions: CodeEditorActionsConfig;
5332
- declare const viewActions: CodeEditorActionsConfig;
5333
- declare const updateActions: CodeEditorActionsConfig;
5334
- declare const logsActions: CodeEditorActionsConfig;
5335
- declare const commonOptions: IEditorConstructionOptions;
5336
- declare const readonlyOptions: IEditorConstructionOptions;
5337
- declare const yamlReadOptions: IEditorConstructionOptions;
5338
- declare const yamlWriteOptions: IEditorConstructionOptions;
5339
- declare const textWriteOptions: IEditorConstructionOptions;
5340
- declare const logsReadOptions: IEditorConstructionOptions;
5341
-
5342
5417
  interface CodeDisplayDialogData {
5343
5418
  language?: string;
5344
5419
  title?: string;
@@ -5355,6 +5430,18 @@ declare class CodeDisplayDialogComponent {
5355
5430
  static ɵcmp: i0.ɵɵComponentDeclaration<CodeDisplayDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
5356
5431
  }
5357
5432
 
5433
+ /**
5434
+ * @packageDocumentation
5435
+ * @module code
5436
+ */
5437
+
5438
+ declare const logsReadOptions: IEditorConstructionOptions;
5439
+
5440
+ /**
5441
+ * @packageDocumentation
5442
+ * @module code
5443
+ */
5444
+
5358
5445
  interface K8sYamlDisplayDialogData {
5359
5446
  title?: string;
5360
5447
  ellipsis?: boolean;
@@ -5378,13 +5465,115 @@ declare class ResourceYamlDisplayComponent<T extends KubernetesResource> {
5378
5465
  readonly resource$: Observable<Arrayable<T>>;
5379
5466
  readonly yamlUtil: YamlUtilService;
5380
5467
  yaml$: Observable<string>;
5381
- editorOptions: _alauda_fe_dynamic_plugin_shared.IEditorConstructionOptions;
5468
+ editorOptions: _alauda_code_editor.IEditorConstructionOptions;
5382
5469
  viewActions: _alauda_code_editor.CodeEditorActionsConfig;
5383
5470
  conciseChange(value: boolean): void;
5384
5471
  static ɵfac: i0.ɵɵFactoryDeclaration<ResourceYamlDisplayComponent<any>, never>;
5385
5472
  static ɵcmp: i0.ɵɵComponentDeclaration<ResourceYamlDisplayComponent<any>, "acl-resource-yaml-display", never, { "hasWrapper": { "alias": "hasWrapper"; "required": false; }; "conciseEnable": { "alias": "conciseEnable"; "required": false; }; "manageFieldActionEnable": { "alias": "manageFieldActionEnable"; "required": false; }; "resource": { "alias": "resource"; "required": false; }; }, {}, never, never, true, never>;
5386
5473
  }
5387
5474
 
5475
+ /**
5476
+ * 编辑器实例获取器接口
5477
+ */
5478
+ interface EditorInstanceProvider {
5479
+ getEditorInstance(): MonacoEditor | null;
5480
+ }
5481
+
5482
+ interface YamlExample {
5483
+ title: string;
5484
+ description: string;
5485
+ yaml: string;
5486
+ snippet?: boolean;
5487
+ }
5488
+
5489
+ declare class ResourceYamlEditorComponent<T extends KubernetesResource$1> implements ControlValueAccessor, OnDestroy, EditorInstanceProvider, AfterViewInit {
5490
+ private destroy$;
5491
+ private _value;
5492
+ private _originalValue;
5493
+ private onChange;
5494
+ private onTouched;
5495
+ showSidebar$$: BehaviorSubject<boolean>;
5496
+ showDebugPanel$$: BehaviorSubject<boolean>;
5497
+ modelUri: string;
5498
+ private yamlSchemaService;
5499
+ private monacoEditor;
5500
+ private registeredSchemas;
5501
+ private pendingSchemas;
5502
+ readonly schemaService: KubernetesSchemaService;
5503
+ private readonly monacoLanguageService;
5504
+ private codeEditorRef;
5505
+ hasWrapper: boolean;
5506
+ showDebugInfo: boolean;
5507
+ sidebarEnable: boolean;
5508
+ schema: OpenAPIV3SchemaObject$1;
5509
+ schemaEnable: boolean;
5510
+ exampleEnable: boolean;
5511
+ resource: Arrayable$1<T>;
5512
+ autoFoldManagedFields: boolean;
5513
+ set originalValue(value: string);
5514
+ get originalValue(): string;
5515
+ options: _alauda_code_editor.IEditorConstructionOptions;
5516
+ actionsConfig: _alauda_code_editor.CodeEditorActionsConfig;
5517
+ tryYaml: EventEmitter<string>;
5518
+ readonly resource$: Observable<Arrayable$1<T>>;
5519
+ readonly schema$: Observable<OpenAPIV3SchemaObject$1>;
5520
+ autoFillNamespace: boolean;
5521
+ extraExamples: YamlExample[];
5522
+ clusterName: string;
5523
+ namespace: string;
5524
+ hasFolded: boolean;
5525
+ /**
5526
+ * 自动获取的 schema,当没有手动提供 schema 时使用
5527
+ */
5528
+ autoSchema$: Observable<OpenAPIV3SchemaObject$1>;
5529
+ /**
5530
+ * 最终使用的 schema,优先使用手动提供的,否则使用自动获取的
5531
+ */
5532
+ finalSchema$: Observable<OpenAPIV3SchemaObject$1>;
5533
+ constructor();
5534
+ ngAfterViewInit(): void;
5535
+ selfFoldManagedFields(): void;
5536
+ get value(): string;
5537
+ set value(val: string);
5538
+ writeValue(value: string): void;
5539
+ registerOnChange(fn: (value: string) => void): void;
5540
+ registerOnTouched(fn: () => void): void;
5541
+ toggleSidebar(): void;
5542
+ toggleDebugInfo(): void;
5543
+ getCurrentResource(): T | null;
5544
+ getCurrentSchema(): OpenAPIV3SchemaObject$1 | null;
5545
+ getDebugInfo(): {
5546
+ hasResource: boolean;
5547
+ resourceApiVersion: string;
5548
+ resourceKind: string;
5549
+ hasManualSchema: boolean;
5550
+ };
5551
+ onTryYaml(yamlContent: string): void;
5552
+ /**
5553
+ * 设置 YAML schema 以提供 hover 提示和自动完成
5554
+ */
5555
+ setYamlSchema(resource: T, schema: OpenAPIV3SchemaObject$1): void;
5556
+ /**
5557
+ * 获取 Monaco 编辑器实例
5558
+ */
5559
+ getEditorInstance(): MonacoEditor | null;
5560
+ /**
5561
+ * 手动折叠 managedFields
5562
+ */
5563
+ foldManagedFields(): void;
5564
+ ngOnDestroy(): void;
5565
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResourceYamlEditorComponent<any>, never>;
5566
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResourceYamlEditorComponent<any>, "acl-resource-yaml-editor", never, { "hasWrapper": { "alias": "hasWrapper"; "required": false; }; "showDebugInfo": { "alias": "showDebugInfo"; "required": false; }; "sidebarEnable": { "alias": "sidebarEnable"; "required": false; }; "schema": { "alias": "schema"; "required": false; }; "schemaEnable": { "alias": "schemaEnable"; "required": false; }; "exampleEnable": { "alias": "exampleEnable"; "required": false; }; "resource": { "alias": "resource"; "required": false; }; "autoFoldManagedFields": { "alias": "autoFoldManagedFields"; "required": false; }; "originalValue": { "alias": "originalValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "actionsConfig": { "alias": "actionsConfig"; "required": false; }; "autoFillNamespace": { "alias": "autoFillNamespace"; "required": false; }; "extraExamples": { "alias": "extraExamples"; "required": false; }; "clusterName": { "alias": "clusterName"; "required": false; }; "namespace": { "alias": "namespace"; "required": false; }; }, { "tryYaml": "tryYaml"; }, never, never, true, never>;
5567
+ }
5568
+
5569
+ /**
5570
+ * Kubernetes 资源的内置 YAML 示例
5571
+ * 按照 apiVersion.kind 的格式组织
5572
+ */
5573
+ declare const BUILT_IN_YAML_EXAMPLES: {
5574
+ [key: string]: YamlExample[];
5575
+ };
5576
+
5388
5577
  declare const ARRAY_TABLE_FORM_ERROR_BG: string;
5389
5578
  declare const rowBackgroundColorFn: <T extends AbstractControl>({ invalid, }: T) => string;
5390
5579
  declare const noShowRowError: () => boolean;
@@ -5688,5 +5877,5 @@ declare class AsyncDataLoader<D = unknown, P = StringMap> implements DataStateAd
5688
5877
 
5689
5878
  declare const ASYNC_DATA_MODULE: readonly [typeof PageStateComponent, typeof ErrorStateComponent, typeof ErrorStateComponent];
5690
5879
 
5691
- export { ACTION, AIT_API_GROUP, ALL, ALL_VALUE, ANNOTATIONS, API_GATEWAY, ARGOCD_GROUP, ARRAY_FORM_TABLE_MODULE, ARRAY_TABLE_FORM_ERROR_BG, ASSIGN_ALL, ASYNC_DATA_MODULE, AccessMode, AccessModes, AlaudaDeployStatus, AlaudaRunningStatus, ArrayFormTableComponent, ArrayFormTableFooterDirective, ArrayFormTableHeaderDirective, ArrayFormTableRowControlDirective, ArrayFormTableRowDirective, ArrayFormTableRowErrorDirective, ArrayFormTableRowSeparatorDirective, ArrayFormTableZeroStateDirective, AsyncDataLoader, AsyncFunctionValidatorDirective, AuiCodeEditorHelperDirective, BASE_TIMEZONE, BaseFormContainer, BaseNestedFormControl, BaseNestedFormControlPure, BaseStringMapFormComponent, Bracket, CHART_PICKER_TIME_RANGES, CLUSTER, COMMON_RESOURCE_DEFINITIONS, CORE_UNITS, CORE_UNIT_REG, CREATE, CREATED_AT, CREATION_TIMESTAMP, CREATOR, CRON_ENABLE_7_FOR_SUNDAY, CRON_FORMAT_ERROR, CRON_MIN_INTERVAL_ERROR, CRYPTO_HEADER_KEY, CRYPTO_KEY, CRYPTO_RANDOM_HEADER_KEY, CRYPTO_TYPE, CUSTOM, CUSTOMIZED, CUSTOM_RANGE, CalcPipe, CardSectionComponent, ClickOutsideDirective, CloudHelmRequestStateEnum, CodeDisplayDialogComponent, CoerceNumberDirective, ConfirmDeleteComponent, ConfirmDeleteContentDirective, ConfirmDeleteLabelDirective, ConfirmDeleteTipDirective, ControlValueTraceDirective, CronHumanReadablePipe, CronWeekDays, CrontabNextPipe, CurrentTimeComponent, DATE_FORMAT, DATE_TIME_FORMAT, DEFAULT_CODE_EDITOR_OPTIONS, DEFAULT_CONTAINER_ANNOTATION, DEFAULT_OPERATOR, DEFAULT_OPTIONS, DEFAULT_REASON, DELIMITER, DESCRIPTION, DISPLAY_NAME, DNS1123SubdomainValidator, DOMAIN_PATTERN, DOMAIN_PATTERN_BASE, DOT, DOWNGRADE_WATCH_ENABLED, DOWNGRADE_WATCH_POLLING, DUPLICATE_ERROR_KEY, DUPLICATION_JUSTIFY_STRATEGY, DataSource, DateRangePickerComponent, DeclareDirective, DefaultStatusColorMapper, DefaultStatusIconMapper, DeleteType, DeletingTagComponent, DisabledContainerComponent, DisabledDirective, DragHandleDirective, DurationPipe, E2eAttributeBindingDirective, EFFECT_DIRECTIVE_MODULE, EMAIL_PATTERN, EMPTY, ERRORS_MAPPER_MODULE, ESCAPE_DEACTIVATE_CHECK, ErrorStateComponent, ErrorsMapperComponent, ErrorsMapperDirective, FALSE, FIELDSET_GROUP_COMPONENTS, FeatureGateDirective, FieldSetColumnComponent, FieldSetColumnGroupComponent, FieldSetGroupComponent, FieldSetItemActionDirective, FieldSetItemComponent, FileResultType, FoldableBlockComponent, FoldableItemInTableComponent, FormItemMarginEffectDirective, FunctionValidatorDirective, GLOBAL_CLUSTER, GenericStatusColor, GenericStatusIcon, GuardStatus, HTTP_ADDRESS_PATTERN, HTTP_DUAL_IP_OR_DOMAIN_PATTERN, HTTP_IP_OR_DOMAIN_PATTERN, HYPHEN, HelmRequestPhaseEnum, HelpDocDirective, HelpDocUrlPipe, HelpDocumentComponent, HelpDocumentService, IMAGE_TAG_PATTERN, INT_PATTERN, INT_ZERO_PATTERN, IPV4_IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_ADDRESS_HOSTNAME_PATTERN, IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_PATTERN_BASE, IP_ADDRESS_HOSTNAME_PATTERN, IP_ADDRESS_HOSTNAME_PATTERN_EXTEND, IP_ADDRESS_HOSTNAME_PORT_PATTERN, IP_ADDRESS_PATTERN, IP_ADDRESS_PORT_PATTERN, IP_ADDRESS_SUBNET_PATTERN, IP_PATTERN, IP_PATTERN_BASE, IP_V4_OR_V6_PATTERN, IP_V6_ADDRESS_PATTERN, IP_V6_PATTERN, InterceptDeactivateDirective, InterceptDeactivateGuard, InterceptDeactivateService, JobStatusColorMapper, JobStatusEnum, JobStatusIconMapper, K8SResourceList, K8SResourceListFooterComponent, K8SResourcePagedList, K8S_APP_API_GROUP, K8S_CORE_API_GROUP, K8S_RESOURCE_LABEL_KEY_NAME_PATTERN, K8S_RESOURCE_LABEL_KEY_PREFIX_PATTERN, K8S_RESOURCE_LABEL_VALUE_PATTERN, K8S_RESOURCE_LIST_MODULE, K8S_RESOURCE_NAME_START_WITH_CHARS_ONLY, K8S_RESOURCE_TRANSLATE_KEY, K8sListFooterLoadingErrorDirective, K8sListFooterNoDataDirective, K8sResourceAction, K8sResourceMarkComponent, K8sResourceTranslateKeyPipe, K8sSharedUtilService, K8sYamlDisplayDialogComponent, KNOWN_COLUMNS, KeyValueFormTableComponent, KeyValueTableComponent, LABELS, LINK, LOCAL_STORAGE_KEY_THEME_MODE, ListDisplayComponent, ListenResizeDirective, LoadAction, LocaleTransformPipe, MACHINE_API_GROUP, METADATA, MUTABLE_BASIC_OPTIONS, MUTABLE_MODULE, MarkedPipe, MaxLengthValidatorDirective, MaxValidatorDirective, MinLengthValidatorDirective, MinValidatorDirective, MinimumFormatPipe, MosaicComponent, MosaicLeftDirective, MosaicRightDirective, MultiSearchActionInputComponent, MultiSearchAdvanced, MultiSearchBasic, MultiSearchComponent, MutableDirective, NAME, NAMESPACE, NOTIFICATION_SERVER_NAME, NOTIFY_DURATION_HEADER, NOTIFY_ON_ERROR_HEADER, NOTIFY_ON_ERROR_HEADERS, NOT_NOTIFY_ON_ERROR_HEADERS, NUMBER_PATTERN, NamespaceBadgeComponent, NotBeValidatorDirective, OAM_GROUP, OnResizeChangeService, OneOfValidatorDirective, OverviewBannerComponent, PACKAGE_RUNTIME_VALUE, PAGE_GUARD_MODULE, PLATFORM_OPS_MODE, PORT_PATTERN, POSITIVE_INT_PATTERN, POSITIVE_NUMBER_PATTERN, PREFIX_LABEL_CLASS, PROJECT, PUBLIC_NAMESPACE, PageGuardComponent, PageGuardContentDirective, PageGuardDescriptionDirective, PageGuardImageDirective, PageGuardOperationDirective, PageStateComponent, ParseJsonTranslatePipe, PasswordInputComponent, PodStatusColorMapper, PodStatusComponent, PodStatusEnum, PodStatusIconMapper, PreventClipboardDirective, PreventDirective, PreventHandler, ProductKey, REASON_MAP, RESOURCE_MAC_TYPES, RESOURCE_REQUIREMENT_KEYS, ReadonlyFieldDirective, Reason, RelativeTimeComponent, RequestPool, ResizeDirective, ResourceLabelComponent, ResourceMultiSelectComponent, ResourceYamlDisplayComponent, SERVICE_PORT_BASE_PROTOCOLS, SERVICE_PORT_PROTOCOLS, SERVICE_SESSION_AFFINITIES, SERVICE_TYPES, SLASH, SPACE, SPEC, STATUS, STRATEGY_JUDGE_MAPPER, STRONG_PASSWORD_SPECIAL_CHARS, ScrollBorderObserverDirective, ScrollToFirstInvalidDirective, ScrollToFirstInvalidMarkerDirective, SearchItemComponent, SearchItemLabelDirective, SearchPanelComponent, SecretType, SelectPrefixLabelDirective, SpanComponent, StatusIconComponent, StopDirective, StringArrayFormTableComponent, StrongPasswordDirective, StrongPasswordTooltipComponent, TEMPLATE_OPTIONS, TIMEZONES, TIME_FORMAT, TOKEN_HELP_DOC_DATA, TRUE, TableCellDefDirective, TableComponent, TableCustomColumnsComponent, TableUtilService, TagsLabelComponent, TaintEffect, TestTagComponent, TextEllipsisComponent, TextTooltipDirective, TextWithUrlComponent, ThemeTransformPipe, TimezoneDisplayPipe, TolerationOperator, TrimDirective, UNDERSCORE, UNITS, UNIT_REG, UPDATE, UPDATED_AT, UPDATED__AT, UpdateDescriptionDialogComponent, UpdateDisplayNameDialogComponent, UpdateKeyValueDialogComponent, UploadFileComponent, UserSecurityPolicyRule, UserState, VOLUME_SNAPSHOT_GROUP, ValidateRowDuplicateService, ValidatorsDirective, VolumeMode, VolumeModes, VolumeTypeEnum, WEEK_DAYS, WILDCARD, WORKSPACE_PARAMS, WorkloadKind, WorkloadStatusColorMapper, WorkloadStatusEnum, WorkloadStatusIconComponent, WorkloadStatusIconMapper, YamlUtilService, ZeroStateComponent, addUnitCoreM, addUnitGi, addUnitMi, appendImageHeader, atobWithFallback, buildImageAddress, buildUrl, checkValueExit, clearWindowsXtermTools, commonOptions, compareMinorVersion, compareVersion, copyValue, createActions, createNestedFormControl, cronValidator, cronValidatorBasic, dataTransfer, dateValueOf, defaultFilter, defaultSorter, emptyObjectRemoveRuleFactory, errorColor, extractListParamsFromRoute, extractPagedListParams, extractWorkspace, extractWorkspaceFromRoute, filterEmptyValue, filterTrees, findPath, firstPath, formatCPU, formatMemory, formatNumber, genControlDepsMap, getAppropriateMemory, getBaseHref, getCpu, getCronWeekDayNumbers, getDisabledState, getDisabledState$, getHelpDocUrl, getHostname, getJobStatus, getK8sResourceAnnotationErrorMapper, getK8sResourceAnnotationErrorMapper$, getK8sResourceLabelErrorMapper, getK8sResourceLabelErrorMapper$, getMemory, getPickerTimeRanges, getPodAggregatedStatus, getPodIPs, getPodStatus, getPrivateIP, getPrivateIPv4, getPrivateIPv6, getRelativePath, getResourceLimitAsyncValidatorFn, getResourceLimitValidatorFn, getResourceValue, getResourceViewModel, getToPath, getValidVersion, getWorkloadStatus, initGreaterValidator, isAbsoluteUrl, isB, isCronFieldCountCorrect, isCronWeekDayCorrect, isCronWeekDaysContinuous, isErrorMessage, isJsonObjectString, isK8sResource, isL, isR, isSelectAll, isT, isValidRID, isValidWorkspace, k8sResourceAnnotationKeyValidator, k8sResourceAnnotationValidator, k8sResourceLabelKeyValidator, k8sResourceLabelValidator, k8sResourceLabelValueValidator, loadEnv, logsActions, logsReadOptions, mapTrees, matchExpressionsToString, matchLabelsToString, maxParallelByHttpVersion, noShowRowError, normalizeParams, numToStr, parseDaemonSetStatus, parseDeploymentStatus, parseImageAddress, parseRID, parseStatefulSetStatus, parseToWorkloadStatus, parseUrlInText, parseValidImageName, parseValueAndUnit, parseVersion, parseWorkspace, prefixFilterRuleFactory, primaryColor, queryListParams, randomPassword, readonlyOptions, reduceTrees, removeDirtyFieldsBeforeUpdate, resourceUnits, rowBackgroundColorFn, safeAssign, scrollIntoView, setNode, setupErrorMapper, shortNum, sortByCreationTimestamp, stringToMatchLabels, stringifyRID, stringifyWorkspace, successColor, tableSort, tableSortAdvance, tagRenderDefault, textWriteOptions, toLowerFirstLetter, toNumber, toPercent, toPx, toUnitGi, toUnitI, toUnitMi, toUnitNum, toUnitNumM, trackByName, trackByUid, transferResource, updateActions, versionRegex, viewActions, warnColor, withLoadState, workspaceToPath, yamlFilterField, yamlReadOptions, yamlWriteOptions };
5692
- export type { APIResourceItem, APIResourceList, AccessTokenInfo, Affinity, AlaudaProductStatus, AnyArray, Arrayable, AsyncLoadState, AvailableResourceType, Callback, Certificate, Cluster, ClusterSpec, ClusterStatus, ClusterStatusCondition, ClusterStatusReason, CodeDisplayDialogData, Condition, ConfigMap, ConfigMapKeyRef, ConfigMapRef, ConfigMapVolumeSource, ConfigWithParams, ConfigWithRoute, ConfirmDeleteData, Container, ContainerPort, ContainerState, ContainerStateRunning, ContainerStateTerminated, ContainerStateWaiting, ContainerStatus, CronJob, CronJobSpec, CronJobStatus, CronWeekDay, CsiVolumeSource, Cursor, CursorX, CursorY, CustomResourceDefinition, CustomResourceDefinitionVersion, DaemonSet, DaemonSetSpec, DaemonSetStatus, DaemonSetUpdateStrategy, DaemonSetUpdateStrategyType, DataError, DataMapper, DataStateAdapter, DatePickerLocale, DateRangePickerModel, DefaultExtraMapper, DeleteResourceApi, Deployment, DeploymentSpec, DeploymentStatus, DeploymentStrategy, DeploymentStrategyType, DiffTimeUnit, DisabledResult, DragRange, EmptyDirVolumeSource, Encoding, EnvFromSource, EnvVar, EnvVarSource, Environments, EphemeralContainer, EphemeralVolumeSource, ErrorMapper, ErrorMapperInterface, ErrorsMapperFn, ExecAction, FetchSeed, Fetcher, FileResult, FormatValue, GenericWorkloadStatus, HTTPGetAction, HTTPHeader, HTTPIngressPath, HTTPIngressRuleValue, HelmRequest, HelmRequestClusterSyncResult, HelmRequestClusterSyncResults, HelmRequestCondition, HelmRequestHttp, HelmRequestOci, HelmRequestSpec, HostAliases, HostPathVolumeSource, IEditorConstructionOptions, Idp, IfEqual, Ingress, IngressBackend, IngressLoadBalancerStatus, IngressRule, IngressSpec, IngressStatus, IngressTLS, InsertFn, ItemsScanner, JSONSchema6TypeName, Job, JobSpec, JobStatus, JobTemplateSpec, K8sEvent, K8sEventSeries, K8sEventSource, K8sYamlDisplayDialogData, KeyToPath, KeyValue, KeyValueTuple, Keys, KubernetesResource, KubernetesResourceList, KubernetesSubject, LabelSelector, LabelSelectorRequirement, LdapConfig, LdapGroupSearch, LdapUserSearch, LimitRange, LimitRangeItem, LimitRangeSpec, LimitType, ListFetchParams, ListParams, LiteralUnion, LoadBalancerIngress, LoadSnapshot, LoadState$1 as LoadState, LoaderConfig, LoaderConfigWithInterval, LocalObjectReference, LocaleDisplay, MatchValueFn, MultiSearchOption, MutableOptions, NameSpaceResourceRatio, Namespace, NamespaceStatus, Node, NodeAffinity, NodeAffinityTerm, NodeSelectorTerm, NodeStatus, NodeStatusReason, NodeStatusType, NodeTaint, NormalizedDefaultExtraMapper, NormalizedTableColumnActionExtra, NormalizedTableColumnActionExtraItem, NormalizedTableColumnDef, NotBeValue, Nullable, ObjectFieldSelector, ObjectMeta, ObjectReference, ObservableType, OidcConfig, OneOfValue, OpenAPIV3SchemaObject, Options, OverviewBannerOption, OwnerReference, PagedListConfig, Pagination, PersistentVolumeClaim, PersistentVolumeClaimDataSource, PersistentVolumeClaimSpec, PersistentVolumeClaimStatus, PersistentVolumeClaimVolumeSource, PickerTimeRange, Pod, PodAffinity, PodAffinityTerm, PodLifeCycle, PodLifeCycleHook, PodSpec, PodSpecAffinity, PodStatus, PodTemplateSpec, Point, PreferredAffinity, Probe, ProductBase, ProductBaseSpec, ProductBaseStatus, ProductEntry, ProductEntrySpec, ProductEntryStatus, ProductStatus, ProductStatusCondition, Project, ProjectCluster, ProjectSpec, QueryDisabledFunc, Readonlyable, RequiredAffinity, ResizeCursor, ResizeEvent, ResourceAttributes, ResourceControl, ResourceFieldSelector, ResourceIdentifier, ResourceListParams, ResourceMacFormModal, ResourceMacKey, ResourceMacs, ResourcePatch, ResourceRequirementFormModal, ResourceRequirementKey, ResourceRequirementStrict, ResourceRequirements, RoleCustomRule, RoleRule, RoleTemplate, RoleTemplateSpec, RollingUpdateDaemonSet, RollingUpdateDeployment, RollingUpdateStatefulSetStrategy, SafeAssignOptions, ScopeSelector, ScopedResourceSelectorRequirement, SearchCondition, SearchConditionConfig, SearchConditionModel, SearchTagConfig, Secret, SecretKeyRef, SecretRef, SecretVolumeSource, SelfResourceAttributes, SelfSubjectAccessReview, SelfSubjectAccessReviewSpec, Service, ServicePort, ServicePortBaseProtocol, ServicePortProtocol, ServiceSessionAffinity, ServiceSpec, ServiceType, StatefulSet, StatefulSetSpec, StatefulSetStatus, StatefulSetUpdateStrategy, StatefulSetUpdateStrategyType, Status, StrategyFn, StreamListLoader, StreamListLoaderSnapshot, StringMap, SubjectAccessReview, SubjectAccessReviewSpec, SubjectAccessReviewStatus, TCPSocketAction, TableColumn, TableColumnActionConfig, TableColumnActionDisabledHandler, TableColumnActionExtra, TableColumnActionExtraItem, TableColumnActionTooltipHandler, TableColumnDef, TableColumnDefPath, TableColumnDefs, TableColumnNameExtra, TableColumnSort, TableColumnSortDirection, TableColumnSortHandler, TableColumnTranslateHandler, TableColumns, TableFilterFn, Text, Tls, Toleration, Tree, TreeFilter, TreeMapper, TreeReducer, TypeMeta, UnaryObservableFunction, UntypedKubernetesResource, UpdateKeyValueDialogData, User, UserBinding, UserBindingSpec, UserGroup, UserGroupSpec, UserList, UserPolicy, UserPolicyRule, UserRole, UserRoleNamespace, UserSpec, ValueOf, VersionObject, Volume, VolumeMount, Watcher, WatcherParams, WebhookType, WeightedNodeAffinityTerm, WeightedPodAffinityTerm, WithLoadState, Workload, WorkloadStatus, Workspace, WorkspaceDetailParams, WorkspaceListParams, YamlFilterItem };
5880
+ export { ACTION, AIT_API_GROUP, ALL, ALL_VALUE, ANNOTATIONS, API_GATEWAY, ARGOCD_GROUP, ARRAY_FORM_TABLE_MODULE, ARRAY_TABLE_FORM_ERROR_BG, ASSIGN_ALL, ASYNC_DATA_MODULE, AccessMode, AccessModes, AclTableVirtualComponent, AclTableVirtualHeaderDefDirective, AclTableVirtualModule, AclTableVirtualPlaceholderDefDirective, AclTableVirtualRowDefDirective, AlaudaDeployStatus, AlaudaRunningStatus, ArrayFormTableComponent, ArrayFormTableFooterDirective, ArrayFormTableHeaderDirective, ArrayFormTableRowControlDirective, ArrayFormTableRowDirective, ArrayFormTableRowErrorDirective, ArrayFormTableRowSeparatorDirective, ArrayFormTableZeroStateDirective, AsyncDataLoader, AsyncFunctionValidatorDirective, AuiCodeEditorHelperDirective, BASE_TIMEZONE, BUILT_IN_YAML_EXAMPLES, BaseFormContainer, BaseNestedFormControl, BaseNestedFormControlPure, BaseStringMapFormComponent, Bracket, CHART_PICKER_TIME_RANGES, CLUSTER, COMMON_RESOURCE_DEFINITIONS, CORE_UNITS, CORE_UNIT_REG, CREATE, CREATED_AT, CREATION_TIMESTAMP, CREATOR, CRON_ENABLE_7_FOR_SUNDAY, CRON_FORMAT_ERROR, CRON_MIN_INTERVAL_ERROR, CRYPTO_HEADER_KEY, CRYPTO_KEY, CRYPTO_RANDOM_HEADER_KEY, CRYPTO_TYPE, CUSTOM, CUSTOMIZED, CUSTOM_RANGE, CalcPipe, CardSectionComponent, ClickOutsideDirective, CloudHelmRequestStateEnum, CodeDisplayDialogComponent, CoerceNumberDirective, ConfirmDeleteComponent, ConfirmDeleteContentDirective, ConfirmDeleteLabelDirective, ConfirmDeleteTipDirective, ControlValueTraceDirective, CronHumanReadablePipe, CronWeekDays, CrontabNextPipe, CurrentTimeComponent, DATE_FORMAT, DATE_TIME_FORMAT, DEFAULT_CODE_EDITOR_OPTIONS, DEFAULT_CONTAINER_ANNOTATION, DEFAULT_OPERATOR, DEFAULT_OPTIONS, DEFAULT_REASON, DELIMITER, DESCRIPTION, DISPLAY_NAME, DNS1123SubdomainValidator, DOMAIN_PATTERN, DOMAIN_PATTERN_BASE, DOT, DOWNGRADE_WATCH_ENABLED, DOWNGRADE_WATCH_POLLING, DUPLICATE_ERROR_KEY, DUPLICATION_JUSTIFY_STRATEGY, DataSource, DateRangePickerComponent, DeclareDirective, DefaultStatusColorMapper, DefaultStatusIconMapper, DeleteType, DeletingTagComponent, DisabledContainerComponent, DisabledDirective, DragHandleDirective, DurationPipe, E2eAttributeBindingDirective, EFFECT_DIRECTIVE_MODULE, EMAIL_PATTERN, EMPTY, ERRORS_MAPPER_MODULE, ESCAPE_DEACTIVATE_CHECK, ErrorStateComponent, ErrorsMapperComponent, ErrorsMapperDirective, FALSE, FIELDSET_GROUP_COMPONENTS, FeatureGateDirective, FieldSetColumnComponent, FieldSetColumnGroupComponent, FieldSetGroupComponent, FieldSetItemActionDirective, FieldSetItemComponent, FileResultType, FoldableBlockComponent, FoldableItemInTableComponent, FormItemMarginEffectDirective, FunctionValidatorDirective, GLOBAL_CLUSTER, GenericStatusColor, GenericStatusIcon, GuardStatus, HTTP_ADDRESS_PATTERN, HTTP_DUAL_IP_OR_DOMAIN_PATTERN, HTTP_IP_OR_DOMAIN_PATTERN, HYPHEN, HelmRequestPhaseEnum, HelpDocDirective, HelpDocUrlPipe, HelpDocumentComponent, HelpDocumentService, IMAGE_TAG_PATTERN, INT_PATTERN, INT_ZERO_PATTERN, IPV4_IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_ADDRESS_HOSTNAME_PATTERN, IPV6_ADDRESS_HOSTNAME_PORT_PATTERN, IPV6_PATTERN_BASE, IP_ADDRESS_HOSTNAME_PATTERN, IP_ADDRESS_HOSTNAME_PATTERN_EXTEND, IP_ADDRESS_HOSTNAME_PORT_PATTERN, IP_ADDRESS_PATTERN, IP_ADDRESS_PORT_PATTERN, IP_ADDRESS_SUBNET_PATTERN, IP_PATTERN, IP_PATTERN_BASE, IP_V4_OR_V6_PATTERN, IP_V6_ADDRESS_PATTERN, IP_V6_PATTERN, InterceptDeactivateDirective, InterceptDeactivateGuard, InterceptDeactivateService, JobStatusColorMapper, JobStatusEnum, JobStatusIconMapper, K8SResourceList, K8SResourceListFooterComponent, K8SResourcePagedList, K8S_APP_API_GROUP, K8S_CORE_API_GROUP, K8S_RESOURCE_LABEL_KEY_NAME_PATTERN, K8S_RESOURCE_LABEL_KEY_PREFIX_PATTERN, K8S_RESOURCE_LABEL_VALUE_PATTERN, K8S_RESOURCE_LIST_MODULE, K8S_RESOURCE_NAME_START_WITH_CHARS_ONLY, K8S_RESOURCE_TRANSLATE_KEY, K8sListFooterLoadingErrorDirective, K8sListFooterNoDataDirective, K8sResourceAction, K8sResourceMarkComponent, K8sResourceTranslateKeyPipe, K8sSharedUtilService, K8sYamlDisplayDialogComponent, KNOWN_COLUMNS, KeyValueFormTableComponent, KeyValueTableComponent, LABELS, LINK, LOCAL_STORAGE_KEY_THEME_MODE, ListDisplayComponent, ListenResizeDirective, LoadAction, LocaleTransformPipe, MACHINE_API_GROUP, METADATA, MUTABLE_BASIC_OPTIONS, MUTABLE_MODULE, MarkedPipe, MaxLengthValidatorDirective, MaxValidatorDirective, MinLengthValidatorDirective, MinValidatorDirective, MinimumFormatPipe, MosaicComponent, MosaicLeftDirective, MosaicRightDirective, MultiSearchActionInputComponent, MultiSearchAdvanced, MultiSearchBasic, MultiSearchComponent, MutableDirective, NAME, NAMESPACE, NOTIFICATION_SERVER_NAME, NOTIFY_DURATION_HEADER, NOTIFY_ON_ERROR_HEADER, NOTIFY_ON_ERROR_HEADERS, NOT_NOTIFY_ON_ERROR_HEADERS, NUMBER_PATTERN, NamespaceBadgeComponent, NotBeValidatorDirective, OAM_GROUP, OnResizeChangeService, OneOfValidatorDirective, OverviewBannerComponent, PACKAGE_RUNTIME_VALUE, PAGE_GUARD_MODULE, PLATFORM_OPS_MODE, PORT_PATTERN, POSITIVE_INT_PATTERN, POSITIVE_NUMBER_PATTERN, PREFIX_LABEL_CLASS, PROJECT, PUBLIC_NAMESPACE, PageGuardComponent, PageGuardContentDirective, PageGuardDescriptionDirective, PageGuardImageDirective, PageGuardOperationDirective, PageStateComponent, ParseJsonTranslatePipe, PasswordInputComponent, PluginClusterSelectorComponent, PodStatusColorMapper, PodStatusComponent, PodStatusEnum, PodStatusIconMapper, PreventClipboardDirective, PreventDirective, PreventHandler, ProductKey, REASON_MAP, RESOURCE_MAC_TYPES, RESOURCE_REQUIREMENT_KEYS, ReadonlyFieldDirective, Reason, RelativeTimeComponent, RequestPool, ResizeDirective, ResourceLabelComponent, ResourceMultiSelectComponent, ResourceYamlDisplayComponent, ResourceYamlEditorComponent, SERVICE_PORT_BASE_PROTOCOLS, SERVICE_PORT_PROTOCOLS, SERVICE_SESSION_AFFINITIES, SERVICE_TYPES, SLASH, SPACE, SPEC, STATUS, STRATEGY_JUDGE_MAPPER, STRONG_PASSWORD_SPECIAL_CHARS, ScrollBorderObserverDirective, ScrollToFirstInvalidDirective, ScrollToFirstInvalidMarkerDirective, SearchItemComponent, SearchItemLabelDirective, SearchPanelComponent, SecretType, SelectPrefixLabelDirective, SpanComponent, StatusIconComponent, StopDirective, StringArrayFormTableComponent, StrongPasswordDirective, StrongPasswordTooltipComponent, TEMPLATE_OPTIONS, TIMEZONES, TIME_FORMAT, TOKEN_HELP_DOC_DATA, TRUE, TableCellDefDirective, TableComponent, TableCustomColumnsComponent, TableHeaderCellDefDirective, TableUtilService, TagsLabelComponent, TaintEffect, TerminatingTagComponent, TestTagComponent, TextEllipsisComponent, TextTooltipDirective, TextWithUrlComponent, ThemeTransformPipe, TimezoneDisplayPipe, TolerationOperator, TrimDirective, UNDERSCORE, UNITS, UNIT_REG, UPDATE, UPDATED_AT, UPDATED__AT, UpdateDescriptionDialogComponent, UpdateDisplayNameDialogComponent, UpdateKeyValueDialogComponent, UploadFileComponent, UserSecurityPolicyRule, UserState, VOLUME_SNAPSHOT_GROUP, ValidateRowDuplicateService, ValidatorsDirective, VolumeMode, VolumeModes, VolumeTypeEnum, WEEK_DAYS, WILDCARD, WORKSPACE_PARAMS, WorkloadKind, WorkloadStatusColorMapper, WorkloadStatusEnum, WorkloadStatusIconComponent, WorkloadStatusIconMapper, YamlUtilService, ZeroStateComponent, addUnitCoreM, addUnitGi, addUnitMi, appendImageHeader, atobWithFallback, buildImageAddress, buildUrl, checkValueExit, clearWindowsXtermTools, compareMinorVersion, compareVersion, copyValue, createNestedFormControl, cronValidator, cronValidatorBasic, dataTransfer, dateValueOf, defaultFilter, defaultSorter, emptyObjectRemoveRuleFactory, errorColor, extractListParamsFromRoute, extractPagedListParams, extractWorkspace, extractWorkspaceFromRoute, filterEmptyValue, filterTrees, findPath, firstPath, formatCPU, formatMemory, formatNumber, genControlDepsMap, getAppropriateMemory, getBaseHref, getCpu, getCronWeekDayNumbers, getDisabledState, getDisabledState$, getHelpDocUrl, getHostname, getJobStatus, getK8sResourceAnnotationErrorMapper, getK8sResourceAnnotationErrorMapper$, getK8sResourceLabelErrorMapper, getK8sResourceLabelErrorMapper$, getMemory, getPickerTimeRanges, getPodAggregatedStatus, getPodIPs, getPodStatus, getPrivateIP, getPrivateIPv4, getPrivateIPv6, getRelativePath, getResourceLimitAsyncValidatorFn, getResourceLimitValidatorFn, getResourceValue, getResourceViewModel, getToPath, getValidVersion, getWorkloadStatus, initGreaterValidator, isAbsoluteUrl, isB, isCronFieldCountCorrect, isCronWeekDayCorrect, isCronWeekDaysContinuous, isErrorMessage, isJsonObjectString, isK8sResource, isL, isR, isSelectAll, isT, isValidRID, isValidWorkspace, k8sResourceAnnotationKeyValidator, k8sResourceAnnotationValidator, k8sResourceLabelKeyValidator, k8sResourceLabelValidator, k8sResourceLabelValueValidator, loadEnv, logsReadOptions, mapTrees, matchExpressionsToString, matchLabelsToString, maxParallelByHttpVersion, noShowRowError, normalizeParams, numToStr, parseDaemonSetStatus, parseDeploymentStatus, parseImageAddress, parseRID, parseStatefulSetStatus, parseToWorkloadStatus, parseUrlInText, parseValidImageName, parseValueAndUnit, parseVersion, parseWorkspace, prefixFilterRuleFactory, primaryColor, queryListParams, randomPassword, reduceTrees, removeDirtyFieldsBeforeUpdate, resourceUnits, rowBackgroundColorFn, safeAssign, scrollIntoView, setNode, setupErrorMapper, shortNum, sortByCreationTimestamp, stringToMatchLabels, stringifyRID, stringifyWorkspace, successColor, tableSort, tableSortAdvance, tagRenderDefault, toLowerFirstLetter, toNumber, toPercent, toPx, toUnitGi, toUnitI, toUnitMi, toUnitNum, toUnitNumM, trackByName, trackByUid, transferResource, versionRegex, warnColor, withLoadState, workspaceToPath, yamlFilterField };
5881
+ export type { APIResourceItem, APIResourceList, AccessTokenInfo, Affinity, AlaudaProductStatus, AnyArray, Arrayable, AsyncLoadState, AvailableResourceType, Callback, Certificate, Cluster, ClusterSpec, ClusterStatus, ClusterStatusCondition, ClusterStatusReason, CodeDisplayDialogData, Condition, ConfigMap, ConfigMapKeyRef, ConfigMapRef, ConfigMapVolumeSource, ConfigWithParams, ConfigWithRoute, ConfirmDeleteData, Container, ContainerPort, ContainerState, ContainerStateRunning, ContainerStateTerminated, ContainerStateWaiting, ContainerStatus, CronJob, CronJobSpec, CronJobStatus, CronWeekDay, CsiVolumeSource, Cursor, CursorX, CursorY, CustomResourceDefinition, CustomResourceDefinitionVersion, DaemonSet, DaemonSetSpec, DaemonSetStatus, DaemonSetUpdateStrategy, DaemonSetUpdateStrategyType, DataError, DataMapper, DataStateAdapter, DatePickerLocale, DateRangePickerModel, DefaultExtraMapper, DeleteResourceApi, Deployment, DeploymentSpec, DeploymentStatus, DeploymentStrategy, DeploymentStrategyType, DiffTimeUnit, DisabledResult, DragRange, EmptyDirVolumeSource, Encoding, EnvFromSource, EnvVar, EnvVarSource, Environments, EphemeralContainer, EphemeralVolumeSource, ErrorMapper, ErrorMapperInterface, ErrorsMapperFn, ExecAction, FetchSeed, Fetcher, FileResult, FormatValue, GenericWorkloadStatus, HTTPGetAction, HTTPHeader, HTTPIngressPath, HTTPIngressRuleValue, HelmRequest, HelmRequestClusterSyncResult, HelmRequestClusterSyncResults, HelmRequestCondition, HelmRequestHttp, HelmRequestOci, HelmRequestSpec, HostAliases, HostPathVolumeSource, Idp, IfEqual, Ingress, IngressBackend, IngressLoadBalancerStatus, IngressRule, IngressSpec, IngressStatus, IngressTLS, InsertFn, ItemsScanner, JSONSchema6TypeName, Job, JobSpec, JobStatus, JobTemplateSpec, K8sEvent, K8sEventSeries, K8sEventSource, K8sYamlDisplayDialogData, KeyToPath, KeyValue, KeyValueTuple, Keys, KubernetesResource, KubernetesResourceList, KubernetesSubject, LabelSelector, LabelSelectorRequirement, LdapConfig, LdapGroupSearch, LdapUserSearch, LimitRange, LimitRangeItem, LimitRangeSpec, LimitType, ListFetchParams, ListParams, LiteralUnion, LoadBalancerIngress, LoadSnapshot, LoadState$1 as LoadState, LoaderConfig, LoaderConfigWithInterval, LocalObjectReference, LocaleDisplay, MatchValueFn, MultiSearchOption, MutableOptions, NameSpaceResourceRatio, Namespace, NamespaceStatus, Node, NodeAffinity, NodeAffinityTerm, NodeSelectorTerm, NodeStatus, NodeStatusReason, NodeStatusType, NodeTaint, NormalizedDefaultExtraMapper, NormalizedTableColumnActionExtra, NormalizedTableColumnActionExtraItem, NormalizedTableColumnDef, NotBeValue, Nullable, ObjectFieldSelector, ObjectMeta, ObjectReference, ObservableType, OidcConfig, OneOfValue, OpenAPIV2Document, OpenAPIV3SchemaObject, OpenAPIV3SchemaObjects, Options, OverviewBannerOption, OwnerReference, PagedListConfig, Pagination, PersistentVolumeClaim, PersistentVolumeClaimDataSource, PersistentVolumeClaimSpec, PersistentVolumeClaimStatus, PersistentVolumeClaimVolumeSource, PickerTimeRange, Pod, PodAffinity, PodAffinityTerm, PodLifeCycle, PodLifeCycleHook, PodSpec, PodSpecAffinity, PodStatus, PodTemplateSpec, Point, PreferredAffinity, Probe, ProductBase, ProductBaseSpec, ProductBaseStatus, ProductEntry, ProductEntrySpec, ProductEntryStatus, ProductStatus, ProductStatusCondition, Project, ProjectCluster, ProjectSpec, QueryDisabledFunc, Readonlyable, RequiredAffinity, ResizeCursor, ResizeEvent, ResourceAttributes, ResourceControl, ResourceFieldSelector, ResourceIdentifier, ResourceListParams, ResourceMacFormModal, ResourceMacKey, ResourceMacs, ResourcePatch, ResourceRequirementFormModal, ResourceRequirementKey, ResourceRequirementStrict, ResourceRequirements, RoleCustomRule, RoleRule, RoleTemplate, RoleTemplateSpec, RollingUpdateDaemonSet, RollingUpdateDeployment, RollingUpdateStatefulSetStrategy, SafeAssignOptions, SchemaBreadcrumb, SchemaProperty, ScopeSelector, ScopedResourceSelectorRequirement, SearchCondition, SearchConditionConfig, SearchConditionModel, SearchTagConfig, Secret, SecretKeyRef, SecretRef, SecretVolumeSource, SelfResourceAttributes, SelfSubjectAccessReview, SelfSubjectAccessReviewSpec, Service, ServicePort, ServicePortBaseProtocol, ServicePortProtocol, ServiceSessionAffinity, ServiceSpec, ServiceType, StatefulSet, StatefulSetSpec, StatefulSetStatus, StatefulSetUpdateStrategy, StatefulSetUpdateStrategyType, Status, StrategyFn, StreamListLoader, StreamListLoaderSnapshot, StringMap, SubjectAccessReview, SubjectAccessReviewSpec, SubjectAccessReviewStatus, TCPSocketAction, TableColumn, TableColumnActionConfig, TableColumnActionDisabledHandler, TableColumnActionExtra, TableColumnActionExtraItem, TableColumnActionTooltipHandler, TableColumnDef, TableColumnDefPath, TableColumnDefs, TableColumnNameExtra, TableColumnSort, TableColumnSortDirection, TableColumnSortHandler, TableColumnTranslateHandler, TableColumns, TableFilterFn, Text, Tls, Toleration, Tree, TreeFilter, TreeMapper, TreeReducer, TypeMeta, UnaryObservableFunction, UntypedKubernetesResource, UpdateKeyValueDialogData, User, UserBinding, UserBindingSpec, UserGroup, UserGroupSpec, UserList, UserPolicy, UserPolicyRule, UserRole, UserRoleNamespace, UserSpec, ValueOf, VersionObject, Volume, VolumeMount, Watcher, WatcherParams, WebhookType, WeightedNodeAffinityTerm, WeightedPodAffinityTerm, WithLoadState, Workload, WorkloadStatus, Workspace, WorkspaceDetailParams, WorkspaceListParams, YamlFilterItem };