@mediusinc/mng-commons 2.0.0-rc.1-b808fba6 → 2.0.0-rc.2-d8b4bafc

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.
Files changed (101) hide show
  1. package/README.md +32 -32
  2. package/esm2020/index.mjs +61 -0
  3. package/esm2020/lib/components/action/action.component.mjs +19 -12
  4. package/esm2020/lib/components/action/editor/action-editor.component.mjs +8 -6
  5. package/esm2020/lib/components/action/localization/data-language-dropdown.component.mjs +6 -4
  6. package/esm2020/lib/components/action/models/action-execution.model.mjs +9 -1
  7. package/esm2020/lib/components/action/route/action-route.component.mjs +6 -4
  8. package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +7 -6
  9. package/esm2020/lib/components/form/date-range/date-range.component.mjs +5 -5
  10. package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +7 -6
  11. package/esm2020/lib/components/form/editor/form-editor.component.mjs +8 -5
  12. package/esm2020/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +3 -3
  13. package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +3 -3
  14. package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +3 -3
  15. package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +3 -3
  16. package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +7 -6
  17. package/esm2020/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.mjs +3 -3
  18. package/esm2020/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +6 -6
  19. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +6 -6
  20. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +6 -6
  21. package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +3 -3
  22. package/esm2020/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +5 -5
  23. package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +5 -5
  24. package/esm2020/lib/components/layout/breadcrumb.component.mjs +5 -4
  25. package/esm2020/lib/components/layout/footer.component.mjs +5 -4
  26. package/esm2020/lib/components/layout/main-layout.component.mjs +7 -6
  27. package/esm2020/lib/components/layout/menu-item.component.mjs +10 -6
  28. package/esm2020/lib/components/layout/menu.component.mjs +7 -5
  29. package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +5 -4
  30. package/esm2020/lib/components/layout/topbar-user.component.mjs +7 -5
  31. package/esm2020/lib/components/layout/topbar.component.mjs +8 -6
  32. package/esm2020/lib/components/layout/version.component.mjs +6 -4
  33. package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +3 -3
  34. package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +5 -4
  35. package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +6 -4
  36. package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +9 -7
  37. package/esm2020/lib/components/tableview/table/table.component.mjs +9 -8
  38. package/esm2020/lib/components/tableview/tableview.component.mjs +10 -8
  39. package/esm2020/lib/descriptors/action/action.descriptor.mjs +1 -2
  40. package/esm2020/lib/directives/component.directive.mjs +5 -5
  41. package/esm2020/lib/directives/template.directive.mjs +5 -5
  42. package/esm2020/lib/mng-commons.module.mjs +4 -4
  43. package/esm2020/lib/pipes/boolean.pipe.mjs +3 -3
  44. package/esm2020/lib/pipes/class-map.pipe.mjs +3 -3
  45. package/esm2020/lib/pipes/enum.pipe.mjs +3 -3
  46. package/esm2020/lib/pipes/enumerate-async.pipe.mjs +6 -4
  47. package/esm2020/lib/pipes/enumerate.pipe.mjs +6 -4
  48. package/esm2020/lib/pipes/getter.pipe.mjs +3 -3
  49. package/esm2020/lib/pipes/i18n-property.pipe.mjs +3 -3
  50. package/esm2020/lib/pipes/json-path.pipe.mjs +3 -3
  51. package/esm2020/lib/pipes/locale-default-row-class.pipe.mjs +5 -5
  52. package/esm2020/lib/pipes/parametrize.pipe.mjs +3 -3
  53. package/esm2020/lib/pipes/template.pipe.mjs +5 -4
  54. package/esm2020/lib/router/routes-builder.mjs +1 -1
  55. package/esm2020/lib/router/tableview-route-builder.mjs +2 -2
  56. package/esm2020/lib/security/authorization.guard.mjs +5 -4
  57. package/esm2020/lib/security/authorization.service.mjs +7 -5
  58. package/esm2020/lib/services/action-executor.service.mjs +16 -5
  59. package/esm2020/lib/services/commons.service.mjs +8 -5
  60. package/esm2020/lib/services/configuration.service.mjs +1 -5
  61. package/esm2020/lib/services/internal/commons-init.service.mjs +8 -6
  62. package/esm2020/lib/services/navigation.service.mjs +6 -5
  63. package/esm2020/lib/services/router.service.mjs +5 -5
  64. package/esm2020/lib/services/version.service.mjs +6 -4
  65. package/esm2020/lib/services/view-container.component.service.mjs +5 -4
  66. package/esm2020/lib/types/i18n.type.mjs +2 -0
  67. package/esm2020/lib/types/index.mjs +2 -1
  68. package/esm2020/lib/utils/editor-formly.util.mjs +1 -2
  69. package/esm2020/lib/utils/i18n.util.mjs +49 -6
  70. package/esm2020/mediusinc-mng-commons.mjs +2 -2
  71. package/fesm2015/mediusinc-mng-commons.mjs +251 -203
  72. package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
  73. package/fesm2020/mediusinc-mng-commons.mjs +620 -570
  74. package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
  75. package/index.d.ts +40 -5
  76. package/lib/components/action/action.component.d.ts +2 -2
  77. package/lib/descriptors/editor/field.descriptor.d.ts +2 -2
  78. package/lib/types/i18n.type.d.ts +1 -0
  79. package/lib/types/index.d.ts +1 -0
  80. package/lib/utils/i18n.util.d.ts +31 -2
  81. package/package.json +13 -10
  82. package/scss/common/theme/designer/_components.scss +1 -1
  83. package/scss/common/theme/extensions/_vendor_extensions.scss +1 -1
  84. package/scss/mng-overrides/_layout_menu.scss +1 -1
  85. package/scss/mng-overrides/_theme_menu.scss +5 -0
  86. package/scss/mng-overrides/_theme_styles.scss +1 -0
  87. package/assets/i18n/en.json +0 -259
  88. package/assets/i18n/sl.json +0 -258
  89. package/assets/images/effect-ondark.png +0 -0
  90. package/assets/images/effect-ondark.svg +0 -38
  91. package/assets/images/effect-ondark@2x.png +0 -0
  92. package/assets/images/effect-onlight.png +0 -0
  93. package/assets/images/effect-onlight.svg +0 -38
  94. package/assets/images/effect-onlight@2x.png +0 -0
  95. package/assets/images/pages/exception-ondark.png +0 -0
  96. package/assets/images/pages/exception-onlight.png +0 -0
  97. package/assets/images/pages/login-ondark.png +0 -0
  98. package/assets/images/pages/login-onlight.png +0 -0
  99. package/esm2020/public-api.mjs +0 -61
  100. package/public-api.d.ts +0 -40
  101. package/version-info.json +0 -10
