@nocobase/plugin-multi-app-share-collection 0.17.0-alpha.1 → 0.17.0-alpha.3

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.
@@ -1,12 +1,12 @@
1
1
  module.exports = {
2
2
  "@formily/react": "2.2.27",
3
- "@nocobase/client": "0.17.0-alpha.1",
4
- "@nocobase/plugin-multi-app-manager": "0.17.0-alpha.1",
3
+ "@nocobase/client": "0.17.0-alpha.3",
4
+ "@nocobase/plugin-multi-app-manager": "0.17.0-alpha.3",
5
5
  "antd": "5.8.6",
6
6
  "react": "18.2.0",
7
- "@nocobase/utils": "0.17.0-alpha.1",
7
+ "@nocobase/utils": "0.17.0-alpha.3",
8
8
  "react-i18next": "11.18.6",
9
- "@nocobase/server": "0.17.0-alpha.1",
9
+ "@nocobase/server": "0.17.0-alpha.3",
10
10
  "lodash": "4.17.21",
11
- "@nocobase/database": "0.17.0-alpha.1"
11
+ "@nocobase/database": "0.17.0-alpha.3"
12
12
  };
@@ -0,0 +1,12 @@
1
+ {
2
+ "Share collections": "Share collections",
3
+ "Unshared collections": "Unshared collections",
4
+ "Shared collections": "Shared collections",
5
+ "All categories": "All categories",
6
+ "Enter name or title...": "Enter name or title...",
7
+ "Are you sure to add the following collections?": "Are you sure to add the following collections?",
8
+ "Are you sure to remove the following collections?": "Are you sure to remove the following collections?",
9
+ "Collection display name": "Collection display name",
10
+ "Collection name": "Collection name",
11
+ "Collection category": "Collection category"
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "Share collections": "Tablas compartidas",
3
+ "Unshared collections": "Tablas no compartidas",
4
+ "Shared collections": "Tablas compartidas",
5
+ "All categories": "Todas las categorías",
6
+ "Enter name or title...": "Introducir nombre o título...",
7
+ "Are you sure to add the following collections?": "¿Está seguro de que desea añadir las siguientes tablas?",
8
+ "Are you sure to remove the following collections?": "¿Está seguro de que desea eliminar las siguientes tablas?",
9
+ "Collection display name": "Mostrar nombre de la tabla",
10
+ "Collection name": "Nombre de la tabla",
11
+ "Collection category": "Categoría de tabla"
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "Share collections": "Compartilhar tabelas",
3
+ "Unshared collections": "Tabelas não compartilhadas",
4
+ "Shared collections": "Tabelas compartilhadas",
5
+ "All categories": "Todas as categorias",
6
+ "Enter name or title...": "Digite o nome ou título...",
7
+ "Are you sure to add the following collections?": "Tem certeza de que deseja adicionar as seguintes tabelas?",
8
+ "Are you sure to remove the following collections?": "Tem certeza de que deseja remover as seguintes tabelas?",
9
+ "Collection display name": "Nome de exibição da tabela",
10
+ "Collection name": "Nome da tabela",
11
+ "Collection category": "Categoria da tabela"
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "Share collections": "共享数据表",
3
+ "Unshared collections": "未共享的数据表",
4
+ "Shared collections": "已共享的数据表",
5
+ "All categories": "所有分类",
6
+ "Enter name or title...": "输入数据表标题或标识",
7
+ "Are you sure to add the following collections?": "确定添加以下数据表?",
8
+ "Are you sure to remove the following collections?": "确定移除以下数据表?",
9
+ "Collection display name": "标题",
10
+ "Collection name": "标识",
11
+ "Collection category": "分类"
12
+ }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "多应用数据表共享",
5
5
  "description": "",
6
6
  "description.zh-CN": "",
7
- "version": "0.17.0-alpha.1",
7
+ "version": "0.17.0-alpha.3",
8
8
  "main": "./dist/server/index.js",
9
9
  "devDependencies": {
10
10
  "@formily/react": "2.x",
@@ -23,5 +23,5 @@
23
23
  "@nocobase/test": "0.x",
24
24
  "@nocobase/utils": "0.x"
25
25
  },
26
- "gitHead": "afbb7e79fe2633292bc161d56d23c684181632ed"
26
+ "gitHead": "8fb3aace819722ceb845ea63ec3009f324a897a9"
27
27
  }
