@qrvey/utils 1.2.9-1 → 1.2.9-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/README.md +585 -585
- package/dist/cjs/globalization/interfaces/chart_builder/II18nChartBuilderSorting.d.ts +11 -9
- package/dist/cjs/globalization/interfaces/dashboard/II18nDashboard.d.ts +2 -0
- package/dist/cjs/globalization/interfaces/dashboard/II18nDashboardEmptyState.d.ts +5 -0
- package/dist/cjs/globalization/interfaces/dashboard/II18nDashboardEmptyState.js +2 -0
- package/dist/cjs/globalization/interfaces/dashboard/index.d.ts +1 -0
- package/dist/cjs/globalization/interfaces/dashboard/index.js +1 -0
- package/dist/cjs/globalization/labels/chart_builder/I18N_CHART_BUILDER_GENERAL_OPTIONS.js +11 -9
- package/dist/cjs/globalization/labels/dashboard/I18N_DASHBOARD.js +12 -7
- package/dist/globalization/interfaces/chart_builder/II18nChartBuilderSorting.d.ts +11 -9
- package/dist/globalization/interfaces/dashboard/II18nDashboard.d.ts +2 -0
- package/dist/globalization/interfaces/dashboard/II18nDashboardEmptyState.d.ts +5 -0
- package/dist/globalization/interfaces/dashboard/II18nDashboardEmptyState.js +1 -0
- package/dist/globalization/interfaces/dashboard/index.d.ts +1 -0
- package/dist/globalization/interfaces/dashboard/index.js +1 -0
- package/dist/globalization/labels/chart_builder/I18N_CHART_BUILDER_GENERAL_OPTIONS.js +11 -9
- package/dist/globalization/labels/dashboard/I18N_DASHBOARD.js +12 -7
- package/package.json +1 -1
- package/src/globalization/interfaces/chart_builder/II18nChartBuilderSorting.ts +11 -9
- package/src/globalization/interfaces/dashboard/II18nDashboard.ts +2 -0
- package/src/globalization/interfaces/dashboard/II18nDashboardEmptyState.ts +5 -0
- package/src/globalization/interfaces/dashboard/index.ts +1 -0
- package/src/globalization/labels/chart_builder/I18N_CHART_BUILDER_GENERAL_OPTIONS.ts +12 -9
- package/src/globalization/labels/dashboard/I18N_DASHBOARD.ts +12 -7
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
export interface II18nChartBuilderSorting {
|
|
2
|
-
|
|
3
|
-
sort_by: string;
|
|
4
|
-
label: string;
|
|
5
|
-
value: string;
|
|
6
|
-
descending: string;
|
|
2
|
+
aggregation_label: string;
|
|
7
3
|
ascending: string;
|
|
8
|
-
sort: string;
|
|
9
|
-
sort_descending: string;
|
|
10
|
-
sort_ascending: string;
|
|
11
4
|
clear_sorting: string;
|
|
5
|
+
descending: string;
|
|
6
|
+
label: string;
|
|
7
|
+
order_chart_columns: string;
|
|
8
|
+
order_others_columns: string;
|
|
12
9
|
select_column_placeholder: string;
|
|
13
|
-
|
|
10
|
+
sort: string;
|
|
11
|
+
sort_ascending: string;
|
|
12
|
+
sort_by: string;
|
|
13
|
+
sort_descending: string;
|
|
14
14
|
sort_descending_a_to_z: string;
|
|
15
15
|
sort_descending_z_to_a: string;
|
|
16
|
+
title: string;
|
|
17
|
+
value: string;
|
|
16
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { II18nDashboardAddChart } from "./II18nDashboardAddChart";
|
|
2
|
+
import { II18nDashboardEmptyState } from "./II18nDashboardEmptyState";
|
|
2
3
|
import { II18nDashboardToast } from "./II18nDashboardToast";
|
|
3
4
|
import { II18nDashboardTooltips } from "./II18nDashboardTooltips";
|
|
4
5
|
import { II18nDashboardViews } from "./II18nDashboardViews";
|
|
@@ -8,4 +9,5 @@ export interface II18nDashboard {
|
|
|
8
9
|
toast: II18nDashboardToast;
|
|
9
10
|
tooltips: II18nDashboardTooltips;
|
|
10
11
|
views: II18nDashboardViews;
|
|
12
|
+
empty_state: II18nDashboardEmptyState;
|
|
11
13
|
}
|
|
@@ -14,4 +14,5 @@ __exportStar(require("./II18nDashboardToast"), exports);
|
|
|
14
14
|
__exportStar(require("./II18nDashboardAddChart"), exports);
|
|
15
15
|
__exportStar(require("./II18nDashboardTooltips"), exports);
|
|
16
16
|
__exportStar(require("./II18nDashboardViews"), exports);
|
|
17
|
+
__exportStar(require("./II18nDashboardEmptyState"), exports);
|
|
17
18
|
__exportStar(require("./II18nDashboard"), exports);
|
|
@@ -76,20 +76,22 @@ exports.I18N_CHART_BUILDER_GENERAL_OPTIONS = {
|
|
|
76
76
|
none_tooltip: 'None'
|
|
77
77
|
},
|
|
78
78
|
sorting: {
|
|
79
|
-
|
|
80
|
-
sort_by: 'Sort by',
|
|
81
|
-
label: 'Label',
|
|
82
|
-
value: 'Value',
|
|
83
|
-
descending: 'Descending',
|
|
79
|
+
aggregation_label: 'Aggregation',
|
|
84
80
|
ascending: 'Ascending',
|
|
81
|
+
clear_sorting: 'Clear Sorting',
|
|
82
|
+
descending: 'Descending',
|
|
83
|
+
label: 'Label',
|
|
84
|
+
order_chart_columns: 'Chart Columns',
|
|
85
|
+
order_others_columns: 'Other Columns',
|
|
86
|
+
select_column_placeholder: 'Select Column',
|
|
85
87
|
sort: 'Sort',
|
|
86
|
-
sort_descending: 'Sort Descending',
|
|
87
88
|
sort_ascending: 'Sort Ascending',
|
|
89
|
+
sort_by: 'Sort by',
|
|
90
|
+
sort_descending: 'Sort Descending',
|
|
88
91
|
sort_descending_a_to_z: 'A to Z',
|
|
89
92
|
sort_descending_z_to_a: 'Z to A',
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
aggregation_label: 'Aggregation',
|
|
93
|
+
title: 'Sorting',
|
|
94
|
+
value: 'Value',
|
|
93
95
|
},
|
|
94
96
|
menu_actions: {
|
|
95
97
|
title: 'Menu Actions',
|
|
@@ -8,24 +8,29 @@ exports.I18N_DASHBOARD = {
|
|
|
8
8
|
metric: "Metric",
|
|
9
9
|
summary: "Summary",
|
|
10
10
|
},
|
|
11
|
+
empty_state: {
|
|
12
|
+
about_charts: 'about charts',
|
|
13
|
+
about_metrics: 'about metrics',
|
|
14
|
+
learn_more: 'Learn more',
|
|
15
|
+
},
|
|
11
16
|
export_csv: "Export to CSV",
|
|
12
17
|
toast: {
|
|
13
|
-
refresh_table_message: 'Record Successfully Edited.',
|
|
14
|
-
delete_record_message: 'Record Successfully Deleted.',
|
|
15
18
|
add_record_message: 'Record Successfully Added.',
|
|
16
19
|
data_views_updated_message: 'Data views updated successfully.',
|
|
20
|
+
delete_record_message: 'Record Successfully Deleted.',
|
|
21
|
+
refresh_table_message: 'Record Successfully Edited.',
|
|
17
22
|
},
|
|
18
23
|
tooltips: {
|
|
19
|
-
style_themes: "Style Themes",
|
|
20
|
-
formulas: "Formulas",
|
|
21
24
|
buckets: "Buckets",
|
|
22
25
|
download: "Download",
|
|
23
26
|
embed_analyze: "Embed Analyze View",
|
|
27
|
+
formulas: "Formulas",
|
|
28
|
+
style_themes: "Style Themes",
|
|
24
29
|
},
|
|
25
30
|
views: {
|
|
26
|
-
summary_view: "Summary",
|
|
27
|
-
tabular_view: "Tabular View",
|
|
28
31
|
custom_view: "Custom View",
|
|
29
32
|
metric_view: "Metric View",
|
|
30
|
-
|
|
33
|
+
summary_view: "Summary",
|
|
34
|
+
tabular_view: "Tabular View",
|
|
35
|
+
}
|
|
31
36
|
};
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
export interface II18nChartBuilderSorting {
|
|
2
|
-
|
|
3
|
-
sort_by: string;
|
|
4
|
-
label: string;
|
|
5
|
-
value: string;
|
|
6
|
-
descending: string;
|
|
2
|
+
aggregation_label: string;
|
|
7
3
|
ascending: string;
|
|
8
|
-
sort: string;
|
|
9
|
-
sort_descending: string;
|
|
10
|
-
sort_ascending: string;
|
|
11
4
|
clear_sorting: string;
|
|
5
|
+
descending: string;
|
|
6
|
+
label: string;
|
|
7
|
+
order_chart_columns: string;
|
|
8
|
+
order_others_columns: string;
|
|
12
9
|
select_column_placeholder: string;
|
|
13
|
-
|
|
10
|
+
sort: string;
|
|
11
|
+
sort_ascending: string;
|
|
12
|
+
sort_by: string;
|
|
13
|
+
sort_descending: string;
|
|
14
14
|
sort_descending_a_to_z: string;
|
|
15
15
|
sort_descending_z_to_a: string;
|
|
16
|
+
title: string;
|
|
17
|
+
value: string;
|
|
16
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { II18nDashboardAddChart } from "./II18nDashboardAddChart";
|
|
2
|
+
import { II18nDashboardEmptyState } from "./II18nDashboardEmptyState";
|
|
2
3
|
import { II18nDashboardToast } from "./II18nDashboardToast";
|
|
3
4
|
import { II18nDashboardTooltips } from "./II18nDashboardTooltips";
|
|
4
5
|
import { II18nDashboardViews } from "./II18nDashboardViews";
|
|
@@ -8,4 +9,5 @@ export interface II18nDashboard {
|
|
|
8
9
|
toast: II18nDashboardToast;
|
|
9
10
|
tooltips: II18nDashboardTooltips;
|
|
10
11
|
views: II18nDashboardViews;
|
|
12
|
+
empty_state: II18nDashboardEmptyState;
|
|
11
13
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -73,20 +73,22 @@ export const I18N_CHART_BUILDER_GENERAL_OPTIONS = {
|
|
|
73
73
|
none_tooltip: 'None'
|
|
74
74
|
},
|
|
75
75
|
sorting: {
|
|
76
|
-
|
|
77
|
-
sort_by: 'Sort by',
|
|
78
|
-
label: 'Label',
|
|
79
|
-
value: 'Value',
|
|
80
|
-
descending: 'Descending',
|
|
76
|
+
aggregation_label: 'Aggregation',
|
|
81
77
|
ascending: 'Ascending',
|
|
78
|
+
clear_sorting: 'Clear Sorting',
|
|
79
|
+
descending: 'Descending',
|
|
80
|
+
label: 'Label',
|
|
81
|
+
order_chart_columns: 'Chart Columns',
|
|
82
|
+
order_others_columns: 'Other Columns',
|
|
83
|
+
select_column_placeholder: 'Select Column',
|
|
82
84
|
sort: 'Sort',
|
|
83
|
-
sort_descending: 'Sort Descending',
|
|
84
85
|
sort_ascending: 'Sort Ascending',
|
|
86
|
+
sort_by: 'Sort by',
|
|
87
|
+
sort_descending: 'Sort Descending',
|
|
85
88
|
sort_descending_a_to_z: 'A to Z',
|
|
86
89
|
sort_descending_z_to_a: 'Z to A',
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
aggregation_label: 'Aggregation',
|
|
90
|
+
title: 'Sorting',
|
|
91
|
+
value: 'Value',
|
|
90
92
|
},
|
|
91
93
|
menu_actions: {
|
|
92
94
|
title: 'Menu Actions',
|
|
@@ -5,24 +5,29 @@ export const I18N_DASHBOARD = {
|
|
|
5
5
|
metric: "Metric",
|
|
6
6
|
summary: "Summary",
|
|
7
7
|
},
|
|
8
|
+
empty_state: {
|
|
9
|
+
about_charts: 'about charts',
|
|
10
|
+
about_metrics: 'about metrics',
|
|
11
|
+
learn_more: 'Learn more',
|
|
12
|
+
},
|
|
8
13
|
export_csv: "Export to CSV",
|
|
9
14
|
toast: {
|
|
10
|
-
refresh_table_message: 'Record Successfully Edited.',
|
|
11
|
-
delete_record_message: 'Record Successfully Deleted.',
|
|
12
15
|
add_record_message: 'Record Successfully Added.',
|
|
13
16
|
data_views_updated_message: 'Data views updated successfully.',
|
|
17
|
+
delete_record_message: 'Record Successfully Deleted.',
|
|
18
|
+
refresh_table_message: 'Record Successfully Edited.',
|
|
14
19
|
},
|
|
15
20
|
tooltips: {
|
|
16
|
-
style_themes: "Style Themes",
|
|
17
|
-
formulas: "Formulas",
|
|
18
21
|
buckets: "Buckets",
|
|
19
22
|
download: "Download",
|
|
20
23
|
embed_analyze: "Embed Analyze View",
|
|
24
|
+
formulas: "Formulas",
|
|
25
|
+
style_themes: "Style Themes",
|
|
21
26
|
},
|
|
22
27
|
views: {
|
|
23
|
-
summary_view: "Summary",
|
|
24
|
-
tabular_view: "Tabular View",
|
|
25
28
|
custom_view: "Custom View",
|
|
26
29
|
metric_view: "Metric View",
|
|
27
|
-
|
|
30
|
+
summary_view: "Summary",
|
|
31
|
+
tabular_view: "Tabular View",
|
|
32
|
+
}
|
|
28
33
|
};
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
export interface II18nChartBuilderSorting {
|
|
2
|
-
|
|
3
|
-
sort_by: string;
|
|
4
|
-
label: string;
|
|
5
|
-
value: string;
|
|
6
|
-
descending: string;
|
|
2
|
+
aggregation_label: string;
|
|
7
3
|
ascending: string;
|
|
8
|
-
sort: string;
|
|
9
|
-
sort_descending: string;
|
|
10
|
-
sort_ascending: string;
|
|
11
4
|
clear_sorting: string;
|
|
5
|
+
descending: string;
|
|
6
|
+
label: string;
|
|
7
|
+
order_chart_columns: string;
|
|
8
|
+
order_others_columns: string;
|
|
12
9
|
select_column_placeholder: string;
|
|
13
|
-
|
|
10
|
+
sort: string;
|
|
11
|
+
sort_ascending: string;
|
|
12
|
+
sort_by: string;
|
|
13
|
+
sort_descending: string;
|
|
14
14
|
sort_descending_a_to_z: string;
|
|
15
15
|
sort_descending_z_to_a: string;
|
|
16
|
+
title: string;
|
|
17
|
+
value: string;
|
|
16
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { II18nDashboardAddChart } from "./II18nDashboardAddChart";
|
|
2
|
+
import { II18nDashboardEmptyState } from "./II18nDashboardEmptyState";
|
|
2
3
|
import { II18nDashboardToast } from "./II18nDashboardToast";
|
|
3
4
|
import { II18nDashboardTooltips } from "./II18nDashboardTooltips";
|
|
4
5
|
import { II18nDashboardViews } from "./II18nDashboardViews";
|
|
@@ -9,4 +10,5 @@ export interface II18nDashboard {
|
|
|
9
10
|
toast: II18nDashboardToast;
|
|
10
11
|
tooltips: II18nDashboardTooltips;
|
|
11
12
|
views: II18nDashboardViews;
|
|
13
|
+
empty_state: II18nDashboardEmptyState;
|
|
12
14
|
}
|
|
@@ -76,20 +76,23 @@ export const I18N_CHART_BUILDER_GENERAL_OPTIONS: Pick<II18nChartBuilder, General
|
|
|
76
76
|
none_tooltip: 'None'
|
|
77
77
|
},
|
|
78
78
|
sorting: {
|
|
79
|
-
|
|
80
|
-
sort_by: 'Sort by',
|
|
81
|
-
label: 'Label',
|
|
82
|
-
value: 'Value',
|
|
83
|
-
descending: 'Descending',
|
|
79
|
+
aggregation_label: 'Aggregation',
|
|
84
80
|
ascending: 'Ascending',
|
|
81
|
+
clear_sorting: 'Clear Sorting',
|
|
82
|
+
descending: 'Descending',
|
|
83
|
+
label: 'Label',
|
|
84
|
+
order_chart_columns: 'Chart Columns',
|
|
85
|
+
order_others_columns: 'Other Columns',
|
|
86
|
+
select_column_placeholder: 'Select Column',
|
|
85
87
|
sort: 'Sort',
|
|
86
|
-
sort_descending: 'Sort Descending',
|
|
87
88
|
sort_ascending: 'Sort Ascending',
|
|
89
|
+
sort_by: 'Sort by',
|
|
90
|
+
sort_descending: 'Sort Descending',
|
|
88
91
|
sort_descending_a_to_z: 'A to Z',
|
|
89
92
|
sort_descending_z_to_a: 'Z to A',
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
+
title: 'Sorting',
|
|
94
|
+
value: 'Value',
|
|
95
|
+
|
|
93
96
|
},
|
|
94
97
|
menu_actions: {
|
|
95
98
|
title: 'Menu Actions',
|
|
@@ -7,24 +7,29 @@ export const I18N_DASHBOARD: II18nDashboard = {
|
|
|
7
7
|
metric: "Metric",
|
|
8
8
|
summary: "Summary",
|
|
9
9
|
},
|
|
10
|
+
empty_state: {
|
|
11
|
+
about_charts: 'about charts',
|
|
12
|
+
about_metrics: 'about metrics',
|
|
13
|
+
learn_more: 'Learn more',
|
|
14
|
+
},
|
|
10
15
|
export_csv: "Export to CSV",
|
|
11
16
|
toast: {
|
|
12
|
-
refresh_table_message: 'Record Successfully Edited.',
|
|
13
|
-
delete_record_message: 'Record Successfully Deleted.',
|
|
14
17
|
add_record_message: 'Record Successfully Added.',
|
|
15
18
|
data_views_updated_message: 'Data views updated successfully.',
|
|
19
|
+
delete_record_message: 'Record Successfully Deleted.',
|
|
20
|
+
refresh_table_message: 'Record Successfully Edited.',
|
|
16
21
|
},
|
|
17
22
|
tooltips: {
|
|
18
|
-
style_themes: "Style Themes",
|
|
19
|
-
formulas: "Formulas",
|
|
20
23
|
buckets: "Buckets",
|
|
21
24
|
download: "Download",
|
|
22
25
|
embed_analyze: "Embed Analyze View",
|
|
26
|
+
formulas: "Formulas",
|
|
27
|
+
style_themes: "Style Themes",
|
|
23
28
|
},
|
|
24
29
|
views: {
|
|
25
|
-
summary_view: "Summary",
|
|
26
|
-
tabular_view: "Tabular View",
|
|
27
30
|
custom_view: "Custom View",
|
|
28
31
|
metric_view: "Metric View",
|
|
29
|
-
|
|
32
|
+
summary_view: "Summary",
|
|
33
|
+
tabular_view: "Tabular View",
|
|
34
|
+
}
|
|
30
35
|
};
|