@qrvey/utils 1.2.9-14 → 1.2.9-15

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,9 +1,11 @@
1
1
  export interface II18nChartBuilderFontOptions {
2
+ automatic_resize: string;
2
3
  color: string;
4
+ disabled: string;
5
+ select_option_placeholder: string;
6
+ size: string;
3
7
  style: string;
4
- style_regular: string;
5
8
  style_bold: string;
6
9
  style_italic: string;
7
- automatic_resize: string;
8
- size: string;
10
+ style_regular: string;
9
11
  }
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.I18N_CHART_BUILDER_LAYER_OPTIONS = void 0;
4
4
  exports.I18N_CHART_BUILDER_LAYER_OPTIONS = {
5
5
  trends_line: {
6
- title: 'Trends line',
6
+ title: 'Trend Line',
7
7
  type: 'Type',
8
8
  type_none: 'None',
9
9
  type_standard_linear_regression: 'Standard Linear Regression',
@@ -16,9 +16,9 @@ exports.I18N_CHART_BUILDER_STYLE_OPTIONS = {
16
16
  comparision_color: 'Comparision Color',
17
17
  data_labels_check: 'Data Labels',
18
18
  default_format_title: 'Format',
19
- display_outliers_check: 'Display outliers',
19
+ display_outliers_check: 'Display Outliers',
20
20
  line_opacity: 'Line Opacity',
21
- map_borders: 'Map borders',
21
+ map_borders: 'Map Borders',
22
22
  needle_color: 'Needle Color',
23
23
  opacity: 'Opacity',
24
24
  percentage_check: 'Percentage',
@@ -152,13 +152,15 @@ exports.I18N_CHART_BUILDER_STYLE_OPTIONS = {
152
152
  names_rotation: 'Names Rotation',
153
153
  },
154
154
  font_options: {
155
+ automatic_resize: 'Automatic Resize',
155
156
  color: 'Font Color',
157
+ disabled: '<i>Automatic Resize</i> is active, disable it to set the size manually.',
158
+ select_option_placeholder: 'Select Option',
159
+ size: 'Font Size',
156
160
  style: 'Font Style',
157
- style_regular: 'Regular',
158
161
  style_bold: 'Bold',
159
162
  style_italic: 'Italic',
160
- automatic_resize: 'Automatic Resize',
161
- size: 'Font Size',
163
+ style_regular: 'Regular',
162
164
  },
163
165
  circle_size: {
164
166
  title: 'Circle Size',
@@ -1,9 +1,11 @@
1
1
  export interface II18nChartBuilderFontOptions {
2
+ automatic_resize: string;
2
3
  color: string;
4
+ disabled: string;
5
+ select_option_placeholder: string;
6
+ size: string;
3
7
  style: string;
4
- style_regular: string;
5
8
  style_bold: string;
6
9
  style_italic: string;
7
- automatic_resize: string;
8
- size: string;
10
+ style_regular: string;
9
11
  }
@@ -1,6 +1,6 @@
1
1
  export const I18N_CHART_BUILDER_LAYER_OPTIONS = {
2
2
  trends_line: {
3
- title: 'Trends line',
3
+ title: 'Trend Line',
4
4
  type: 'Type',
5
5
  type_none: 'None',
6
6
  type_standard_linear_regression: 'Standard Linear Regression',
@@ -13,9 +13,9 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS = {
13
13
  comparision_color: 'Comparision Color',
14
14
  data_labels_check: 'Data Labels',
15
15
  default_format_title: 'Format',
16
- display_outliers_check: 'Display outliers',
16
+ display_outliers_check: 'Display Outliers',
17
17
  line_opacity: 'Line Opacity',
18
- map_borders: 'Map borders',
18
+ map_borders: 'Map Borders',
19
19
  needle_color: 'Needle Color',
20
20
  opacity: 'Opacity',
21
21
  percentage_check: 'Percentage',
@@ -149,13 +149,15 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS = {
149
149
  names_rotation: 'Names Rotation',
150
150
  },
151
151
  font_options: {
152
+ automatic_resize: 'Automatic Resize',
152
153
  color: 'Font Color',
154
+ disabled: '<i>Automatic Resize</i> is active, disable it to set the size manually.',
155
+ select_option_placeholder: 'Select Option',
156
+ size: 'Font Size',
153
157
  style: 'Font Style',
154
- style_regular: 'Regular',
155
158
  style_bold: 'Bold',
156
159
  style_italic: 'Italic',
157
- automatic_resize: 'Automatic Resize',
158
- size: 'Font Size',
160
+ style_regular: 'Regular',
159
161
  },
160
162
  circle_size: {
161
163
  title: 'Circle Size',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.2.9-14",
3
+ "version": "1.2.9-15",
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",
@@ -1,9 +1,11 @@
1
1
  export interface II18nChartBuilderFontOptions {
2
+ automatic_resize: string;
2
3
  color: string;
4
+ disabled: string;
5
+ select_option_placeholder: string;
6
+ size: string;
3
7
  style: string;
4
- style_regular: string;
5
8
  style_bold: string;
6
9
  style_italic: string;
7
- automatic_resize: string;
8
- size: string;
10
+ style_regular: string;
9
11
  }
@@ -3,7 +3,7 @@ import { II18nChartBuilder } from "../..";
3
3
  type LayerOptions = 'trends_line' | 'references_line';
4
4
  export const I18N_CHART_BUILDER_LAYER_OPTIONS: Pick<II18nChartBuilder, LayerOptions> = {
5
5
  trends_line: {
6
- title: 'Trends line',
6
+ title: 'Trend Line',
7
7
  type: 'Type',
8
8
  type_none: 'None',
9
9
  type_standard_linear_regression: 'Standard Linear Regression',
@@ -19,9 +19,9 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS: Pick<II18nChartBuilder, StyleOpti
19
19
  comparision_color: 'Comparision Color',
20
20
  data_labels_check: 'Data Labels',
21
21
  default_format_title: 'Format',
22
- display_outliers_check: 'Display outliers',
22
+ display_outliers_check: 'Display Outliers',
23
23
  line_opacity: 'Line Opacity',
24
- map_borders: 'Map borders',
24
+ map_borders: 'Map Borders',
25
25
  needle_color: 'Needle Color',
26
26
  opacity: 'Opacity',
27
27
  percentage_check: 'Percentage',
@@ -156,13 +156,15 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS: Pick<II18nChartBuilder, StyleOpti
156
156
  names_rotation: 'Names Rotation',
157
157
  },
158
158
  font_options: {
159
+ automatic_resize: 'Automatic Resize',
159
160
  color: 'Font Color',
161
+ disabled: '<i>Automatic Resize</i> is active, disable it to set the size manually.',
162
+ select_option_placeholder: 'Select Option',
163
+ size: 'Font Size',
160
164
  style: 'Font Style',
161
- style_regular: 'Regular',
162
165
  style_bold: 'Bold',
163
166
  style_italic: 'Italic',
164
- automatic_resize: 'Automatic Resize',
165
- size: 'Font Size',
167
+ style_regular: 'Regular',
166
168
  },
167
169
  circle_size: {
168
170
  title: 'Circle Size',
@@ -186,7 +188,7 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS: Pick<II18nChartBuilder, StyleOpti
186
188
  target_value: 'Target Value'
187
189
  },
188
190
  table_style_options: {
189
- typeface: 'Typeface', // used
191
+ typeface: 'Typeface',
190
192
  weight: 'Weight',
191
193
  weight_bold: 'Bold',
192
194
  weight_normal: 'normal',