@qrvey/utils 1.13.0-3 → 1.13.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/constants/common/FILTER_SCOPE.d.ts +2 -1
- package/dist/cjs/filters/constants/common/FILTER_SCOPE.js +2 -0
- package/dist/cjs/filters/constants/common/FILTER_SCOPES.js +1 -0
- package/dist/cjs/filters/constants/common/FILTER_SCOPE_INFO.js +8 -0
- package/dist/cjs/filters/constants/common/FILTER_SCOPE_LABEL.d.ts +2 -1
- package/dist/cjs/filters/constants/common/FILTER_SCOPE_LABEL.js +1 -0
- package/dist/cjs/globalization/interfaces/filters/II18nFilterPanelScopeTitle.d.ts +1 -0
- package/dist/cjs/globalization/interfaces/filters/II18nFilterScopes.d.ts +1 -0
- package/dist/cjs/globalization/labels/filters/I18N_FILTER.js +1 -0
- package/dist/cjs/globalization/labels/filters/I18N_FILTER_SCOPE.js +1 -0
- package/dist/filters/constants/common/FILTER_SCOPE.d.ts +2 -1
- package/dist/filters/constants/common/FILTER_SCOPE.js +2 -0
- package/dist/filters/constants/common/FILTER_SCOPES.js +1 -0
- package/dist/filters/constants/common/FILTER_SCOPE_INFO.js +8 -0
- package/dist/filters/constants/common/FILTER_SCOPE_LABEL.d.ts +2 -1
- package/dist/filters/constants/common/FILTER_SCOPE_LABEL.js +1 -0
- package/dist/globalization/interfaces/filters/II18nFilterPanelScopeTitle.d.ts +1 -0
- package/dist/globalization/interfaces/filters/II18nFilterScopes.d.ts +1 -0
- package/dist/globalization/labels/filters/I18N_FILTER.js +1 -0
- package/dist/globalization/labels/filters/I18N_FILTER_SCOPE.js +1 -0
- package/package.json +1 -1
|
@@ -6,5 +6,6 @@ export declare enum FILTER_SCOPE {
|
|
|
6
6
|
TAB = "TAB",// PB/EU Filters for a single tab
|
|
7
7
|
DEFAULT = "DEFAULT",// Filters created on Chart Builder
|
|
8
8
|
CHART = "CHART",// PB/EU Filters for panels inside a page/tab
|
|
9
|
-
ACTION = "ACTION"
|
|
9
|
+
ACTION = "ACTION",// Filters created with FilterBY or other actions
|
|
10
|
+
FLOW = "FLOW"
|
|
10
11
|
}
|
|
@@ -68,4 +68,12 @@ exports.FILTER_SCOPE_INFO = [
|
|
|
68
68
|
displayed: true,
|
|
69
69
|
i18nLabelPath: "filter.scopes.action",
|
|
70
70
|
},
|
|
71
|
+
{
|
|
72
|
+
label: FILTER_SCOPE_LABEL_1.FILTER_SCOPE_LABEL.FLOW,
|
|
73
|
+
shortLabel: "Action",
|
|
74
|
+
abbrLabel: "ACT",
|
|
75
|
+
value: FILTER_SCOPE_1.FILTER_SCOPE.FLOW,
|
|
76
|
+
displayed: false,
|
|
77
|
+
i18nLabelPath: "filter.scopes.flow",
|
|
78
|
+
},
|
|
71
79
|
];
|
|
@@ -11,4 +11,5 @@ var FILTER_SCOPE_LABEL;
|
|
|
11
11
|
FILTER_SCOPE_LABEL["DEFAULT"] = "Default";
|
|
12
12
|
FILTER_SCOPE_LABEL["CHART"] = "Panel";
|
|
13
13
|
FILTER_SCOPE_LABEL["ACTION"] = "Action";
|
|
14
|
+
FILTER_SCOPE_LABEL["FLOW"] = "Automation";
|
|
14
15
|
})(FILTER_SCOPE_LABEL || (exports.FILTER_SCOPE_LABEL = FILTER_SCOPE_LABEL = {}));
|
|
@@ -6,5 +6,6 @@ export declare enum FILTER_SCOPE {
|
|
|
6
6
|
TAB = "TAB",// PB/EU Filters for a single tab
|
|
7
7
|
DEFAULT = "DEFAULT",// Filters created on Chart Builder
|
|
8
8
|
CHART = "CHART",// PB/EU Filters for panels inside a page/tab
|
|
9
|
-
ACTION = "ACTION"
|
|
9
|
+
ACTION = "ACTION",// Filters created with FilterBY or other actions
|
|
10
|
+
FLOW = "FLOW"
|
|
10
11
|
}
|
|
@@ -65,4 +65,12 @@ export const FILTER_SCOPE_INFO = [
|
|
|
65
65
|
displayed: true,
|
|
66
66
|
i18nLabelPath: "filter.scopes.action",
|
|
67
67
|
},
|
|
68
|
+
{
|
|
69
|
+
label: FILTER_SCOPE_LABEL.FLOW,
|
|
70
|
+
shortLabel: "Action",
|
|
71
|
+
abbrLabel: "ACT",
|
|
72
|
+
value: FILTER_SCOPE.FLOW,
|
|
73
|
+
displayed: false,
|
|
74
|
+
i18nLabelPath: "filter.scopes.flow",
|
|
75
|
+
},
|
|
68
76
|
];
|