@nocobase/plugin-users 0.9.0-alpha.1 → 0.9.0-alpha.2
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/lib/locale/en-US.d.ts +6 -2
- package/lib/locale/en-US.js +6 -2
- package/package.json +8 -8
package/lib/locale/en-US.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"The email is incorrect, please re-enter": string;
|
|
3
|
+
"Please fill in your email address": string;
|
|
4
|
+
"The password is incorrect, please re-enter": string;
|
|
5
|
+
"Not a valid cellphone number, please re-enter": string;
|
|
6
|
+
"The phone number has been registered, please login directly": string;
|
|
7
|
+
"The phone number is not registered, please register first": string;
|
|
4
8
|
};
|
|
5
9
|
export default _default;
|
package/lib/locale/en-US.js
CHANGED
|
@@ -5,7 +5,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _default = {
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
"The email is incorrect, please re-enter": "The email is incorrect, please re-enter",
|
|
9
|
+
"Please fill in your email address": "Please fill in your email address",
|
|
10
|
+
"The password is incorrect, please re-enter": "The password is incorrect, please re-enter",
|
|
11
|
+
"Not a valid cellphone number, please re-enter": "Not a valid cellphone number, please re-enter",
|
|
12
|
+
"The phone number has been registered, please login directly": "The phone number has been registered, please login directly",
|
|
13
|
+
"The phone number is not registered, please register first": "The phone number is not registered, please register first"
|
|
10
14
|
};
|
|
11
15
|
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-users",
|
|
3
|
-
"version": "0.9.0-alpha.
|
|
3
|
+
"version": "0.9.0-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"main": "./lib/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@nocobase/actions": "0.9.0-alpha.
|
|
10
|
-
"@nocobase/database": "0.9.0-alpha.
|
|
11
|
-
"@nocobase/resourcer": "0.9.0-alpha.
|
|
12
|
-
"@nocobase/server": "0.9.0-alpha.
|
|
13
|
-
"@nocobase/utils": "0.9.0-alpha.
|
|
9
|
+
"@nocobase/actions": "0.9.0-alpha.2",
|
|
10
|
+
"@nocobase/database": "0.9.0-alpha.2",
|
|
11
|
+
"@nocobase/resourcer": "0.9.0-alpha.2",
|
|
12
|
+
"@nocobase/server": "0.9.0-alpha.2",
|
|
13
|
+
"@nocobase/utils": "0.9.0-alpha.2",
|
|
14
14
|
"json-templates": "^4.2.0",
|
|
15
15
|
"jsonwebtoken": "^8.5.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@nocobase/test": "0.9.0-alpha.
|
|
18
|
+
"@nocobase/test": "0.9.0-alpha.2",
|
|
19
19
|
"@types/jsonwebtoken": "^8.5.8"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "b8f76ad38e60e677c5bb4aab0a4cdb28d98a0f49"
|
|
22
22
|
}
|