@dovetail-v2/refine 0.3.0 → 0.3.2

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.
Files changed (35) hide show
  1. package/dist/{MonacoYamlEditor-1ed09191.cjs → MonacoYamlEditor-bdd52136.cjs} +15 -7
  2. package/dist/{MonacoYamlEditor-74ecf0d5.js → MonacoYamlEditor-d09e7de9.js} +15 -7
  3. package/dist/components/Form/FormModal.d.ts +2 -0
  4. package/dist/components/Form/RefineFormContainer.d.ts +2 -1
  5. package/dist/components/Form/YamlForm.d.ts +2 -2
  6. package/dist/components/Form/YamlFormContainer.d.ts +3 -2
  7. package/dist/components/Form/type.d.ts +11 -1
  8. package/dist/components/KeyValueTableForm/index.d.ts +34 -0
  9. package/dist/components/ShowContent/ShowContent.d.ts +4 -16
  10. package/dist/components/ShowContent/ShowContentView.d.ts +21 -0
  11. package/dist/components/ShowContent/fields.d.ts +1 -0
  12. package/dist/components/ShowContent/index.d.ts +1 -0
  13. package/dist/components/YamlEditor/MonacoYamlEditor.d.ts +5 -5
  14. package/dist/components/YamlEditor/YamlEditorComponent.d.ts +9 -7
  15. package/dist/components/index.d.ts +1 -0
  16. package/dist/hooks/useEagleTable/columns.d.ts +1 -1
  17. package/dist/hooks/useOpenForm.d.ts +5 -2
  18. package/dist/i18n.d.ts +1 -0
  19. package/dist/{index-23ef5f69.js → index-3126e84d.js} +881 -586
  20. package/dist/{index-7c78ef6f.cjs → index-ec66ac8f.cjs} +770 -475
  21. package/dist/locales/zh-CN/index.d.ts +1 -0
  22. package/dist/models/deployment-model.d.ts +5 -1
  23. package/dist/models/index.d.ts +1 -1
  24. package/dist/models/replicaset-model.d.ts +17 -0
  25. package/dist/models/service-model.d.ts +4 -0
  26. package/dist/models/workload-model.d.ts +6 -0
  27. package/dist/refine.cjs +8 -1
  28. package/dist/refine.js +114 -107
  29. package/dist/style.css +171 -162
  30. package/dist/utils/file.d.ts +1 -0
  31. package/dist/utils/index.d.ts +1 -0
  32. package/dist/utils/match-selector.d.ts +2 -2
  33. package/dist/utils/validation.d.ts +5 -1
  34. package/package.json +1 -1
  35. package/dist/components/EditMetadataForm/KeyValueTableForm.d.ts +0 -16
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  cant_delete_resource: string;
242
242
  cant_delete_resource_with_name: string;
243
243
  close: string;
244
+ import_from_file: string;
244
245
  };
245
246
  };
246
247
  export default _default;
@@ -1,13 +1,17 @@
1
1
  import { GlobalStore, Unstructured } from 'k8s-api-provider';
2
- import { Deployment } from 'kubernetes-types/apps/v1';
2
+ import type { Deployment } from 'kubernetes-types/apps/v1';
3
3
  import { ResourceState } from '../constants';
4
+ import { ReplicaSetModel } from './replicaset-model';
4
5
  import { WorkloadModel } from './workload-model';
5
6
  type RequiredDeployment = Required<Deployment> & Unstructured;
6
7
  export declare class DeploymentModel extends WorkloadModel {
7
8
  _rawYaml: RequiredDeployment;
8
9
  spec?: RequiredDeployment['spec'];
9
10
  status?: RequiredDeployment['status'];
11
+ replicaSets: ReplicaSetModel[];
10
12
  constructor(_rawYaml: RequiredDeployment, _globalStore: GlobalStore);
13
+ init(): Promise<void>;
14
+ private getReplicaSets;
11
15
  get stateDisplay(): ResourceState.UPDATING | ResourceState.READY | ResourceState.STOPPED;
12
16
  }
