@etsoo/appscript 1.6.20 → 1.6.22
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/LICENSE +1 -1
- 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/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2004-
|
|
3
|
+
Copyright (c) 2004-2025 ETSOO ® (亿速思维 ®), https://etsoo.com, https://etsoo.nz
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/lib/cjs/i18n/en.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"approve": "Approve it",
|
|
12
12
|
"approver": "Approver",
|
|
13
13
|
"back": "Back",
|
|
14
|
+
"browse": "Browse",
|
|
14
15
|
"cancel": "Cancel",
|
|
15
16
|
"changePassword": "Change password",
|
|
16
17
|
"changeReload": "{0} has just changed data, do you want to reload? Reloading will cause the current modification to be lost!",
|
package/lib/mjs/i18n/en.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"approve": "Approve it",
|
|
12
12
|
"approver": "Approver",
|
|
13
13
|
"back": "Back",
|
|
14
|
+
"browse": "Browse",
|
|
14
15
|
"cancel": "Cancel",
|
|
15
16
|
"changePassword": "Change password",
|
|
16
17
|
"changeReload": "{0} has just changed data, do you want to reload? Reloading will cause the current modification to be lost!",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.22",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/ETSOO/AppScript#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@etsoo/notificationbase": "^1.1.
|
|
39
|
-
"@etsoo/restclient": "^1.1.
|
|
40
|
-
"@etsoo/shared": "^1.2.
|
|
38
|
+
"@etsoo/notificationbase": "^1.1.60",
|
|
39
|
+
"@etsoo/restclient": "^1.1.26",
|
|
40
|
+
"@etsoo/shared": "^1.2.66",
|
|
41
41
|
"crypto-js": "^4.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@types/crypto-js": "^4.2.2",
|
|
50
50
|
"@vitejs/plugin-react": "^4.3.4",
|
|
51
51
|
"jsdom": "^26.0.0",
|
|
52
|
-
"typescript": "^5.8.
|
|
53
|
-
"vitest": "^3.
|
|
52
|
+
"typescript": "^5.8.3",
|
|
53
|
+
"vitest": "^3.1.1"
|
|
54
54
|
}
|
|
55
55
|
}
|
package/src/i18n/en.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"approve": "Approve it",
|
|
12
12
|
"approver": "Approver",
|
|
13
13
|
"back": "Back",
|
|
14
|
+
"browse": "Browse",
|
|
14
15
|
"cancel": "Cancel",
|
|
15
16
|
"changePassword": "Change password",
|
|
16
17
|
"changeReload": "{0} has just changed data, do you want to reload? Reloading will cause the current modification to be lost!",
|
package/src/i18n/zh-Hans.json
CHANGED