@qrvey/utils 1.2.4-17 → 1.2.4-18

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,4 +1,4 @@
1
1
  export interface II18nServiceTranslateOption {
2
- count: number;
2
+ count?: number;
3
3
  [prop: string]: any;
4
4
  }
@@ -9,7 +9,7 @@ const I18N_RELATIVE_CONTAINER_1 = require("./I18N_RELATIVE_CONTAINER");
9
9
  const I18N_SLIDEBAR_1 = require("./I18N_SLIDEBAR");
10
10
  const I18N_VALUE_CONTAINER_1 = require("./I18N_VALUE_CONTAINER");
11
11
  exports.I18N_FILTER = {
12
- suffix_scope_label: 'Filters',
12
+ suffix_scope_label: '{{scope}} Filters',
13
13
  operators: I18N_FILTER_OPERATOR_1.I18N_FILTER_OPERATOR,
14
14
  relative_container: I18N_RELATIVE_CONTAINER_1.I18N_RELATIVE_CONTAINER,
15
15
  scope: I18N_FILTER_SCOPE_1.I18N_FILTER_SCOPE,
@@ -1,4 +1,4 @@
1
1
  export interface II18nServiceTranslateOption {
2
- count: number;
2
+ count?: number;
3
3
  [prop: string]: any;
4
4
  }
@@ -6,7 +6,7 @@ import { I18N_RELATIVE_CONTAINER } from "./I18N_RELATIVE_CONTAINER";
6
6
  import { I18N_SLIDEBAR } from "./I18N_SLIDEBAR";
7
7
  import { I18N_VALUE_CONTAINER } from "./I18N_VALUE_CONTAINER";
8
8
  export const I18N_FILTER = {
9
- suffix_scope_label: 'Filters',
9
+ suffix_scope_label: '{{scope}} Filters',
10
10
  operators: I18N_FILTER_OPERATOR,
11
11
  relative_container: I18N_RELATIVE_CONTAINER,
12
12
  scope: I18N_FILTER_SCOPE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.2.4-17",
3
+ "version": "1.2.4-18",
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,4 +1,4 @@
1
1
  export interface II18nServiceTranslateOption {
2
- count: number;
2
+ count?: number;
3
3
  [prop: string]: any;
4
4
  }
@@ -7,7 +7,7 @@ import { II18nFilterOperator } from "./II18nFilterOperator";
7
7
  import { II18nFilterScopes } from "./II18nFilterScopes";
8
8
 
9
9
  export interface II18nFilter {
10
- suffix_scope_label: string; // The sustantive of the scopes. i.e: next_scope_label='Filters'; Result: Global *Filters*
10
+ suffix_scope_label: string; // The sustantive of the scopes. i.e: suffix_scope_label='Filters'; Result: Global *Filters*
11
11
  operators: II18nFilterOperator;
12
12
  ranking_container: II18nRankingContainer;
13
13
  relative_container: II18nRelativeContainer;
@@ -8,7 +8,7 @@ import { I18N_SLIDEBAR } from "./I18N_SLIDEBAR";
8
8
  import { I18N_VALUE_CONTAINER } from "./I18N_VALUE_CONTAINER";
9
9
 
10
10
  export const I18N_FILTER: II18nFilter = {
11
- suffix_scope_label: 'Filters',
11
+ suffix_scope_label: '{{scope}} Filters',
12
12
  operators: I18N_FILTER_OPERATOR,
13
13
  relative_container: I18N_RELATIVE_CONTAINER,
14
14
  scope: I18N_FILTER_SCOPE,