@nocobase/plugin-data-visualization 1.7.0-beta.1 → 1.7.0-beta.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.
- package/dist/client/block/ChartBlockDesigner.d.ts +4 -0
- package/dist/client/c78b1da686ffc468.js +47 -0
- package/dist/client/filter/FilterBlockDesigner.d.ts +4 -0
- package/dist/client/filter/FilterItemDesigner.d.ts +4 -0
- package/dist/client/index.js +1 -1
- package/dist/client/renderer/ChartRendererDesigner.d.ts +4 -0
- package/dist/client/settings/chartBlock.d.ts +10 -0
- package/dist/client/settings/chartFilterBlock.d.ts +10 -0
- package/dist/client/settings/chartFilterItem.d.ts +10 -0
- package/dist/client/settings/chartRenderer.d.ts +10 -0
- package/dist/client/settings/index.d.ts +14 -0
- package/dist/client/toolbar/ChartFilterBlock.d.ts +10 -0
- package/dist/client/toolbar/ChartFilterItem.d.ts +10 -0
- package/dist/client/toolbar/ChartRenderer.d.ts +10 -0
- package/dist/client/toolbar/index.d.ts +11 -0
- package/dist/client/utils.d.ts +2 -1
- package/dist/externalVersion.js +7 -7
- package/dist/locale/de-DE.json +102 -0
- package/dist/locale/it-IT.json +2 -1
- package/dist/locale/nl-NL.json +101 -0
- package/dist/node_modules/koa-compose/package.json +1 -1
- package/dist/node_modules/moment-timezone/package.json +1 -1
- package/package.json +2 -2
- package/dist/client/0abc8846b494bb83.js +0 -47
|
@@ -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
|
+
import { SchemaSettings } from '@nocobase/client';
|
|
10
|
+
export declare const chartBlockSettings: SchemaSettings<{}>;
|
|
@@ -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
|
+
import { SchemaSettings } from '@nocobase/client';
|
|
10
|
+
export declare const chartFilterBlockSettings: SchemaSettings<{}>;
|
|
@@ -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
|
+
import { SchemaSettings } from '@nocobase/client';
|
|
10
|
+
export declare const chartFilterItemSettings: SchemaSettings<{}>;
|
|
@@ -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
|
+
import { SchemaSettings } from '@nocobase/client';
|
|
10
|
+
export declare const chartRendererSettings: SchemaSettings<{}>;
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export { chartActionRefreshSettings } from './chartActionRefresh';
|
|
10
|
+
export { chartBlockActionRefreshSettings } from './chartBlockActionRefresh';
|
|
11
|
+
export { chartBlockSettings } from './chartBlock';
|
|
12
|
+
export { chartRendererSettings } from './chartRenderer';
|
|
13
|
+
export { chartFilterBlockSettings } from './chartFilterBlock';
|
|
14
|
+
export { chartFilterItemSettings } from './chartFilterItem';
|
|
@@ -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
|
+
import React from 'react';
|
|
10
|
+
export declare const ChartFilterBlockToolbar: () => React.JSX.Element;
|
|
@@ -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
|
+
import React from 'react';
|
|
10
|
+
export declare const ChartFilterItemToolbar: () => React.JSX.Element;
|
|
@@ -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
|
+
import React from 'react';
|
|
10
|
+
export declare const ChartRendererToolbar: () => React.JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
export * from './ChartRenderer';
|
|
10
|
+
export * from './ChartFilterBlock';
|
|
11
|
+
export * from './ChartFilterItem';
|
package/dist/client/utils.d.ts
CHANGED
|
@@ -14,7 +14,8 @@ export declare const createRendererSchema: (decoratorProps: any, componentProps?
|
|
|
14
14
|
'x-decorator': string;
|
|
15
15
|
'x-decorator-props': any;
|
|
16
16
|
'x-acl-action': string;
|
|
17
|
-
'x-
|
|
17
|
+
'x-toolbar': string;
|
|
18
|
+
'x-settings': string;
|
|
18
19
|
'x-component': string;
|
|
19
20
|
'x-component-props': {
|
|
20
21
|
size: string;
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,24 +8,24 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "1.7.0-beta.
|
|
11
|
+
"@nocobase/client": "1.7.0-beta.3",
|
|
12
12
|
"dayjs": "1.11.10",
|
|
13
13
|
"@formily/react": "2.3.0",
|
|
14
14
|
"@formily/shared": "2.3.2",
|
|
15
15
|
"lodash": "4.17.21",
|
|
16
|
+
"@nocobase/cache": "1.7.0-beta.3",
|
|
17
|
+
"@nocobase/server": "1.7.0-beta.3",
|
|
18
|
+
"@nocobase/test": "1.7.0-beta.3",
|
|
16
19
|
"react": "18.2.0",
|
|
17
|
-
"@nocobase/cache": "1.7.0-beta.1",
|
|
18
|
-
"@nocobase/server": "1.7.0-beta.1",
|
|
19
|
-
"@nocobase/test": "1.7.0-beta.1",
|
|
20
20
|
"@emotion/css": "11.13.0",
|
|
21
21
|
"@ant-design/icons": "5.6.1",
|
|
22
22
|
"ahooks": "3.7.8",
|
|
23
23
|
"antd": "5.12.8",
|
|
24
24
|
"@formily/antd-v5": "1.1.9",
|
|
25
25
|
"@formily/core": "2.3.0",
|
|
26
|
-
"@nocobase/utils": "1.7.0-beta.
|
|
26
|
+
"@nocobase/utils": "1.7.0-beta.3",
|
|
27
27
|
"react-i18next": "11.18.6",
|
|
28
|
-
"@nocobase/actions": "1.7.0-beta.
|
|
29
|
-
"@nocobase/database": "1.7.0-beta.
|
|
28
|
+
"@nocobase/actions": "1.7.0-beta.3",
|
|
29
|
+
"@nocobase/database": "1.7.0-beta.3",
|
|
30
30
|
"sequelize": "6.35.2"
|
|
31
31
|
};
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Edit": "Bearbeiten",
|
|
3
|
+
"Delete": "Löschen",
|
|
4
|
+
"Cancel": "Abbrechen",
|
|
5
|
+
"Submit": "Absenden",
|
|
6
|
+
"Actions": "Aktionen",
|
|
7
|
+
"Title": "Titel",
|
|
8
|
+
"Enable": "Aktivieren",
|
|
9
|
+
"Chart": "Diagramm",
|
|
10
|
+
"ChartV2": "DiagrammV2",
|
|
11
|
+
"Charts": "Diagramme",
|
|
12
|
+
"Configure": "Konfigurieren",
|
|
13
|
+
"Duplicate": "Duplizieren",
|
|
14
|
+
"Configure chart": "Diagramm konfigurieren",
|
|
15
|
+
"Transform": "Transformieren",
|
|
16
|
+
"Chart type": "Diagrammtyp",
|
|
17
|
+
"JSON config": "JSON-Konfiguration",
|
|
18
|
+
"Query": "Abfrage",
|
|
19
|
+
"Data": "Daten",
|
|
20
|
+
"Run query": "Abfrage ausführen",
|
|
21
|
+
"Measures": "Messgrößen",
|
|
22
|
+
"Dimensions": "Dimensionen",
|
|
23
|
+
"Filter": "Filter",
|
|
24
|
+
"Sort": "Sortierung",
|
|
25
|
+
"Limit": "Limit",
|
|
26
|
+
"Offset": "Versatz",
|
|
27
|
+
"Enable cache": "Cache aktivieren",
|
|
28
|
+
"TTL (second)": "TTL (Sekunden)",
|
|
29
|
+
"Field": "Feld",
|
|
30
|
+
"Aggregation": "Aggregation",
|
|
31
|
+
"Alias": "Alias",
|
|
32
|
+
"Format": "Format",
|
|
33
|
+
"The first 10 records of the query result:": "Die ersten 10 Datensätze des Abfrageergebnisses:",
|
|
34
|
+
"Please run query to retrive data.": "Bitte führen Sie die Abfrage aus, um Daten abzurufen.",
|
|
35
|
+
"Type": "Typ",
|
|
36
|
+
"Add field": "Feld hinzufügen",
|
|
37
|
+
"Add chart": "Diagramm hinzufügen",
|
|
38
|
+
"xField": "X-Feld",
|
|
39
|
+
"yField": "Y-Feld",
|
|
40
|
+
"seriesField": "Reihenfeld",
|
|
41
|
+
"angleField": "Winkelfeld",
|
|
42
|
+
"colorField": "Farbfeld",
|
|
43
|
+
"Line": "Linie",
|
|
44
|
+
"Area": "Fläche",
|
|
45
|
+
"Column": "Säule",
|
|
46
|
+
"Bar": "Balken",
|
|
47
|
+
"Pie": "Kreis",
|
|
48
|
+
"Dual axes": "Doppelachsen",
|
|
49
|
+
"Scatter": "Streuung",
|
|
50
|
+
"Gauge": "Messanzeige",
|
|
51
|
+
"Statistic": "Statistik",
|
|
52
|
+
"Currency": "Währung",
|
|
53
|
+
"Percent": "Prozent",
|
|
54
|
+
"Exponential": "Exponentiell",
|
|
55
|
+
"Abbreviation": "Abkürzung",
|
|
56
|
+
"Please configure and run query": "Bitte konfigurieren und führen Sie die Abfrage aus",
|
|
57
|
+
"Please configure chart": "Bitte konfigurieren Sie das Diagramm",
|
|
58
|
+
"Are you sure to cancel?": "Sind Sie sicher, dass Sie abbrechen möchten?",
|
|
59
|
+
"You changes are not saved. If you click OK, your changes will be lost.": "Ihre Änderungen sind nicht gespeichert. Wenn Sie OK klicken, gehen Ihre Änderungen verloren.",
|
|
60
|
+
"Same properties set in the form above will be overwritten by this JSON config.": "Dieselben Eigenschaften, die im obigen Formular festgelegt wurden, werden durch diese JSON-Konfiguration überschrieben.",
|
|
61
|
+
"Built-in": "Eingebaut",
|
|
62
|
+
"Config reference: ": "Konfigurationsreferenz: ",
|
|
63
|
+
"Table": "Tabelle",
|
|
64
|
+
"Sum": "Summe",
|
|
65
|
+
"Avg": "Durchschnitt",
|
|
66
|
+
"Count": "Anzahl",
|
|
67
|
+
"Min": "Minimum",
|
|
68
|
+
"Max": "Maximum",
|
|
69
|
+
"Please select a chart type.": "Bitte wählen Sie einen Diagrammtyp aus.",
|
|
70
|
+
"Collection": "Sammlung",
|
|
71
|
+
"isStack": "istGestapelt",
|
|
72
|
+
"isPercent": "istProzent",
|
|
73
|
+
"isGroup": "istGruppiert",
|
|
74
|
+
"smooth": "geglättet",
|
|
75
|
+
"Collapse": "Einklappen",
|
|
76
|
+
"Expand": "Erweitern",
|
|
77
|
+
"Current filter": "Aktueller Filter",
|
|
78
|
+
"Add custom field": "Benutzerdefiniertes Feld hinzufügen",
|
|
79
|
+
"To filter with custom fields, use \"Current filter\" variables in the chart configuration.": "Um mit benutzerdefinierten Feldern zu filtern, verwenden Sie die Variablen \"Aktueller Filter\" in der Diagrammkonfiguration.",
|
|
80
|
+
"Input": "Eingabe",
|
|
81
|
+
"Date range": "Datumsbereich",
|
|
82
|
+
"Time range": "Zeitbereich",
|
|
83
|
+
"Edit field properties": "Feldeigenschaften bearbeiten",
|
|
84
|
+
"Select a source field to use metadata of the field": "Wählen Sie ein Quellfeld aus, um Metadaten des Feldes zu verwenden",
|
|
85
|
+
"Original field": "Ursprüngliches Feld",
|
|
86
|
+
"Transformation": "Transformation",
|
|
87
|
+
"Add transformation": "Transformation hinzufügen",
|
|
88
|
+
"Container": "Container",
|
|
89
|
+
"Show border": "Rahmen anzeigen",
|
|
90
|
+
"Transformation tip": "Felder erlauben mehrere Transformationen, die nacheinander angewendet werden. Achten Sie auf Datentypenänderungen nach jeder Transformation. Drag-and-Drop-Funktionalität ermöglicht die Anpassung der Transformationsreihenfolge.",
|
|
91
|
+
"Type conversion": "Typumwandlung",
|
|
92
|
+
"Transformer": "Transformator",
|
|
93
|
+
"Size": "Größe",
|
|
94
|
+
"Width": "Breite",
|
|
95
|
+
"Height": "Höhe",
|
|
96
|
+
"Aspect ratio": "Seitenverhältnis",
|
|
97
|
+
"Fixed height": "Feste Höhe",
|
|
98
|
+
"Show background": "Hintergrund anzeigen",
|
|
99
|
+
"Show padding": "Abstand anzeigen",
|
|
100
|
+
"Distinct": "Eindeutig",
|
|
101
|
+
"Auto refresh": "Automatische Aktualisierung"
|
|
102
|
+
}
|
package/dist/locale/it-IT.json
CHANGED
|
@@ -72,10 +72,11 @@
|
|
|
72
72
|
"isPercent": "èPercentuale",
|
|
73
73
|
"isGroup": "èGruppo",
|
|
74
74
|
"smooth": "smussato",
|
|
75
|
+
"Collapse": "Comprimi",
|
|
75
76
|
"Expand": "Espandi",
|
|
76
77
|
"Current filter": "Filtro corrente",
|
|
77
78
|
"Add custom field": "Aggiungi campo personalizzato",
|
|
78
|
-
"To filter with custom fields, use \"Current filter\" variables in the chart configuration.": "Per filtrare con campi personalizzati, utilizza le variabili \"
|
|
79
|
+
"To filter with custom fields, use \"Current filter\" variables in the chart configuration.": "Per filtrare con campi personalizzati, utilizza le variabili \"Current filter\" nella configurazione del grafico.",
|
|
79
80
|
"Input": "Input",
|
|
80
81
|
"Date range": "Intervallo date",
|
|
81
82
|
"Time range": "Intervallo tempo",
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Edit": "Bewerken",
|
|
3
|
+
"Delete": "Verwijder",
|
|
4
|
+
"Cancel": "Annuleren",
|
|
5
|
+
"Submit": "Indienen",
|
|
6
|
+
"Actions": "Acties",
|
|
7
|
+
"Title": "Titel",
|
|
8
|
+
"Enable": "Enable",
|
|
9
|
+
"Chart": "Chart",
|
|
10
|
+
"ChartV2": "ChartV2",
|
|
11
|
+
"Charts": "Charts",
|
|
12
|
+
"Configure": "Configureren",
|
|
13
|
+
"Duplicate": "Dupliceren",
|
|
14
|
+
"Configure chart": "Configure chart",
|
|
15
|
+
"Transform": "Transform",
|
|
16
|
+
"Chart type": "Grafiektype",
|
|
17
|
+
"JSON config": "JSON config",
|
|
18
|
+
"Query": "Query",
|
|
19
|
+
"Data": "Data",
|
|
20
|
+
"Run query": "Run query",
|
|
21
|
+
"Measures": "Measures",
|
|
22
|
+
"Dimensions": "Dimensions",
|
|
23
|
+
"Filter": "Filter",
|
|
24
|
+
"Sort": "Sorteren",
|
|
25
|
+
"Limit": "Limit",
|
|
26
|
+
"Offset": "Offset",
|
|
27
|
+
"Enable cache": "Enable cache",
|
|
28
|
+
"TTL (second)": "TTL (second)",
|
|
29
|
+
"Field": "Veld",
|
|
30
|
+
"Aggregation": "Aggregation",
|
|
31
|
+
"Alias": "Alias",
|
|
32
|
+
"Format": "Formaat",
|
|
33
|
+
"The first 10 records of the query result:": "The first 10 records of the query result:",
|
|
34
|
+
"Please run query to retrive data.": "Please run query to retrive data.",
|
|
35
|
+
"Type": "Type",
|
|
36
|
+
"Add field": "Voeg veld toe",
|
|
37
|
+
"Add chart": "Add chart",
|
|
38
|
+
"xField": "X field",
|
|
39
|
+
"yField": "Y field",
|
|
40
|
+
"seriesField": "Series field",
|
|
41
|
+
"angleField": "Angle field",
|
|
42
|
+
"colorField": "Color field",
|
|
43
|
+
"Line": "Line",
|
|
44
|
+
"Area": "Gebied",
|
|
45
|
+
"Column": "Kolom",
|
|
46
|
+
"Bar": "Bar",
|
|
47
|
+
"Pie": "Pie",
|
|
48
|
+
"Dual axes": "Dual axes",
|
|
49
|
+
"Scatter": "Scatter",
|
|
50
|
+
"Gauge": "Gauge",
|
|
51
|
+
"Statistic": "Statistic",
|
|
52
|
+
"Currency": "Currency",
|
|
53
|
+
"Percent": "Percentage",
|
|
54
|
+
"Exponential": "Exponential",
|
|
55
|
+
"Abbreviation": "Abbreviation",
|
|
56
|
+
"Please configure and run query": "Please configure and run query",
|
|
57
|
+
"Please configure chart": "Please configure chart",
|
|
58
|
+
"Are you sure to cancel?": "Are you sure to cancel?",
|
|
59
|
+
"You changes are not saved. If you click OK, your changes will be lost.": "You changes are not saved. If you click OK, your changes will be lost.",
|
|
60
|
+
"Same properties set in the form above will be overwritten by this JSON config.": "Same properties set in the form above will be overwritten by this JSON config.",
|
|
61
|
+
"Built-in": "Ingebouwd",
|
|
62
|
+
"Config reference: ": "Config reference: ",
|
|
63
|
+
"Table": "Tabel",
|
|
64
|
+
"Sum": "Sum",
|
|
65
|
+
"Avg": "Avg",
|
|
66
|
+
"Count": "Count",
|
|
67
|
+
"Min": "Min",
|
|
68
|
+
"Max": "Max",
|
|
69
|
+
"Please select a chart type.": "Please select a chart type.",
|
|
70
|
+
"Collection": "Collectie",
|
|
71
|
+
"isStack": "isStack",
|
|
72
|
+
"isPercent": "isPercent",
|
|
73
|
+
"isGroup": "isGroup",
|
|
74
|
+
"smooth": "smooth",
|
|
75
|
+
"Expand": "Expand",
|
|
76
|
+
"Current filter": "Current filter",
|
|
77
|
+
"Add custom field": "Add custom field",
|
|
78
|
+
"To filter with custom fields, use \"Current filter\" variables in the chart configuration.": "To filter with custom fields, use \"Current filter\" variables in the chart configuration.",
|
|
79
|
+
"Input": "Input",
|
|
80
|
+
"Date range": "Date range",
|
|
81
|
+
"Time range": "Time range",
|
|
82
|
+
"Edit field properties": "Edit field properties",
|
|
83
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
84
|
+
"Original field": "Original field",
|
|
85
|
+
"Transformation": "Transformation",
|
|
86
|
+
"Add transformation": "Add transformation",
|
|
87
|
+
"Container": "Container",
|
|
88
|
+
"Show border": "Show border",
|
|
89
|
+
"Transformation tip": "Fields allow multiple transformations, applied sequentially. Pay attention to data type changes after each transformation. Drag-and-drop functionality enables adjustment of transformation order.",
|
|
90
|
+
"Type conversion": "Type conversion",
|
|
91
|
+
"Transformer": "Transformer",
|
|
92
|
+
"Size": "Grootte",
|
|
93
|
+
"Width": "Width",
|
|
94
|
+
"Height": "Height",
|
|
95
|
+
"Aspect ratio": "Aspect ratio",
|
|
96
|
+
"Fixed height": "Fixed height",
|
|
97
|
+
"Show background": "Show background",
|
|
98
|
+
"Show padding": "Show padding",
|
|
99
|
+
"Distinct": "Distinct",
|
|
100
|
+
"Auto refresh": "Auto refresh"
|
|
101
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"koa-compose","description":"compose Koa middleware","repository":"koajs/compose","version":"4.1.0","keywords":["koa","middleware","compose"],"files":["index.js"],"dependencies":{},"devDependencies":{"codecov":"^3.0.0","jest":"^21.0.0","matcha":"^0.7.0","standard":"^10.0.3"},"scripts":{"bench":"matcha bench/bench.js","lint":"standard --fix .","test":"jest --forceExit --coverage"},"jest":{"testEnvironment":"node"},"license":"MIT","_lastModified":"2025-03-
|
|
1
|
+
{"name":"koa-compose","description":"compose Koa middleware","repository":"koajs/compose","version":"4.1.0","keywords":["koa","middleware","compose"],"files":["index.js"],"dependencies":{},"devDependencies":{"codecov":"^3.0.0","jest":"^21.0.0","matcha":"^0.7.0","standard":"^10.0.3"},"scripts":{"bench":"matcha bench/bench.js","lint":"standard --fix .","test":"jest --forceExit --coverage"},"jest":{"testEnvironment":"node"},"license":"MIT","_lastModified":"2025-03-13T23:28:46.405Z"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"moment-timezone","version":"0.5.43","description":"Parse and display moments in any timezone.","homepage":"http://momentjs.com/timezone/","author":"Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)","keywords":["moment","date","time","timezone","olson","iana","zone","tz"],"main":"./index.js","typings":"./index.d.ts","engines":{"node":"*"},"repository":{"type":"git","url":"https://github.com/moment/moment-timezone.git"},"bugs":{"url":"https://github.com/moment/moment-timezone/issues"},"license":"MIT","dependencies":{"moment":"^2.29.4"},"devDependencies":{"grunt":"^1.5.3","grunt-contrib-clean":"^2.0.1","grunt-contrib-jshint":"^3.2.0","grunt-contrib-nodeunit":"^4.0.0","grunt-contrib-uglify":"^5.2.2","grunt-exec":"^3.0.0","typescript":"^3.5.1"},"jspm":{"main":"builds/moment-timezone-with-data","shim":{"moment-timezone":{"deps":["moment"]}}},"scripts":{"test":"grunt"},"_lastModified":"2025-03-
|
|
1
|
+
{"name":"moment-timezone","version":"0.5.43","description":"Parse and display moments in any timezone.","homepage":"http://momentjs.com/timezone/","author":"Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)","keywords":["moment","date","time","timezone","olson","iana","zone","tz"],"main":"./index.js","typings":"./index.d.ts","engines":{"node":"*"},"repository":{"type":"git","url":"https://github.com/moment/moment-timezone.git"},"bugs":{"url":"https://github.com/moment/moment-timezone/issues"},"license":"MIT","dependencies":{"moment":"^2.29.4"},"devDependencies":{"grunt":"^1.5.3","grunt-contrib-clean":"^2.0.1","grunt-contrib-jshint":"^3.2.0","grunt-contrib-nodeunit":"^4.0.0","grunt-contrib-uglify":"^5.2.2","grunt-exec":"^3.0.0","typescript":"^3.5.1"},"jspm":{"main":"builds/moment-timezone-with-data","shim":{"moment-timezone":{"deps":["moment"]}}},"scripts":{"test":"grunt"},"_lastModified":"2025-03-13T23:28:47.069Z"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-data-visualization",
|
|
3
|
-
"version": "1.7.0-beta.
|
|
3
|
+
"version": "1.7.0-beta.3",
|
|
4
4
|
"displayName": "Data visualization",
|
|
5
5
|
"displayName.zh-CN": "数据可视化",
|
|
6
6
|
"description": "Provides data visualization feature, including chart block and chart filter block, support line charts, area charts, bar charts and more than a dozen kinds of charts, you can also extend more chart types.",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@nocobase/test": "1.x",
|
|
35
35
|
"@nocobase/utils": "1.x"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "8d52cb1d366a968f87c1cd3f98f55f24be3056a5",
|
|
38
38
|
"keywords": [
|
|
39
39
|
"Blocks"
|
|
40
40
|
]
|