@nocobase/plugin-charts 1.3.0-alpha.20240710084543 → 1.3.0-alpha.20240710155619

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.
Files changed (84) hide show
  1. package/dist/client/ChartBlockEngine.d.ts +36 -0
  2. package/dist/client/ChartBlockEngineDesigner.d.ts +12 -0
  3. package/dist/client/ChartBlockInitializer.d.ts +11 -0
  4. package/dist/client/ChartQueryBlockInitializer.d.ts +18 -0
  5. package/dist/client/ChartQueryMetadataProvider.d.ts +18 -0
  6. package/dist/client/DataSetPreviewTable.d.ts +14 -0
  7. package/dist/client/Icons.d.ts +9 -0
  8. package/dist/client/chartRenderComponents/index.d.ts +10 -0
  9. package/dist/client/hooks/index.d.ts +12 -0
  10. package/dist/client/index.d.ts +15 -0
  11. package/dist/client/index.js +53 -0
  12. package/dist/client/locale/index.d.ts +11 -0
  13. package/dist/client/select/CustomSelect.d.ts +19 -0
  14. package/dist/client/select/ReadPretty.d.ts +10 -0
  15. package/dist/client/select/index.d.ts +10 -0
  16. package/dist/client/select/shared.d.ts +15 -0
  17. package/dist/client/settings/AddNewQuery.d.ts +11 -0
  18. package/dist/client/settings/ConfigureFields.d.ts +10 -0
  19. package/dist/client/settings/QueriesTable.d.ts +10 -0
  20. package/dist/client/settings/queryTypes.d.ts +13 -0
  21. package/dist/client/settings/schemas/chartsQueries.d.ts +16 -0
  22. package/dist/client/templates/AreaTemplate.d.ts +73 -0
  23. package/dist/client/templates/BarTemplate.d.ts +88 -0
  24. package/dist/client/templates/ColumnTemplate.d.ts +88 -0
  25. package/dist/client/templates/FunnelTemplate.d.ts +74 -0
  26. package/dist/client/templates/LineTemplate.d.ts +75 -0
  27. package/dist/client/templates/PieTemplate.d.ts +79 -0
  28. package/dist/client/templates/RadarTemplate.d.ts +79 -0
  29. package/dist/client/templates/ScatterTemplate.d.ts +99 -0
  30. package/dist/client/templates/TableTemplate.d.ts +36 -0
  31. package/dist/client/templates/index.d.ts +9 -0
  32. package/dist/client/utils.d.ts +11 -0
  33. package/dist/externalVersion.js +25 -0
  34. package/dist/index.d.ts +10 -0
  35. package/dist/index.js +48 -0
  36. package/dist/locale/en-US.d.ts +31 -0
  37. package/dist/locale/en-US.js +53 -0
  38. package/dist/locale/es-ES.d.ts +61 -0
  39. package/dist/locale/es-ES.js +83 -0
  40. package/dist/locale/fr-FR.d.ts +10 -0
  41. package/dist/locale/fr-FR.js +32 -0
  42. package/dist/locale/ja-JP.d.ts +10 -0
  43. package/dist/locale/ja-JP.js +32 -0
  44. package/dist/locale/ko_KR.d.ts +70 -0
  45. package/dist/locale/ko_KR.js +92 -0
  46. package/dist/locale/pt-BR.d.ts +31 -0
  47. package/dist/locale/pt-BR.js +53 -0
  48. package/dist/locale/ru-RU.d.ts +10 -0
  49. package/dist/locale/ru-RU.js +32 -0
  50. package/dist/locale/tr-TR.d.ts +10 -0
  51. package/dist/locale/tr-TR.js +32 -0
  52. package/dist/locale/zh-CN.d.ts +70 -0
  53. package/dist/locale/zh-CN.js +92 -0
  54. package/dist/node_modules/json5/dist/index.js +1737 -0
  55. package/dist/node_modules/json5/dist/index.min.js +1 -0
  56. package/dist/node_modules/json5/lib/cli.js +152 -0
  57. package/dist/node_modules/json5/lib/index.d.ts +4 -0
  58. package/dist/node_modules/json5/lib/index.js +1 -0
  59. package/dist/node_modules/json5/lib/parse.d.ts +15 -0
  60. package/dist/node_modules/json5/lib/parse.js +1114 -0
  61. package/dist/node_modules/json5/lib/register.js +13 -0
  62. package/dist/node_modules/json5/lib/require.js +4 -0
  63. package/dist/node_modules/json5/lib/stringify.d.ts +89 -0
  64. package/dist/node_modules/json5/lib/stringify.js +261 -0
  65. package/dist/node_modules/json5/lib/unicode.d.ts +3 -0
  66. package/dist/node_modules/json5/lib/unicode.js +4 -0
  67. package/dist/node_modules/json5/lib/util.d.ts +5 -0
  68. package/dist/node_modules/json5/lib/util.js +35 -0
  69. package/dist/node_modules/json5/package.json +1 -0
  70. package/dist/server/actions/chartsQueries.d.ts +11 -0
  71. package/dist/server/actions/chartsQueries.js +95 -0
  72. package/dist/server/actions/index.d.ts +8 -0
  73. package/dist/server/actions/index.js +9 -0
  74. package/dist/server/collections/chartsQueries.d.ts +10 -0
  75. package/dist/server/collections/chartsQueries.js +56 -0
  76. package/dist/server/index.d.ts +9 -0
  77. package/dist/server/index.js +42 -0
  78. package/dist/server/plugin.d.ts +22 -0
  79. package/dist/server/plugin.js +98 -0
  80. package/dist/server/query.d.ts +20 -0
  81. package/dist/server/query.js +68 -0
  82. package/dist/server/shared/index.d.ts +10 -0
  83. package/dist/server/shared/index.js +36 -0
  84. package/package.json +2 -2