@@ -1,13 +0,0 @@
1
- declare const _default: {
2
- 'Share collections': string;
3
- 'Unshared collections': string;
4
- 'Shared collections': string;
5
- 'All categories': string;
6
- 'Enter name or title...': string;
7
- 'Are you sure to add the following collections?': string;
8
- 'Are you sure to remove the following collections?': string;
9
- 'Collection display name': string;
10
- 'Collection name': string;
11
- 'Collection category': string;
12
- };
13
- export default _default;
@@ -1,34 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var es_ES_exports = {};
19
- __export(es_ES_exports, {
20
- default: () => es_ES_default
21
- });
22
- module.exports = __toCommonJS(es_ES_exports);
23
- var es_ES_default = {
24
- "Share collections": "Tablas compartidas",
25
- "Unshared collections": "Tablas no compartidas",
26
- "Shared collections": "Tablas compartidas",
27
- "All categories": "Todas las categor\xEDas",
28
- "Enter name or title...": "Introducir nombre o t\xEDtulo...",
29
- "Are you sure to add the following collections?": "\xBFEst\xE1 seguro de que desea a\xF1adir las siguientes tablas?",
30
- "Are you sure to remove the following collections?": "\xBFEst\xE1 seguro de que desea eliminar las siguientes tablas?",
31
- "Collection display name": "Mostrar nombre de la tabla",
32
- "Collection name": "Nombre de la tabla",
33
- "Collection category": "Categor\xEDa de tabla"
34
- };
@@ -1,13 +0,0 @@
1
- declare const _default: {
2
- 'Share collections': string;
3
- 'Unshared collections': string;
4
- 'Shared collections': string;
5
- 'All categories': string;
6
- 'Enter name or title...': string;
7
- 'Are you sure to add the following collections?': string;
8
- 'Are you sure to remove the following collections?': string;
9
- 'Collection display name': string;
10
- 'Collection name': string;
11
- 'Collection category': string;
12
- };
13
- export default _default;
@@ -1,34 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var pt_BR_exports = {};
19
- __export(pt_BR_exports, {
20
- default: () => pt_BR_default
21
- });
22
- module.exports = __toCommonJS(pt_BR_exports);
23
- var pt_BR_default = {
24
- "Share collections": "Compartilhar tabelas",
25
- "Unshared collections": "Tabelas n\xE3o compartilhadas",
26
- "Shared collections": "Tabelas compartilhadas",
27
- "All categories": "Todas as categorias",
28
- "Enter name or title...": "Digite o nome ou t\xEDtulo...",
29
- "Are you sure to add the following collections?": "Tem certeza de que deseja adicionar as seguintes tabelas?",
30
- "Are you sure to remove the following collections?": "Tem certeza de que deseja remover as seguintes tabelas?",
31
- "Collection display name": "Nome de exibi\xE7\xE3o da tabela",
32
- "Collection name": "Nome da tabela",
33
- "Collection category": "Categoria da tabela"
34
- };
@@ -1,13 +0,0 @@
1
- declare const _default: {
2
- 'Share collections': string;
3
- 'Unshared collections': string;
4
- 'Shared collections': string;
5
- 'All categories': string;
6
- 'Enter name or title...': string;
7
- 'Are you sure to add the following collections?': string;
8
- 'Are you sure to remove the following collections?': string;
9
- 'Collection display name': string;
10
- 'Collection name': string;
11
- 'Collection category': string;
12
- };
13
- export default _default;
@@ -1,34 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var zh_CN_exports = {};
19
- __export(zh_CN_exports, {
20
- default: () => zh_CN_default
21
- });
22
- module.exports = __toCommonJS(zh_CN_exports);
23
- var zh_CN_default = {
24
- "Share collections": "\u5171\u4EAB\u6570\u636E\u8868",
25
- "Unshared collections": "\u672A\u5171\u4EAB\u7684\u6570\u636E\u8868",
26
- "Shared collections": "\u5DF2\u5171\u4EAB\u7684\u6570\u636E\u8868",
27
- "All categories": "\u6240\u6709\u5206\u7C7B",
28
- "Enter name or title...": "\u8F93\u5165\u6570\u636E\u8868\u6807\u9898\u6216\u6807\u8BC6",
29
- "Are you sure to add the following collections?": "\u786E\u5B9A\u6DFB\u52A0\u4EE5\u4E0B\u6570\u636E\u8868\uFF1F",
30
- "Are you sure to remove the following collections?": "\u786E\u5B9A\u79FB\u9664\u4EE5\u4E0B\u6570\u636E\u8868\uFF1F",
31
- "Collection display name": "\u6807\u9898",
32
- "Collection name": "\u6807\u8BC6",
33
- "Collection category": "\u5206\u7C7B"
34
- };