@qrvey/utils 1.16.0-20 → 1.16.0-21

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.
@@ -22,4 +22,8 @@ export interface II18nChartBuilderGeneralOptions {
22
22
  view_sorting: string;
23
23
  view_subtotals: string;
24
24
  view_total: string;
25
+ expanded_by_default: string;
26
+ expanded_by_default_disabled: string;
27
+ freeze_headers: string;
28
+ freeze_rows: string;
25
29
  }
@@ -5,4 +5,5 @@ export interface II18nChartBuilderMessagesDefault {
5
5
  max_panels_increment: string;
6
6
  median_aggregation_results: string;
7
7
  max_limit: string;
8
+ expanded_by_default: string;
8
9
  }
@@ -203,6 +203,7 @@ exports.I18N_CHART_BUILDER_GENERAL = {
203
203
  max_panels_increment: "Increasing the amount of panels to display above {{max_data_point_values_panels}} can affect chart performance.",
204
204
  median_aggregation_results: "The numbers are not actual, they are for preview purposes only.",
205
205
  max_limit: "Only 10,000 max data points are supported.",
206
+ expanded_by_default: "The maximum supported limit for this feature (Expanded by default) is 500 rows and 50 columns.",
206
207
  },
207
208
  messages_crosstab: {
208
209
  max_data: "Chart shows a maximum number of data points by default. To see more, go to <i>General</i> chart options and increase the <i>Max Records</i> and <i>Max Columns</i> to display.",
@@ -29,6 +29,10 @@ exports.I18N_CHART_BUILDER_GENERAL_OPTIONS = {
29
29
  view_sorting: "Sorting",
30
30
  view_subtotals: "Subtotals",
31
31
  view_total: "Totals",
32
+ expanded_by_default: "Expanded by default",
33
+ expanded_by_default_disabled: "This option is disabled. To enable it, limit the layout to a maximum of 2 rows and 2 columns.",
34
+ freeze_headers: "Freeze the column headers",
35
+ freeze_rows: "Freeze the row headers",
32
36
  },
33
37
  tooltip_settings: {
34
38
  name: "Tooltips",
@@ -22,4 +22,8 @@ export interface II18nChartBuilderGeneralOptions {
22
22
  view_sorting: string;
23
23
  view_subtotals: string;
24
24
  view_total: string;
25
+ expanded_by_default: string;
26
+ expanded_by_default_disabled: string;
27
+ freeze_headers: string;
28
+ freeze_rows: string;
25
29
  }
@@ -5,4 +5,5 @@ export interface II18nChartBuilderMessagesDefault {
5
5
  max_panels_increment: string;
6
6
  median_aggregation_results: string;
7
7
  max_limit: string;
8
+ expanded_by_default: string;
8
9
  }
@@ -200,6 +200,7 @@ export const I18N_CHART_BUILDER_GENERAL = {
200
200
  max_panels_increment: "Increasing the amount of panels to display above {{max_data_point_values_panels}} can affect chart performance.",
201
201
  median_aggregation_results: "The numbers are not actual, they are for preview purposes only.",
202
202
  max_limit: "Only 10,000 max data points are supported.",
203
+ expanded_by_default: "The maximum supported limit for this feature (Expanded by default) is 500 rows and 50 columns.",
203
204
  },
204
205
  messages_crosstab: {
205
206
  max_data: "Chart shows a maximum number of data points by default. To see more, go to <i>General</i> chart options and increase the <i>Max Records</i> and <i>Max Columns</i> to display.",
@@ -26,6 +26,10 @@ export const I18N_CHART_BUILDER_GENERAL_OPTIONS = {
26
26
  view_sorting: "Sorting",
27
27
  view_subtotals: "Subtotals",
28
28
  view_total: "Totals",
29
+ expanded_by_default: "Expanded by default",
30
+ expanded_by_default_disabled: "This option is disabled. To enable it, limit the layout to a maximum of 2 rows and 2 columns.",
31
+ freeze_headers: "Freeze the column headers",
32
+ freeze_rows: "Freeze the row headers",
29
33
  },
30
34
  tooltip_settings: {
31
35
  name: "Tooltips",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.16.0-20",
3
+ "version": "1.16.0-21",
4
4
  "description": "Helper, Utils for all Qrvey Projects",
5
5
  "homepage": "https://bitbucket.org/qrvey/qrvey_utils/wiki/Home",
6
6
  "main": "dist/index.js",