package/index.d.ts CHANGED
@@ -1,5 +1,40 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@mediusinc/mng-commons" />
5
- export * from './public-api';
1
+ export * from './lib/mng-commons.module';
2
+ export * from './lib/provide-commons';
3
+ export * from './lib/api/services';
4
+ export * from './lib/components/layout/services';
5
+ export * from './lib/services';
6
+ export * from './lib/services/providers';
7
+ export * from './lib/services/tokens';
8
+ export * from './lib/api/utils';
9
+ export * from './lib/utils';
10
+ export * from './lib/components/action';
11
+ export * from './lib/components/form';
12
+ export * from './lib/components/form/formly/fields';
13
+ export * from './lib/components/form/formly/wrappers';
14
+ export * from './lib/components/layout';
15
+ export * from './lib/components/tableview';
16
+ export * from './lib/directives';
17
+ export * from './lib/pipes';
18
+ export * from './lib/api/models';
19
+ export * from './lib/components/action/models';
20
+ export * from './lib/components/form/models';
21
+ export * from './lib/components/tableview/models';
22
+ export * from './lib/components/form/formly/models';
23
+ export * from './lib/components/form/formly';
24
+ export * from './lib/data-providers';
25
+ export * from './lib/descriptors';
26
+ export * from './lib/descriptors/action';
27
+ export * from './lib/descriptors/editor';
28
+ export * from './lib/descriptors/filter';
29
+ export * from './lib/descriptors/interfaces';
30
+ export * from './lib/descriptors/table';
31
+ export * from './lib/descriptors/tableview';
32
+ export * from './lib/descriptors/types';
33
+ export * from './lib/models';
34
+ export * from './lib/router';
35
+ export * from './lib/router/models';
36
+ export * from './lib/security';
37
+ export * from './lib/security/model';
38
+ export * from './lib/types';
39
+ export * from './lib/styles';
40
+ export * from './lib/styles/models';
@@ -2,7 +2,7 @@ import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angu
2
2
  import { ActivatedRoute } from '@angular/router';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
