@qrvey/utils 1.15.0-25 → 1.15.0-27

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.
@@ -7,16 +7,20 @@ export interface I18nExportingModal {
7
7
  cancel_button_label: string;
8
8
  error_messages: II18nExportingModalErrorMessages;
9
9
  file_name_label: string;
10
+ new_dataset_name_label: string;
11
+ new_dataset_name_placeholder: string;
10
12
  recurrence: II18nExportingModalRecurrence;
11
13
  time_stamp: II18nExportingModalTimeStamp;
12
14
  time_zone_label: string;
13
15
  title_label: string;
16
+ title_new_dataset: string;
14
17
  uniqueness_concatenate: string;
15
18
  toast_messages: {
16
19
  failed_scheduling: string;
17
20
  successful_scheduling: string;
18
21
  };
19
22
  pivoting_export: {
23
+ source_label: string;
20
24
  dataset_label: string;
21
25
  filter_label: string;
22
26
  pivoting: {
@@ -28,12 +32,14 @@ export interface I18nExportingModal {
28
32
  columns_section: {
29
33
  title: string;
30
34
  subtitle: string;
35
+ subtitle_new_dataset: string;
31
36
  select_all_label: string;
32
37
  dataset_columns: string;
33
38
  pivot_columns_label: string;
34
39
  pivot_columns_sublabel: string;
35
40
  };
36
41
  columns_to_export_label: string;
42
+ columns_to_create_dataset_label: string;
37
43
  no_results_found: string;
38
44
  };
39
45
  schedule: {
@@ -1,3 +1,4 @@
1
1
  export interface II18nExportingModalApplyButtonLabel {
2
2
  export_now: string;
3
+ create_dataset: string;
3
4
  }
@@ -5,12 +5,17 @@ exports.EXPORTING_MODAL = void 0;
5
5
  * @deprecated since version 1.12.0; Qrvey version 8.3. Those default poroperties will be replaced by Qrvey Globalization JSON
6
6
  */
7
7
  exports.EXPORTING_MODAL = {
8
- apply_button_label: { export_now: "Export Now" },
8
+ apply_button_label: {
9
+ export_now: "Export Now",
10
+ create_dataset: "Create Dataset",
11
+ },
9
12
  cancel_button_label: "Cancel",
10
13
  error_messages: {
11
14
  special_characters: "Special characters are not allowed in file name.",
12
15
  },
13
16
  file_name_label: "File Name",
17
+ new_dataset_name_label: "New Dataset Name",
18
+ new_dataset_name_placeholder: "Type",
14
19
  recurrence: {
15
20
  label: "Recurrence",
16
21
  value: { does_not_repeat: "Does not repeat" },
@@ -22,12 +27,14 @@ exports.EXPORTING_MODAL = {
22
27
  },
23
28
  time_zone_label: "Time Zone",
24
29
  title_label: "Export",
30
+ title_new_dataset: "New Dataset",
25
31
  uniqueness_concatenate: "For Uniqueness Concatenate",
26
32
  toast_messages: {
27
33
  failed_scheduling: "The export could not be scheduled at this time.",
28
34
  successful_scheduling: "The export of {{fileName}} has been scheduled successfully.",
29
35
  },
30
36
  pivoting_export: {
37
+ source_label: "Source",
31
38
  dataset_label: "Dataset",
32
39
  filter_label: "Filter",
33
40
  pivoting: {
@@ -39,12 +46,14 @@ exports.EXPORTING_MODAL = {
39
46
  columns_section: {
40
47
  title: "Columns",
41
48
  subtitle: "(Select columns to export)",
49
+ subtitle_new_dataset: "(Select columns for new dataset)",
42
50
  select_all_label: "Add All Columns",
43
51
  dataset_columns: "Dataset Columns",
44
52
  pivot_columns_label: "Pivot Columns",
45
53
  pivot_columns_sublabel: "Displaying only the first 100 results.",
46
54
  },
47
55
  columns_to_export_label: "Columns to export",
56
+ columns_to_create_dataset_label: "Dataset columns",
48
57
  no_results_found: "No results found",
49
58
  },
50
59
  schedule: {
@@ -6,10 +6,10 @@ const GLOBAL_CSS_VARIABLES_1 = require("./GLOBAL_CSS_VARIABLES");
6
6
  * Collection of CSS Variables for Light Themes and its assigned values.
7
7
  */
8
8
  exports.AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT = {
9
- [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.HEADER_BACKGROUND_COLOR]: "#00000009",
9
+ [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.HEADER_BACKGROUND_COLOR]: "#F7F8FB",
10
10
  [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.BACKGROUND_OPACITY_BLACK_COLOR]: "#FFFFFF10",
11
- [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.BORDER_COLOR]: "#00000020",
12
- [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.DIVIDER_COLOR]: "#00000020",
11
+ [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.BORDER_COLOR]: "#00000010",
12
+ [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.DIVIDER_COLOR]: "#00000010",
13
13
  [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.HOVER_COLOR]: "#00000010",
14
14
  [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.PLACEHOLDER_COLOR]: "#00000070",
15
15
  [GLOBAL_CSS_VARIABLES_1.GLOBAL_CSS_VARIABLES.PILLS_BACKGROUND_COLOR]: "#FFFFFF40",
@@ -7,16 +7,20 @@ export interface I18nExportingModal {
7
7
  cancel_button_label: string;
8
8
  error_messages: II18nExportingModalErrorMessages;
9
9
  file_name_label: string;
10
+ new_dataset_name_label: string;
11
+ new_dataset_name_placeholder: string;
10
12
  recurrence: II18nExportingModalRecurrence;
11
13
  time_stamp: II18nExportingModalTimeStamp;
12
14
  time_zone_label: string;
13
15
  title_label: string;
16
+ title_new_dataset: string;
14
17
  uniqueness_concatenate: string;
15
18
  toast_messages: {
16
19
  failed_scheduling: string;
17
20
  successful_scheduling: string;
18
21
  };
19
22
  pivoting_export: {
23
+ source_label: string;
20
24
  dataset_label: string;
21
25
  filter_label: string;
22
26
  pivoting: {
@@ -28,12 +32,14 @@ export interface I18nExportingModal {
28
32
  columns_section: {
29
33
  title: string;
30
34
  subtitle: string;
35
+ subtitle_new_dataset: string;
31
36
  select_all_label: string;
32
37
  dataset_columns: string;
33
38
  pivot_columns_label: string;
34
39
  pivot_columns_sublabel: string;
35
40
  };
36
41
  columns_to_export_label: string;
42
+ columns_to_create_dataset_label: string;
37
43
  no_results_found: string;
38
44
  };
39
45
  schedule: {
@@ -1,3 +1,4 @@
1
1
  export interface II18nExportingModalApplyButtonLabel {
2
2
  export_now: string;
3
+ create_dataset: string;
3
4
  }
@@ -2,12 +2,17 @@
2
2
  * @deprecated since version 1.12.0; Qrvey version 8.3. Those default poroperties will be replaced by Qrvey Globalization JSON
3
3
  */
4
4
  export const EXPORTING_MODAL = {
5
- apply_button_label: { export_now: "Export Now" },
5
+ apply_button_label: {
6
+ export_now: "Export Now",
7
+ create_dataset: "Create Dataset",
8
+ },
6
9
  cancel_button_label: "Cancel",
7
10
  error_messages: {
8
11
  special_characters: "Special characters are not allowed in file name.",
9
12
  },
10
13
  file_name_label: "File Name",
14
+ new_dataset_name_label: "New Dataset Name",
15
+ new_dataset_name_placeholder: "Type",
11
16
  recurrence: {
12
17
  label: "Recurrence",
13
18
  value: { does_not_repeat: "Does not repeat" },
@@ -19,12 +24,14 @@ export const EXPORTING_MODAL = {
19
24
  },
20
25
  time_zone_label: "Time Zone",
21
26
  title_label: "Export",
27
+ title_new_dataset: "New Dataset",
22
28
  uniqueness_concatenate: "For Uniqueness Concatenate",
23
29
  toast_messages: {
24
30
  failed_scheduling: "The export could not be scheduled at this time.",
25
31
  successful_scheduling: "The export of {{fileName}} has been scheduled successfully.",
26
32
  },
27
33
  pivoting_export: {
34
+ source_label: "Source",
28
35
  dataset_label: "Dataset",
29
36
  filter_label: "Filter",
30
37
  pivoting: {
@@ -36,12 +43,14 @@ export const EXPORTING_MODAL = {
36
43
  columns_section: {
37
44
  title: "Columns",
38
45
  subtitle: "(Select columns to export)",
46
+ subtitle_new_dataset: "(Select columns for new dataset)",
39
47
  select_all_label: "Add All Columns",
40
48
  dataset_columns: "Dataset Columns",
41
49
  pivot_columns_label: "Pivot Columns",
42
50
  pivot_columns_sublabel: "Displaying only the first 100 results.",
43
51
  },
44
52
  columns_to_export_label: "Columns to export",
53
+ columns_to_create_dataset_label: "Dataset columns",
45
54
  no_results_found: "No results found",
46
55
  },
47
56
  schedule: {
@@ -3,10 +3,10 @@ import { GLOBAL_CSS_VARIABLES } from "./GLOBAL_CSS_VARIABLES";
3
3
  * Collection of CSS Variables for Light Themes and its assigned values.
4
4
  */
5
5
  export const AUTOMATIC_GLOBAL_CSS_VARIABLES_FOR_LIGHT = {
6
- [GLOBAL_CSS_VARIABLES.HEADER_BACKGROUND_COLOR]: "#00000009",
6
+ [GLOBAL_CSS_VARIABLES.HEADER_BACKGROUND_COLOR]: "#F7F8FB",
7
7
  [GLOBAL_CSS_VARIABLES.BACKGROUND_OPACITY_BLACK_COLOR]: "#FFFFFF10",
8
- [GLOBAL_CSS_VARIABLES.BORDER_COLOR]: "#00000020",
9
- [GLOBAL_CSS_VARIABLES.DIVIDER_COLOR]: "#00000020",
8
+ [GLOBAL_CSS_VARIABLES.BORDER_COLOR]: "#00000010",
9
+ [GLOBAL_CSS_VARIABLES.DIVIDER_COLOR]: "#00000010",
10
10
  [GLOBAL_CSS_VARIABLES.HOVER_COLOR]: "#00000010",
11
11
  [GLOBAL_CSS_VARIABLES.PLACEHOLDER_COLOR]: "#00000070",
12
12
  [GLOBAL_CSS_VARIABLES.PILLS_BACKGROUND_COLOR]: "#FFFFFF40",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.15.0-25",
3
+ "version": "1.15.0-27",
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",