@dovetail-v2/refine 0.3.25-alpha.1 → 0.3.26-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/refine.cjs +3 -3
- package/dist/refine.js +3 -3
- package/package.json +1 -1
package/dist/refine.cjs
CHANGED
|
@@ -1258,8 +1258,8 @@ const container_port = "容器端口";
|
|
|
1258
1258
|
const add_port = "添加端口";
|
|
1259
1259
|
const required_field = "请填写{{ label }}。";
|
|
1260
1260
|
const length_limit = "{{ label }}支持的字符长度范围为 {{ minLength }}–{{ maxLength }}。";
|
|
1261
|
-
const rf1123_name_format_error = "
|
|
1262
|
-
const rf1035_name_format_error = "
|
|
1261
|
+
const rf1123_name_format_error = "仅支持小写字母、数字和连字符(-),并且必须以小写字母或数字开头和结尾。";
|
|
1262
|
+
const rf1035_name_format_error = "仅支持小写字母、数字和连字符(-),并且必须以小写字母开头,以小写字母或数字结尾。";
|
|
1263
1263
|
const dns_subdomain_name_format_error = "仅支持小写字母、数字、连字符(-)和点(.),并且必须以小写字母或数字开头和结尾。";
|
|
1264
1264
|
const name_duplicated = "名称已存在。";
|
|
1265
1265
|
const input_correct_port = "请填写有效的端口号。";
|
|
@@ -10015,7 +10015,7 @@ class StatefulSetModel extends WorkloadModel {
|
|
|
10015
10015
|
(controllerRevision) => {
|
|
10016
10016
|
var _a, _b;
|
|
10017
10017
|
return (_b = (_a = controllerRevision.metadata) == null ? void 0 : _a.ownerReferences) == null ? void 0 : _b.some(
|
|
10018
|
-
(ownerReference) => ownerReference.kind === "
|
|
10018
|
+
(ownerReference) => ownerReference.kind === "StatefulSet" && ownerReference.uid === this.metadata.uid
|
|
10019
10019
|
);
|
|
10020
10020
|
}
|
|
10021
10021
|
);
|
package/dist/refine.js
CHANGED
|
@@ -1239,8 +1239,8 @@ const container_port = "容器端口";
|
|
|
1239
1239
|
const add_port = "添加端口";
|
|
1240
1240
|
const required_field = "请填写{{ label }}。";
|
|
1241
1241
|
const length_limit = "{{ label }}支持的字符长度范围为 {{ minLength }}–{{ maxLength }}。";
|
|
1242
|
-
const rf1123_name_format_error = "
|
|
1243
|
-
const rf1035_name_format_error = "
|
|
1242
|
+
const rf1123_name_format_error = "仅支持小写字母、数字和连字符(-),并且必须以小写字母或数字开头和结尾。";
|
|
1243
|
+
const rf1035_name_format_error = "仅支持小写字母、数字和连字符(-),并且必须以小写字母开头,以小写字母或数字结尾。";
|
|
1244
1244
|
const dns_subdomain_name_format_error = "仅支持小写字母、数字、连字符(-)和点(.),并且必须以小写字母或数字开头和结尾。";
|
|
1245
1245
|
const name_duplicated = "名称已存在。";
|
|
1246
1246
|
const input_correct_port = "请填写有效的端口号。";
|
|
@@ -9996,7 +9996,7 @@ class StatefulSetModel extends WorkloadModel {
|
|
|
9996
9996
|
(controllerRevision) => {
|
|
9997
9997
|
var _a, _b;
|
|
9998
9998
|
return (_b = (_a = controllerRevision.metadata) == null ? void 0 : _a.ownerReferences) == null ? void 0 : _b.some(
|
|
9999
|
-
(ownerReference) => ownerReference.kind === "
|
|
9999
|
+
(ownerReference) => ownerReference.kind === "StatefulSet" && ownerReference.uid === this.metadata.uid
|
|
10000
10000
|
);
|
|
10001
10001
|
}
|
|
10002
10002
|
);
|