@airpower/web 0.3.0 → 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/i18n/WebI18n.d.ts +1 -1
- package/dist/main.js +2 -2
- package/package.json +1 -1
package/dist/i18n/WebI18n.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare class WebI18n extends I18n {
|
|
|
51
51
|
InvalidIntegerNumber: string;
|
|
52
52
|
InvalidNaturalNumber: string;
|
|
53
53
|
InvalidMobilePhone: string;
|
|
54
|
-
|
|
54
|
+
ConfirmToComplete: string;
|
|
55
55
|
InvalidContain: string;
|
|
56
56
|
Import: string;
|
|
57
57
|
ImportSuccess: string;
|
package/dist/main.js
CHANGED
|
@@ -2184,7 +2184,7 @@ class WebI18n extends I18n {
|
|
|
2184
2184
|
__publicField(this, "InvalidIntegerNumber", "请输入正确的整数");
|
|
2185
2185
|
__publicField(this, "InvalidNaturalNumber", "只允许输入非负数字");
|
|
2186
2186
|
__publicField(this, "InvalidMobilePhone", "请输入正确的手机号");
|
|
2187
|
-
__publicField(this, "
|
|
2187
|
+
__publicField(this, "ConfirmToComplete", "请确认填写完整");
|
|
2188
2188
|
__publicField(this, "InvalidContain", "不允许输入中包含");
|
|
2189
2189
|
__publicField(this, "Import", "导入");
|
|
2190
2190
|
__publicField(this, "ImportSuccess", "数据导入成功");
|
|
@@ -19004,7 +19004,7 @@ class WebValidator {
|
|
|
19004
19004
|
ifEmpty() {
|
|
19005
19005
|
this.required = true;
|
|
19006
19006
|
if (!this.message) {
|
|
19007
|
-
this.message = WebI18n.get().
|
|
19007
|
+
this.message = WebI18n.get().ConfirmToComplete;
|
|
19008
19008
|
}
|
|
19009
19009
|
return this;
|
|
19010
19010
|
}
|