@progress/kendo-angular-filter 2.3.1 → 11.0.0-develop.100
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/LICENSE.md +1 -1
- package/NOTICE.txt +4 -4
- package/README.md +1 -1
- package/aria-label.directive.d.ts +1 -1
- package/base-filter-row.component.d.ts +1 -1
- package/editors/boolean-editor.component.d.ts +1 -1
- package/editors/date-editor.component.d.ts +1 -1
- package/editors/numeric-editor.component.d.ts +1 -1
- package/editors/text-editor.component.d.ts +1 -1
- package/error-messages.d.ts +1 -1
- package/{esm2015/aria-label.directive.js → esm2020/aria-label.directive.mjs} +5 -5
- package/{esm2015/base-filter-row.component.js → esm2020/base-filter-row.component.mjs} +8 -6
- package/{esm2015/editors/boolean-editor.component.js → esm2020/editors/boolean-editor.component.mjs} +6 -5
- package/{esm2015/editors/date-editor.component.js → esm2020/editors/date-editor.component.mjs} +6 -5
- package/{esm2015/editors/numeric-editor.component.js → esm2020/editors/numeric-editor.component.mjs} +5 -4
- package/{esm2015/editors/text-editor.component.js → esm2020/editors/text-editor.component.mjs} +5 -4
- package/{esm2015/error-messages.js → esm2020/error-messages.mjs} +1 -1
- package/{esm2015/filter-expression-operators.component.js → esm2020/filter-expression-operators.component.mjs} +5 -4
- package/{esm2015/filter-expression.component.js → esm2020/filter-expression.component.mjs} +23 -13
- package/{esm2015/filter-field.component.js → esm2020/filter-field.component.mjs} +4 -4
- package/{esm2015/filter-group.component.js → esm2020/filter-group.component.mjs} +31 -9
- package/{esm2015/filter.component.js → esm2020/filter.component.mjs} +12 -10
- package/{esm2015/filter.module.js → esm2020/filter.module.mjs} +5 -5
- package/{esm2015/filter.service.js → esm2020/filter.service.mjs} +7 -7
- package/{esm2015/main.js → esm2020/index.mjs} +1 -1
- package/{esm2015/localization/custom-messages.component.js → esm2020/localization/custom-messages.component.mjs} +5 -4
- package/{esm2015/localization/localized-messages.directive.js → esm2020/localization/localized-messages.directive.mjs} +5 -4
- package/{esm2015/localization/messages.js → esm2020/localization/messages.mjs} +4 -4
- package/{esm2015/model/filter-expression.js → esm2020/model/filter-expression.mjs} +1 -1
- package/{esm2015/navigation.service.js → esm2020/navigation.service.mjs} +20 -15
- package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
- package/{esm2015/kendo-angular-filter.js → esm2020/progress-kendo-angular-filter.mjs} +2 -2
- package/{esm2015/shared.module.js → esm2020/shared.module.mjs} +5 -5
- package/{esm2015/templates/value-editor.template.js → esm2020/templates/value-editor.template.mjs} +5 -5
- package/{esm2015/util.js → esm2020/util.mjs} +4 -4
- package/fesm2015/{kendo-angular-filter.js → progress-kendo-angular-filter.mjs} +117 -86
- package/fesm2020/progress-kendo-angular-filter.mjs +2247 -0
- package/filter-expression-operators.component.d.ts +1 -1
- package/filter-expression.component.d.ts +6 -1
- package/filter-field.component.d.ts +1 -1
- package/filter-group.component.d.ts +14 -1
- package/filter.component.d.ts +1 -1
- package/filter.module.d.ts +1 -1
- package/filter.service.d.ts +1 -1
- package/{main.d.ts → index.d.ts} +1 -1
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/localization/messages.d.ts +1 -1
- package/model/filter-expression.d.ts +1 -1
- package/navigation.service.d.ts +1 -1
- package/package-metadata.d.ts +1 -1
- package/package.json +35 -60
- package/{kendo-angular-filter.d.ts → progress-kendo-angular-filter.d.ts} +2 -2
- package/schematics/ngAdd/index.js +4 -6
- package/shared.module.d.ts +1 -1
- package/templates/value-editor.template.d.ts +1 -1
- package/util.d.ts +1 -1
- package/bundles/kendo-angular-filter.umd.js +0 -5
- package/schematics/ngAdd/index.js.map +0 -1
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Component, forwardRef, Input, ViewChildren } from '@angular/core';
|
|
5
|
+
import { ChangeDetectorRef, Component, ElementRef, forwardRef, Input, QueryList, Renderer2, ViewChildren } from '@angular/core';
|
|
6
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { filterAddExpressionIcon, filterAddGroupIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
6
8
|
import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
9
|
+
import { FilterService } from './filter.service';
|
|
10
|
+
import { NavigationService } from './navigation.service';
|
|
7
11
|
import { FilterItem, getKeyByValue, localizeOperators, logicOperators, selectors } from './util';
|
|
8
12
|
import * as i0 from "@angular/core";
|
|
9
13
|
import * as i1 from "./filter.service";
|
|
10
14
|
import * as i2 from "./navigation.service";
|
|
11
15
|
import * as i3 from "@progress/kendo-angular-l10n";
|
|
12
|
-
import * as i4 from "
|
|
13
|
-
import * as i5 from "
|
|
14
|
-
import * as i6 from "@
|
|
16
|
+
import * as i4 from "@progress/kendo-angular-buttons";
|
|
17
|
+
import * as i5 from "./filter-expression.component";
|
|
18
|
+
import * as i6 from "@angular/common";
|
|
15
19
|
/**
|
|
16
20
|
* @hidden
|
|
17
21
|
*/
|
|
@@ -20,6 +24,18 @@ export class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
20
24
|
super(element, navigationService, localization, renderer);
|
|
21
25
|
this.filterService = filterService;
|
|
22
26
|
this.cdr = cdr;
|
|
27
|
+
/**
|
|
28
|
+
* @hidden
|
|
29
|
+
*/
|
|
30
|
+
this.xIcon = xIcon;
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
this.filterAddGroupIcon = filterAddGroupIcon;
|
|
35
|
+
/**
|
|
36
|
+
* @hidden
|
|
37
|
+
*/
|
|
38
|
+
this.filterAddExpressionIcon = filterAddExpressionIcon;
|
|
23
39
|
this.currentItem = {
|
|
24
40
|
logic: 'or',
|
|
25
41
|
filters: []
|
|
@@ -90,8 +106,8 @@ export class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
90
106
|
this.navigationService.focusCurrentElement(elementToFocus, true);
|
|
91
107
|
}
|
|
92
108
|
}
|
|
93
|
-
FilterGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
94
|
-
FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
109
|
+
FilterGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterGroupComponent, deps: [{ token: i1.FilterService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i2.NavigationService }, { token: i3.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
110
|
+
FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: FilterGroupComponent, selector: "kendo-filter-group", inputs: { currentItem: "currentItem" }, providers: [{
|
|
95
111
|
provide: FilterItem,
|
|
96
112
|
useExisting: forwardRef(() => FilterGroupComponent)
|
|
97
113
|
}], viewQueries: [{ propertyName: "_filterItems", predicate: FilterItem, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
@@ -119,6 +135,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
119
135
|
tabindex="-1"
|
|
120
136
|
[title]="messageFor('addFilter')"
|
|
121
137
|
icon="filter-add-expression"
|
|
138
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
122
139
|
(click)="addFilterExpression()">
|
|
123
140
|
{{messageFor('addFilter')}}
|
|
124
141
|
</button>
|
|
@@ -129,6 +146,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
129
146
|
tabindex="-1"
|
|
130
147
|
[title]="messageFor('addGroup')"
|
|
131
148
|
icon="filter-add-group"
|
|
149
|
+
[svgIcon]="filterAddGroupIcon"
|
|
132
150
|
(click)="addFilterGroup()">
|
|
133
151
|
{{messageFor('addGroup')}}
|
|
134
152
|
</button>
|
|
@@ -138,6 +156,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
138
156
|
kendoButton
|
|
139
157
|
tabindex="-1"
|
|
140
158
|
icon="x"
|
|
159
|
+
[svgIcon]="xIcon"
|
|
141
160
|
fillMode="flat"
|
|
142
161
|
[title]="messageFor('remove')"
|
|
143
162
|
(click)="removeFilterGroup()">
|
|
@@ -162,8 +181,8 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
162
181
|
</li>
|
|
163
182
|
</ng-container>
|
|
164
183
|
</ul>
|
|
165
|
-
`, isInline: true, components: [{ type: i4.
|
|
166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
184
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i5.FilterExpressionComponent, selector: "kendo-filter-expression", inputs: ["currentItem"] }, { type: FilterGroupComponent, selector: "kendo-filter-group", inputs: ["currentItem"] }], directives: [{ type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterGroupComponent, decorators: [{
|
|
167
186
|
type: Component,
|
|
168
187
|
args: [{
|
|
169
188
|
providers: [{
|
|
@@ -196,6 +215,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
196
215
|
tabindex="-1"
|
|
197
216
|
[title]="messageFor('addFilter')"
|
|
198
217
|
icon="filter-add-expression"
|
|
218
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
199
219
|
(click)="addFilterExpression()">
|
|
200
220
|
{{messageFor('addFilter')}}
|
|
201
221
|
</button>
|
|
@@ -206,6 +226,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
206
226
|
tabindex="-1"
|
|
207
227
|
[title]="messageFor('addGroup')"
|
|
208
228
|
icon="filter-add-group"
|
|
229
|
+
[svgIcon]="filterAddGroupIcon"
|
|
209
230
|
(click)="addFilterGroup()">
|
|
210
231
|
{{messageFor('addGroup')}}
|
|
211
232
|
</button>
|
|
@@ -215,6 +236,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
215
236
|
kendoButton
|
|
216
237
|
tabindex="-1"
|
|
217
238
|
icon="x"
|
|
239
|
+
[svgIcon]="xIcon"
|
|
218
240
|
fillMode="flat"
|
|
219
241
|
[title]="messageFor('remove')"
|
|
220
242
|
(click)="removeFilterGroup()">
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Component, Input, Output, EventEmitter, HostBinding, isDevMode, ContentChildren, HostListener, ViewChildren } from '@angular/core';
|
|
5
|
+
import { Component, Input, Output, EventEmitter, HostBinding, isDevMode, ContentChildren, QueryList, HostListener, ElementRef, ViewChildren, Renderer2 } from '@angular/core';
|
|
6
6
|
import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { FilterService } from './filter.service';
|
|
8
8
|
import { nullOperators, isPresent } from './util';
|
|
9
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
9
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
11
|
import { packageMetadata } from './package-metadata';
|
|
11
12
|
import { FilterFieldComponent } from './filter-field.component';
|
|
@@ -99,7 +100,7 @@ export class FilterComponent {
|
|
|
99
100
|
set filters(_filters) {
|
|
100
101
|
if (_filters.length > 0) {
|
|
101
102
|
this.filterService.filters = _filters.map(filterExpression => {
|
|
102
|
-
|
|
103
|
+
const clonedFilter = Object.assign({}, filterExpression);
|
|
103
104
|
if (!clonedFilter.title) {
|
|
104
105
|
clonedFilter.title = clonedFilter.field;
|
|
105
106
|
}
|
|
@@ -138,10 +139,11 @@ export class FilterComponent {
|
|
|
138
139
|
}
|
|
139
140
|
ngAfterViewInit() {
|
|
140
141
|
if (this.filterFields && this.filterFields.length > 0) {
|
|
141
|
-
this.filters = this.filterFields.map((filterField) => {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
142
|
+
this.filters = this.filterFields.map((filterField) => ({
|
|
143
|
+
...filterField,
|
|
144
|
+
title: filterField.title,
|
|
145
|
+
editorTemplate: filterField.editorTemplate?.templateRef
|
|
146
|
+
}));
|
|
145
147
|
}
|
|
146
148
|
if (this.filters.length === 0) {
|
|
147
149
|
throw new Error(FilterErrorMessages.missingFilters);
|
|
@@ -235,8 +237,8 @@ export class FilterComponent {
|
|
|
235
237
|
return this.localization.get(key);
|
|
236
238
|
}
|
|
237
239
|
}
|
|
238
|
-
FilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
239
|
-
FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
240
|
+
FilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterComponent, deps: [{ token: i1.FilterService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i3.NavigationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
241
|
+
FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: FilterComponent, selector: "kendo-filter", inputs: { filters: "filters", value: "value" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "focusout": "focusout($event)", "keydown": "onKeydown($event)" }, properties: { "attr.dir": "this.direction" } }, providers: [
|
|
240
242
|
LocalizationService,
|
|
241
243
|
{
|
|
242
244
|
provide: L10N_PREFIX,
|
|
@@ -370,7 +372,7 @@ FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
370
372
|
</ul>
|
|
371
373
|
</div>
|
|
372
374
|
`, isInline: true, components: [{ type: i4.FilterGroupComponent, selector: "kendo-filter-group", inputs: ["currentItem"] }], directives: [{ type: i5.LocalizedMessagesDirective, selector: "[kendoFilterLocalizedMessages]" }] });
|
|
373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterComponent, decorators: [{
|
|
374
376
|
type: Component,
|
|
375
377
|
args: [{
|
|
376
378
|
providers: [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
@@ -51,8 +51,8 @@ import * as i0 from "@angular/core";
|
|
|
51
51
|
*/
|
|
52
52
|
export class FilterModule {
|
|
53
53
|
}
|
|
54
|
-
FilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
55
|
-
FilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
54
|
+
FilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
55
|
+
FilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterModule, declarations: [FilterComponent,
|
|
56
56
|
FilterNumericEditorComponent,
|
|
57
57
|
FilterTextEditorComponent,
|
|
58
58
|
FilterExpressionComponent,
|
|
@@ -77,8 +77,8 @@ FilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
77
77
|
AriaLabelValueDirective,
|
|
78
78
|
FilterFieldComponent,
|
|
79
79
|
FilterValueEditorTemplateDirective] });
|
|
80
|
-
FilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
81
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
80
|
+
FilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterModule, imports: [[SharedModule]] });
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterModule, decorators: [{
|
|
82
82
|
type: NgModule,
|
|
83
83
|
args: [{
|
|
84
84
|
imports: [SharedModule],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Injectable } from '@angular/core';
|
|
@@ -13,11 +13,11 @@ export class FilterService {
|
|
|
13
13
|
this.filters = [];
|
|
14
14
|
}
|
|
15
15
|
addFilterGroup(item) {
|
|
16
|
-
|
|
16
|
+
const filterGroup = { logic: 'and', filters: [] };
|
|
17
17
|
item.filters.push(filterGroup);
|
|
18
18
|
}
|
|
19
19
|
addFilterExpression(item) {
|
|
20
|
-
|
|
20
|
+
const filterExpression = { operator: 'eq', value: null, field: null };
|
|
21
21
|
item.filters.push(filterExpression);
|
|
22
22
|
}
|
|
23
23
|
remove(item, positionIndex, parentItem) {
|
|
@@ -28,7 +28,7 @@ export class FilterService {
|
|
|
28
28
|
parentItem.filters = [];
|
|
29
29
|
return;
|
|
30
30
|
}
|
|
31
|
-
|
|
31
|
+
const index = parentItem.filters.indexOf(item);
|
|
32
32
|
if (index >= 0 && index === positionIndex) {
|
|
33
33
|
parentItem.filters = parentItem.filters.filter((i) => i !== item);
|
|
34
34
|
return;
|
|
@@ -36,8 +36,8 @@ export class FilterService {
|
|
|
36
36
|
parentItem.filters.forEach((filter) => filter.filters && this.remove(item, positionIndex, filter));
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
FilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
40
|
-
FilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
39
|
+
FilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
40
|
+
FilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService });
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService, decorators: [{
|
|
42
42
|
type: Injectable
|
|
43
43
|
}] });
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export { FilterComponent } from './filter.component';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, forwardRef } from '@angular/core';
|
|
6
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
7
|
import { Messages } from './messages';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -19,14 +20,14 @@ export class CustomMessagesComponent extends Messages {
|
|
|
19
20
|
return true;
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
|
-
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23
|
-
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
23
|
+
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
+
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CustomMessagesComponent, selector: "kendo-filter-messages", providers: [
|
|
24
25
|
{
|
|
25
26
|
provide: Messages,
|
|
26
27
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
27
28
|
}
|
|
28
29
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
29
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CustomMessagesComponent, decorators: [{
|
|
30
31
|
type: Component,
|
|
31
32
|
args: [{
|
|
32
33
|
providers: [
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Directive, forwardRef } from '@angular/core';
|
|
6
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
7
|
import { Messages } from './messages';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -15,14 +16,14 @@ export class LocalizedMessagesDirective extends Messages {
|
|
|
15
16
|
this.service = service;
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
|
-
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
19
|
-
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
19
|
+
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
|
+
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: LocalizedMessagesDirective, selector: "[kendoFilterLocalizedMessages]", providers: [
|
|
20
21
|
{
|
|
21
22
|
provide: Messages,
|
|
22
23
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
23
24
|
}
|
|
24
25
|
], usesInheritance: true, ngImport: i0 });
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
26
27
|
type: Directive,
|
|
27
28
|
args: [{
|
|
28
29
|
providers: [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Directive } from '@angular/core';
|
|
@@ -11,9 +11,9 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
*/
|
|
12
12
|
export class Messages extends ComponentMessages {
|
|
13
13
|
}
|
|
14
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
15
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
14
|
+
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
15
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: Messages, selector: "[kendoFilterMessages]", inputs: { filterExpressionOperators: "filterExpressionOperators", filterExpressionFilters: "filterExpressionFilters", remove: "remove", addGroup: "addGroup", addFilter: "addFilter", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", editorNumericDecrement: "editorNumericDecrement", editorNumericIncrement: "editorNumericIncrement", editorDateTodayText: "editorDateTodayText", editorDateToggleText: "editorDateToggleText", filterFieldAriaLabel: "filterFieldAriaLabel", filterOperatorAriaLabel: "filterOperatorAriaLabel", filterValueAriaLabel: "filterValueAriaLabel", filterToolbarAriaLabel: "filterToolbarAriaLabel", filterComponentAriaLabel: "filterComponentAriaLabel" }, usesInheritance: true, ngImport: i0 });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: Messages, decorators: [{
|
|
17
17
|
type: Directive,
|
|
18
18
|
args: [{
|
|
19
19
|
selector: '[kendoFilterMessages]'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Injectable } from '@angular/core';
|
|
5
|
+
import { ChangeDetectorRef, Injectable, Renderer2 } from '@angular/core';
|
|
6
6
|
import { Keys } from '@progress/kendo-angular-common';
|
|
7
7
|
import { selectors } from './util';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -22,7 +22,7 @@ export class NavigationService {
|
|
|
22
22
|
}
|
|
23
23
|
processKeyDown(key, event) {
|
|
24
24
|
switch (key) {
|
|
25
|
-
case Keys.ArrowUp:
|
|
25
|
+
case Keys.ArrowUp: {
|
|
26
26
|
event.preventDefault();
|
|
27
27
|
if (!this.isInnerNavigationActivated) {
|
|
28
28
|
this.currentToolbarItemIndex > 0 ? this.currentToolbarItemIndex-- : this.currentToolbarItemIndex;
|
|
@@ -30,7 +30,8 @@ export class NavigationService {
|
|
|
30
30
|
this.focusCurrentElement(elementToFocus);
|
|
31
31
|
}
|
|
32
32
|
break;
|
|
33
|
-
|
|
33
|
+
}
|
|
34
|
+
case Keys.ArrowDown: {
|
|
34
35
|
event.preventDefault();
|
|
35
36
|
if (!this.isInnerNavigationActivated) {
|
|
36
37
|
this.currentToolbarItemIndex < this.flattenFilterItems.length - 1 ? this.currentToolbarItemIndex++ : this.currentToolbarItemIndex;
|
|
@@ -38,7 +39,8 @@ export class NavigationService {
|
|
|
38
39
|
this.focusCurrentElement(elementToFocus);
|
|
39
40
|
}
|
|
40
41
|
break;
|
|
41
|
-
|
|
42
|
+
}
|
|
43
|
+
case Keys.Enter: {
|
|
42
44
|
const isEventTargetFilterToolbar = event.target.closest(selectors.kendoToolbar);
|
|
43
45
|
if (!this.isInnerNavigationActivated && isEventTargetFilterToolbar) {
|
|
44
46
|
event.preventDefault();
|
|
@@ -63,7 +65,8 @@ export class NavigationService {
|
|
|
63
65
|
this.focusCurrentElement(elementToFocus);
|
|
64
66
|
}
|
|
65
67
|
break;
|
|
66
|
-
|
|
68
|
+
}
|
|
69
|
+
case Keys.Escape: {
|
|
67
70
|
if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
|
|
68
71
|
event.preventDefault();
|
|
69
72
|
this.isInnerNavigationActivated = false;
|
|
@@ -79,7 +82,8 @@ export class NavigationService {
|
|
|
79
82
|
this.focusCurrentElement(elementToFocus);
|
|
80
83
|
}
|
|
81
84
|
break;
|
|
82
|
-
|
|
85
|
+
}
|
|
86
|
+
case Keys.ArrowRight: {
|
|
83
87
|
if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
|
|
84
88
|
event.preventDefault();
|
|
85
89
|
this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1 ? this.currentToolbarItemChildrenIndex++ : this.currentToolbarItemChildrenIndex;
|
|
@@ -87,7 +91,8 @@ export class NavigationService {
|
|
|
87
91
|
this.focusCurrentElement(elementToFocus);
|
|
88
92
|
}
|
|
89
93
|
break;
|
|
90
|
-
|
|
94
|
+
}
|
|
95
|
+
case Keys.ArrowLeft: {
|
|
91
96
|
if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
|
|
92
97
|
event.preventDefault();
|
|
93
98
|
this.currentToolbarItemChildrenIndex > 0 ? this.currentToolbarItemChildrenIndex-- : this.currentToolbarItemChildrenIndex;
|
|
@@ -95,6 +100,7 @@ export class NavigationService {
|
|
|
95
100
|
this.focusCurrentElement(elementToFocus);
|
|
96
101
|
}
|
|
97
102
|
break;
|
|
103
|
+
}
|
|
98
104
|
default:
|
|
99
105
|
break;
|
|
100
106
|
}
|
|
@@ -111,14 +117,13 @@ export class NavigationService {
|
|
|
111
117
|
}
|
|
112
118
|
flattenHierarchicalFilterItems(filterItems) {
|
|
113
119
|
filterItems.forEach((filterRow) => {
|
|
114
|
-
|
|
115
|
-
let flattenItem = { component: filterRow, isGroup: false, toolbarElement: filterRow.toolbarElement, focusableChildren: [] };
|
|
120
|
+
const flattenItem = { component: filterRow, isGroup: false, toolbarElement: filterRow.toolbarElement, focusableChildren: [] };
|
|
116
121
|
this.flattenFilterItems.push(flattenItem);
|
|
117
|
-
if ((filterRow['operators'] &&
|
|
122
|
+
if ((filterRow['operators'] && filterRow['filterItems']?.length > 0)) {
|
|
118
123
|
this.setGroupItemChildren(flattenItem, filterRow);
|
|
119
124
|
this.flattenHierarchicalFilterItems(filterRow['filterItems']);
|
|
120
125
|
}
|
|
121
|
-
else if (filterRow['operators'] &&
|
|
126
|
+
else if (filterRow['operators'] && filterRow['filterItems']?.length === 0) {
|
|
122
127
|
this.setGroupItemChildren(flattenItem, filterRow);
|
|
123
128
|
}
|
|
124
129
|
else {
|
|
@@ -152,8 +157,8 @@ export class NavigationService {
|
|
|
152
157
|
this.setItemIndexes();
|
|
153
158
|
}
|
|
154
159
|
}
|
|
155
|
-
NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
156
|
-
NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
160
|
+
NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
161
|
+
NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService });
|
|
162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, decorators: [{
|
|
158
163
|
type: Injectable
|
|
159
164
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; } });
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-filter',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1673469364,
|
|
13
13
|
version: '',
|
|
14
|
-
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license
|
|
14
|
+
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
|
-
export * from './
|
|
8
|
+
export * from './index';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { CommonModule } from '@angular/common';
|
|
@@ -23,8 +23,8 @@ const importedModules = [
|
|
|
23
23
|
*/
|
|
24
24
|
export class SharedModule {
|
|
25
25
|
}
|
|
26
|
-
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
27
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
26
|
+
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27
|
+
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [CommonModule,
|
|
28
28
|
InputsModule,
|
|
29
29
|
LabelModule,
|
|
30
30
|
DropDownsModule,
|
|
@@ -35,13 +35,13 @@ SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
35
35
|
DropDownsModule,
|
|
36
36
|
ButtonsModule,
|
|
37
37
|
DateInputsModule] });
|
|
38
|
-
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
38
|
+
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [[...importedModules], CommonModule,
|
|
39
39
|
InputsModule,
|
|
40
40
|
LabelModule,
|
|
41
41
|
DropDownsModule,
|
|
42
42
|
ButtonsModule,
|
|
43
43
|
DateInputsModule] });
|
|
44
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, decorators: [{
|
|
45
45
|
type: NgModule,
|
|
46
46
|
args: [{
|
|
47
47
|
imports: [...importedModules],
|
package/{esm2015/templates/value-editor.template.js → esm2020/templates/value-editor.template.mjs}
RENAMED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive } from '@angular/core';
|
|
5
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export class FilterValueEditorTemplateDirective {
|
|
8
8
|
constructor(templateRef) {
|
|
9
9
|
this.templateRef = templateRef;
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
FilterValueEditorTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
13
|
-
FilterValueEditorTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12
|
+
FilterValueEditorTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterValueEditorTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13
|
+
FilterValueEditorTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FilterValueEditorTemplateDirective, selector: "[kendoFilterValueEditorTemplate]", ngImport: i0 });
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterValueEditorTemplateDirective, decorators: [{
|
|
15
15
|
type: Directive,
|
|
16
16
|
args: [{
|
|
17
17
|
selector: '[kendoFilterValueEditorTemplate]'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Injectable } from '@angular/core';
|
|
@@ -145,9 +145,9 @@ export const isPresent = (value) => value !== null && value !== undefined;
|
|
|
145
145
|
*/
|
|
146
146
|
export class FilterItem {
|
|
147
147
|
}
|
|
148
|
-
FilterItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
149
|
-
FilterItem.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
148
|
+
FilterItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
149
|
+
FilterItem.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem });
|
|
150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem, decorators: [{
|
|
151
151
|
type: Injectable
|
|
152
152
|
}] });
|
|
153
153
|
/**
|