@etsoo/appscript 1.3.58 → 1.3.59
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/cjs/i18n/en.json +1 -0
- package/lib/cjs/i18n/zh-Hans.json +1 -0
- package/lib/cjs/i18n/zh-Hant.json +1 -0
- package/lib/mjs/i18n/en.json +1 -0
- package/lib/mjs/i18n/zh-Hans.json +1 -0
- package/lib/mjs/i18n/zh-Hant.json +1 -0
- package/package.json +6 -6
- package/src/i18n/en.json +1 -0
- package/src/i18n/zh-Hans.json +1 -0
- package/src/i18n/zh-Hant.json +1 -0
package/lib/cjs/i18n/en.json
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
110
110
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
111
111
|
"pdf": "PDF",
|
|
112
|
+
"pinYin": "Pinyin Initials",
|
|
112
113
|
"previousStep": "Previous",
|
|
113
114
|
"print": "Print",
|
|
114
115
|
"prompt": "Input",
|
package/lib/mjs/i18n/en.json
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
110
110
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
111
111
|
"pdf": "PDF",
|
|
112
|
+
"pinYin": "Pinyin Initials",
|
|
112
113
|
"previousStep": "Previous",
|
|
113
114
|
"print": "Print",
|
|
114
115
|
"prompt": "Input",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.59",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"@babel/core": "^7.20.12",
|
|
64
64
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
65
65
|
"@babel/preset-env": "^7.20.2",
|
|
66
|
-
"@babel/runtime-corejs3": "^7.20.
|
|
67
|
-
"@types/jest": "^29.
|
|
68
|
-
"jest": "^29.
|
|
69
|
-
"jest-environment-jsdom": "^29.
|
|
70
|
-
"ts-jest": "^29.0.
|
|
66
|
+
"@babel/runtime-corejs3": "^7.20.13",
|
|
67
|
+
"@types/jest": "^29.4.0",
|
|
68
|
+
"jest": "^29.4.1",
|
|
69
|
+
"jest-environment-jsdom": "^29.4.1",
|
|
70
|
+
"ts-jest": "^29.0.5",
|
|
71
71
|
"typescript": "^4.9.4"
|
|
72
72
|
}
|
|
73
73
|
}
|
package/src/i18n/en.json
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"passwordRepeatError": "The two passwords entered are inconsistent",
|
|
110
110
|
"passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
|
|
111
111
|
"pdf": "PDF",
|
|
112
|
+
"pinYin": "Pinyin Initials",
|
|
112
113
|
"previousStep": "Previous",
|
|
113
114
|
"print": "Print",
|
|
114
115
|
"prompt": "Input",
|
package/src/i18n/zh-Hans.json
CHANGED