13
17
  export {};
@@ -6,7 +6,7 @@ export * from './workload-base-model';
6
6
  export * from './pod-model';
7
7
  export * from './pod-metrics-model';
8
8
  export * from './resource-model';
9
- export * from './workload-model';
9
+ export * from './replicaset-model';
10
10
  export * from './cronjob-model';
11
11
  export * from './event-model';
12
12
  export * from './deployment-model';
@@ -0,0 +1,17 @@
1
+ import { GlobalStore, Unstructured } from 'k8s-api-provider';
2
+ import type { ReplicaSet } from 'kubernetes-types/apps/v1';
3
+ import { PodModel } from './pod-model';
4
+ import { ResourceModel } from './resource-model';
5
+ type RequiredReplicaSet = Required<ReplicaSet> & Unstructured;
6
+ export declare class ReplicaSetModel extends ResourceModel<RequiredReplicaSet> {
7
+ _rawYaml: RequiredReplicaSet;
8
+ pods: PodModel[];
9
+ restarts: number;
10
+ spec?: RequiredReplicaSet['spec'];
11
+ status?: RequiredReplicaSet['status'];
12
+ constructor(_rawYaml: RequiredReplicaSet, _globalStore: GlobalStore);
13
+ init(): Promise<void>;
14
+ private getPods;
15
+ get ownerDeploymentName(): string | undefined;
16
+ }
17
+ export {};
@@ -1,5 +1,6 @@
1
1
  import { GlobalStore, Unstructured } from 'k8s-api-provider';
2
2
  import { Service } from 'kubernetes-types/core/v1';
3
+ import { IngressModel } from './ingress-model';
3
4
  import { ResourceModel } from './resource-model';
4
5
  export type ServiceType = Required<Unstructured & Service>;
