@qrvey/utils 1.2.9-28 → 1.2.9-29
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/README.md +609 -609
- package/dist/cjs/globalization/interfaces/filters/II18nFilter.d.ts +2 -0
- package/dist/cjs/globalization/interfaces/filters/II18nFilterExtraInfo.d.ts +4 -0
- package/dist/cjs/globalization/interfaces/filters/II18nFilterExtraInfo.js +2 -0
- package/dist/cjs/globalization/interfaces/filters/index.d.ts +1 -0
- package/dist/cjs/globalization/interfaces/filters/index.js +1 -0
- package/dist/cjs/globalization/labels/filters/I18N_FILTER.js +4 -0
- package/dist/globalization/interfaces/filters/II18nFilter.d.ts +2 -0
- package/dist/globalization/interfaces/filters/II18nFilterExtraInfo.d.ts +4 -0
- package/dist/globalization/interfaces/filters/II18nFilterExtraInfo.js +1 -0
- package/dist/globalization/interfaces/filters/index.d.ts +1 -0
- package/dist/globalization/interfaces/filters/index.js +1 -0
- package/dist/globalization/labels/filters/I18N_FILTER.js +4 -0
- package/package.json +1 -1
- package/src/globalization/interfaces/filters/II18nFilter.ts +2 -0
- package/src/globalization/interfaces/filters/II18nFilterExtraInfo.ts +4 -0
- package/src/globalization/interfaces/filters/index.ts +1 -0
- package/src/globalization/labels/filters/I18N_FILTER.ts +4 -0
|
@@ -8,8 +8,10 @@ import { II18nFilterScopes } from "./II18nFilterScopes";
|
|
|
8
8
|
import { II18nFilterPanelScopeTitle } from "./II18nFilterPanelScopeTitle";
|
|
9
9
|
import { II18nFilterDateSections } from "./II18nFilterDateSections";
|
|
10
10
|
import { II18nTokenBox } from './II18nTokenBox';
|
|
11
|
+
import { II18nFilterExtraInfo } from "./II18nFilterExtraInfo";
|
|
11
12
|
export interface II18nFilter {
|
|
12
13
|
date_sections: II18nFilterDateSections;
|
|
14
|
+
extra_info: II18nFilterExtraInfo;
|
|
13
15
|
operators: II18nFilterOperator;
|
|
14
16
|
ranking_container: II18nRankingContainer;
|
|
15
17
|
relative_container: II18nRelativeContainer;
|
|
@@ -7,6 +7,7 @@ export * from './II18nFilterBuilderScopes';
|
|
|
7
7
|
export * from './II18nFilterBuilderSelectedValuesContainer';
|
|
8
8
|
export * from './II18nFilterDateSections';
|
|
9
9
|
export * from './II18nFilterDisplay';
|
|
10
|
+
export * from './II18nFilterExtraInfo';
|
|
10
11
|
export * from './II18nFilterOperator';
|
|
11
12
|
export * from './II18nFilterPanel';
|
|
12
13
|
export * from './II18nFilterPanelCardAction';
|
|
@@ -19,6 +19,7 @@ __exportStar(require("./II18nFilterBuilderScopes"), exports);
|
|
|
19
19
|
__exportStar(require("./II18nFilterBuilderSelectedValuesContainer"), exports);
|
|
20
20
|
__exportStar(require("./II18nFilterDateSections"), exports);
|
|
21
21
|
__exportStar(require("./II18nFilterDisplay"), exports);
|
|
22
|
+
__exportStar(require("./II18nFilterExtraInfo"), exports);
|
|
22
23
|
__exportStar(require("./II18nFilterOperator"), exports);
|
|
23
24
|
__exportStar(require("./II18nFilterPanel"), exports);
|
|
24
25
|
__exportStar(require("./II18nFilterPanelCardAction"), exports);
|
|
@@ -14,6 +14,10 @@ exports.I18N_FILTER = {
|
|
|
14
14
|
absolute: FILTER_DATE_SECTION_LABEL_1.FILTER_DATE_SECTION_LABEL.ABSOLUTE,
|
|
15
15
|
relative: FILTER_DATE_SECTION_LABEL_1.FILTER_DATE_SECTION_LABEL.RELATIVE,
|
|
16
16
|
},
|
|
17
|
+
extra_info: {
|
|
18
|
+
date_picker_tooltip: 'Created with date picker',
|
|
19
|
+
input_box_tooltip: 'Input Box Filter',
|
|
20
|
+
},
|
|
17
21
|
operators: I18N_FILTER_OPERATOR_1.I18N_FILTER_OPERATOR,
|
|
18
22
|
ranking_container: I18N_RANKING_CONTAINER_1.I18N_RANKING_CONTAINER,
|
|
19
23
|
relative_container: I18N_RELATIVE_CONTAINER_1.I18N_RELATIVE_CONTAINER,
|
|
@@ -8,8 +8,10 @@ import { II18nFilterScopes } from "./II18nFilterScopes";
|
|
|
8
8
|
import { II18nFilterPanelScopeTitle } from "./II18nFilterPanelScopeTitle";
|
|
9
9
|
import { II18nFilterDateSections } from "./II18nFilterDateSections";
|
|
10
10
|
import { II18nTokenBox } from './II18nTokenBox';
|
|
11
|
+
import { II18nFilterExtraInfo } from "./II18nFilterExtraInfo";
|
|
11
12
|
export interface II18nFilter {
|
|
12
13
|
date_sections: II18nFilterDateSections;
|
|
14
|
+
extra_info: II18nFilterExtraInfo;
|
|
13
15
|
operators: II18nFilterOperator;
|
|
14
16
|
ranking_container: II18nRankingContainer;
|
|
15
17
|
relative_container: II18nRelativeContainer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -7,6 +7,7 @@ export * from './II18nFilterBuilderScopes';
|
|
|
7
7
|
export * from './II18nFilterBuilderSelectedValuesContainer';
|
|
8
8
|
export * from './II18nFilterDateSections';
|
|
9
9
|
export * from './II18nFilterDisplay';
|
|
10
|
+
export * from './II18nFilterExtraInfo';
|
|
10
11
|
export * from './II18nFilterOperator';
|
|
11
12
|
export * from './II18nFilterPanel';
|
|
12
13
|
export * from './II18nFilterPanelCardAction';
|
|
@@ -7,6 +7,7 @@ export * from './II18nFilterBuilderScopes';
|
|
|
7
7
|
export * from './II18nFilterBuilderSelectedValuesContainer';
|
|
8
8
|
export * from './II18nFilterDateSections';
|
|
9
9
|
export * from './II18nFilterDisplay';
|
|
10
|
+
export * from './II18nFilterExtraInfo';
|
|
10
11
|
export * from './II18nFilterOperator';
|
|
11
12
|
export * from './II18nFilterPanel';
|
|
12
13
|
export * from './II18nFilterPanelCardAction';
|
|
@@ -11,6 +11,10 @@ export const I18N_FILTER = {
|
|
|
11
11
|
absolute: FILTER_DATE_SECTION_LABEL.ABSOLUTE,
|
|
12
12
|
relative: FILTER_DATE_SECTION_LABEL.RELATIVE,
|
|
13
13
|
},
|
|
14
|
+
extra_info: {
|
|
15
|
+
date_picker_tooltip: 'Created with date picker',
|
|
16
|
+
input_box_tooltip: 'Input Box Filter',
|
|
17
|
+
},
|
|
14
18
|
operators: I18N_FILTER_OPERATOR,
|
|
15
19
|
ranking_container: I18N_RANKING_CONTAINER,
|
|
16
20
|
relative_container: I18N_RELATIVE_CONTAINER,
|
package/package.json
CHANGED
|
@@ -8,9 +8,11 @@ import { II18nFilterScopes } from "./II18nFilterScopes";
|
|
|
8
8
|
import { II18nFilterPanelScopeTitle } from "./II18nFilterPanelScopeTitle";
|
|
9
9
|
import { II18nFilterDateSections } from "./II18nFilterDateSections";
|
|
10
10
|
import { II18nTokenBox } from './II18nTokenBox';
|
|
11
|
+
import { II18nFilterExtraInfo } from "./II18nFilterExtraInfo";
|
|
11
12
|
|
|
12
13
|
export interface II18nFilter {
|
|
13
14
|
date_sections: II18nFilterDateSections;
|
|
15
|
+
extra_info: II18nFilterExtraInfo;
|
|
14
16
|
operators: II18nFilterOperator;
|
|
15
17
|
ranking_container: II18nRankingContainer;
|
|
16
18
|
relative_container: II18nRelativeContainer;
|
|
@@ -8,6 +8,7 @@ export * from './II18nFilterBuilderSelectedValuesContainer';
|
|
|
8
8
|
|
|
9
9
|
export * from './II18nFilterDateSections';
|
|
10
10
|
export * from './II18nFilterDisplay';
|
|
11
|
+
export * from './II18nFilterExtraInfo';
|
|
11
12
|
export * from './II18nFilterOperator';
|
|
12
13
|
export * from './II18nFilterPanel';
|
|
13
14
|
export * from './II18nFilterPanelCardAction';
|
|
@@ -13,6 +13,10 @@ export const I18N_FILTER: II18nFilter = {
|
|
|
13
13
|
absolute: FILTER_DATE_SECTION_LABEL.ABSOLUTE,
|
|
14
14
|
relative: FILTER_DATE_SECTION_LABEL.RELATIVE,
|
|
15
15
|
},
|
|
16
|
+
extra_info: {
|
|
17
|
+
date_picker_tooltip: 'Created with date picker',
|
|
18
|
+
input_box_tooltip: 'Input Box Filter',
|
|
19
|
+
},
|
|
16
20
|
operators: I18N_FILTER_OPERATOR,
|
|
17
21
|
ranking_container: I18N_RANKING_CONTAINER,
|
|
18
22
|
relative_container: I18N_RELATIVE_CONTAINER,
|