4
  import { ConfirmationService, MenuItem } from 'primeng/api';
5
- import { SlideMenu } from 'primeng/slidemenu';
5
+ import { Menu } from 'primeng/menu';
6
6
  import { Observable } from 'rxjs';
7
7
  import { MediusQueryParam } from '../../api/models';
8
8
  import { IDataProvider } from '../../data-providers';
@@ -36,7 +36,7 @@ export declare class MngActionComponent<T, S> implements OnInit, OnChanges, OnDe
36
36
  viewContainerInit?: IViewContainer<T, S>;
37
37
  selectedItems: Array<T>;
38
38
  finishEventEmitter: EventEmitter<ActionInstance<T, S>>;
39
- subactionsMenu?: SlideMenu;
39
+ subactionsMenu?: Menu;
40
40
  private loadingSubject;
41
41
  $loading: Observable<boolean>;
42
42
  cmpId: string;
@@ -61,9 +61,9 @@ export declare abstract class AFieldDescriptor<T, ET> extends AGenericFieldDescr
61
61
  get setter(): ((item: ET, value: T) => void) | undefined;
62
62
  get validations(): FieldValidationDescriptor[];
63
63
  get asyncValidations(): FieldValidationDescriptor[];
64
- get requiredExpression(): string | Observable<boolean> | ((field?: FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
64
+ get requiredExpression(): string | ((field?: FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
65
65
  [additionalProperties: string]: any;
66
- }> | undefined) => boolean) | undefined;
66
+ }> | undefined) => boolean) | Observable<boolean> | undefined;
67
67
  get disabledExpression(): string | Observable<boolean> | ((field?: FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
68
68
  [additionalProperties: string]: any;
69
69
  }> | undefined) => boolean) | undefined;
@@ -0,0 +1 @@
1
+ export type I18nType = 'returnNull' | 'returnFallbackKey' | 'returnFirstKey';
@@ -1,2 +1,3 @@
1
1
  export * from './type.decorator';
2
2
  export * from './type.model';
3
+ export * from './i18n.type';
@@ -4,6 +4,7 @@ import { ModelDescriptor } from '../descriptors';
4
4
  import { ActionDescriptor, ActionEditorDescriptor } from '../descriptors/action';
5
5
  import { MngError } from '../models';
6
6
  import { ClassType } from '../types';
