@dovetail-v2/refine 0.3.1 → 0.3.3

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