@nocobase/plugin-client 0.9.4-alpha.1 → 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.
@@ -579,7 +579,7 @@
579
579
  "User": "User",
580
580
  "Field": "Field",
581
581
  "Select": "Select",
582
- "Select Field": "Select Field",
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)",
@@ -638,7 +638,7 @@
638
638
  "User": "Usuario",
639
639
  "Field": "Campo",
640
640
  "Select": "Seleccionar",
641
- "Select Field": "Seleccionar campo",
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)",
@@ -563,7 +563,7 @@
563
563
  "User": "Usuário",
564
564
  "Field": "Campo",
565
565
  "Select": "Selecionar",
566
- "Select Field": "Selecionar campo",
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)",
@@ -580,7 +580,7 @@
580
580
  "User": "用户",
581
581
  "Field": "字段",
582
582
  "Select": "选择",
583
- "Select Field": "选择字段",
583
+ "Select field": "选择字段",
584
584
  "Field value changes": "变更记录",
585
585
  "One to one (has one)": "一对一(has one)",
586
586
  "One to one (belongs to)": "一对一(belongs to)",
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
- "version": "0.9.4-alpha.1",
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.9.4-alpha.1"
11
+ "@nocobase/server": "0.10.0-alpha.2"
8
12
  },
9
13
  "devDependencies": {
10
- "@nocobase/test": "0.9.4-alpha.1"
14
+ "@nocobase/test": "0.10.0-alpha.2"
11
15
  },
12
- "gitHead": "0b4936be557be918dbdf8196dadcbc7eb395906d"
16
+ "gitHead": "85028ae1733fcbd46ecd5d291dacbdc175f7f073"
13
17
  }