7
+ import { I18nType } from '../types/i18n.type';
7
8
  export declare namespace I18nUtils {
8
9
  class Common {
9
10
  static getAsync(translate: TranslateService, params?: any, ...keys: Array<string>): Observable<string | null>;
@@ -41,8 +42,36 @@ export declare namespace I18nUtils {
41
42
  private static getKeysByPriority;
42
43
  }
43
44
  class Action {
44
- static get(translate: TranslateService, action: ActionDescriptor<any>, actionPathKeys: string | Array<string>, customKey?: string, item?: any, fallbackKey?: string, params?: any): string | null;
45
- static getAsync(translate: TranslateService, action: ActionDescriptor<any>, actionPathKeys: string | Array<string>, customKey?: string, item?: any, fallbackKey?: string, params?: any): Observable<string | null>;
45
+ /**
46
+ * Returns translation for action with given keys and params
47
+ * @param translate TranslateService
48
+ * @param action action descriptor
49
+ * @param actionPathKeys action path keys
50
+ * @param customKey custom key
51
+ * @param item
52
+ * @param fallbackKey fallback key
53
+ * @param params additional params for translation
54
+ * @param missingTranslationStrategy strategy when no translation is found
55
+ */
56
+ static get(translate: TranslateService, action: ActionDescriptor<any>, actionPathKeys: string | Array<string>, customKey?: string, item?: any, fallbackKey?: string, params?: any, missingTranslationStrategy?: I18nType): string | null;
57
+ /**
58
+ * Returns async translation for given keys with given params.
59
+ * @param translate TranslateService
60
+ * @param action action descriptor
61
+ * @param actionPathKeys action path keys
62
+ * @param customKey custom key
63
+ * @param item item
64
+ * @param fallbackKey fallback key, used as fallback key
65
+ * @param params additional params for translation
66
+ * @param missingTranslationStrategy strategy when no translation is found
67
+ */
68
+ static getAsync(translate: TranslateService, action: ActionDescriptor<any>, actionPathKeys: string | Array<string>, customKey?: string, item?: any, fallbackKey?: string, params?: any, missingTranslationStrategy?: I18nType): Observable<string | null>;
69
+ /**
70
+ * Returns translation depending on missingTranslationStrategy
71
+ * @param missingTranslationStrategy strategy when no translation is found
72
+ * @param values object with values, i18nValue is translation, firstKey is first key in array of keys, fallbackKey is fallback key
73
+ */
74
+ private static getTranslationDependingOnStrategy;
46
75
  static getTitleAsync(translate: TranslateService, action: ActionDescriptor<any>, item?: any): Observable<string | null>;
47
76
  static getEditorTitleAsync(translate: TranslateService, action: ActionEditorDescriptor<any>, item?: any): Observable<string | null>;
48
77
  static getParams(translate: TranslateService, action: ActionDescriptor<any>, item?: any, params?: any): any;
package/package.json CHANGED
@@ -1,20 +1,24 @@
1
1
  {
2
2
  "name": "@mediusinc/mng-commons",
3
- "version": "2.0.0-rc.1-b808fba6",
3
+ "version": "2.0.0-rc.2-d8b4bafc",
4
4
  "peerDependencies": {
5
- "@angular/common": "~15.2.1",
6
- "@angular/core": "~15.2.1",
7
- "@angular/forms": "~15.2.1",
8
- "@angular/router": "~15.2.1",
9
- "@ngx-formly/core": "~6.0.0",
10
- "@ngx-translate/core": "~14.0.0",
11
- "primeng": "~15.2.0"
5
+ "@angular/common": "^15.2.0",
6
+ "@angular/core": "^15.2.0",
7
+ "@angular/forms": "^15.2.0",
8
+ "@angular/router": "^15.2.0",
9
+ "@ngx-formly/core": "^6.0.0",
10
+ "@ngx-translate/core": "^14.0.0",
11
+ "primeng": "^15.3.0",
12
+ "rxjs": "^7.8.0",
13
+ "@angular/platform-browser": "^15.2.6",
14
+ "@angular/animations": "^15.2.6"
12
15
  },
13
16
  "dependencies": {
14
17
  "file-saver": "^2.0.5",
15
18
  "reflect-metadata": "^0.1.13",
16
19
  "tslib": "^2.4.0"
17
20
  },
21
+ "sideEffects": false,
18
22
  "module": "fesm2015/mediusinc-mng-commons.mjs",
19
23
  "es2020": "fesm2020/mediusinc-mng-commons.mjs",
20
24
  "esm2020": "esm2020/mediusinc-mng-commons.mjs",
@@ -33,6 +37,5 @@
33
37
  "node": "./fesm2015/mediusinc-mng-commons.mjs",
34
38
  "default": "./fesm2020/mediusinc-mng-commons.mjs"
35
39
  }
36
- },
37
- "sideEffects": false
40
+ }
38
41
  }
@@ -75,7 +75,7 @@
75
75
  @import './components/menu/_menu';
76
76
  // @import './components/menu/_menubar';
77
77
  // @import './components/menu/_panelmenu';
78
- @import './components/menu/_slidemenu';
78
+ //@import './components/menu/_slidemenu';
79
79
  @import './components/menu/_steps';
80
80
  // @import './components/menu/_tabmenu';
81
81
  //@import './components/menu/_tieredmenu';
@@ -9,7 +9,7 @@
9
9
  // @import './_fieldset';
10
10
  // @import './_galleria';
11
11
  // @import './_megamenu';
12
- // @import './_menu';
12
+ @import './_menu';
13
13
  // @import './_menubar';
14
14
  // @import './_orderlist';
15
15
  @import './_paginator';
@@ -5,6 +5,6 @@
5
5
  }
6
6
  }
7
7
 
