@progress/kendo-angular-filter 19.1.1 → 19.1.2-develop.2
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/esm2022/filter-field.component.mjs +18 -17
- package/esm2022/filter.component.mjs +25 -25
- package/esm2022/localization/custom-messages.component.mjs +2 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/templates/value-editor.template.mjs +11 -0
- package/fesm2022/progress-kendo-angular-filter.mjs +58 -46
- package/filter-field.component.d.ts +18 -17
- package/filter.component.d.ts +25 -25
- package/localization/custom-messages.component.d.ts +2 -2
- package/model/filter-expression.d.ts +9 -6
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +4 -4
|
@@ -8,25 +8,26 @@ import { FilterValueEditorTemplateDirective } from './templates/value-editor.tem
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Represents the [Kendo UI Filter Field component for Angular]({% slug api_filter_filterfieldcomponent %}).
|
|
11
|
-
*
|
|
11
|
+
* Used to declare filter expressions for the Filter component.
|
|
12
|
+
*
|
|
12
13
|
* @example
|
|
13
14
|
* ```ts
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
15
|
+
* @Component({
|
|
16
|
+
* selector: 'my-app',
|
|
17
|
+
* template: `
|
|
18
|
+
* <kendo-filter (valueChange)="onValueChange($event)">
|
|
19
|
+
* <kendo-filter-field field="country" editor="string" [operators]="['neq', 'eq', 'contains']"></kendo-filter-field>
|
|
20
|
+
* <kendo-filter-field field="budget" editor="number"></kendo-filter-field>
|
|
21
|
+
* <kendo-filter-field field="discontinued" title="Discontinued" editor="boolean"></kendo-filter-field>
|
|
22
|
+
* <kendo-filter-field field="ordered on" title="Ordered on" editor="date"></kendo-filter-field>
|
|
23
|
+
* <kendo-filter>
|
|
24
|
+
* `
|
|
25
|
+
* })
|
|
26
|
+
* export class AppComponent {
|
|
27
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
28
|
+
* console.log(e);
|
|
29
|
+
* }
|
|
30
|
+
* }
|
|
30
31
|
* ```
|
|
31
32
|
*/
|
|
32
33
|
export class FilterFieldComponent {
|
|
@@ -22,34 +22,34 @@ import * as i2 from "@progress/kendo-angular-l10n";
|
|
|
22
22
|
import * as i3 from "./navigation.service";
|
|
23
23
|
/**
|
|
24
24
|
* Represents the [Kendo UI Filter component for Angular]({% slug overview_filter %}).
|
|
25
|
-
* The Filter component
|
|
25
|
+
* The Filter component enables users to define and apply complex filter criteria.
|
|
26
|
+
*
|
|
26
27
|
* @example
|
|
27
28
|
* ```ts
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
* ];
|
|
29
|
+
* @Component({
|
|
30
|
+
* selector: 'my-app',
|
|
31
|
+
* template: `
|
|
32
|
+
* <kendo-filter [filters]="filters" (valueChange)="onValueChange($event)"></kendo-filter>
|
|
33
|
+
* `
|
|
34
|
+
* })
|
|
35
|
+
* export class AppComponent {
|
|
36
|
+
* public filters: FilterExpression[] = [
|
|
37
|
+
* {
|
|
38
|
+
* name: 'country',
|
|
39
|
+
* label: 'Country',
|
|
40
|
+
* filter: 'string',
|
|
41
|
+
* operators: ['eq', 'neq'],
|
|
42
|
+
* },
|
|
43
|
+
* {
|
|
44
|
+
* name: 'budget',
|
|
45
|
+
* filter: 'number'
|
|
46
|
+
* }
|
|
47
|
+
* ];
|
|
48
48
|
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
49
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
50
|
+
* console.log(e);
|
|
51
|
+
* }
|
|
52
|
+
* }
|
|
53
53
|
* ```
|
|
54
54
|
*/
|
|
55
55
|
export class FilterComponent {
|
|
@@ -8,8 +8,8 @@ import { Messages } from './messages';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Custom component messages override default component messages
|
|
12
|
-
*
|
|
11
|
+
* Custom component messages that override the default component messages.
|
|
12
|
+
* For usage examples, see the [Internationalization guide](slug:globalization_filter#toc-internationalization).
|
|
13
13
|
*/
|
|
14
14
|
export class CustomMessagesComponent extends Messages {
|
|
15
15
|
service;
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.1.
|
|
13
|
+
publishDate: 1749820754,
|
|
14
|
+
version: '19.1.2-develop.2',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -4,6 +4,17 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Directive, TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Directive for providing a custom value editor template in the Filter component.
|
|
9
|
+
* Used as a structural directive to customize the filter value editor UI.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```html
|
|
13
|
+
* <ng-template kendoFilterValueEditorTemplate let-value>
|
|
14
|
+
* <!-- custom editor markup -->
|
|
15
|
+
* </ng-template>
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
7
18
|
export class FilterValueEditorTemplateDirective {
|
|
8
19
|
templateRef;
|
|
9
20
|
constructor(templateRef) {
|
|
@@ -231,11 +231,22 @@ const packageMetadata = {
|
|
|
231
231
|
productName: 'Kendo UI for Angular',
|
|
232
232
|
productCode: 'KENDOUIANGULAR',
|
|
233
233
|
productCodes: ['KENDOUIANGULAR'],
|
|
234
|
-
publishDate:
|
|
235
|
-
version: '19.1.
|
|
234
|
+
publishDate: 1749820754,
|
|
235
|
+
version: '19.1.2-develop.2',
|
|
236
236
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
237
237
|
};
|
|
238
238
|
|
|
239
|
+
/**
|
|
240
|
+
* Directive for providing a custom value editor template in the Filter component.
|
|
241
|
+
* Used as a structural directive to customize the filter value editor UI.
|
|
242
|
+
*
|
|
243
|
+
* @example
|
|
244
|
+
* ```html
|
|
245
|
+
* <ng-template kendoFilterValueEditorTemplate let-value>
|
|
246
|
+
* <!-- custom editor markup -->
|
|
247
|
+
* </ng-template>
|
|
248
|
+
* ```
|
|
249
|
+
*/
|
|
239
250
|
class FilterValueEditorTemplateDirective {
|
|
240
251
|
templateRef;
|
|
241
252
|
constructor(templateRef) {
|
|
@@ -254,25 +265,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
254
265
|
|
|
255
266
|
/**
|
|
256
267
|
* Represents the [Kendo UI Filter Field component for Angular]({% slug api_filter_filterfieldcomponent %}).
|
|
257
|
-
*
|
|
268
|
+
* Used to declare filter expressions for the Filter component.
|
|
269
|
+
*
|
|
258
270
|
* @example
|
|
259
271
|
* ```ts
|
|
260
|
-
*
|
|
261
|
-
*
|
|
262
|
-
*
|
|
263
|
-
*
|
|
264
|
-
*
|
|
265
|
-
*
|
|
266
|
-
*
|
|
267
|
-
*
|
|
268
|
-
*
|
|
269
|
-
*
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
*
|
|
275
|
-
*
|
|
272
|
+
* @Component({
|
|
273
|
+
* selector: 'my-app',
|
|
274
|
+
* template: `
|
|
275
|
+
* <kendo-filter (valueChange)="onValueChange($event)">
|
|
276
|
+
* <kendo-filter-field field="country" editor="string" [operators]="['neq', 'eq', 'contains']"></kendo-filter-field>
|
|
277
|
+
* <kendo-filter-field field="budget" editor="number"></kendo-filter-field>
|
|
278
|
+
* <kendo-filter-field field="discontinued" title="Discontinued" editor="boolean"></kendo-filter-field>
|
|
279
|
+
* <kendo-filter-field field="ordered on" title="Ordered on" editor="date"></kendo-filter-field>
|
|
280
|
+
* <kendo-filter>
|
|
281
|
+
* `
|
|
282
|
+
* })
|
|
283
|
+
* export class AppComponent {
|
|
284
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
285
|
+
* console.log(e);
|
|
286
|
+
* }
|
|
287
|
+
* }
|
|
276
288
|
* ```
|
|
277
289
|
*/
|
|
278
290
|
class FilterFieldComponent {
|
|
@@ -1814,34 +1826,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1814
1826
|
|
|
1815
1827
|
/**
|
|
1816
1828
|
* Represents the [Kendo UI Filter component for Angular]({% slug overview_filter %}).
|
|
1817
|
-
* The Filter component
|
|
1829
|
+
* The Filter component enables users to define and apply complex filter criteria.
|
|
1830
|
+
*
|
|
1818
1831
|
* @example
|
|
1819
1832
|
* ```ts
|
|
1820
|
-
*
|
|
1821
|
-
*
|
|
1822
|
-
*
|
|
1823
|
-
*
|
|
1824
|
-
*
|
|
1825
|
-
*
|
|
1826
|
-
*
|
|
1827
|
-
*
|
|
1828
|
-
*
|
|
1829
|
-
*
|
|
1830
|
-
*
|
|
1831
|
-
*
|
|
1832
|
-
*
|
|
1833
|
-
*
|
|
1834
|
-
*
|
|
1835
|
-
*
|
|
1836
|
-
*
|
|
1837
|
-
*
|
|
1838
|
-
*
|
|
1839
|
-
* ];
|
|
1833
|
+
* @Component({
|
|
1834
|
+
* selector: 'my-app',
|
|
1835
|
+
* template: `
|
|
1836
|
+
* <kendo-filter [filters]="filters" (valueChange)="onValueChange($event)"></kendo-filter>
|
|
1837
|
+
* `
|
|
1838
|
+
* })
|
|
1839
|
+
* export class AppComponent {
|
|
1840
|
+
* public filters: FilterExpression[] = [
|
|
1841
|
+
* {
|
|
1842
|
+
* name: 'country',
|
|
1843
|
+
* label: 'Country',
|
|
1844
|
+
* filter: 'string',
|
|
1845
|
+
* operators: ['eq', 'neq'],
|
|
1846
|
+
* },
|
|
1847
|
+
* {
|
|
1848
|
+
* name: 'budget',
|
|
1849
|
+
* filter: 'number'
|
|
1850
|
+
* }
|
|
1851
|
+
* ];
|
|
1840
1852
|
*
|
|
1841
|
-
*
|
|
1842
|
-
*
|
|
1843
|
-
*
|
|
1844
|
-
*
|
|
1853
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
1854
|
+
* console.log(e);
|
|
1855
|
+
* }
|
|
1856
|
+
* }
|
|
1845
1857
|
* ```
|
|
1846
1858
|
*/
|
|
1847
1859
|
class FilterComponent {
|
|
@@ -2400,8 +2412,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2400
2412
|
}] } });
|
|
2401
2413
|
|
|
2402
2414
|
/**
|
|
2403
|
-
* Custom component messages override default component messages
|
|
2404
|
-
*
|
|
2415
|
+
* Custom component messages that override the default component messages.
|
|
2416
|
+
* For usage examples, see the [Internationalization guide](slug:globalization_filter#toc-internationalization).
|
|
2405
2417
|
*/
|
|
2406
2418
|
class CustomMessagesComponent extends Messages {
|
|
2407
2419
|
service;
|
|
@@ -7,25 +7,26 @@ import { FilterValueEditorTemplateDirective } from './templates/value-editor.tem
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents the [Kendo UI Filter Field component for Angular]({% slug api_filter_filterfieldcomponent %}).
|
|
10
|
-
*
|
|
10
|
+
* Used to declare filter expressions for the Filter component.
|
|
11
|
+
*
|
|
11
12
|
* @example
|
|
12
13
|
* ```ts
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
14
|
+
* @Component({
|
|
15
|
+
* selector: 'my-app',
|
|
16
|
+
* template: `
|
|
17
|
+
* <kendo-filter (valueChange)="onValueChange($event)">
|
|
18
|
+
* <kendo-filter-field field="country" editor="string" [operators]="['neq', 'eq', 'contains']"></kendo-filter-field>
|
|
19
|
+
* <kendo-filter-field field="budget" editor="number"></kendo-filter-field>
|
|
20
|
+
* <kendo-filter-field field="discontinued" title="Discontinued" editor="boolean"></kendo-filter-field>
|
|
21
|
+
* <kendo-filter-field field="ordered on" title="Ordered on" editor="date"></kendo-filter-field>
|
|
22
|
+
* <kendo-filter>
|
|
23
|
+
* `
|
|
24
|
+
* })
|
|
25
|
+
* export class AppComponent {
|
|
26
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
27
|
+
* console.log(e);
|
|
28
|
+
* }
|
|
29
|
+
* }
|
|
29
30
|
* ```
|
|
30
31
|
*/
|
|
31
32
|
export declare class FilterFieldComponent {
|
package/filter.component.d.ts
CHANGED
|
@@ -15,34 +15,34 @@ import { NavigationService } from './navigation.service';
|
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
/**
|
|
17
17
|
* Represents the [Kendo UI Filter component for Angular]({% slug overview_filter %}).
|
|
18
|
-
* The Filter component
|
|
18
|
+
* The Filter component enables users to define and apply complex filter criteria.
|
|
19
|
+
*
|
|
19
20
|
* @example
|
|
20
21
|
* ```ts
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
* ];
|
|
22
|
+
* @Component({
|
|
23
|
+
* selector: 'my-app',
|
|
24
|
+
* template: `
|
|
25
|
+
* <kendo-filter [filters]="filters" (valueChange)="onValueChange($event)"></kendo-filter>
|
|
26
|
+
* `
|
|
27
|
+
* })
|
|
28
|
+
* export class AppComponent {
|
|
29
|
+
* public filters: FilterExpression[] = [
|
|
30
|
+
* {
|
|
31
|
+
* name: 'country',
|
|
32
|
+
* label: 'Country',
|
|
33
|
+
* filter: 'string',
|
|
34
|
+
* operators: ['eq', 'neq'],
|
|
35
|
+
* },
|
|
36
|
+
* {
|
|
37
|
+
* name: 'budget',
|
|
38
|
+
* filter: 'number'
|
|
39
|
+
* }
|
|
40
|
+
* ];
|
|
41
41
|
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
42
|
+
* onValueChange(e: CompositeFilterDescriptor) {
|
|
43
|
+
* console.log(e);
|
|
44
|
+
* }
|
|
45
|
+
* }
|
|
46
46
|
* ```
|
|
47
47
|
*/
|
|
48
48
|
export declare class FilterComponent implements OnInit, OnDestroy {
|
|
@@ -6,8 +6,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
6
6
|
import { Messages } from './messages';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
* Custom component messages override default component messages
|
|
10
|
-
*
|
|
9
|
+
* Custom component messages that override the default component messages.
|
|
10
|
+
* For usage examples, see the [Internationalization guide](slug:globalization_filter#toc-internationalization).
|
|
11
11
|
*/
|
|
12
12
|
export declare class CustomMessagesComponent extends Messages {
|
|
13
13
|
protected service: LocalizationService;
|
|
@@ -9,14 +9,16 @@ import { TemplateRef } from '@angular/core';
|
|
|
9
9
|
import { FormatSettings } from '@progress/kendo-angular-dateinputs';
|
|
10
10
|
import { NumberFormatOptions } from '@progress/kendo-angular-intl';
|
|
11
11
|
/**
|
|
12
|
-
* Specifies the date format
|
|
13
|
-
*
|
|
12
|
+
* Specifies the date format used for the DatePicker editor.
|
|
13
|
+
* Extends the `FormatSettings` from `@progress/kendo-angular-dateinputs`.
|
|
14
|
+
* See the [Filter editor formats documentation]({% slug filter_editor_formats %}).
|
|
14
15
|
*/
|
|
15
16
|
export interface DateFormat extends FormatSettings {
|
|
16
17
|
}
|
|
17
18
|
/**
|
|
18
|
-
* Specifies the number format
|
|
19
|
-
*
|
|
19
|
+
* Specifies the number format used for the NumericTextBox editor when it is not focused.
|
|
20
|
+
* Extends the `NumberFormatOptions` from `@progress/kendo-angular-intl`.
|
|
21
|
+
* See the [Filter editor formats documentation]({% slug filter_editor_formats %}).
|
|
20
22
|
*/
|
|
21
23
|
export interface NumberFormat extends NumberFormatOptions {
|
|
22
24
|
}
|
|
@@ -69,7 +71,7 @@ export interface FilterExpression {
|
|
|
69
71
|
* * `lt`— Less than
|
|
70
72
|
* * `lte`— Less than or equal to
|
|
71
73
|
*
|
|
72
|
-
* The boolean operator is always set to `eq
|
|
74
|
+
* The boolean operator is always set to `eq`.
|
|
73
75
|
*/
|
|
74
76
|
operators?: FilterOperator[];
|
|
75
77
|
/**
|
|
@@ -77,7 +79,8 @@ export interface FilterExpression {
|
|
|
77
79
|
*/
|
|
78
80
|
editorTemplate?: TemplateRef<any>;
|
|
79
81
|
/**
|
|
80
|
-
* Specifies the user-defined filter `editor` format that will be used.
|
|
82
|
+
* Specifies the user-defined filter `editor` format that will be used.
|
|
83
|
+
* See the [Filter editor formats documentation]({% slug filter_editor_formats %}).
|
|
81
84
|
*/
|
|
82
85
|
editorFormat?: string | NumberFormat | DateFormat;
|
|
83
86
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-filter",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.2-develop.2",
|
|
4
4
|
"description": "Kendo UI Angular Filter",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1749820754,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"@angular/platform-browser": "16 - 20",
|
|
29
29
|
"@progress/kendo-data-query": "^1.5.5",
|
|
30
30
|
"@progress/kendo-licensing": "^1.5.0",
|
|
31
|
-
"@progress/kendo-angular-buttons": "19.1.
|
|
32
|
-
"@progress/kendo-angular-common": "19.1.
|
|
33
|
-
"@progress/kendo-angular-dateinputs": "19.1.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "19.1.
|
|
35
|
-
"@progress/kendo-angular-inputs": "19.1.
|
|
36
|
-
"@progress/kendo-angular-intl": "19.1.
|
|
37
|
-
"@progress/kendo-angular-l10n": "19.1.
|
|
38
|
-
"@progress/kendo-angular-icons": "19.1.
|
|
39
|
-
"@progress/kendo-angular-label": "19.1.
|
|
31
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.2",
|
|
32
|
+
"@progress/kendo-angular-common": "19.1.2-develop.2",
|
|
33
|
+
"@progress/kendo-angular-dateinputs": "19.1.2-develop.2",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "19.1.2-develop.2",
|
|
35
|
+
"@progress/kendo-angular-inputs": "19.1.2-develop.2",
|
|
36
|
+
"@progress/kendo-angular-intl": "19.1.2-develop.2",
|
|
37
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.2",
|
|
38
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.2",
|
|
39
|
+
"@progress/kendo-angular-label": "19.1.2-develop.2",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "19.1.
|
|
44
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.2"
|
|
45
45
|
},
|
|
46
46
|
"schematics": "./schematics/collection.json",
|
|
47
47
|
"module": "fesm2022/progress-kendo-angular-filter.mjs",
|
|
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'FilterModule', package: 'filter', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '19.1.
|
|
8
|
-
'@progress/kendo-angular-popup': '19.1.
|
|
9
|
-
'@progress/kendo-angular-navigation': '19.1.
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.1.2-develop.2',
|
|
8
|
+
'@progress/kendo-angular-popup': '19.1.2-develop.2',
|
|
9
|
+
'@progress/kendo-angular-navigation': '19.1.2-develop.2',
|
|
10
10
|
// peer dependency of kendo-angular-inputs
|
|
11
11
|
'@progress/kendo-drawing': '^1.16.0',
|
|
12
|
-
'@progress/kendo-angular-dialog': '19.1.
|
|
12
|
+
'@progress/kendo-angular-dialog': '19.1.2-develop.2',
|
|
13
13
|
// Peer dependency of icons
|
|
14
14
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
15
15
|
} });
|