package/dist/index.js ADDED
@@ -0,0 +1,48 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __create = Object.create;
11
+ var __defProp = Object.defineProperty;
12
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13
+ var __getOwnPropNames = Object.getOwnPropertyNames;
14
+ var __getProtoOf = Object.getPrototypeOf;
15
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
16
+ var __export = (target, all) => {
17
+ for (var name in all)
18
+ __defProp(target, name, { get: all[name], enumerable: true });
19
+ };
20
+ var __copyProps = (to, from, except, desc) => {
21
+ if (from && typeof from === "object" || typeof from === "function") {
22
+ for (let key of __getOwnPropNames(from))
23
+ if (!__hasOwnProp.call(to, key) && key !== except)
24
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
25
+ }
26
+ return to;
27
+ };
28
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
29
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
30
+ // If the importer is in node compatibility mode or this is not an ESM
31
+ // file that has been converted to a CommonJS file using a Babel-
32
+ // compatible transform (i.e. "__esModule" has not been set), then set
33
+ // "default" to the CommonJS "module.exports" for node compatibility.
34
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
35
+ mod
36
+ ));
37
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
38
+ var src_exports = {};
39
+ __export(src_exports, {
40
+ default: () => import_server.default
41
+ });
42
+ module.exports = __toCommonJS(src_exports);
43
+ __reExport(src_exports, require("./server"), module.exports);
44
+ var import_server = __toESM(require("./server"));
45
+ // Annotate the CommonJS export names for ESM import in node:
46
+ 0 && (module.exports = {
47
+ ...require("./server")
48
+ });
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {
10
+ Edit: string;
11
+ Delete: string;
12
+ Cancel: string;
13
+ Submit: string;
14
+ Actions: string;
15
+ Title: string;
16
+ Enable: string;
17
+ 'SAML manager': string;
18
+ 'SAML Providers': string;
19
+ 'Redirect url': string;
20
+ 'SP entity id': string;
21
+ 'Add provider': string;
22
+ 'Edit provider': string;
23
+ 'Client id': string;
24
+ 'Entity id or issuer': string;
25
+ 'Login Url': string;
26
+ 'Public cert': string;
27
+ 'Delete provider': string;
28
+ 'Are you sure you want to delete it?': string;
29
+ 'Sign in button name, which will be displayed on the sign in page': string;
30
+ };
31
+ export default _default;
@@ -0,0 +1,53 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var en_US_exports = {};
28
+ __export(en_US_exports, {
29
+ default: () => en_US_default
30
+ });
31
+ module.exports = __toCommonJS(en_US_exports);
32
+ var en_US_default = {
33
+ Edit: "Edit",
34
+ Delete: "Delete",
35
+ Cancel: "Cancel",
36
+ Submit: "Submit",
37
+ Actions: "Actions",
38
+ Title: "Title",
39
+ Enable: "Enable",
40
+ "SAML manager": "SAML manager",
41
+ "SAML Providers": "SAML Providers",
42
+ "Redirect url": "Redirect url",
43
+ "SP entity id": "SP entity id",
44
+ "Add provider": "Add",
45
+ "Edit provider": "Edit",
46
+ "Client id": "Client id",
47
+ "Entity id or issuer": "Entity id or issuer",
48
+ "Login Url": "Login Url",
49
+ "Public cert": "Public cert",
50
+ "Delete provider": "Delete",
51
+ "Are you sure you want to delete it?": "Are you sure you want to delete it?",
52
+ "Sign in button name, which will be displayed on the sign in page": "Sign in button name, which will be displayed on the sign in page"
53
+ };
@@ -0,0 +1,61 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {
10
+ Edit: string;
11
+ Delete: string;
12
+ Cancel: string;
13
+ Submit: string;
14
+ Actions: string;
15
+ Title: string;
16
+ Enable: string;
17
+ Chart: string;
18
+ Charts: string;
19
+ Queries: string;
20
+ "Select chart query": string;
21
+ "Select query data": string;
22
+ Type: string;
23
+ "Chart type": string;
24
+ "Chart title": string;
25
+ "Basic charts": string;
26
+ "More charts": string;
27
+ "Chart config": string;
28
+ "Add query": string;
29
+ "Edit query": string;
30
+ "Invalid JSON format,must be an object array.": string;
31
+ Area: string;
32
+ Bar: string;
33
+ Column: string;
34
+ Funnel: string;
35
+ Line: string;
36
+ Pie: string;
37
+ Radar: string;
38
+ Scatter: string;
39
+ "Edit chart block": string;
40
+ "Chart preview": string;
41
+ "Delete queries": string;
42
+ "Delete query": string;
43
+ "Add chart query": string;
44
+ "Add SQL query": string;
45
+ "Add JSON query": string;
46
+ "Data preview": string;
47
+ "Category axis / Dimension": string;
48
+ "Value axis / Metrics": string;
49
+ "JSON config": string;
50
+ "Create chart block": string;
51
+ "Invalid JSON format": string;
52
+ "Json config references": string;
53
+ "Sector Angle / Metric": string;
54
+ "Sector label / Dimensional": string;
55
+ "Color legend / Dimensional": string;
56
+ "Funnel Layer Width/Metrics": string;
57
+ "Branch Tags/Dimensions": string;
58
+ "Branch Length/Metrics": string;
59
+ "Please check the chart config": string;
60
+ };
61
+ export default _default;
@@ -0,0 +1,83 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var es_ES_exports = {};
28
+ __export(es_ES_exports, {
29
+ default: () => es_ES_default
30
+ });
31
+ module.exports = __toCommonJS(es_ES_exports);
32
+ var es_ES_default = {
33
+ "Edit": "Editar",
34
+ "Delete": "Borrar",
35
+ "Cancel": "Cancelar",
36
+ "Submit": "Enviar",
37
+ "Actions": "Acciones",
38
+ "Title": "T\xEDtulo",
39
+ "Enable": "Activar",
40
+ "Chart": "Chart",
41
+ "Charts": "Charts",
42
+ "Queries": "Consultas",
43
+ "Select chart query": "Seleccionar consulta de chart",
44
+ "Select query data": "Seleccionar datos de consulta",
45
+ "Type": "Tipo",
46
+ "Chart type": "Tipo de chart",
47
+ "Chart title": "T\xEDtulo del chart",
48
+ "Basic charts": "Basic charts",
49
+ "More charts": "M\xE1s charts",
50
+ "Chart config": "Chart config",
51
+ "Add query": "A\xF1adir consulta",
52
+ "Edit query": "Editar consulta",
53
+ "Invalid JSON format,must be an object array.": "Formato JSON no v\xE1lido, debe ser una matriz de objetos.",
54
+ "Area": "\xC1rea",
55
+ "Bar": "Barra",
56
+ "Column": "Columna",
57
+ "Funnel": "Embudo",
58
+ "Line": "L\xEDnea",
59
+ "Pie": "Tarta",
60
+ "Radar": "Radar",
61
+ "Scatter": "Dispersi\xF3n",
62
+ "Edit chart block": "Editar bloque de chart",
63
+ "Chart preview": "Vista previa de charts",
64
+ "Delete queries": "Eliminar consultas",
65
+ "Delete query": "Eliminar consulta",
66
+ "Add chart query": "A\xF1adir consulta de chart",
67
+ "Add SQL query": "A\xF1adir consulta SQL",
68
+ "Add JSON query": "A\xF1adir consulta JSON",
69
+ "Data preview": "Vista previa de datos",
70
+ "Category axis / Dimension": "Eje de categor\xEDas / Dimensi\xF3n",
71
+ "Value axis / Metrics": "Eje de valor / M\xE9trica",
72
+ "JSON config": "JSON config",
73
+ "Create chart block": "Crear bloque de charts",
74
+ "Invalid JSON format": "Formato JSON no v\xE1lido",
75
+ "Json config references": "Referencias JSON config",
76
+ "Sector Angle / Metric": "Sector Angle / Metric",
77
+ "Sector label / Dimensional": "Etiqueta de sector / Dimensional",
78
+ "Color legend / Dimensional": "Leyenda de color / Dimensional",
79
+ "Funnel Layer Width/Metrics": "Anchura de la capa del embudo / M\xE9trica",
80
+ "Branch Tags/Dimensions": "Etiquetas de rama / Dimensi\xF3n",
81
+ "Branch Length/Metrics": "Longitud de rama / M\xE9trica",
82
+ "Please check the chart config": "Please check the chart config"
83
+ };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {};
10
+ export default _default;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var fr_FR_exports = {};
28
+ __export(fr_FR_exports, {
29
+ default: () => fr_FR_default
30
+ });
31
+ module.exports = __toCommonJS(fr_FR_exports);
32
+ var fr_FR_default = {};
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {};
10
+ export default _default;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var ja_JP_exports = {};
28
+ __export(ja_JP_exports, {
29
+ default: () => ja_JP_default
30
+ });
31
+ module.exports = __toCommonJS(ja_JP_exports);
32
+ var ja_JP_default = {};
@@ -0,0 +1,70 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {
10
+ Edit: string;
11
+ Delete: string;
12
+ Cancel: string;
13
+ Submit: string;
14
+ Actions: string;
15
+ Title: string;
16
+ Enable: string;
17
+ Chart: string;
18
+ Charts: string;
19
+ Queries: string;
20
+ "Select chart query": string;
21
+ "Select query data": string;
22
+ Type: string;
23
+ "Chart type": string;
24
+ "Chart title": string;
25
+ "Basic charts": string;
26
+ "More charts": string;
27
+ "Chart config": string;
28
+ "Add query": string;
29
+ "Edit query": string;
30
+ "Invalid JSON format,must be an object array.": string;
31
+ Area: string;
32
+ Bar: string;
33
+ Column: string;
34
+ Funnel: string;
35
+ Line: string;
36
+ Pie: string;
37
+ Radar: string;
38
+ Scatter: string;
39
+ "Edit chart block": string;
40
+ "Chart preview": string;
41
+ "Delete queries": string;
42
+ "Delete query": string;
43
+ "Add chart query": string;
44
+ "Add SQL query": string;
45
+ "Add JSON query": string;
46
+ "Data preview": string;
47
+ "Category axis / Dimension": string;
48
+ "Value axis / Metrics": string;
49
+ "JSON config": string;
50
+ "Json config references": string;
51
+ "Create chart block": string;
52
+ "Invalid JSON format": string;
53
+ "Json config references: ": string;
54
+ "Sector Angle / Metric": string;
55
+ "Sector label / Dimensional": string;
56
+ "Color legend / Dimensional": string;
57
+ "Funnel Layer Width/Metrics": string;
58
+ "Branch Tags/Dimensions": string;
59
+ "Branch Length/Metrics": string;
60
+ "Please check the chart config": string;
61
+ "1 \u300Ctime\u300Dor \u300COrdered Noun\u300D field,1 \u300CNumerical\u300D field,1 \u300CUnordered Noun\u300D field (optional)": string;
62
+ "1 \u300Ctime\u300D or \u300Cordered noun\u300D field, 1 \u300Cvalue\u300D field, 0~ 1 \u300Cunordered noun\u300D": string;
63
+ "1 \u300Ctime\u300D or \u300Cordered noun\u300D field, 1 \u300Cvalue\u300D field, 0 to 1 \u300Cunordered noun\u300D": string;
64
+ "1 \u300CUnordered Noun\u300D field, 1 \u300CNumeric\u300D field": string;
65
+ "1 \u300CTime\u300D or \u300COrder Noun\u300D field, 1 \u300CValue\u300D field": string;
66
+ "1~ 2 \u300CUnordered Noun\u300D fields, 1 \u300CNumeric\u300D field": string;
67
+ "1 \u300CNumeric\u300D field, 0~ 1 \u300CUnordered Noun\u300D field": string;
68
+ "Chart (Old)": string;
69
+ };
70
+ export default _default;
@@ -0,0 +1,92 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var ko_KR_exports = {};
28
+ __export(ko_KR_exports, {
29
+ default: () => ko_KR_default
30
+ });
31
+ module.exports = __toCommonJS(ko_KR_exports);
32
+ var ko_KR_default = {
33
+ "Edit": "\uD3B8\uC9D1",
34
+ "Delete": "\uC0AD\uC81C",
35
+ "Cancel": "\uCDE8\uC18C",
36
+ "Submit": "\uC81C\uCD9C",
37
+ "Actions": "\uC791\uC5C5",
38
+ "Title": "\uC81C\uBAA9",
39
+ "Enable": "\uC0AC\uC6A9",
40
+ "Chart": "\uCC28\uD2B8",
41
+ "Charts": "\uCC28\uD2B8",
42
+ "Queries": "\uCFFC\uB9AC \uBAA9\uB85D",
43
+ "Select chart query": "\uCC28\uD2B8 \uB370\uC774\uD130 \uC120\uD0DD",
44
+ "Select query data": "\uCFFC\uB9AC \uB370\uC774\uD130 \uC120\uD0DD",
45
+ "Type": "\uC720\uD615",
46
+ "Chart type": "\uCC28\uD2B8 \uC720\uD615",
47
+ "Chart title": "\uCC28\uD2B8 \uC81C\uBAA9",
48
+ "Basic charts": "\uAE30\uBCF8 \uCC28\uD2B8",
49
+ "More charts": "\uB354 \uB9CE\uC740 \uCC28\uD2B8",
50
+ "Chart config": "\uCC28\uD2B8 \uC124\uC815",
51
+ "Add query": "\uCFFC\uB9AC \uCD94\uAC00",
52
+ "Edit query": "\uCFFC\uB9AC \uD3B8\uC9D1",
53
+ "Invalid JSON format,must be an object array.": "\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 JSON \uD615\uC2DD, \uAC1D\uCCB4 \uBC30\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.",
54
+ "Area": "\uBA74\uC801 \uCC28\uD2B8",
55
+ "Bar": "\uB9C9\uB300 \uCC28\uD2B8",
56
+ "Column": "\uCEEC\uB7FC \uCC28\uD2B8",
57
+ "Funnel": "\uD37C\uB110 \uCC28\uD2B8",
58
+ "Line": "\uC120\uD615 \uCC28\uD2B8",
59
+ "Pie": "\uD30C\uC774 \uCC28\uD2B8",
60
+ "Radar": "\uB808\uC774\uB354 \uCC28\uD2B8",
61
+ "Scatter": "\uC0B0\uC810\uB3C4 \uCC28\uD2B8",
62
+ "Edit chart block": "\uCC28\uD2B8 \uBE14\uB85D \uD3B8\uC9D1",
63
+ "Chart preview": "\uCC28\uD2B8 \uBBF8\uB9AC\uBCF4\uAE30",
64
+ "Delete queries": "\uCFFC\uB9AC \uBAA9\uB85D \uC0AD\uC81C",
65
+ "Delete query": "\uCFFC\uB9AC \uC0AD\uC81C",
66
+ "Add chart query": "\uCC28\uD2B8 \uCFFC\uB9AC \uCD94\uAC00",
67
+ "Add SQL query": "SQL \uCFFC\uB9AC \uCD94\uAC00",
68
+ "Add JSON query": "JSON \uCFFC\uB9AC \uCD94\uAC00",
69
+ "Data preview": "\uB370\uC774\uD130 \uBBF8\uB9AC\uBCF4\uAE30",
70
+ "Category axis / Dimension": "\uCE74\uD14C\uACE0\uB9AC \uCD95 / \uCC28\uC6D0",
71
+ "Value axis / Metrics": "\uAC12 \uCD95 / \uBA54\uD2B8\uB9AD",
72
+ "JSON config": "JSON \uC124\uC815",
73
+ "Json config references": "JSON \uC124\uC815 \uCC38\uC870",
74
+ "Create chart block": "\uCC28\uD2B8 \uBE14\uB85D \uC0DD\uC131",
75
+ "Invalid JSON format": "\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 JSON \uD615\uC2DD",
76
+ "Json config references: ": "JSON \uC124\uC815 \uCC38\uC870: ",
77
+ "Sector Angle / Metric": "\uC139\uD130 \uAC01\uB3C4 / \uBA54\uD2B8\uB9AD",
78
+ "Sector label / Dimensional": "\uC139\uD130 \uB808\uC774\uBE14 / \uCC28\uC6D0",
79
+ "Color legend / Dimensional": "\uC0C9\uC0C1 \uBC94\uB840 / \uCC28\uC6D0",
80
+ "Funnel Layer Width/Metrics": "\uD37C\uB110 \uB808\uC774\uC5B4 \uB108\uBE44 / \uBA54\uD2B8\uB9AD",
81
+ "Branch Tags/Dimensions": "\uBD84\uAE30 \uD0DC\uADF8 / \uCC28\uC6D0",
82
+ "Branch Length/Metrics": "\uBD84\uAE30 \uAE38\uC774 / \uBA54\uD2B8\uB9AD",
83
+ "Please check the chart config": "\uCC28\uD2B8 \uC124\uC815\uC744 \uD655\uC778\uD558\uC2ED\uC2DC\uC624",
84
+ "1 \u300Ctime\u300Dor \u300COrdered Noun\u300D field,1 \u300CNumerical\u300D field,1 \u300CUnordered Noun\u300D field (optional)": "1\uAC1C\uC758 \u300Ctime\u300D \uB610\uB294 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB41C \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300C\uC22B\uC790\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D \uD544\uB4DC (\uC120\uD0DD \uC0AC\uD56D)",
85
+ "1 \u300Ctime\u300D or \u300Cordered noun\u300D field, 1 \u300Cvalue\u300D field, 0~ 1 \u300Cunordered noun\u300D": "1\uAC1C\uC758 \u300Ctime\u300D \uB610\uB294 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB41C \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300Cvalue\u300D \uD544\uB4DC, 0~1\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D",
86
+ "1 \u300Ctime\u300D or \u300Cordered noun\u300D field, 1 \u300Cvalue\u300D field, 0 to 1 \u300Cunordered noun\u300D": "1\uAC1C\uC758 \u300Ctime\u300D \uB610\uB294 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB41C \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300Cvalue\u300D \uD544\uB4DC, 0\uC5D0\uC11C 1\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D",
87
+ "1 \u300CUnordered Noun\u300D field, 1 \u300CNumeric\u300D field": "1\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300C\uC22B\uC790\u300D \uD544\uB4DC",
88
+ "1 \u300CTime\u300D or \u300COrder Noun\u300D field, 1 \u300CValue\u300D field": "1\uAC1C\uC758 \u300C\uC2DC\uAC04\u300D \uB610\uB294 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB41C \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300C\uAC12\u300D \uD544\uB4DC",
89
+ "1~ 2 \u300CUnordered Noun\u300D fields, 1 \u300CNumeric\u300D field": "1~2\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D \uD544\uB4DC, 1\uAC1C\uC758 \u300C\uC22B\uC790\u300D \uD544\uB4DC",
90
+ "1 \u300CNumeric\u300D field, 0~ 1 \u300CUnordered Noun\u300D field": "1\uAC1C\uC758 \u300C\uC22B\uC790\u300D \uD544\uB4DC, 0~1\uAC1C\uC758 \u300C\uC21C\uC11C\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uBA85\uC0AC\u300D \uD544\uB4DC",
91
+ "Chart (Old)": "\uCC28\uD2B8 (\uC774\uC804)"
92
+ };
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {
10
+ Edit: string;
11
+ Delete: string;
12
+ Cancel: string;
13
+ Submit: string;
14
+ Actions: string;
15
+ Title: string;
16
+ Enable: string;
17
+ 'SAML manager': string;
18
+ 'SAML Providers': string;
19
+ 'Redirect url': string;
20
+ 'SP entity id': string;
21
+ 'Add provider': string;
22
+ 'Edit provider': string;
23
+ 'Client id': string;
24
+ 'Entity id or issuer': string;
25
+ 'Login Url': string;
26
+ 'Public cert': string;
27
+ 'Delete provider': string;
28
+ 'Are you sure you want to delete it?': string;
29
+ 'Sign in button name, which will be displayed on the sign in page': string;
30
+ };
31
+ export default _default;
@@ -0,0 +1,53 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var pt_BR_exports = {};
28
+ __export(pt_BR_exports, {
29
+ default: () => pt_BR_default
30
+ });
31
+ module.exports = __toCommonJS(pt_BR_exports);
32
+ var pt_BR_default = {
33
+ Edit: "Editar",
34
+ Delete: "Delete",
35
+ Cancel: "Cancelar",
36
+ Submit: "Enviar",
37
+ Actions: "A\xE7\xF5es",
38
+ Title: "Titulo",
39
+ Enable: "Ativo",
40
+ "SAML manager": "Gerenciador SAML",
41
+ "SAML Providers": "Provedores SAML",
42
+ "Redirect url": "URL de redirecionamento",
43
+ "SP entity id": "ID de entidade do provedor de servi\xE7o (SP)",
44
+ "Add provider": "Adicionar",
45
+ "Edit provider": "Editar",
46
+ "Client id": "ID do cliente",
47
+ "Entity id or issuer": "ID de entidade ou emissor",
48
+ "Login Url": "URL de login",
49
+ "Public cert": "Certificado p\xFAblico",
50
+ "Delete provider": "Excluir",
51
+ "Are you sure you want to delete it?": "Tem certeza de que deseja exclu\xED-lo?",
52
+ "Sign in button name, which will be displayed on the sign in page": "Nome do bot\xE3o de login, que ser\xE1 exibido na p\xE1gina de login"
53
+ };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ declare const _default: {};
10
+ export default _default;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var ru_RU_exports = {};
28
+ __export(ru_RU_exports, {
29
+ default: () => ru_RU_default
30
+ });
31
+ module.exports = __toCommonJS(ru_RU_exports);
32
+ var ru_RU_default = {};