@dovetail-v2/refine 0.2.12 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{MonacoYamlEditor-9a2832ff.js → MonacoYamlEditor-5e4c98ce.js} +1 -1
- package/dist/{MonacoYamlEditor-63a619ee.cjs → MonacoYamlEditor-9b8b7cef.cjs} +1 -1
- package/dist/components/Form/FormModal.d.ts +2 -0
- package/dist/components/Form/RefineFormContainer.d.ts +2 -1
- package/dist/components/Form/YamlForm.d.ts +2 -2
- package/dist/components/Form/YamlFormContainer.d.ts +3 -2
- package/dist/components/Form/type.d.ts +11 -1
- package/dist/components/KeyValueTableForm/index.d.ts +34 -0
- package/dist/components/ResourceLink/index.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/hooks/useEagleTable/columns.d.ts +1 -2
- package/dist/hooks/useOpenForm.d.ts +5 -2
- package/dist/i18n.d.ts +1 -0
- package/dist/{index-64410c76.js → index-c4f4f337.js} +606 -451
- package/dist/{index-d6b404b9.cjs → index-e9523181.cjs} +376 -221
- package/dist/locales/zh-CN/index.d.ts +1 -0
- package/dist/models/pod-model.d.ts +1 -1
- package/dist/models/workload-model.d.ts +1 -0
- package/dist/refine.cjs +8 -3
- package/dist/refine.js +235 -230
- package/dist/style.css +9 -4
- package/dist/utils/file.d.ts +1 -0
- package/dist/utils/getResourceNameByKind.d.ts +2 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/validation.d.ts +5 -1
- package/package.json +1 -1
- package/dist/components/EditMetadataForm/KeyValueTableForm.d.ts +0 -16
|
@@ -11,7 +11,7 @@ export declare class PodModel extends WorkloadBaseModel {
|
|
|
11
11
|
status?: RequiredPod['status'];
|
|
12
12
|
constructor(_rawYaml: RequiredPod, _globalStore: GlobalStore);
|
|
13
13
|
get imageNames(): string[];
|
|
14
|
-
get
|
|
14
|
+
get restarts(): number;
|
|
15
15
|
get readyDisplay(): string;
|
|
16
16
|
get readyContainerCount(): number | undefined;
|
|
17
17
|
get containerCount(): number;
|
|
@@ -12,6 +12,7 @@ export declare class WorkloadModel extends WorkloadBaseModel {
|
|
|
12
12
|
private getRestarts;
|
|
13
13
|
get replicas(): number | undefined;
|
|
14
14
|
get readyReplicas(): number | undefined;
|
|
15
|
+
get appKey(): string;
|
|
15
16
|
redeploy(): WorkloadTypes;
|
|
16
17
|
scale(value: number): WorkloadTypes;
|
|
17
18
|
}
|
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-
|
|
3
|
+
const refine = require("./index-e9523181.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;
|
|
@@ -186,7 +188,7 @@ exports.ResourceTable = refine.ResourceTable;
|
|
|
186
188
|
exports.ResourceTableField = refine.ResourceTableField;
|
|
187
189
|
exports.ResourceTableGroup = refine.ResourceTableGroup;
|
|
188
190
|
exports.ResourceUsageBar = refine.ResourceUsageBar;
|
|
189
|
-
exports.
|
|
191
|
+
exports.RestartsColumnRenderer = refine.RestartsColumnRenderer;
|
|
190
192
|
exports.SCAllowExpandColumnRenderer = refine.SCAllowExpandColumnRenderer;
|
|
191
193
|
exports.SCReclaimPolicyColumnRenderer = refine.SCReclaimPolicyColumnRenderer;
|
|
192
194
|
exports.SCReclaimPolicyField = refine.SCReclaimPolicyField;
|
|
@@ -246,7 +248,6 @@ exports.WorkloadModel = refine.WorkloadModel;
|
|
|
246
248
|
exports.WorkloadPodsTable = refine.WorkloadPodsTable;
|
|
247
249
|
exports.WorkloadReplicas = refine.WorkloadReplicas;
|
|
248
250
|
exports.WorkloadReplicasForm = refine.WorkloadReplicasForm;
|
|
249
|
-
exports.WorkloadRestartsColumnRenderer = refine.WorkloadRestartsColumnRenderer;
|
|
250
251
|
exports.YamlEditorComponent = refine.YamlEditorComponent;
|
|
251
252
|
exports.YamlForm = refine.YamlForm;
|
|
252
253
|
exports.addDefaultRenderToColumns = refine.addDefaultRenderToColumns;
|
|
@@ -255,6 +256,7 @@ exports.dovetailRefineI18n = refine.dovetailRefineI18n;
|
|
|
255
256
|
exports.generateSchemaTypeValue = refine.generateSchemaTypeValue;
|
|
256
257
|
exports.generateValueFromSchema = refine.generateValueFromSchema;
|
|
257
258
|
exports.getApiVersion = refine.getApiVersion;
|
|
259
|
+
exports.getResourceNameByKind = refine.getResourceNameByKind;
|
|
258
260
|
exports.matchSelector = refine.matchSelector;
|
|
259
261
|
exports.modelPlugin = refine.modelPlugin;
|
|
260
262
|
exports.namespaceRules = refine.namespaceRules;
|
|
@@ -278,3 +280,6 @@ exports.useNamespacesFilter = refine.useNamespacesFilter;
|
|
|
278
280
|
exports.useOpenForm = refine.useOpenForm;
|
|
279
281
|
exports.useRefineForm = refine.useRefineForm;
|
|
280
282
|
exports.useSchema = refine.useSchema;
|
|
283
|
+
exports.validateDnsSubdomain = refine.validateDnsSubdomain;
|
|
284
|
+
exports.validateLabelKey = refine.validateLabelKey;
|
|
285
|
+
exports.validateLabelValue = refine.validateLabelValue;
|
package/dist/refine.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
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";
|
|
2
2
|
import "./common-feae5742.js";
|
|
3
3
|
import "@cloudtower/eagle";
|
|
4
4
|
import "@refinedev/core";
|
|
@@ -17,264 +17,269 @@ import "@patternfly/react-log-viewer";
|
|
|
17
17
|
import "react-hook-form";
|
|
18
18
|
import "antd";
|
|
19
19
|
export {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
bO as ALL_NS,
|
|
21
|
+
cE as AccessControlAuth,
|
|
22
22
|
A as AgeColumnRenderer,
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
23
|
+
aX as AgeField,
|
|
24
|
+
aZ as AnnotationsField,
|
|
25
|
+
aG as AreaType,
|
|
26
|
+
cc as BASE_INIT_VALUE,
|
|
27
|
+
bl as BasicGroup,
|
|
28
|
+
a2 as Breadcrumb,
|
|
29
|
+
cq as CONFIG_MAP_INIT_VALUE,
|
|
30
|
+
ce as CRONJOB_INIT_VALUE,
|
|
31
|
+
aR as ClusterIpField,
|
|
32
|
+
T as ColumnKeys,
|
|
33
33
|
C as CommonSorter,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
34
|
+
j as CompletionsCountColumnRenderer,
|
|
35
|
+
cK as ComponentContext,
|
|
36
|
+
aJ as ConditionsField,
|
|
37
|
+
bq as ConditionsGroup,
|
|
38
|
+
ad as ConditionsTable,
|
|
39
|
+
cM as ConfigsContext,
|
|
40
|
+
aj as CreateButton,
|
|
41
|
+
aq as CronJobDropdown,
|
|
42
|
+
cV as CronJobModel,
|
|
43
|
+
ay as CronjobJobsTable,
|
|
44
|
+
cf as DAEMONSET_INIT_VALUE,
|
|
45
|
+
cd as DEPLOYMENT_INIT_VALUE,
|
|
46
|
+
cY as DaemonSetModel,
|
|
47
|
+
aN as DataField,
|
|
48
|
+
bx as DataGroup,
|
|
49
|
+
w as DataKeysColumnRenderer,
|
|
50
|
+
aE as DeleteButton,
|
|
51
|
+
bE as DeleteManyButton,
|
|
52
|
+
cX as DeploymentModel,
|
|
53
|
+
cF as Dovetail,
|
|
54
|
+
bH as DrawerShow,
|
|
55
55
|
D as DurationColumnRenderer,
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
b2 as DurationField,
|
|
57
|
+
at as EditAnnotationDropdownMenuItem,
|
|
58
|
+
bK as EditButton,
|
|
59
|
+
as as EditLabelDropdownMenuItem,
|
|
60
|
+
au as EditNodeTaintDropdownMenuItem,
|
|
61
|
+
a1 as ErrorContent,
|
|
62
62
|
ca as ErrorContentType,
|
|
63
63
|
c9 as ErrorWrapper,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
s as
|
|
78
|
-
|
|
64
|
+
cW as EventModel,
|
|
65
|
+
bj as EventsTab,
|
|
66
|
+
aV as EventsTableTabField,
|
|
67
|
+
cH as FormContainerType,
|
|
68
|
+
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,
|
|
75
|
+
aH as ImageField,
|
|
76
|
+
ak as ImageNames,
|
|
77
|
+
s as IngressClassColumnRenderer,
|
|
78
|
+
q as IngressDefaultBackendColumnRenderer,
|
|
79
|
+
cN as IngressModel,
|
|
79
80
|
I as IngressRulesColumnRenderer,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
81
|
+
bu as IngressRulesGroup,
|
|
82
|
+
aU as IngressRulesTableTabField,
|
|
83
|
+
t as IngressTlsColumnRenderer,
|
|
84
|
+
M as IsDefaultSCColumnRenderer,
|
|
85
|
+
bf as IsDefaultSCField,
|
|
86
|
+
bh as IsSCAllowVolumeExpansionField,
|
|
87
|
+
cg as JOB_INIT_VALUE,
|
|
88
|
+
cP as JobModel,
|
|
89
|
+
aM as JobsField,
|
|
90
|
+
bt as JobsGroup,
|
|
91
|
+
ar as K8sDropdown,
|
|
92
|
+
az as KeyValue,
|
|
93
|
+
aA as KeyValueAnnotation,
|
|
94
|
+
a9 as KeyValueListWidget,
|
|
95
|
+
aB as KeyValueSecret,
|
|
96
|
+
cb as KeyValueTableForm,
|
|
97
|
+
aY as LabelsField,
|
|
98
|
+
aF as Layout,
|
|
99
|
+
bF as ListPage,
|
|
100
|
+
bI as Menu,
|
|
101
|
+
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,
|
|
104
106
|
N as NameColumnRenderer,
|
|
105
|
-
|
|
107
|
+
a3 as NameInputWidget,
|
|
106
108
|
g as NameSpaceColumnRenderer,
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
aW as NamespaceField,
|
|
110
|
+
a7 as NamespaceSelectWidget,
|
|
111
|
+
bQ as NamespacesFilter,
|
|
112
|
+
bz as NetworkPolicyEgressRulesGroup,
|
|
113
|
+
by as NetworkPolicyIngressRulesGroup,
|
|
114
|
+
cO as NetworkPolicyModel,
|
|
113
115
|
c2 as NetworkPolicyRulesViewer,
|
|
114
|
-
|
|
116
|
+
d1 as NodeModel,
|
|
115
117
|
i as NodeNameColumnRenderer,
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
118
|
+
d0 as NodeRole,
|
|
119
|
+
aK as NodeTaintsField,
|
|
120
|
+
br as NodeTaintsGroup,
|
|
121
|
+
ci as POD_INIT_VALUE,
|
|
122
|
+
L as PVAccessModeColumnRenderer,
|
|
123
|
+
bb as PVAccessModeField,
|
|
124
|
+
bc as PVCPodsField,
|
|
125
|
+
bp as PVCPodsGroup,
|
|
126
|
+
H as PVCRefColumnRenderer,
|
|
127
|
+
bd as PVCRefField,
|
|
128
|
+
J as PVCSIRefColumnRenderer,
|
|
129
|
+
be as PVCSIRefField,
|
|
130
|
+
B as PVCStorageColumnRenderer,
|
|
131
|
+
b6 as PVCStorageField,
|
|
132
|
+
cC as PVC_INIT_VALUE,
|
|
133
|
+
z as PVCapacityColumnRenderer,
|
|
134
|
+
b5 as PVCapacityField,
|
|
135
|
+
G as PVPhaseColumnRenderer,
|
|
136
|
+
b9 as PVPhaseField,
|
|
137
|
+
E as PVRefColumnRenderer,
|
|
138
|
+
b7 as PVRefField,
|
|
139
|
+
F as PVStorageClassColumnRenderer,
|
|
140
|
+
b8 as PVStorageClassField,
|
|
141
|
+
K as PVVolumeModeColumnRenderer,
|
|
140
142
|
c3 as PVVolumeModeDisplay,
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
143
|
+
ba as PVVolumeModeField,
|
|
144
|
+
cB as PV_INIT_VALUE,
|
|
145
|
+
ab as PageShow,
|
|
146
|
+
d4 as PersistentVolumeClaimModel,
|
|
147
|
+
d3 as PersistentVolumeModel,
|
|
146
148
|
P as PlainTextNameColumnRenderer,
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
bn as PodContainersGroup,
|
|
150
|
+
v as PodContainersNumColumnRenderer,
|
|
151
|
+
af as PodContainersTable,
|
|
152
|
+
ai as PodDropdown,
|
|
151
153
|
c1 as PodLog,
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
154
|
+
bk as PodLogTab,
|
|
155
|
+
cT as PodMetricsModel,
|
|
156
|
+
cS as PodModel,
|
|
157
|
+
b0 as PodSelectorField,
|
|
158
|
+
bv as PodSelectorGroup,
|
|
157
159
|
c7 as PodShell,
|
|
158
160
|
c6 as PodShellModal,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
161
|
+
p as PodWorkloadColumnRenderer,
|
|
162
|
+
aL as PodsField,
|
|
163
|
+
bm as PodsGroup,
|
|
164
|
+
x as PortMappingColumnRenderer,
|
|
165
|
+
bw as PortsGroup,
|
|
166
|
+
b1 as PortsTableField,
|
|
167
|
+
d5 as ProviderPlugins,
|
|
168
|
+
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,
|
|
175
|
+
aI as ReplicaField,
|
|
176
|
+
h as ReplicasColumnRenderer,
|
|
177
|
+
ah as ReplicasDropdown,
|
|
178
|
+
ao as ResourceCRUD,
|
|
179
|
+
an as ResourceForm,
|
|
180
|
+
bM as ResourceLink,
|
|
181
|
+
al as ResourceList,
|
|
182
|
+
cU as ResourceModel,
|
|
181
183
|
c5 as ResourceSelect,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
+
am as ResourceShow,
|
|
185
|
+
cD as ResourceState,
|
|
184
186
|
c8 as ResourceTable,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
187
|
+
bi as ResourceTableField,
|
|
188
|
+
bB as ResourceTableGroup,
|
|
189
|
+
av as ResourceUsageBar,
|
|
190
|
+
R as RestartsColumnRenderer,
|
|
191
|
+
Q as SCAllowExpandColumnRenderer,
|
|
192
|
+
O as SCReclaimPolicyColumnRenderer,
|
|
193
|
+
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,
|
|
209
|
+
aO as SecretDataField,
|
|
210
|
+
bs as SecretDataGroup,
|
|
211
|
+
aC as Separator,
|
|
212
|
+
m as ServiceInClusterAccessColumnRenderer,
|
|
211
213
|
bZ as ServiceInClusterAccessComponent,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
214
|
+
l as ServiceInClusterAccessTitle,
|
|
215
|
+
a_ as ServiceInnerClusterAccessField,
|
|
216
|
+
c$ as ServiceModel,
|
|
217
|
+
o as ServiceOutClusterAccessColumnRenderer,
|
|
216
218
|
b_ as ServiceOutClusterAccessComponent,
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
219
|
+
a$ as ServiceOutClusterAccessField,
|
|
220
|
+
n as ServiceOutClusterAccessTitle,
|
|
221
|
+
aT as ServicePodsField,
|
|
222
|
+
bo as ServicePodsGroup,
|
|
223
|
+
k as ServiceTypeColumnRenderer,
|
|
224
|
+
c_ as ServiceTypeEnum,
|
|
225
|
+
aQ as ServiceTypeField,
|
|
226
|
+
aS as SessionAffinityField,
|
|
227
|
+
bD as ShowContent,
|
|
228
|
+
bC as ShowGroupComponent,
|
|
229
|
+
aP as StartTimeField,
|
|
228
230
|
S as StateDisplayColumnRenderer,
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
231
|
+
bG as StateTag,
|
|
232
|
+
cZ as StatefulSetModel,
|
|
233
|
+
d2 as StorageClassModel,
|
|
234
|
+
b3 as StorageClassProvisionerField,
|
|
235
|
+
b4 as StorageClassPvField,
|
|
236
|
+
bA as StorageClassPvGroup,
|
|
237
|
+
bJ as Table,
|
|
236
238
|
c4 as Tabs,
|
|
237
239
|
b$ as Tags,
|
|
238
240
|
c0 as TextTags,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
241
|
+
ac as Time,
|
|
242
|
+
a0 as ValueDisplay,
|
|
243
|
+
cR as WorkloadBaseModel,
|
|
244
|
+
ag as WorkloadDropdown,
|
|
243
245
|
W as WorkloadImageColumnRenderer,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
a5 as dnsSubDomainRules,
|
|
246
|
+
cQ as WorkloadModel,
|
|
247
|
+
ap as WorkloadPodsTable,
|
|
248
|
+
ax as WorkloadReplicas,
|
|
249
|
+
aw as WorkloadReplicasForm,
|
|
250
|
+
aD as YamlEditorComponent,
|
|
251
|
+
bW as YamlForm,
|
|
252
|
+
U as addDefaultRenderToColumns,
|
|
253
|
+
a4 as dnsSubDomainRules,
|
|
253
254
|
d as dovetailRefineI18n,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
a6 as
|
|
255
|
+
db as generateSchemaTypeValue,
|
|
256
|
+
da as generateValueFromSchema,
|
|
257
|
+
dd as getApiVersion,
|
|
258
|
+
dg as getResourceNameByKind,
|
|
259
|
+
df as matchSelector,
|
|
260
|
+
d7 as modelPlugin,
|
|
261
|
+
a8 as namespaceRules,
|
|
262
|
+
de as pruneBeforeEdit,
|
|
263
|
+
d9 as relationPlugin,
|
|
264
|
+
bS as renderCommonFormFiled,
|
|
265
|
+
dc as resolveRef,
|
|
266
|
+
a6 as rfc1035LabelRules,
|
|
267
|
+
a5 as rfc1123LabelRules,
|
|
266
268
|
r as routerProvider,
|
|
267
269
|
a as useApiGroupSchema,
|
|
268
270
|
c as useDeleteModal,
|
|
269
271
|
e as useDeleteModalOnly,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
272
|
+
X as useDownloadYAML,
|
|
273
|
+
V as useEagleTable,
|
|
274
|
+
Z as useEdit,
|
|
273
275
|
f as useFailedModal,
|
|
274
|
-
|
|
276
|
+
_ as useGlobalStore,
|
|
275
277
|
u as useNamespaceRefineFilter,
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
b as useSchema
|
|
278
|
+
bP as useNamespacesFilter,
|
|
279
|
+
$ as useOpenForm,
|
|
280
|
+
bX as useRefineForm,
|
|
281
|
+
b as useSchema,
|
|
282
|
+
dh as validateDnsSubdomain,
|
|
283
|
+
di as validateLabelKey,
|
|
284
|
+
dj as validateLabelValue
|
|
280
285
|
};
|
package/dist/style.css
CHANGED
|
@@ -1852,11 +1852,11 @@
|
|
|
1852
1852
|
/* box shadow */
|
|
1853
1853
|
/* fisheye */
|
|
1854
1854
|
/* z-index */
|
|
1855
|
-
.
|
|
1855
|
+
.c17gq8cd {
|
|
1856
1856
|
min-height: 24px !important;
|
|
1857
1857
|
}
|
|
1858
1858
|
|
|
1859
|
-
.
|
|
1859
|
+
.c1n7fiws {
|
|
1860
1860
|
width: 100%;
|
|
1861
1861
|
}/* // basic */
|
|
1862
1862
|
/* FishEye Color Variables and Functions */
|
|
@@ -3826,11 +3826,16 @@
|
|
|
3826
3826
|
/* box shadow */
|
|
3827
3827
|
/* fisheye */
|
|
3828
3828
|
/* z-index */
|
|
3829
|
-
.
|
|
3830
|
-
|
|
3829
|
+
.v154n7ie.ant-form-item {
|
|
3830
|
+
flex-direction: column !important;
|
|
3831
|
+
gap: 8px;
|
|
3831
3832
|
}
|
|
3832
3833
|
|
|
3833
3834
|
.c1c9j4da {
|
|
3835
|
+
max-width: 144px;
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3838
|
+
.cjxv8cf {
|
|
3834
3839
|
flex-basis: 58%;
|
|
3835
3840
|
width: 100%;
|
|
3836
3841
|
margin: 0 auto;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function readFileAsBase64(file: File): Promise<unknown>;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
export declare function validateDnsSubdomain(subdomain: string): {
|
|
2
|
+
isValid: boolean;
|
|
3
|
+
errorMessage?: string;
|
|
4
|
+
};
|
|
1
5
|
export declare function validateLabelKey(key: string): {
|
|
2
6
|
isValid: boolean;
|
|
3
7
|
errorMessage?: string;
|
|
4
8
|
};
|
|
5
|
-
export declare function validateLabelValue(value: string): {
|
|
9
|
+
export declare function validateLabelValue(value: string, isOptional?: boolean): {
|
|
6
10
|
isValid: boolean;
|
|
7
11
|
errorMessage?: string;
|
|
8
12
|
};
|