@qrvey/utils 1.14.0-3 → 1.14.0-4
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/cjs/filters/interfaces/panel/IFilterPanelConfig.d.ts +4 -0
- package/dist/cjs/globalization/labels/bucket_builder/I18N_BUCKET_BUILDER.js +2 -2
- package/dist/cjs/globalization/labels/formula_builder/I18N_FORMULA_BUILDER.js +1 -1
- package/dist/filters/interfaces/panel/IFilterPanelConfig.d.ts +4 -0
- package/dist/globalization/labels/bucket_builder/I18N_BUCKET_BUILDER.js +2 -2
- package/dist/globalization/labels/formula_builder/I18N_FORMULA_BUILDER.js +1 -1
- package/package.json +1 -1
|
@@ -11,4 +11,8 @@ export interface IFilterPanelConfig extends IFUDataStore {
|
|
|
11
11
|
filterBuilderConfig?: IFilterBuilderConfig;
|
|
12
12
|
i18n?: II18nConfig;
|
|
13
13
|
paramsToFilterData?: IFSParamsToGetFilter;
|
|
14
|
+
/**
|
|
15
|
+
* Text for adding as a sub title of the filter panel
|
|
16
|
+
*/
|
|
17
|
+
subTitle?: string;
|
|
14
18
|
}
|
|
@@ -66,13 +66,13 @@ exports.I18N_BUCKET_BUILDER = {
|
|
|
66
66
|
},
|
|
67
67
|
delete_dialog: {
|
|
68
68
|
title: "Delete Bucketed Columns",
|
|
69
|
-
description: "Deleting this bucketed column will remove all instances of this column in
|
|
69
|
+
description: "Deleting this bucketed column will remove all instances of this column in the system.",
|
|
70
70
|
cancel: "Cancel",
|
|
71
71
|
delete: "Delete",
|
|
72
72
|
},
|
|
73
73
|
edit_dialog: {
|
|
74
74
|
title: "Edit Bucketed Columns",
|
|
75
|
-
description: "Editing this bucketed column will update all instances of this column in
|
|
75
|
+
description: "Editing this bucketed column will update all instances of this column in the system.",
|
|
76
76
|
cancel: "Cancel",
|
|
77
77
|
edit: "Edit",
|
|
78
78
|
},
|
|
@@ -28,7 +28,7 @@ exports.I18N_FORMULA_BUILDER = {
|
|
|
28
28
|
delete_dialog: {
|
|
29
29
|
apply_button: "Delete",
|
|
30
30
|
cancel_button: "Cancel",
|
|
31
|
-
description: "Deleting this formula will remove all instances of this calculation in
|
|
31
|
+
description: "Deleting this formula will remove all instances of this calculation in the system.",
|
|
32
32
|
title: "Delete Formula",
|
|
33
33
|
toast_description: "Formula Deleted Successfully",
|
|
34
34
|
},
|
|
@@ -11,4 +11,8 @@ export interface IFilterPanelConfig extends IFUDataStore {
|
|
|
11
11
|
filterBuilderConfig?: IFilterBuilderConfig;
|
|
12
12
|
i18n?: II18nConfig;
|
|
13
13
|
paramsToFilterData?: IFSParamsToGetFilter;
|
|
14
|
+
/**
|
|
15
|
+
* Text for adding as a sub title of the filter panel
|
|
16
|
+
*/
|
|
17
|
+
subTitle?: string;
|
|
14
18
|
}
|
|
@@ -63,13 +63,13 @@ export const I18N_BUCKET_BUILDER = {
|
|
|
63
63
|
},
|
|
64
64
|
delete_dialog: {
|
|
65
65
|
title: "Delete Bucketed Columns",
|
|
66
|
-
description: "Deleting this bucketed column will remove all instances of this column in
|
|
66
|
+
description: "Deleting this bucketed column will remove all instances of this column in the system.",
|
|
67
67
|
cancel: "Cancel",
|
|
68
68
|
delete: "Delete",
|
|
69
69
|
},
|
|
70
70
|
edit_dialog: {
|
|
71
71
|
title: "Edit Bucketed Columns",
|
|
72
|
-
description: "Editing this bucketed column will update all instances of this column in
|
|
72
|
+
description: "Editing this bucketed column will update all instances of this column in the system.",
|
|
73
73
|
cancel: "Cancel",
|
|
74
74
|
edit: "Edit",
|
|
75
75
|
},
|
|
@@ -25,7 +25,7 @@ export const I18N_FORMULA_BUILDER = {
|
|
|
25
25
|
delete_dialog: {
|
|
26
26
|
apply_button: "Delete",
|
|
27
27
|
cancel_button: "Cancel",
|
|
28
|
-
description: "Deleting this formula will remove all instances of this calculation in
|
|
28
|
+
description: "Deleting this formula will remove all instances of this calculation in the system.",
|
|
29
29
|
title: "Delete Formula",
|
|
30
30
|
toast_description: "Formula Deleted Successfully",
|
|
31
31
|
},
|