8
- .p-slidemenu {
8
+ .p-menu {
9
9
  width: auto !important;
10
10
  }
@@ -0,0 +1,5 @@
1
+ .p-menu {
2
+ &.mng-action-menu.p-menu-overlay {
3
+ border: $menuBorder;
4
+ }
5
+ }
@@ -10,6 +10,7 @@
10
10
  @import './_theme_autocomplete';
11
11
  @import './_theme_image';
12
12
  @import './theme_toast';
13
+ @import './theme_menu';
13
14
 
14
15
  .p-tabview-title-error {
15
16
  color: $errorColor !important;
@@ -1,259 +0,0 @@
1
- {
2
- "app": {
3
- "name": "Angular Commons",
4
- "owner": "Medius"
5
- },
6
- "general": {
7
- "yes": "Yes",
8
- "no": "No",
9
- "save": "Save",
10
- "cancel": "Cancel",
11
- "close": "Close",
12
- "add": "Add",
13
- "addItem": "{{item}} - add",
14
- "edit": "Edit",
15
- "delete": "Delete",
16
- "export": "Export",
17
- "returnHome": "Go back to home",
18
- "confirmation": "Confirmation",
19
- "success": "Success",
20
- "successMessage": "Operation successful.",
21
- "error": "Error",
22
- "errorMessage": "Error occurred {{errorMessage}}",
23
- "general": "General",
24
- "searchItem": "{{item}} - search",
25
- "search": "Search",
26
- "select": "Select",
27
- "missingTranslation": "Translation is missing. Showing default value."
28
- },
29
- "languages": {
30
- "en": "English",
31
- "sl": "Slovenski"
32
- },
33
- "mngTopbar": {
34
- "profile": "Profile",
35
- "settings": "Settings",
36
- "logout": "Logout"
37
- },
38
- "mngTable": {
39
- "search": "Search...",
40
- "noItems": "No items",
41
- "paginationMsg": "Showing {first} to {last} of {totalRecords} entries",
42
- "selectToFilter": "Select ...",
43
- "searchToFilter": "Search ...",
44
- "typeToFilter": "Filter ...",
45
- "copyNotificationTitle": "Copy",
46
- "copyNotificationMessage": "Value {{value}} copied to clipboard.",
47
- "translationMissing": "Translation is missing."
48
- },
49
- "mngEditor": {
50
- "invalidFormToastTitle": "Error in form",
51
- "invalidFormToastMessage": "Form is not valid, please check and correct inserted values.",
52
- "validation": {
53
- "required": "Field is required.",
54
- "minLength": "Input string must have at least {{minLength}} characters.",
55
- "maxLength": "Input string is limited to {{maxLength}} characters.",
56
- "min": "Input number must not be lower than {{min}}.",
57
- "max": "Input number must not be greater than {{max}}.",
58
- "pattern": "Input string must match the pattern '{{pattern}}'.",
59
- "email": "Invalid email address."
60
- },
61
- "localizations": {
62
- "showTranslations": "All translations",
63
- "missingTranslation": "Missing translation. Default value is showed.",
64
- "localizationTableviewTitle": "Translations: {{fieldName}}",
65
- "addInDefaultLanguageTitle": "",
66
- "addInDefaultLanguageDescription": "Localized item values will be saved in default language ({{defaultLanguage}}). To change values for different locales, open the translations dialog for desired field."
67
- },
68
- "imageUrlPlaceholder": "Insert image URL ...",
69
- "imageUrlAdd": "Add image URL"
70
- },
71
- "mngAutocomplete": {
72
- "noMatches": "No mathces"
73
- },
74
- "mngDropdown": {
75
- "multiselectOverMaxDisplayLimit": "{0} selected options"
76
- },
77
- "details": {
78
- "title": "Details",
79
- "editor": {
80
- "title": "{{itemTitle}}"
81
- },
82
- "error": {
83
- "fetch": {
84
- "message": "Item fetch failed: {{errorMessage}}"
85
- }
86
- }
87
- },
88
- "add": {
89
- "title": "Add",
90
- "editor": {
91
- "title": "Add: {{typeName}}"
92
- },
93
- "success": {
94
- "title": "Added",
95
- "message": "Item '{{itemTitle}}' created successfully."
96
- },
97
- "error": {
98
- "title": "Error",
99
- "fetch": {
100
- "message": "Item fetch failed: {{errorMessage}}"
101
- },
102
- "submit": {
103
- "message": "Item submit failed: {{errorMessage}}"
104
- }
105
- }
106
- },
107
- "edit": {
108
- "title": "Edit",
109
- "editor": {
110
- "title": "Edit: {{itemTitle}}"
111
- },
112
- "success": {
113
- "title": "Saved",
114
- "message": "Item '{{itemTitle}}' changes saved successfully."
115
- },
116
- "error": {
117
- "title": "Error",
118
- "fetch": {
119
- "message": "Item fetch failed: {{errorMessage}}"
120
- },
121
- "submit": {
122
- "message": "Item '{{itemTitle}}' submit failed: {{errorMessage}}"
123
- }
124
- }
125
- },
126
- "delete": {
127
- "title": "Delete",
128
- "confirm": {
129
- "message": "Are you sure you want to delete item '{{itemTitle}}'?"
130
- },
131
- "success": {
132
- "title": "Deleted",
133
- "message": "Item '{{itemTitle}}' deleted successfully."
134
- },
135
- "error": {
136
- "title": "Error",
137
- "message": "Item '{{itemTitle}}' delete failed: {{errorMessage}}"
138
- }
139
- },
140
- "export": {
141
- "title": "Export"
142
- },
143
- "exportJson": {
144
- "title": "JSON"
145
- },
146
- "exportCsv": {
147
- "title": "CSV"
148
- },
149
- "refresh": {
150
- "title": "Refresh"
151
- },
152
- "localization-details": {
153
- "title": "Translations: {{fieldName}}"
154
- },
155
- "localization-edit": {
156
- "title": "Translations: {{fieldName}}"
157
- },
158
- "localization-add": {
159
- "title": "Translations: {{fieldName}}"
160
- },
161
- "mngPrime": {
162
- "startsWith": "Starts with",
163
- "contains": "Contains",
164
- "notContains": "Not contains",
165
- "endsWith": "Ends with",
166
- "equals": "Equals",
167
- "notEquals": "Not equals",
168
- "noFilter": "No Filter",
169
- "lt": "Less than",
170
- "lte": "Less than or equal to",
171
- "gt": "Greater than",
172
- "gte": "Greater than or equal to",
173
- "is": "Is",
174
- "isNot": "Is not",
175
- "before": "Before",
176
- "after": "After",
177
- "dateIs": "Equals",
178
- "dateIsNot": "Not equals",
179
- "dateBefore": "Date is before",
180
- "dateAfter": "Date is after",
181
- "between": "From - to",
182
- "clear": "Clear",
183
- "apply": "Apply",
184
- "matchAll": "Match All",
185
- "matchAny": "Match Any",
186
- "addRule": "Add Rule",
187
- "removeRule": "Remove Rule",
188
- "accept": "Yes",
189
- "reject": "No",
190
- "choose": "Choose",
191
- "upload": "Upload",
192
- "cancel": "Cancel",
193
- "dayNames": [
194
- "Sunday",
195
- "Monday",
196
- "Tuesday",
197
- "Wednesday",
198
- "Thursday",
199
- "Friday",
200
- "Saturday"
201
- ],
202
- "dayNamesShort": [
203
- "Sun",
204
- "Mon",
205
- "Tue",
206
- "Wed",
207
- "Thu",
208
- "Fri",
209
- "Sat"
210
- ],
211
- "dayNamesMin": [
212
- "Su",
213
- "Mo",
214
- "Tu",
215
- "We",
216
- "Th",
217
- "Fr",
218
- "Sa"
219
- ],
220
- "monthNames": [
221
- "January",
222
- "February",
223
- "March",
224
- "April",
225
- "May",
226
- "June",
227
- "July",
228
- "August",
229
- "September",
230
- "October",
231
- "November",
232
- "December"
233
- ],
234
- "monthNamesShort": [
235
- "Jan",
236
- "Feb",
237
- "Mar",
238
- "Apr",
239
- "May",
240
- "Jun",
241
- "Jul",
242
- "Aug",
243
- "Sep",
244
- "Oct",
245
- "Nov",
246
- "Dec"
247
- ],
248
- "dateFormat": "mm/dd/yy",
249
- "firstDayOfWeek": 0,
250
- "today": "Today",
251
- "weekHeader": "Wk",
252
- "weak": "Weak",
253
- "medium": "Medium",
254
- "strong": "Strong",
255
- "passwordPrompt": "Enter a password",
256
- "emptyMessage": "No results found",
257
- "emptyFilterMessage": "No results found"
258
- }
259
- }