@nocobase/plugin-client 0.9.4-alpha.2 → 0.10.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.json +1 -1
- package/lib/locale/es-ES.json +1 -1
- package/lib/locale/pt-BR.json +1 -1
- package/lib/locale/zh-CN.json +1 -1
- package/lib/server.js +0 -19
- package/package.json +8 -4
package/lib/locale/en-US.json
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
"User": "User",
|
|
580
580
|
"Field": "Field",
|
|
581
581
|
"Select": "Select",
|
|
582
|
-
"Select
|
|
582
|
+
"Select field": "Select field",
|
|
583
583
|
"Field value changes": "Field value changes",
|
|
584
584
|
"One to one (has one)": "One to one (has one)",
|
|
585
585
|
"One to one (belongs to)": "One to one (belongs to)",
|
package/lib/locale/es-ES.json
CHANGED
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
"User": "Usuario",
|
|
639
639
|
"Field": "Campo",
|
|
640
640
|
"Select": "Seleccionar",
|
|
641
|
-
"Select
|
|
641
|
+
"Select field": "Seleccionar campo",
|
|
642
642
|
"Field value changes": "Cambios en el valor del campo",
|
|
643
643
|
"One to one (has one)": "Uno a uno (tiene uno)",
|
|
644
644
|
"One to one (belongs to)": "Uno a uno (pertenece a)",
|
package/lib/locale/pt-BR.json
CHANGED
|
@@ -563,7 +563,7 @@
|
|
|
563
563
|
"User": "Usuário",
|
|
564
564
|
"Field": "Campo",
|
|
565
565
|
"Select": "Selecionar",
|
|
566
|
-
"Select
|
|
566
|
+
"Select field": "Selecionar campo",
|
|
567
567
|
"Field value changes": "Alterações no valor do campo",
|
|
568
568
|
"One to one (has one)": "Um para um (tem um)",
|
|
569
569
|
"One to one (belongs to)": "Um para um (pertence a)",
|
package/lib/locale/zh-CN.json
CHANGED
package/lib/server.js
CHANGED
|
@@ -279,25 +279,6 @@ class ClientPlugin extends _server().Plugin {
|
|
|
279
279
|
_this2.app.resource({
|
|
280
280
|
name: 'plugins',
|
|
281
281
|
actions: {
|
|
282
|
-
// TODO: 临时
|
|
283
|
-
getPinned(ctx, next) {
|
|
284
|
-
return _asyncToGenerator(function* () {
|
|
285
|
-
ctx.body = [{
|
|
286
|
-
component: 'CollectionManagerShortcut'
|
|
287
|
-
}, {
|
|
288
|
-
component: 'ACLShortcut'
|
|
289
|
-
}, {
|
|
290
|
-
component: 'WorkflowShortcut'
|
|
291
|
-
}, {
|
|
292
|
-
component: 'SchemaTemplateShortcut'
|
|
293
|
-
}, {
|
|
294
|
-
component: 'SystemSettingsShortcut'
|
|
295
|
-
}, {
|
|
296
|
-
component: 'FileStorageShortcut'
|
|
297
|
-
}];
|
|
298
|
-
yield next();
|
|
299
|
-
})();
|
|
300
|
-
},
|
|
301
282
|
getInfo(ctx, next) {
|
|
302
283
|
return _asyncToGenerator(function* () {
|
|
303
284
|
const lang = yield getLang(ctx);
|
package/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-client",
|
|
3
|
-
"
|
|
3
|
+
"displayName": "client",
|
|
4
|
+
"displayName.zh-CN": "客户端",
|
|
5
|
+
"description": "client",
|
|
6
|
+
"description.zh-CN": "客户端。",
|
|
7
|
+
"version": "0.10.0-alpha.2",
|
|
4
8
|
"main": "lib/index.js",
|
|
5
9
|
"license": "AGPL-3.0",
|
|
6
10
|
"dependencies": {
|
|
7
|
-
"@nocobase/server": "0.
|
|
11
|
+
"@nocobase/server": "0.10.0-alpha.2"
|
|
8
12
|
},
|
|
9
13
|
"devDependencies": {
|
|
10
|
-
"@nocobase/test": "0.
|
|
14
|
+
"@nocobase/test": "0.10.0-alpha.2"
|
|
11
15
|
},
|
|
12
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "85028ae1733fcbd46ecd5d291dacbdc175f7f073"
|
|
13
17
|
}
|