@progress/kendo-angular-filter 11.0.0-develop.85 → 11.0.0-develop.87
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/esm2020/filter-expression.component.mjs +7 -0
- package/esm2020/filter-group.component.mjs +19 -0
- package/esm2020/package-metadata.mjs +1 -1
- package/fesm2015/progress-kendo-angular-filter.mjs +26 -1
- package/fesm2020/progress-kendo-angular-filter.mjs +26 -1
- package/filter-expression.component.d.ts +5 -0
- package/filter-group.component.d.ts +13 -0
- package/package.json +11 -10
- package/schematics/ngAdd/index.js +3 -1
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ChangeDetectorRef, Component, ElementRef, forwardRef, Input, isDevMode, Renderer2 } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
8
9
|
import { FilterErrorMessages } from './error-messages';
|
|
9
10
|
import { FilterService } from './filter.service';
|
|
@@ -30,6 +31,10 @@ export class FilterExpressionComponent extends BaseFilterRowComponent {
|
|
|
30
31
|
super(element, navigationService, localization, renderer);
|
|
31
32
|
this.filterService = filterService;
|
|
32
33
|
this.cdr = cdr;
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
this.xIcon = xIcon;
|
|
33
38
|
this.operators = [];
|
|
34
39
|
this.filters = [];
|
|
35
40
|
this.isBoolean = false;
|
|
@@ -235,6 +240,7 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
235
240
|
kendoButton
|
|
236
241
|
tabindex="-1"
|
|
237
242
|
icon="x"
|
|
243
|
+
[svgIcon]="xIcon"
|
|
238
244
|
fillMode="flat"
|
|
239
245
|
[title]="messageFor('remove')"
|
|
240
246
|
(click)="removeFilterExpression()">
|
|
@@ -295,6 +301,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
295
301
|
kendoButton
|
|
296
302
|
tabindex="-1"
|
|
297
303
|
icon="x"
|
|
304
|
+
[svgIcon]="xIcon"
|
|
298
305
|
fillMode="flat"
|
|
299
306
|
[title]="messageFor('remove')"
|
|
300
307
|
(click)="removeFilterExpression()">
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ChangeDetectorRef, Component, ElementRef, forwardRef, Input, QueryList, Renderer2, ViewChildren } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { filterAddExpressionIcon, filterAddGroupIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
8
9
|
import { FilterService } from './filter.service';
|
|
9
10
|
import { NavigationService } from './navigation.service';
|
|
@@ -23,6 +24,18 @@ export class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
23
24
|
super(element, navigationService, localization, renderer);
|
|
24
25
|
this.filterService = filterService;
|
|
25
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;
|
|
26
39
|
this.currentItem = {
|
|
27
40
|
logic: 'or',
|
|
28
41
|
filters: []
|
|
@@ -122,6 +135,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
122
135
|
tabindex="-1"
|
|
123
136
|
[title]="messageFor('addFilter')"
|
|
124
137
|
icon="filter-add-expression"
|
|
138
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
125
139
|
(click)="addFilterExpression()">
|
|
126
140
|
{{messageFor('addFilter')}}
|
|
127
141
|
</button>
|
|
@@ -132,6 +146,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
132
146
|
tabindex="-1"
|
|
133
147
|
[title]="messageFor('addGroup')"
|
|
134
148
|
icon="filter-add-group"
|
|
149
|
+
[svgIcon]="filterAddGroupIcon"
|
|
135
150
|
(click)="addFilterGroup()">
|
|
136
151
|
{{messageFor('addGroup')}}
|
|
137
152
|
</button>
|
|
@@ -141,6 +156,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
141
156
|
kendoButton
|
|
142
157
|
tabindex="-1"
|
|
143
158
|
icon="x"
|
|
159
|
+
[svgIcon]="xIcon"
|
|
144
160
|
fillMode="flat"
|
|
145
161
|
[title]="messageFor('remove')"
|
|
146
162
|
(click)="removeFilterGroup()">
|
|
@@ -199,6 +215,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
199
215
|
tabindex="-1"
|
|
200
216
|
[title]="messageFor('addFilter')"
|
|
201
217
|
icon="filter-add-expression"
|
|
218
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
202
219
|
(click)="addFilterExpression()">
|
|
203
220
|
{{messageFor('addFilter')}}
|
|
204
221
|
</button>
|
|
@@ -209,6 +226,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
209
226
|
tabindex="-1"
|
|
210
227
|
[title]="messageFor('addGroup')"
|
|
211
228
|
icon="filter-add-group"
|
|
229
|
+
[svgIcon]="filterAddGroupIcon"
|
|
212
230
|
(click)="addFilterGroup()">
|
|
213
231
|
{{messageFor('addGroup')}}
|
|
214
232
|
</button>
|
|
@@ -218,6 +236,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
218
236
|
kendoButton
|
|
219
237
|
tabindex="-1"
|
|
220
238
|
icon="x"
|
|
239
|
+
[svgIcon]="xIcon"
|
|
221
240
|
fillMode="flat"
|
|
222
241
|
[title]="messageFor('remove')"
|
|
223
242
|
(click)="removeFilterGroup()">
|
|
@@ -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: 1672939107,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -8,6 +8,7 @@ import * as i1 from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import { Keys } from '@progress/kendo-angular-common';
|
|
11
|
+
import { xIcon, filterAddGroupIcon, filterAddExpressionIcon } from '@progress/kendo-svg-icons';
|
|
11
12
|
import * as i10 from '@progress/kendo-angular-buttons';
|
|
12
13
|
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
13
14
|
import * as i2 from '@progress/kendo-angular-dropdowns';
|
|
@@ -233,7 +234,7 @@ const packageMetadata = {
|
|
|
233
234
|
name: '@progress/kendo-angular-filter',
|
|
234
235
|
productName: 'Kendo UI for Angular',
|
|
235
236
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
236
|
-
publishDate:
|
|
237
|
+
publishDate: 1672939107,
|
|
237
238
|
version: '',
|
|
238
239
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
239
240
|
};
|
|
@@ -901,6 +902,10 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
|
|
|
901
902
|
super(element, navigationService, localization, renderer);
|
|
902
903
|
this.filterService = filterService;
|
|
903
904
|
this.cdr = cdr;
|
|
905
|
+
/**
|
|
906
|
+
* @hidden
|
|
907
|
+
*/
|
|
908
|
+
this.xIcon = xIcon;
|
|
904
909
|
this.operators = [];
|
|
905
910
|
this.filters = [];
|
|
906
911
|
this.isBoolean = false;
|
|
@@ -1106,6 +1111,7 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
1106
1111
|
kendoButton
|
|
1107
1112
|
tabindex="-1"
|
|
1108
1113
|
icon="x"
|
|
1114
|
+
[svgIcon]="xIcon"
|
|
1109
1115
|
fillMode="flat"
|
|
1110
1116
|
[title]="messageFor('remove')"
|
|
1111
1117
|
(click)="removeFilterExpression()">
|
|
@@ -1166,6 +1172,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1166
1172
|
kendoButton
|
|
1167
1173
|
tabindex="-1"
|
|
1168
1174
|
icon="x"
|
|
1175
|
+
[svgIcon]="xIcon"
|
|
1169
1176
|
fillMode="flat"
|
|
1170
1177
|
[title]="messageFor('remove')"
|
|
1171
1178
|
(click)="removeFilterExpression()">
|
|
@@ -1187,6 +1194,18 @@ class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
1187
1194
|
super(element, navigationService, localization, renderer);
|
|
1188
1195
|
this.filterService = filterService;
|
|
1189
1196
|
this.cdr = cdr;
|
|
1197
|
+
/**
|
|
1198
|
+
* @hidden
|
|
1199
|
+
*/
|
|
1200
|
+
this.xIcon = xIcon;
|
|
1201
|
+
/**
|
|
1202
|
+
* @hidden
|
|
1203
|
+
*/
|
|
1204
|
+
this.filterAddGroupIcon = filterAddGroupIcon;
|
|
1205
|
+
/**
|
|
1206
|
+
* @hidden
|
|
1207
|
+
*/
|
|
1208
|
+
this.filterAddExpressionIcon = filterAddExpressionIcon;
|
|
1190
1209
|
this.currentItem = {
|
|
1191
1210
|
logic: 'or',
|
|
1192
1211
|
filters: []
|
|
@@ -1286,6 +1305,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1286
1305
|
tabindex="-1"
|
|
1287
1306
|
[title]="messageFor('addFilter')"
|
|
1288
1307
|
icon="filter-add-expression"
|
|
1308
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
1289
1309
|
(click)="addFilterExpression()">
|
|
1290
1310
|
{{messageFor('addFilter')}}
|
|
1291
1311
|
</button>
|
|
@@ -1296,6 +1316,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1296
1316
|
tabindex="-1"
|
|
1297
1317
|
[title]="messageFor('addGroup')"
|
|
1298
1318
|
icon="filter-add-group"
|
|
1319
|
+
[svgIcon]="filterAddGroupIcon"
|
|
1299
1320
|
(click)="addFilterGroup()">
|
|
1300
1321
|
{{messageFor('addGroup')}}
|
|
1301
1322
|
</button>
|
|
@@ -1305,6 +1326,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1305
1326
|
kendoButton
|
|
1306
1327
|
tabindex="-1"
|
|
1307
1328
|
icon="x"
|
|
1329
|
+
[svgIcon]="xIcon"
|
|
1308
1330
|
fillMode="flat"
|
|
1309
1331
|
[title]="messageFor('remove')"
|
|
1310
1332
|
(click)="removeFilterGroup()">
|
|
@@ -1363,6 +1385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1363
1385
|
tabindex="-1"
|
|
1364
1386
|
[title]="messageFor('addFilter')"
|
|
1365
1387
|
icon="filter-add-expression"
|
|
1388
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
1366
1389
|
(click)="addFilterExpression()">
|
|
1367
1390
|
{{messageFor('addFilter')}}
|
|
1368
1391
|
</button>
|
|
@@ -1373,6 +1396,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1373
1396
|
tabindex="-1"
|
|
1374
1397
|
[title]="messageFor('addGroup')"
|
|
1375
1398
|
icon="filter-add-group"
|
|
1399
|
+
[svgIcon]="filterAddGroupIcon"
|
|
1376
1400
|
(click)="addFilterGroup()">
|
|
1377
1401
|
{{messageFor('addGroup')}}
|
|
1378
1402
|
</button>
|
|
@@ -1382,6 +1406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1382
1406
|
kendoButton
|
|
1383
1407
|
tabindex="-1"
|
|
1384
1408
|
icon="x"
|
|
1409
|
+
[svgIcon]="xIcon"
|
|
1385
1410
|
fillMode="flat"
|
|
1386
1411
|
[title]="messageFor('remove')"
|
|
1387
1412
|
(click)="removeFilterGroup()">
|
|
@@ -8,6 +8,7 @@ import * as i1 from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import { Keys } from '@progress/kendo-angular-common';
|
|
11
|
+
import { xIcon, filterAddGroupIcon, filterAddExpressionIcon } from '@progress/kendo-svg-icons';
|
|
11
12
|
import * as i10 from '@progress/kendo-angular-buttons';
|
|
12
13
|
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
13
14
|
import * as i2 from '@progress/kendo-angular-dropdowns';
|
|
@@ -233,7 +234,7 @@ const packageMetadata = {
|
|
|
233
234
|
name: '@progress/kendo-angular-filter',
|
|
234
235
|
productName: 'Kendo UI for Angular',
|
|
235
236
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
236
|
-
publishDate:
|
|
237
|
+
publishDate: 1672939107,
|
|
237
238
|
version: '',
|
|
238
239
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
239
240
|
};
|
|
@@ -900,6 +901,10 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
|
|
|
900
901
|
super(element, navigationService, localization, renderer);
|
|
901
902
|
this.filterService = filterService;
|
|
902
903
|
this.cdr = cdr;
|
|
904
|
+
/**
|
|
905
|
+
* @hidden
|
|
906
|
+
*/
|
|
907
|
+
this.xIcon = xIcon;
|
|
903
908
|
this.operators = [];
|
|
904
909
|
this.filters = [];
|
|
905
910
|
this.isBoolean = false;
|
|
@@ -1105,6 +1110,7 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
1105
1110
|
kendoButton
|
|
1106
1111
|
tabindex="-1"
|
|
1107
1112
|
icon="x"
|
|
1113
|
+
[svgIcon]="xIcon"
|
|
1108
1114
|
fillMode="flat"
|
|
1109
1115
|
[title]="messageFor('remove')"
|
|
1110
1116
|
(click)="removeFilterExpression()">
|
|
@@ -1165,6 +1171,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1165
1171
|
kendoButton
|
|
1166
1172
|
tabindex="-1"
|
|
1167
1173
|
icon="x"
|
|
1174
|
+
[svgIcon]="xIcon"
|
|
1168
1175
|
fillMode="flat"
|
|
1169
1176
|
[title]="messageFor('remove')"
|
|
1170
1177
|
(click)="removeFilterExpression()">
|
|
@@ -1186,6 +1193,18 @@ class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
1186
1193
|
super(element, navigationService, localization, renderer);
|
|
1187
1194
|
this.filterService = filterService;
|
|
1188
1195
|
this.cdr = cdr;
|
|
1196
|
+
/**
|
|
1197
|
+
* @hidden
|
|
1198
|
+
*/
|
|
1199
|
+
this.xIcon = xIcon;
|
|
1200
|
+
/**
|
|
1201
|
+
* @hidden
|
|
1202
|
+
*/
|
|
1203
|
+
this.filterAddGroupIcon = filterAddGroupIcon;
|
|
1204
|
+
/**
|
|
1205
|
+
* @hidden
|
|
1206
|
+
*/
|
|
1207
|
+
this.filterAddExpressionIcon = filterAddExpressionIcon;
|
|
1189
1208
|
this.currentItem = {
|
|
1190
1209
|
logic: 'or',
|
|
1191
1210
|
filters: []
|
|
@@ -1285,6 +1304,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1285
1304
|
tabindex="-1"
|
|
1286
1305
|
[title]="messageFor('addFilter')"
|
|
1287
1306
|
icon="filter-add-expression"
|
|
1307
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
1288
1308
|
(click)="addFilterExpression()">
|
|
1289
1309
|
{{messageFor('addFilter')}}
|
|
1290
1310
|
</button>
|
|
@@ -1295,6 +1315,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1295
1315
|
tabindex="-1"
|
|
1296
1316
|
[title]="messageFor('addGroup')"
|
|
1297
1317
|
icon="filter-add-group"
|
|
1318
|
+
[svgIcon]="filterAddGroupIcon"
|
|
1298
1319
|
(click)="addFilterGroup()">
|
|
1299
1320
|
{{messageFor('addGroup')}}
|
|
1300
1321
|
</button>
|
|
@@ -1304,6 +1325,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
1304
1325
|
kendoButton
|
|
1305
1326
|
tabindex="-1"
|
|
1306
1327
|
icon="x"
|
|
1328
|
+
[svgIcon]="xIcon"
|
|
1307
1329
|
fillMode="flat"
|
|
1308
1330
|
[title]="messageFor('remove')"
|
|
1309
1331
|
(click)="removeFilterGroup()">
|
|
@@ -1362,6 +1384,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1362
1384
|
tabindex="-1"
|
|
1363
1385
|
[title]="messageFor('addFilter')"
|
|
1364
1386
|
icon="filter-add-expression"
|
|
1387
|
+
[svgIcon]="filterAddExpressionIcon"
|
|
1365
1388
|
(click)="addFilterExpression()">
|
|
1366
1389
|
{{messageFor('addFilter')}}
|
|
1367
1390
|
</button>
|
|
@@ -1372,6 +1395,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1372
1395
|
tabindex="-1"
|
|
1373
1396
|
[title]="messageFor('addGroup')"
|
|
1374
1397
|
icon="filter-add-group"
|
|
1398
|
+
[svgIcon]="filterAddGroupIcon"
|
|
1375
1399
|
(click)="addFilterGroup()">
|
|
1376
1400
|
{{messageFor('addGroup')}}
|
|
1377
1401
|
</button>
|
|
@@ -1381,6 +1405,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1381
1405
|
kendoButton
|
|
1382
1406
|
tabindex="-1"
|
|
1383
1407
|
icon="x"
|
|
1408
|
+
[svgIcon]="xIcon"
|
|
1384
1409
|
fillMode="flat"
|
|
1385
1410
|
[title]="messageFor('remove')"
|
|
1386
1411
|
(click)="removeFilterGroup()">
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { CompositeFilterDescriptor, FilterDescriptor } from '@progress/kendo-data-query';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
9
10
|
import { FilterService } from './filter.service';
|
|
10
11
|
import { DateFormat, FilterEditor, FilterExpression, FilterOperator, NumberFormat } from './model/filter-expression';
|
|
@@ -16,6 +17,10 @@ import * as i0 from "@angular/core";
|
|
|
16
17
|
export declare class FilterExpressionComponent extends BaseFilterRowComponent implements OnInit, OnDestroy {
|
|
17
18
|
private filterService;
|
|
18
19
|
private cdr;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
xIcon: SVGIcon;
|
|
19
24
|
static ngAcceptInputType_currentItem: FilterDescriptor | CompositeFilterDescriptor;
|
|
20
25
|
currentItem: FilterDescriptor;
|
|
21
26
|
operators: any[];
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { CompositeFilterDescriptor, FilterDescriptor } from '@progress/kendo-data-query';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
9
10
|
import { FilterService } from './filter.service';
|
|
10
11
|
import { NavigationService } from './navigation.service';
|
|
@@ -17,6 +18,18 @@ export declare class FilterGroupComponent extends BaseFilterRowComponent impleme
|
|
|
17
18
|
private filterService;
|
|
18
19
|
private cdr;
|
|
19
20
|
static ngAcceptInputType_currentItem: FilterDescriptor | CompositeFilterDescriptor;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
xIcon: SVGIcon;
|
|
25
|
+
/**
|
|
26
|
+
* @hidden
|
|
27
|
+
*/
|
|
28
|
+
filterAddGroupIcon: SVGIcon;
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
32
|
+
filterAddExpressionIcon: SVGIcon;
|
|
20
33
|
private _filterItems;
|
|
21
34
|
get filterItems(): FilterItem[];
|
|
22
35
|
currentItem: CompositeFilterDescriptor;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-filter",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.87",
|
|
4
4
|
"description": "Kendo UI Angular Filter",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -22,15 +22,16 @@
|
|
|
22
22
|
"@angular/platform-browser": "13 - 15",
|
|
23
23
|
"@progress/kendo-data-query": "^1.5.5",
|
|
24
24
|
"@progress/kendo-licensing": "^1.0.2",
|
|
25
|
-
"@progress/kendo-angular-buttons": "11.0.0-develop.
|
|
26
|
-
"@progress/kendo-angular-common": "11.0.0-develop.
|
|
27
|
-
"@progress/kendo-angular-dateinputs": "11.0.0-develop.
|
|
28
|
-
"@progress/kendo-angular-dropdowns": "11.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-inputs": "11.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-intl": "11.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-l10n": "11.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-
|
|
33
|
-
"@progress/kendo-angular-
|
|
25
|
+
"@progress/kendo-angular-buttons": "11.0.0-develop.87",
|
|
26
|
+
"@progress/kendo-angular-common": "11.0.0-develop.87",
|
|
27
|
+
"@progress/kendo-angular-dateinputs": "11.0.0-develop.87",
|
|
28
|
+
"@progress/kendo-angular-dropdowns": "11.0.0-develop.87",
|
|
29
|
+
"@progress/kendo-angular-inputs": "11.0.0-develop.87",
|
|
30
|
+
"@progress/kendo-angular-intl": "11.0.0-develop.87",
|
|
31
|
+
"@progress/kendo-angular-l10n": "11.0.0-develop.87",
|
|
32
|
+
"@progress/kendo-angular-icons": "11.0.0-develop.87",
|
|
33
|
+
"@progress/kendo-angular-label": "11.0.0-develop.87",
|
|
34
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.87",
|
|
34
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
@@ -8,7 +8,9 @@ function default_1(options) {
|
|
|
8
8
|
'@progress/kendo-angular-popup': '^5.0.0',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
10
|
'@progress/kendo-drawing': '^1.16.0',
|
|
11
|
-
'@progress/kendo-angular-dialog': '^7.0.0'
|
|
11
|
+
'@progress/kendo-angular-dialog': '^7.0.0',
|
|
12
|
+
// Peer dependency of icons
|
|
13
|
+
"@progress/kendo-svg-icons": "^0.6.0"
|
|
12
14
|
} });
|
|
13
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
14
16
|
}
|