5
6
  export declare enum ServiceTypeEnum {
@@ -11,7 +12,10 @@ export declare enum ServiceTypeEnum {
11
12
  }
12
13
  export declare class ServiceModel extends ResourceModel<ServiceType> {
13
14
  _rawYaml: ServiceType;
15
+ ingresses: IngressModel[];
14
16
  constructor(_rawYaml: ServiceType, _globalStore: GlobalStore);
17
+ init(): Promise<void>;
18
+ private getIngresses;
15
19
  get displayType(): string | undefined;
16
20
  get dnsRecord(): string;
17
21
  get displayPortMapping(): {
@@ -1,5 +1,7 @@
1
1
  import { GlobalStore, Unstructured } from 'k8s-api-provider';
2
2
  import type { DaemonSet, Deployment, StatefulSet } from 'kubernetes-types/apps/v1';
3
+ import { IngressModel } from './ingress-model';
4
+ import { ServiceModel } from './service-model';
3
5
  import { WorkloadBaseModel } from './workload-base-model';
4
6
  type WorkloadTypes = Required<Deployment | StatefulSet | DaemonSet> & Unstructured;
5
7
  export declare class WorkloadModel extends WorkloadBaseModel {
@@ -7,9 +9,13 @@ export declare class WorkloadModel extends WorkloadBaseModel {
7
9
  restarts: number;
8
10
  spec?: WorkloadTypes['spec'];
9
11
  status?: WorkloadTypes['status'];
12
+ services: ServiceModel[];
13
+ ingresses: IngressModel[];
10
14
  constructor(_rawYaml: WorkloadTypes, _globalStore: GlobalStore);
11
15
  init(): Promise<void>;
12
16
  private getRestarts;
17
+ private getServices;
18
+ private getIngresses;
13
19
  get replicas(): number | undefined;
14
20
  get readyReplicas(): number | undefined;
15
21
  get appKey(): string;
package/dist/refine.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const refine = require("./index-7c78ef6f.cjs");
3
+ const refine = require("./index-ec66ac8f.cjs");
4
4
  require("./common-1eb43414.cjs");
5
5
  require("@cloudtower/eagle");
6
6
  require("@refinedev/core");
@@ -67,6 +67,7 @@ exports.EventsTab = refine.EventsTab;
67
67
  exports.EventsTableTabField = refine.EventsTableTabField;
68
68
  exports.FormContainerType = refine.FormContainerType;
69
69
  exports.FormErrorAlert = refine.FormErrorAlert;
70
+ exports.FormItemLayout = refine.FormItemLayout;
70
71
  exports.FormModal = refine.FormModal;
71
72
  exports.FormMode = refine.FormMode;
72
73
  exports.FormType = refine.FormType;
@@ -93,6 +94,7 @@ exports.KeyValue = refine.KeyValue;
93
94
  exports.KeyValueAnnotation = refine.KeyValueAnnotation;
94
95
  exports.KeyValueListWidget = refine.KeyValueListWidget;
95
96
  exports.KeyValueSecret = refine.KeyValueSecret;
97
+ exports.KeyValueTableForm = refine.KeyValueTableForm;
96
98
  exports.LabelsField = refine.LabelsField;
97
99
  exports.Layout = refine.Layout;
98
100
  exports.ListPage = refine.ListPage;
@@ -172,6 +174,7 @@ exports.RefineFormContent = refine.RefineFormContent;
172
174
  exports.RefineFormPage = refine.RefineFormPage;
173
175
  exports.RelationPlugin = refine.RelationPlugin;
174
176
  exports.ReplicaField = refine.ReplicaField;
177
+ exports.ReplicaSetModel = refine.ReplicaSetModel;
175
178
  exports.ReplicasColumnRenderer = refine.ReplicasColumnRenderer;
176
179
  exports.ReplicasDropdown = refine.ReplicasDropdown;
177
180
  exports.ResourceCRUD = refine.ResourceCRUD;
@@ -224,6 +227,7 @@ exports.ServiceTypeEnum = refine.ServiceTypeEnum;
224
227
  exports.ServiceTypeField = refine.ServiceTypeField;
225
228
  exports.SessionAffinityField = refine.SessionAffinityField;
226
229
  exports.ShowContent = refine.ShowContent;
230
+ exports.ShowContentView = refine.ShowContentView;
227
231
  exports.ShowGroupComponent = refine.ShowGroupComponent;
228
232
  exports.StartTimeField = refine.StartTimeField;
229
233
  exports.StateDisplayColumnRenderer = refine.StateDisplayColumnRenderer;
@@ -278,3 +282,6 @@ exports.useNamespacesFilter = refine.useNamespacesFilter;
278
282
  exports.useOpenForm = refine.useOpenForm;
279
283
  exports.useRefineForm = refine.useRefineForm;
280
284
  exports.useSchema = refine.useSchema;
285
+ exports.validateDnsSubdomain = refine.validateDnsSubdomain;
286
+ exports.validateLabelKey = refine.validateLabelKey;
287
+ exports.validateLabelValue = refine.validateLabelValue;
package/dist/refine.js CHANGED
@@ -1,4 +1,4 @@
1
- import { bO, cC, A, aX, aZ, aG, ca, bl, a2, co, cc, aR, T, C, j, cI, aJ, bq, ad, cK, aj, aq, cT, ay, cd, cb, cW, aN, bx, w, aE, bE, cV, cD, bH, D, b2, at, bK, as, au, a1, c9, c8, cU, bj, aV, cF, ae, bR, cH, cG, cJ, cm, aH, ak, s, q, cL, I, bu, aU, t, M, bf, bh, ce, cN, aM, bt, ar, az, aA, a9, aB, aY, aF, bF, bI, aa, d4, cn, cx, bN, N, a3, g, aW, a7, bQ, bz, by, cM, c1, c$, i, c_, aK, br, cg, L, bb, bc, bp, H, bd, J, be, B, b6, cA, z, b5, G, b9, E, b7, F, b8, K, c2, ba, cz, ab, d2, d1, P, bn, v, af, ai, c0, bk, cR, cQ, b0, bv, c6, c5, p, aL, bm, x, bw, b1, d3, y, cq, cE, bL, bT, bU, d6, aI, h, ah, ao, an, bM, al, cS, c4, am, cB, c7, bi, bB, av, R, Q, O, bg, ct, cw, cs, cr, cu, cv, cp, ch, ck, cl, cj, ci, cf, cy, bV, aO, bs, aC, m, bY, l, a_, cZ, o, bZ, a$, n, aT, bo, k, cY, aQ, aS, bD, bC, aP, S, bG, cX, d0, b3, b4, bA, bJ, c3, b_, b$, ac, a0, cP, ag, W, cO, ap, ax, aw, aD, bW, U, a4, d, d9, d8, db, de, dd, d5, a8, dc, d7, bS, da, a6, a5, r, a, c, e, X, V, Z, f, _, u, bP, $, bX, b } from "./index-23ef5f69.js";
1
+ import { bP, cF, A, aX, aZ, aG, cd, bl, a2, cr, cf, aR, T, C, j, cL, aJ, bq, ad, cN, aj, aq, cX, ay, cg, ce, c_, aN, bx, w, aE, bF, cZ, cG, bI, D, b2, at, bL, as, au, a1, cb, ca, cY, bj, aV, cI, ae, bZ, bS, cK, cJ, cM, cp, aH, ak, s, q, cO, I, bu, aU, t, M, bf, bh, ch, cQ, aM, bt, ar, az, aA, a9, aB, cc, aY, aF, bG, bJ, aa, d8, cq, cA, bO, N, a3, g, aW, a7, bR, bz, by, cP, c3, d3, i, d2, aK, br, cj, L, bb, bc, bp, H, bd, J, be, B, b6, cD, z, b5, G, b9, E, b7, F, b8, K, c4, ba, cC, ab, d6, d5, P, bn, v, af, ai, c2, bk, cU, cT, b0, bv, c8, c7, p, aL, bm, x, bw, b1, d7, y, ct, cH, bM, bU, bV, da, aI, cW, h, ah, ao, an, bN, al, cV, c6, am, cE, c9, bi, bB, av, R, Q, O, bg, cw, cz, cv, cu, cx, cy, cs, ck, cn, co, cm, cl, ci, cB, bW, aO, bs, aC, m, b_, l, a_, d1, o, b$, a$, n, aT, bo, k, d0, aQ, aS, bC, bE, bD, aP, S, bH, c$, d4, b3, b4, bA, bK, c5, c0, c1, ac, a0, cS, ag, W, cR, ap, ax, aw, aD, bX, U, a4, d, dd, dc, df, di, dh, d9, a8, dg, db, bT, de, a6, a5, r, a, c, e, X, V, Z, f, _, u, bQ, $, bY, b, dj, dk, dl } from "./index-3126e84d.js";
2
2
  import "./common-feae5742.js";
3
3
  import "@cloudtower/eagle";
4
4
  import "@refinedev/core";
@@ -17,65 +17,66 @@ import "@patternfly/react-log-viewer";
17
17
  import "react-hook-form";
18
18
  import "antd";
19
19
  export {
20
- bO as ALL_NS,
21
- cC as AccessControlAuth,
20
+ bP as ALL_NS,
21
+ cF as AccessControlAuth,
22
22
  A as AgeColumnRenderer,
23
23
  aX as AgeField,
24
24
  aZ as AnnotationsField,
25
25
  aG as AreaType,
26
- ca as BASE_INIT_VALUE,
26
+ cd as BASE_INIT_VALUE,
27
27
  bl as BasicGroup,
28
28
  a2 as Breadcrumb,
29
- co as CONFIG_MAP_INIT_VALUE,
30
- cc as CRONJOB_INIT_VALUE,
29
+ cr as CONFIG_MAP_INIT_VALUE,
30
+ cf as CRONJOB_INIT_VALUE,
31
31
  aR as ClusterIpField,
32
32
  T as ColumnKeys,
33
33
  C as CommonSorter,
34
34
  j as CompletionsCountColumnRenderer,
35
- cI as ComponentContext,
35
+ cL as ComponentContext,
36
36
  aJ as ConditionsField,
37
37
  bq as ConditionsGroup,
38
38
  ad as ConditionsTable,
39
- cK as ConfigsContext,
39
+ cN as ConfigsContext,
40
40
  aj as CreateButton,
41
41
  aq as CronJobDropdown,
42
- cT as CronJobModel,
42
+ cX as CronJobModel,
43
43
  ay as CronjobJobsTable,
44
- cd as DAEMONSET_INIT_VALUE,
45
- cb as DEPLOYMENT_INIT_VALUE,
46
- cW as DaemonSetModel,
44
+ cg as DAEMONSET_INIT_VALUE,
45
+ ce as DEPLOYMENT_INIT_VALUE,
46
+ c_ as DaemonSetModel,
47
47
  aN as DataField,
48
48
  bx as DataGroup,
49
49
  w as DataKeysColumnRenderer,
50
50
  aE as DeleteButton,
51
- bE as DeleteManyButton,
52
- cV as DeploymentModel,
53
- cD as Dovetail,
54
- bH as DrawerShow,
51
+ bF as DeleteManyButton,
52
+ cZ as DeploymentModel,
53
+ cG as Dovetail,
54
+ bI as DrawerShow,
55
55
  D as DurationColumnRenderer,
56
56
  b2 as DurationField,
57
57
  at as EditAnnotationDropdownMenuItem,
58
- bK as EditButton,
58
+ bL as EditButton,
59
59
  as as EditLabelDropdownMenuItem,
60
60
  au as EditNodeTaintDropdownMenuItem,
61
61
  a1 as ErrorContent,
62
- c9 as ErrorContentType,
63
- c8 as ErrorWrapper,
64
- cU as EventModel,
62
+ cb as ErrorContentType,
63
+ ca as ErrorWrapper,
64
+ cY as EventModel,
65
65
  bj as EventsTab,
66
66
  aV as EventsTableTabField,
67
- cF as FormContainerType,
67
+ cI as FormContainerType,
68
68
  ae as FormErrorAlert,
69
- bR as FormModal,
70
- cH as FormMode,
71
- cG as FormType,
72
- cJ as GlobalStoreContext,
73
- cm as INGRESS_INIT_VALUE,
69
+ bZ as FormItemLayout,
70
+ bS as FormModal,
71
+ cK as FormMode,
72
+ cJ as FormType,
73
+ cM as GlobalStoreContext,
74
+ cp as INGRESS_INIT_VALUE,
74
75
  aH as ImageField,
75
76
  ak as ImageNames,
76
77
  s as IngressClassColumnRenderer,
77
78
  q as IngressDefaultBackendColumnRenderer,
78
- cL as IngressModel,
79
+ cO as IngressModel,
79
80
  I as IngressRulesColumnRenderer,
80
81
  bu as IngressRulesGroup,
81
82
  aU as IngressRulesTableTabField,
@@ -83,8 +84,8 @@ export {
83
84
  M as IsDefaultSCColumnRenderer,
84
85
  bf as IsDefaultSCField,
85
86
  bh as IsSCAllowVolumeExpansionField,
86
- ce as JOB_INIT_VALUE,
87
- cN as JobModel,
87
+ ch as JOB_INIT_VALUE,
88
+ cQ as JobModel,
88
89
  aM as JobsField,
89
90
  bt as JobsGroup,
90
91
  ar as K8sDropdown,
@@ -92,31 +93,32 @@ export {
92
93
  aA as KeyValueAnnotation,
93
94
  a9 as KeyValueListWidget,
94
95
  aB as KeyValueSecret,
96
+ cc as KeyValueTableForm,
95
97
  aY as LabelsField,
96
98
  aF as Layout,
97
- bF as ListPage,
98
- bI as Menu,
99
+ bG as ListPage,
100
+ bJ as Menu,
99
101
  aa as MetadataForm,
100
- d4 as ModelPlugin,
101
- cn as NETWORK_POLICY_INIT_VALUE,
102
- cx as NODE_INIT_VALUE,
103
- bN as NS_STORE_KEY,
102
+ d8 as ModelPlugin,
103
+ cq as NETWORK_POLICY_INIT_VALUE,
104
+ cA as NODE_INIT_VALUE,
105
+ bO as NS_STORE_KEY,
104
106
  N as NameColumnRenderer,
105
107
  a3 as NameInputWidget,
106
108
  g as NameSpaceColumnRenderer,
107
109
  aW as NamespaceField,
108
110
  a7 as NamespaceSelectWidget,
109
- bQ as NamespacesFilter,
111
+ bR as NamespacesFilter,
110
112
  bz as NetworkPolicyEgressRulesGroup,
111
113
  by as NetworkPolicyIngressRulesGroup,
112
- cM as NetworkPolicyModel,
113
- c1 as NetworkPolicyRulesViewer,
114
- c$ as NodeModel,
114
+ cP as NetworkPolicyModel,
115
+ c3 as NetworkPolicyRulesViewer,
116
+ d3 as NodeModel,
115
117
  i as NodeNameColumnRenderer,
116
- c_ as NodeRole,
118
+ d2 as NodeRole,
117
119
  aK as NodeTaintsField,
118
120
  br as NodeTaintsGroup,
119
- cg as POD_INIT_VALUE,
121
+ cj as POD_INIT_VALUE,
120
122
  L as PVAccessModeColumnRenderer,
121
123
  bb as PVAccessModeField,
122
124
  bc as PVCPodsField,
@@ -127,7 +129,7 @@ export {
127
129
  be as PVCSIRefField,
128
130
  B as PVCStorageColumnRenderer,
129
131
  b6 as PVCStorageField,
130
- cA as PVC_INIT_VALUE,
132
+ cD as PVC_INIT_VALUE,
131
133
  z as PVCapacityColumnRenderer,
132
134
  b5 as PVCapacityField,
133
135
  G as PVPhaseColumnRenderer,
@@ -137,51 +139,52 @@ export {
137
139
  F as PVStorageClassColumnRenderer,
138
140
  b8 as PVStorageClassField,
139
141
  K as PVVolumeModeColumnRenderer,
140
- c2 as PVVolumeModeDisplay,
142
+ c4 as PVVolumeModeDisplay,
141
143
  ba as PVVolumeModeField,
142
- cz as PV_INIT_VALUE,
144
+ cC as PV_INIT_VALUE,
143
145
  ab as PageShow,
144
- d2 as PersistentVolumeClaimModel,
145
- d1 as PersistentVolumeModel,
146
+ d6 as PersistentVolumeClaimModel,
147
+ d5 as PersistentVolumeModel,
146
148
  P as PlainTextNameColumnRenderer,
147
149
  bn as PodContainersGroup,
148
150
  v as PodContainersNumColumnRenderer,
149
151
  af as PodContainersTable,
150
152
  ai as PodDropdown,
151
- c0 as PodLog,
153
+ c2 as PodLog,
152
154
  bk as PodLogTab,
153
- cR as PodMetricsModel,
154
- cQ as PodModel,
155
+ cU as PodMetricsModel,
156
+ cT as PodModel,
155
157
  b0 as PodSelectorField,
156
158
  bv as PodSelectorGroup,
157
- c6 as PodShell,
158
- c5 as PodShellModal,
159
+ c8 as PodShell,
160
+ c7 as PodShellModal,
159
161
  p as PodWorkloadColumnRenderer,
160
162
  aL as PodsField,
161
163
  bm as PodsGroup,
162
164
  x as PortMappingColumnRenderer,
163
165
  bw as PortsGroup,
164
166
  b1 as PortsTableField,
165
- d3 as ProviderPlugins,
167
+ d7 as ProviderPlugins,
166
168
  y as ProvisionerColumnRenderer,
167
- cq as REDEPLOY_TIMESTAMP_KEY,
168
- cE as RESOURCE_GROUP,
169
- bL as ReferenceLink,
170
- bT as RefineFormContent,
171
- bU as RefineFormPage,
172
- d6 as RelationPlugin,
169
+ ct as REDEPLOY_TIMESTAMP_KEY,
170
+ cH as RESOURCE_GROUP,
171
+ bM as ReferenceLink,
172
+ bU as RefineFormContent,
173
+ bV as RefineFormPage,
174
+ da as RelationPlugin,
173
175
  aI as ReplicaField,
176
+ cW as ReplicaSetModel,
174
177
  h as ReplicasColumnRenderer,
175
178
  ah as ReplicasDropdown,
176
179
  ao as ResourceCRUD,
177
180
  an as ResourceForm,
178
- bM as ResourceLink,
181
+ bN as ResourceLink,
179
182
  al as ResourceList,
180
- cS as ResourceModel,
181
- c4 as ResourceSelect,
183
+ cV as ResourceModel,
184
+ c6 as ResourceSelect,
182
185
  am as ResourceShow,
183
- cB as ResourceState,
184
- c7 as ResourceTable,
186
+ cE as ResourceState,
187
+ c9 as ResourceTable,
185
188
  bi as ResourceTableField,
186
189
  bB as ResourceTableGroup,
187
190
  av as ResourceUsageBar,
@@ -189,78 +192,79 @@ export {
189
192
  Q as SCAllowExpandColumnRenderer,
190
193
  O as SCReclaimPolicyColumnRenderer,
191
194
  bg as SCReclaimPolicyField,
192
- ct as SECRET_BASIC_AUTH_INIT_VALUE,
193
- cw as SECRET_CUSTOM_INIT_VALUE,
194
- cs as SECRET_IMAGE_REPO_INIT_VALUE,
195
- cr as SECRET_OPAQUE_INIT_VALUE,
196
- cu as SECRET_SSH_AUTH_INIT_VALUE,
197
- cv as SECRET_TLS_INIT_VALUE,
198
- cp as SERVER_INSTANCE_INIT_VALUE,
199
- ch as SERVICE_CLUSTER_IP_INIT_VALUE,
200
- ck as SERVICE_EXTERNAL_NAME_INIT_VALUE,
201
- cl as SERVICE_HEADLESS_INIT_VALUE,
202
- cj as SERVICE_LOAD_BALANCER_INIT_VALUE,
203
- ci as SERVICE_NODE_PORT_INIT_VALUE,
204
- cf as STATEFULSET_INIT_VALUE,
205
- cy as STORAGE_CLASS_INIT_VALUE,
206
- bV as SchemaStrategy,
195
+ cw as SECRET_BASIC_AUTH_INIT_VALUE,
196
+ cz as SECRET_CUSTOM_INIT_VALUE,
197
+ cv as SECRET_IMAGE_REPO_INIT_VALUE,
198
+ cu as SECRET_OPAQUE_INIT_VALUE,
199
+ cx as SECRET_SSH_AUTH_INIT_VALUE,
200
+ cy as SECRET_TLS_INIT_VALUE,
201
+ cs as SERVER_INSTANCE_INIT_VALUE,
202
+ ck as SERVICE_CLUSTER_IP_INIT_VALUE,
203
+ cn as SERVICE_EXTERNAL_NAME_INIT_VALUE,
204
+ co as SERVICE_HEADLESS_INIT_VALUE,
205
+ cm as SERVICE_LOAD_BALANCER_INIT_VALUE,
206
+ cl as SERVICE_NODE_PORT_INIT_VALUE,
207
+ ci as STATEFULSET_INIT_VALUE,
208
+ cB as STORAGE_CLASS_INIT_VALUE,
209
+ bW as SchemaStrategy,
207
210
  aO as SecretDataField,
208
211
  bs as SecretDataGroup,
209
212
  aC as Separator,
210
213
  m as ServiceInClusterAccessColumnRenderer,
211
- bY as ServiceInClusterAccessComponent,
214
+ b_ as ServiceInClusterAccessComponent,
212
215
  l as ServiceInClusterAccessTitle,
213
216
  a_ as ServiceInnerClusterAccessField,
214
- cZ as ServiceModel,
217
+ d1 as ServiceModel,
215
218
  o as ServiceOutClusterAccessColumnRenderer,
216
- bZ as ServiceOutClusterAccessComponent,
219
+ b$ as ServiceOutClusterAccessComponent,
217
220
  a$ as ServiceOutClusterAccessField,
218
221
  n as ServiceOutClusterAccessTitle,
219
222
  aT as ServicePodsField,
220
223
  bo as ServicePodsGroup,
221
224
  k as ServiceTypeColumnRenderer,
222
- cY as ServiceTypeEnum,
225
+ d0 as ServiceTypeEnum,
223
226
  aQ as ServiceTypeField,
224
227
  aS as SessionAffinityField,
225
- bD as ShowContent,
226
- bC as ShowGroupComponent,
228
+ bC as ShowContent,
229
+ bE as ShowContentView,
230
+ bD as ShowGroupComponent,
227
231
  aP as StartTimeField,
228
232
  S as StateDisplayColumnRenderer,
229
- bG as StateTag,
230
- cX as StatefulSetModel,
231
- d0 as StorageClassModel,
233
+ bH as StateTag,
234
+ c$ as StatefulSetModel,
235
+ d4 as StorageClassModel,
232
236
  b3 as StorageClassProvisionerField,
233
237
  b4 as StorageClassPvField,
234
238
  bA as StorageClassPvGroup,
235
- bJ as Table,
236
- c3 as Tabs,
237
- b_ as Tags,
238
- b$ as TextTags,
239
+ bK as Table,
240
+ c5 as Tabs,
241
+ c0 as Tags,
242
+ c1 as TextTags,
239
243
  ac as Time,
240
244
  a0 as ValueDisplay,
241
- cP as WorkloadBaseModel,
245
+ cS as WorkloadBaseModel,
242
246
  ag as WorkloadDropdown,
243
247
  W as WorkloadImageColumnRenderer,
244
- cO as WorkloadModel,
248
+ cR as WorkloadModel,
245
249
  ap as WorkloadPodsTable,
246
250
  ax as WorkloadReplicas,
247
251
  aw as WorkloadReplicasForm,
248
252
  aD as YamlEditorComponent,
249
- bW as YamlForm,
253
+ bX as YamlForm,
250
254
  U as addDefaultRenderToColumns,
251
255
  a4 as dnsSubDomainRules,
252
256
  d as dovetailRefineI18n,
253
- d9 as generateSchemaTypeValue,
254
- d8 as generateValueFromSchema,
255
- db as getApiVersion,
256
- de as getResourceNameByKind,
257
- dd as matchSelector,
258
- d5 as modelPlugin,
257
+ dd as generateSchemaTypeValue,
258
+ dc as generateValueFromSchema,
259
+ df as getApiVersion,
260
+ di as getResourceNameByKind,
261
+ dh as matchSelector,
262
+ d9 as modelPlugin,
259
263
  a8 as namespaceRules,
260
- dc as pruneBeforeEdit,
261
- d7 as relationPlugin,
262
- bS as renderCommonFormFiled,
263
- da as resolveRef,
264
+ dg as pruneBeforeEdit,
265
+ db as relationPlugin,
266
+ bT as renderCommonFormFiled,
267
+ de as resolveRef,
264
268
  a6 as rfc1035LabelRules,
265
269
  a5 as rfc1123LabelRules,
266
270
  r as routerProvider,
@@ -273,8 +277,11 @@ export {
273
277
  f as useFailedModal,
274
278
  _ as useGlobalStore,
275
279
  u as useNamespaceRefineFilter,
276
- bP as useNamespacesFilter,
280
+ bQ as useNamespacesFilter,
277
281
  $ as useOpenForm,
278
- bX as useRefineForm,
279
- b as useSchema
282
+ bY as useRefineForm,
283
+ b as useSchema,
284
+ dj as validateDnsSubdomain,
285
+ dk as validateLabelKey,
286
+ dl as validateLabelValue
280
287
  };