@dovetail-v2/refine 0.3.4 → 0.3.5-alpha.0
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-cff3beeb.js → MonacoYamlEditor-b101e959.js} +1 -1
- package/dist/{MonacoYamlEditor-142a783d.cjs → MonacoYamlEditor-b2828174.cjs} +1 -1
- package/dist/components/KeyValueTableForm/index.d.ts +1 -0
- package/dist/components/MatchLabelSelector/SelectMatchLabelButton.d.ts +7 -0
- package/dist/components/MatchLabelSelector/index.d.ts +9 -0
- package/dist/components/PortsConfigForm/index.d.ts +12 -0
- package/dist/components/ResourceSelect/index.d.ts +7 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/i18n.d.ts +18 -0
- package/dist/{index-046411a8.cjs → index-16c1dab5.cjs} +1671 -527
- package/dist/{index-6b1e1f45.js → index-fe22c2ee.js} +1759 -615
- package/dist/locales/en-US/index.d.ts +7 -0
- package/dist/locales/zh-CN/index.d.ts +11 -0
- package/dist/refine.cjs +5 -1
- package/dist/refine.js +78 -74
- package/dist/style.css +88 -0
- package/dist/utils/validation.d.ts +12 -0
- package/package.json +3 -3
|
@@ -242,6 +242,13 @@ declare const _default: {
|
|
|
242
242
|
cant_delete_resource: string;
|
|
243
243
|
cant_delete_resource_with_name: string;
|
|
244
244
|
close: string;
|
|
245
|
+
tcp: string;
|
|
246
|
+
udp: string;
|
|
247
|
+
required_field: string;
|
|
248
|
+
length_limit: string;
|
|
249
|
+
resource_name_format_error: string;
|
|
250
|
+
name_duplicated: string;
|
|
251
|
+
input_correct_port: string;
|
|
245
252
|
};
|
|
246
253
|
};
|
|
247
254
|
export default _default;
|
|
@@ -244,6 +244,17 @@ declare const _default: {
|
|
|
244
244
|
import_from_file: string;
|
|
245
245
|
view_all_info: string;
|
|
246
246
|
collapse: string;
|
|
247
|
+
tcp: string;
|
|
248
|
+
udp: string;
|
|
249
|
+
specify_workload: string;
|
|
250
|
+
port_name: string;
|
|
251
|
+
container_port: string;
|
|
252
|
+
add_port: string;
|
|
253
|
+
required_field: string;
|
|
254
|
+
length_limit: string;
|
|
255
|
+
resource_name_format_error: string;
|
|
256
|
+
name_duplicated: string;
|
|
257
|
+
input_correct_port: string;
|
|
247
258
|
};
|
|
248
259
|
};
|
|
249
260
|
export default _default;
|
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-16c1dab5.cjs");
|
|
4
4
|
require("./common-1eb43414.cjs");
|
|
5
5
|
require("@cloudtower/eagle");
|
|
6
6
|
require("@refinedev/core");
|
|
@@ -99,6 +99,7 @@ exports.KeyValueTableForm = refine.KeyValueTableForm;
|
|
|
99
99
|
exports.LabelsField = refine.LabelsField;
|
|
100
100
|
exports.Layout = refine.Layout;
|
|
101
101
|
exports.ListPage = refine.ListPage;
|
|
102
|
+
exports.MatchLabelSelector = refine.MatchLabelSelector;
|
|
102
103
|
exports.Menu = refine.Menu;
|
|
103
104
|
exports.MetadataForm = refine.MetadataForm;
|
|
104
105
|
exports.ModelPlugin = refine.ModelPlugin;
|
|
@@ -164,6 +165,7 @@ exports.PodWorkloadColumnRenderer = refine.PodWorkloadColumnRenderer;
|
|
|
164
165
|
exports.PodsField = refine.PodsField;
|
|
165
166
|
exports.PodsGroup = refine.PodsGroup;
|
|
166
167
|
exports.PortMappingColumnRenderer = refine.PortMappingColumnRenderer;
|
|
168
|
+
exports.PortsConfigForm = refine.PortsConfigForm;
|
|
167
169
|
exports.PortsGroup = refine.PortsGroup;
|
|
168
170
|
exports.PortsTableField = refine.PortsTableField;
|
|
169
171
|
exports.ProviderPlugins = refine.ProviderPlugins;
|
|
@@ -269,6 +271,7 @@ exports.renderCommonFormFiled = refine.renderCommonFormFiled;
|
|
|
269
271
|
exports.resolveRef = refine.resolveRef;
|
|
270
272
|
exports.rfc1035LabelRules = refine.rfc1035LabelRules;
|
|
271
273
|
exports.rfc1123LabelRules = refine.rfc1123LabelRules;
|
|
274
|
+
exports.rfc1123NameValidator = refine.rfc1123NameValidator;
|
|
272
275
|
exports.routerProvider = refine.routerProvider;
|
|
273
276
|
exports.useApiGroupSchema = refine.useApiGroupSchema;
|
|
274
277
|
exports.useDeleteModal = refine.useDeleteModal;
|
|
@@ -286,3 +289,4 @@ exports.useSchema = refine.useSchema;
|
|
|
286
289
|
exports.validateDnsSubdomain = refine.validateDnsSubdomain;
|
|
287
290
|
exports.validateLabelKey = refine.validateLabelKey;
|
|
288
291
|
exports.validateLabelValue = refine.validateLabelValue;
|
|
292
|
+
exports.validatePort = refine.validatePort;
|
package/dist/refine.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { bQ,
|
|
1
|
+
import { bQ, cI, A, aX, aZ, aG, cg, bl, bE, a2, cu, ci, aR, T, C, j, cO, aJ, bq, ad, cQ, aj, aq, c_, ay, cj, ch, d1, aN, bx, w, aE, bG, d0, cJ, bJ, D, b2, at, bM, as, au, a1, cc, cb, c$, bj, aV, cL, ae, b_, bT, cN, cM, cP, cs, aH, ak, s, q, cR, I, bu, aU, t, M, bf, bh, ck, cT, aM, bt, ar, az, aA, a9, aB, cd, aY, aF, bH, ce, bK, aa, db, ct, cD, bP, N, a3, g, aW, a7, bS, bz, by, cS, c4, d6, i, d5, aK, br, cm, L, bb, bc, bp, H, bd, J, be, B, b6, cG, z, b5, G, b9, E, b7, F, b8, K, c5, ba, cF, ab, d9, d8, P, bn, v, af, ai, c3, bk, cX, cW, b0, bv, c9, c8, p, aL, bm, x, cf, bw, b1, da, y, cw, cK, bN, bV, bW, dd, aI, cZ, h, ah, ao, an, bO, al, cY, c7, am, cH, ca, bi, bB, av, R, Q, O, bg, cz, cC, cy, cx, cA, cB, cv, cn, cq, cr, cp, co, cl, cE, bX, aO, bs, aC, m, b$, l, a_, d4, o, c0, a$, n, aT, bo, k, d3, aQ, aS, bC, bF, bD, aP, S, bI, d2, d7, b3, b4, bA, bL, c6, c1, c2, ac, a0, cV, ag, W, cU, ap, ax, aw, aD, bY, U, a4, d, dg, df, di, dl, dk, dc, a8, dj, de, bU, dh, a6, a5, dn, r, a, c, e, X, V, Z, f, _, u, bR, $, bZ, b, dm, dp, dq, dr } from "./index-fe22c2ee.js";
|
|
2
2
|
import "./common-feae5742.js";
|
|
3
3
|
import "@cloudtower/eagle";
|
|
4
4
|
import "@refinedev/core";
|
|
@@ -18,40 +18,40 @@ import "react-hook-form";
|
|
|
18
18
|
import "antd";
|
|
19
19
|
export {
|
|
20
20
|
bQ as ALL_NS,
|
|
21
|
-
|
|
21
|
+
cI as AccessControlAuth,
|
|
22
22
|
A as AgeColumnRenderer,
|
|
23
23
|
aX as AgeField,
|
|
24
24
|
aZ as AnnotationsField,
|
|
25
25
|
aG as AreaType,
|
|
26
|
-
|
|
26
|
+
cg as BASE_INIT_VALUE,
|
|
27
27
|
bl as BasicGroup,
|
|
28
28
|
bE as BasicShowGroupComponent,
|
|
29
29
|
a2 as Breadcrumb,
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
cu as CONFIG_MAP_INIT_VALUE,
|
|
31
|
+
ci as CRONJOB_INIT_VALUE,
|
|
32
32
|
aR as ClusterIpField,
|
|
33
33
|
T as ColumnKeys,
|
|
34
34
|
C as CommonSorter,
|
|
35
35
|
j as CompletionsCountColumnRenderer,
|
|
36
|
-
|
|
36
|
+
cO as ComponentContext,
|
|
37
37
|
aJ as ConditionsField,
|
|
38
38
|
bq as ConditionsGroup,
|
|
39
39
|
ad as ConditionsTable,
|
|
40
|
-
|
|
40
|
+
cQ as ConfigsContext,
|
|
41
41
|
aj as CreateButton,
|
|
42
42
|
aq as CronJobDropdown,
|
|
43
|
-
|
|
43
|
+
c_ as CronJobModel,
|
|
44
44
|
ay as CronjobJobsTable,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
cj as DAEMONSET_INIT_VALUE,
|
|
46
|
+
ch as DEPLOYMENT_INIT_VALUE,
|
|
47
|
+
d1 as DaemonSetModel,
|
|
48
48
|
aN as DataField,
|
|
49
49
|
bx as DataGroup,
|
|
50
50
|
w as DataKeysColumnRenderer,
|
|
51
51
|
aE as DeleteButton,
|
|
52
52
|
bG as DeleteManyButton,
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
d0 as DeploymentModel,
|
|
54
|
+
cJ as Dovetail,
|
|
55
55
|
bJ as DrawerShow,
|
|
56
56
|
D as DurationColumnRenderer,
|
|
57
57
|
b2 as DurationField,
|
|
@@ -62,22 +62,22 @@ export {
|
|
|
62
62
|
a1 as ErrorContent,
|
|
63
63
|
cc as ErrorContentType,
|
|
64
64
|
cb as ErrorWrapper,
|
|
65
|
-
|
|
65
|
+
c$ as EventModel,
|
|
66
66
|
bj as EventsTab,
|
|
67
67
|
aV as EventsTableTabField,
|
|
68
|
-
|
|
68
|
+
cL as FormContainerType,
|
|
69
69
|
ae as FormErrorAlert,
|
|
70
70
|
b_ as FormItemLayout,
|
|
71
71
|
bT as FormModal,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
cN as FormMode,
|
|
73
|
+
cM as FormType,
|
|
74
|
+
cP as GlobalStoreContext,
|
|
75
|
+
cs as INGRESS_INIT_VALUE,
|
|
76
76
|
aH as ImageField,
|
|
77
77
|
ak as ImageNames,
|
|
78
78
|
s as IngressClassColumnRenderer,
|
|
79
79
|
q as IngressDefaultBackendColumnRenderer,
|
|
80
|
-
|
|
80
|
+
cR as IngressModel,
|
|
81
81
|
I as IngressRulesColumnRenderer,
|
|
82
82
|
bu as IngressRulesGroup,
|
|
83
83
|
aU as IngressRulesTableTabField,
|
|
@@ -85,8 +85,8 @@ export {
|
|
|
85
85
|
M as IsDefaultSCColumnRenderer,
|
|
86
86
|
bf as IsDefaultSCField,
|
|
87
87
|
bh as IsSCAllowVolumeExpansionField,
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
ck as JOB_INIT_VALUE,
|
|
89
|
+
cT as JobModel,
|
|
90
90
|
aM as JobsField,
|
|
91
91
|
bt as JobsGroup,
|
|
92
92
|
ar as K8sDropdown,
|
|
@@ -98,11 +98,12 @@ export {
|
|
|
98
98
|
aY as LabelsField,
|
|
99
99
|
aF as Layout,
|
|
100
100
|
bH as ListPage,
|
|
101
|
+
ce as MatchLabelSelector,
|
|
101
102
|
bK as Menu,
|
|
102
103
|
aa as MetadataForm,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
db as ModelPlugin,
|
|
105
|
+
ct as NETWORK_POLICY_INIT_VALUE,
|
|
106
|
+
cD as NODE_INIT_VALUE,
|
|
106
107
|
bP as NS_STORE_KEY,
|
|
107
108
|
N as NameColumnRenderer,
|
|
108
109
|
a3 as NameInputWidget,
|
|
@@ -112,14 +113,14 @@ export {
|
|
|
112
113
|
bS as NamespacesFilter,
|
|
113
114
|
bz as NetworkPolicyEgressRulesGroup,
|
|
114
115
|
by as NetworkPolicyIngressRulesGroup,
|
|
115
|
-
|
|
116
|
+
cS as NetworkPolicyModel,
|
|
116
117
|
c4 as NetworkPolicyRulesViewer,
|
|
117
|
-
|
|
118
|
+
d6 as NodeModel,
|
|
118
119
|
i as NodeNameColumnRenderer,
|
|
119
|
-
|
|
120
|
+
d5 as NodeRole,
|
|
120
121
|
aK as NodeTaintsField,
|
|
121
122
|
br as NodeTaintsGroup,
|
|
122
|
-
|
|
123
|
+
cm as POD_INIT_VALUE,
|
|
123
124
|
L as PVAccessModeColumnRenderer,
|
|
124
125
|
bb as PVAccessModeField,
|
|
125
126
|
bc as PVCPodsField,
|
|
@@ -130,7 +131,7 @@ export {
|
|
|
130
131
|
be as PVCSIRefField,
|
|
131
132
|
B as PVCStorageColumnRenderer,
|
|
132
133
|
b6 as PVCStorageField,
|
|
133
|
-
|
|
134
|
+
cG as PVC_INIT_VALUE,
|
|
134
135
|
z as PVCapacityColumnRenderer,
|
|
135
136
|
b5 as PVCapacityField,
|
|
136
137
|
G as PVPhaseColumnRenderer,
|
|
@@ -142,10 +143,10 @@ export {
|
|
|
142
143
|
K as PVVolumeModeColumnRenderer,
|
|
143
144
|
c5 as PVVolumeModeDisplay,
|
|
144
145
|
ba as PVVolumeModeField,
|
|
145
|
-
|
|
146
|
+
cF as PV_INIT_VALUE,
|
|
146
147
|
ab as PageShow,
|
|
147
|
-
|
|
148
|
-
|
|
148
|
+
d9 as PersistentVolumeClaimModel,
|
|
149
|
+
d8 as PersistentVolumeModel,
|
|
149
150
|
P as PlainTextNameColumnRenderer,
|
|
150
151
|
bn as PodContainersGroup,
|
|
151
152
|
v as PodContainersNumColumnRenderer,
|
|
@@ -153,8 +154,8 @@ export {
|
|
|
153
154
|
ai as PodDropdown,
|
|
154
155
|
c3 as PodLog,
|
|
155
156
|
bk as PodLogTab,
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
cX as PodMetricsModel,
|
|
158
|
+
cW as PodModel,
|
|
158
159
|
b0 as PodSelectorField,
|
|
159
160
|
bv as PodSelectorGroup,
|
|
160
161
|
c9 as PodShell,
|
|
@@ -163,28 +164,29 @@ export {
|
|
|
163
164
|
aL as PodsField,
|
|
164
165
|
bm as PodsGroup,
|
|
165
166
|
x as PortMappingColumnRenderer,
|
|
167
|
+
cf as PortsConfigForm,
|
|
166
168
|
bw as PortsGroup,
|
|
167
169
|
b1 as PortsTableField,
|
|
168
|
-
|
|
170
|
+
da as ProviderPlugins,
|
|
169
171
|
y as ProvisionerColumnRenderer,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
+
cw as REDEPLOY_TIMESTAMP_KEY,
|
|
173
|
+
cK as RESOURCE_GROUP,
|
|
172
174
|
bN as ReferenceLink,
|
|
173
175
|
bV as RefineFormContent,
|
|
174
176
|
bW as RefineFormPage,
|
|
175
|
-
|
|
177
|
+
dd as RelationPlugin,
|
|
176
178
|
aI as ReplicaField,
|
|
177
|
-
|
|
179
|
+
cZ as ReplicaSetModel,
|
|
178
180
|
h as ReplicasColumnRenderer,
|
|
179
181
|
ah as ReplicasDropdown,
|
|
180
182
|
ao as ResourceCRUD,
|
|
181
183
|
an as ResourceForm,
|
|
182
184
|
bO as ResourceLink,
|
|
183
185
|
al as ResourceList,
|
|
184
|
-
|
|
186
|
+
cY as ResourceModel,
|
|
185
187
|
c7 as ResourceSelect,
|
|
186
188
|
am as ResourceShow,
|
|
187
|
-
|
|
189
|
+
cH as ResourceState,
|
|
188
190
|
ca as ResourceTable,
|
|
189
191
|
bi as ResourceTableField,
|
|
190
192
|
bB as ResourceTableGroup,
|
|
@@ -193,20 +195,20 @@ export {
|
|
|
193
195
|
Q as SCAllowExpandColumnRenderer,
|
|
194
196
|
O as SCReclaimPolicyColumnRenderer,
|
|
195
197
|
bg as SCReclaimPolicyField,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
198
|
+
cz as SECRET_BASIC_AUTH_INIT_VALUE,
|
|
199
|
+
cC as SECRET_CUSTOM_INIT_VALUE,
|
|
200
|
+
cy as SECRET_IMAGE_REPO_INIT_VALUE,
|
|
201
|
+
cx as SECRET_OPAQUE_INIT_VALUE,
|
|
202
|
+
cA as SECRET_SSH_AUTH_INIT_VALUE,
|
|
203
|
+
cB as SECRET_TLS_INIT_VALUE,
|
|
204
|
+
cv as SERVER_INSTANCE_INIT_VALUE,
|
|
205
|
+
cn as SERVICE_CLUSTER_IP_INIT_VALUE,
|
|
206
|
+
cq as SERVICE_EXTERNAL_NAME_INIT_VALUE,
|
|
207
|
+
cr as SERVICE_HEADLESS_INIT_VALUE,
|
|
208
|
+
cp as SERVICE_LOAD_BALANCER_INIT_VALUE,
|
|
209
|
+
co as SERVICE_NODE_PORT_INIT_VALUE,
|
|
210
|
+
cl as STATEFULSET_INIT_VALUE,
|
|
211
|
+
cE as STORAGE_CLASS_INIT_VALUE,
|
|
210
212
|
bX as SchemaStrategy,
|
|
211
213
|
aO as SecretDataField,
|
|
212
214
|
bs as SecretDataGroup,
|
|
@@ -215,7 +217,7 @@ export {
|
|
|
215
217
|
b$ as ServiceInClusterAccessComponent,
|
|
216
218
|
l as ServiceInClusterAccessTitle,
|
|
217
219
|
a_ as ServiceInnerClusterAccessField,
|
|
218
|
-
|
|
220
|
+
d4 as ServiceModel,
|
|
219
221
|
o as ServiceOutClusterAccessColumnRenderer,
|
|
220
222
|
c0 as ServiceOutClusterAccessComponent,
|
|
221
223
|
a$ as ServiceOutClusterAccessField,
|
|
@@ -223,7 +225,7 @@ export {
|
|
|
223
225
|
aT as ServicePodsField,
|
|
224
226
|
bo as ServicePodsGroup,
|
|
225
227
|
k as ServiceTypeColumnRenderer,
|
|
226
|
-
|
|
228
|
+
d3 as ServiceTypeEnum,
|
|
227
229
|
aQ as ServiceTypeField,
|
|
228
230
|
aS as SessionAffinityField,
|
|
229
231
|
bC as ShowContent,
|
|
@@ -232,8 +234,8 @@ export {
|
|
|
232
234
|
aP as StartTimeField,
|
|
233
235
|
S as StateDisplayColumnRenderer,
|
|
234
236
|
bI as StateTag,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
+
d2 as StatefulSetModel,
|
|
238
|
+
d7 as StorageClassModel,
|
|
237
239
|
b3 as StorageClassProvisionerField,
|
|
238
240
|
b4 as StorageClassPvField,
|
|
239
241
|
bA as StorageClassPvGroup,
|
|
@@ -243,10 +245,10 @@ export {
|
|
|
243
245
|
c2 as TextTags,
|
|
244
246
|
ac as Time,
|
|
245
247
|
a0 as ValueDisplay,
|
|
246
|
-
|
|
248
|
+
cV as WorkloadBaseModel,
|
|
247
249
|
ag as WorkloadDropdown,
|
|
248
250
|
W as WorkloadImageColumnRenderer,
|
|
249
|
-
|
|
251
|
+
cU as WorkloadModel,
|
|
250
252
|
ap as WorkloadPodsTable,
|
|
251
253
|
ax as WorkloadReplicas,
|
|
252
254
|
aw as WorkloadReplicasForm,
|
|
@@ -255,19 +257,20 @@ export {
|
|
|
255
257
|
U as addDefaultRenderToColumns,
|
|
256
258
|
a4 as dnsSubDomainRules,
|
|
257
259
|
d as dovetailRefineI18n,
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
260
|
+
dg as generateSchemaTypeValue,
|
|
261
|
+
df as generateValueFromSchema,
|
|
262
|
+
di as getApiVersion,
|
|
263
|
+
dl as getResourceNameByKind,
|
|
264
|
+
dk as matchSelector,
|
|
265
|
+
dc as modelPlugin,
|
|
264
266
|
a8 as namespaceRules,
|
|
265
|
-
|
|
266
|
-
|
|
267
|
+
dj as pruneBeforeEdit,
|
|
268
|
+
de as relationPlugin,
|
|
267
269
|
bU as renderCommonFormFiled,
|
|
268
|
-
|
|
270
|
+
dh as resolveRef,
|
|
269
271
|
a6 as rfc1035LabelRules,
|
|
270
272
|
a5 as rfc1123LabelRules,
|
|
273
|
+
dn as rfc1123NameValidator,
|
|
271
274
|
r as routerProvider,
|
|
272
275
|
a as useApiGroupSchema,
|
|
273
276
|
c as useDeleteModal,
|
|
@@ -282,7 +285,8 @@ export {
|
|
|
282
285
|
$ as useOpenForm,
|
|
283
286
|
bZ as useRefineForm,
|
|
284
287
|
b as useSchema,
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
+
dm as validateDnsSubdomain,
|
|
289
|
+
dp as validateLabelKey,
|
|
290
|
+
dq as validateLabelValue,
|
|
291
|
+
dr as validatePort
|
|
288
292
|
};
|
package/dist/style.css
CHANGED
|
@@ -4500,6 +4500,94 @@
|
|
|
4500
4500
|
/* box shadow */
|
|
4501
4501
|
/* fisheye */
|
|
4502
4502
|
/* z-index */
|
|
4503
|
+
.p19yct45 .ant-popover-inner {
|
|
4504
|
+
border-radius: 8px;
|
|
4505
|
+
}
|
|
4506
|
+
.p19yct45 .ant-popover-inner-content {
|
|
4507
|
+
padding: 0;
|
|
4508
|
+
}
|
|
4509
|
+
|
|
4510
|
+
.p2255z4 {
|
|
4511
|
+
width: 640px;
|
|
4512
|
+
}
|
|
4513
|
+
|
|
4514
|
+
.p16qejqa {
|
|
4515
|
+
margin-bottom: 24px;
|
|
4516
|
+
}
|
|
4517
|
+
|
|
4518
|
+
.pt2a81g {
|
|
4519
|
+
padding: 20px;
|
|
4520
|
+
}
|
|
4521
|
+
|
|
4522
|
+
.p19ai3gf {
|
|
4523
|
+
padding: 8px 20px;
|
|
4524
|
+
display: flex;
|
|
4525
|
+
justify-content: flex-end;
|
|
4526
|
+
gap: 8px;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.s1mk2u31.ant-select.ant-select-single {
|
|
4530
|
+
width: 357px;
|
|
4531
|
+
margin-top: 4px;
|
|
4532
|
+
margin-left: 26px;
|
|
4533
|
+
}
|
|
4534
|
+
|
|
4535
|
+
.r15cvzaq.ant-radio-group {
|
|
4536
|
+
display: flex;
|
|
4537
|
+
flex-direction: column;
|
|
4538
|
+
align-items: flex-start;
|
|
4539
|
+
margin-top: 5px;
|
|
4540
|
+
}
|
|
4541
|
+
|
|
4542
|
+
.r10scw2d.ant-radio-wrapper:not(:first-child) {
|
|
4543
|
+
margin-top: 8px;
|
|
4544
|
+
}/* // basic */
|
|
4545
|
+
/* FishEye Color Variables and Functions */
|
|
4546
|
+
/*
|
|
4547
|
+
--------------------------- Primary Color ---------------------------
|
|
4548
|
+
*/
|
|
4549
|
+
/*
|
|
4550
|
+
---------------------------When necessary to add at any time---------------------------
|
|
4551
|
+
*/
|
|
4552
|
+
/* computed */
|
|
4553
|
+
/* blue */
|
|
4554
|
+
/* green */
|
|
4555
|
+
/* yellow */
|
|
4556
|
+
/* red */
|
|
4557
|
+
/* purple */
|
|
4558
|
+
/* palette global token*/
|
|
4559
|
+
/* color opaque */
|
|
4560
|
+
/* color transparent */
|
|
4561
|
+
/* blue transparent */
|
|
4562
|
+
/* green transparent */
|
|
4563
|
+
/* yellow transparent */
|
|
4564
|
+
/* red transparent */
|
|
4565
|
+
/* gray transparent */
|
|
4566
|
+
/* white transparent */
|
|
4567
|
+
/* gradient opaque */
|
|
4568
|
+
/* blue radial gradient */
|
|
4569
|
+
/* blue linear gradient */
|
|
4570
|
+
/* green radial gradient */
|
|
4571
|
+
/* yellow radial gradient */
|
|
4572
|
+
/* red radial gradient */
|
|
4573
|
+
/* gray radial gradient */
|
|
4574
|
+
/* white to gray radial gradient */
|
|
4575
|
+
/* white to gray linear gradient */
|
|
4576
|
+
/* gradient transparent */
|
|
4577
|
+
/* secondary palette */
|
|
4578
|
+
/* purple radial gradient */
|
|
4579
|
+
/* refine alias color */
|
|
4580
|
+
/* text */
|
|
4581
|
+
/* link */
|
|
4582
|
+
/* fill */
|
|
4583
|
+
/* fill element */
|
|
4584
|
+
/* fill interaction */
|
|
4585
|
+
/* stroke */
|
|
4586
|
+
/* background */
|
|
4587
|
+
/* dim */
|
|
4588
|
+
/* box shadow */
|
|
4589
|
+
/* fisheye */
|
|
4590
|
+
/* z-index */
|
|
4503
4591
|
.dh5j833 {
|
|
4504
4592
|
border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
|
|
4505
4593
|
padding-bottom: 1px;
|
|
@@ -1,7 +1,15 @@
|
|
|
1
|
+
import { i18n as I18n } from 'i18next';
|
|
1
2
|
export declare function validateDnsSubdomain(subdomain: string): {
|
|
2
3
|
isValid: boolean;
|
|
3
4
|
errorMessage?: string;
|
|
4
5
|
};
|
|
6
|
+
export declare function rfc1123NameValidator({ v, allNames, i18n, emptyText, duplicatedText, }: {
|
|
7
|
+
v: string;
|
|
8
|
+
allNames: string[];
|
|
9
|
+
i18n: I18n;
|
|
10
|
+
emptyText?: string;
|
|
11
|
+
duplicatedText?: string;
|
|
12
|
+
}): string;
|
|
5
13
|
export declare function validateLabelKey(key: string): {
|
|
6
14
|
isValid: boolean;
|
|
7
15
|
errorMessage?: string;
|
|
@@ -10,3 +18,7 @@ export declare function validateLabelValue(value: string, isOptional?: boolean):
|
|
|
10
18
|
isValid: boolean;
|
|
11
19
|
errorMessage?: string;
|
|
12
20
|
};
|
|
21
|
+
export declare function validatePort(port: string | number, isOptional: boolean, i18n: I18n): {
|
|
22
|
+
isValid: boolean;
|
|
23
|
+
errorMessage?: string;
|
|
24
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dovetail-v2/refine",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5-alpha.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"module": "./dist/refine.js",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@cloudtower/eagle": "^0.
|
|
14
|
-
"@cloudtower/icons-react": "^0.
|
|
13
|
+
"@cloudtower/eagle": "^0.34.3",
|
|
14
|
+
"@cloudtower/icons-react": "^0.34.3",
|
|
15
15
|
"@patternfly/react-core": "^5.1.1",
|
|
16
16
|
"@patternfly/react-log-viewer": "^5.0.0",
|
|
17
17
|
"@refinedev/core": "^4.47.2",
|