@progress/kendo-angular-filter 16.5.0 → 16.6.0-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/aria-label.directive.d.ts +1 -1
- package/directives.d.ts +12 -0
- 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/esm2020/aria-label.directive.mjs +5 -2
- package/esm2020/directives.mjs +17 -0
- package/esm2020/editors/boolean-editor.component.mjs +7 -5
- package/esm2020/editors/date-editor.component.mjs +7 -5
- package/esm2020/editors/numeric-editor.component.mjs +7 -5
- package/esm2020/editors/text-editor.component.mjs +7 -5
- package/esm2020/filter-expression-operators.component.mjs +7 -5
- package/esm2020/filter-expression.component.mjs +15 -12
- package/esm2020/filter-field.component.mjs +3 -2
- package/esm2020/filter-group.component.mjs +8 -6
- package/esm2020/filter.component.mjs +7 -5
- package/esm2020/filter.module.mjs +61 -68
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/custom-messages.component.mjs +4 -3
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/templates/value-editor.template.mjs +3 -2
- package/fesm2015/progress-kendo-angular-filter.mjs +263 -275
- package/fesm2020/progress-kendo-angular-filter.mjs +263 -275
- package/filter-expression-operators.component.d.ts +1 -1
- package/filter-expression.component.d.ts +1 -1
- package/filter-field.component.d.ts +1 -1
- package/filter-group.component.d.ts +1 -1
- package/filter.component.d.ts +1 -1
- package/filter.module.d.ts +4 -14
- package/index.d.ts +1 -0
- package/localization/custom-messages.component.d.ts +2 -2
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +4 -4
- package/templates/value-editor.template.d.ts +1 -1
- package/esm2020/shared.module.mjs +0 -50
- package/shared.module.d.ts +0 -19
|
@@ -14,5 +14,5 @@ export declare class AriaLabelValueDirective {
|
|
|
14
14
|
constructor(hostElement: ElementRef, renderer: Renderer2);
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AriaLabelValueDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AriaLabelValueDirective, "[kendoAriaLabelValue]", never, { "ariaLabel": "kendoAriaLabelValue"; }, {}, never, never,
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AriaLabelValueDirective, "[kendoAriaLabelValue]", never, { "ariaLabel": "kendoAriaLabelValue"; }, {}, never, never, true, never>;
|
|
18
18
|
}
|
package/directives.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { FilterFieldComponent } from "./filter-field.component";
|
|
6
|
+
import { FilterComponent } from "./filter.component";
|
|
7
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
8
|
+
import { FilterValueEditorTemplateDirective } from "./templates/value-editor.template";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `@progress/kendo-angular-filter` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export declare const KENDO_FILTER: readonly [typeof FilterComponent, typeof FilterFieldComponent, typeof CustomMessagesComponent, typeof FilterValueEditorTemplateDirective];
|
|
@@ -37,5 +37,5 @@ export declare class FilterBooleanEditorComponent {
|
|
|
37
37
|
messageFor(key: string): string;
|
|
38
38
|
onValueChange(value: string): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBooleanEditorComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBooleanEditorComponent, "kendo-filter-boolean-editor", never, { "currentItem": "currentItem"; }, { "valueChange": "valueChange"; }, never, never,
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBooleanEditorComponent, "kendo-filter-boolean-editor", never, { "currentItem": "currentItem"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
41
41
|
}
|
|
@@ -20,5 +20,5 @@ export declare class FilterDateEditorComponent {
|
|
|
20
20
|
messageFor(key: string): string;
|
|
21
21
|
onValueChange(value: Date): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterDateEditorComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterDateEditorComponent, "kendo-filter-date-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; "format": "format"; }, { "valueChange": "valueChange"; }, never, never,
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterDateEditorComponent, "kendo-filter-date-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; "format": "format"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -20,5 +20,5 @@ export declare class FilterNumericEditorComponent {
|
|
|
20
20
|
messageFor(key: string): string;
|
|
21
21
|
onValueChange(value: number): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterNumericEditorComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterNumericEditorComponent, "kendo-filter-numeric-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; "format": "format"; }, { "valueChange": "valueChange"; }, never, never,
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterNumericEditorComponent, "kendo-filter-numeric-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; "format": "format"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -18,5 +18,5 @@ export declare class FilterTextEditorComponent {
|
|
|
18
18
|
messageFor(key: string): string;
|
|
19
19
|
onValueChange(value: string): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterTextEditorComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterTextEditorComponent, "kendo-filter-text-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; }, { "valueChange": "valueChange"; }, never, never,
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterTextEditorComponent, "kendo-filter-text-editor", never, { "currentItem": "currentItem"; "isDisabled": "isDisabled"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
22
22
|
}
|
|
@@ -18,10 +18,13 @@ export class AriaLabelValueDirective {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
AriaLabelValueDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AriaLabelValueDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21
|
-
AriaLabelValueDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: { ariaLabel: ["kendoAriaLabelValue", "ariaLabel"] }, ngImport: i0 });
|
|
21
|
+
AriaLabelValueDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AriaLabelValueDirective, isStandalone: true, selector: "[kendoAriaLabelValue]", inputs: { ariaLabel: ["kendoAriaLabelValue", "ariaLabel"] }, ngImport: i0 });
|
|
22
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AriaLabelValueDirective, decorators: [{
|
|
23
23
|
type: Directive,
|
|
24
|
-
args: [{
|
|
24
|
+
args: [{
|
|
25
|
+
selector: '[kendoAriaLabelValue]',
|
|
26
|
+
standalone: true
|
|
27
|
+
}]
|
|
25
28
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { ariaLabel: [{
|
|
26
29
|
type: Input,
|
|
27
30
|
args: ['kendoAriaLabelValue']
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { FilterFieldComponent } from "./filter-field.component";
|
|
6
|
+
import { FilterComponent } from "./filter.component";
|
|
7
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
8
|
+
import { FilterValueEditorTemplateDirective } from "./templates/value-editor.template";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `@progress/kendo-angular-filter` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export const KENDO_FILTER = [
|
|
13
|
+
FilterComponent,
|
|
14
|
+
FilterFieldComponent,
|
|
15
|
+
CustomMessagesComponent,
|
|
16
|
+
FilterValueEditorTemplateDirective
|
|
17
|
+
];
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ChangeDetectorRef, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { AriaLabelValueDirective } from '../aria-label.directive';
|
|
8
|
+
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
9
|
-
import * as i2 from "@progress/kendo-angular-dropdowns";
|
|
10
|
-
import * as i3 from "../aria-label.directive";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -49,7 +49,7 @@ export class FilterBooleanEditorComponent {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
FilterBooleanEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterBooleanEditorComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
52
|
-
FilterBooleanEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterBooleanEditorComponent, selector: "kendo-filter-boolean-editor", inputs: { currentItem: "currentItem" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
52
|
+
FilterBooleanEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterBooleanEditorComponent, isStandalone: true, selector: "kendo-filter-boolean-editor", inputs: { currentItem: "currentItem" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
53
53
|
<kendo-dropdownlist
|
|
54
54
|
[tabindex]="-1"
|
|
55
55
|
[kendoAriaLabelValue]="messageFor('filterValueAriaLabel')"
|
|
@@ -62,7 +62,7 @@ FilterBooleanEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
|
|
|
62
62
|
valueField="value"
|
|
63
63
|
>
|
|
64
64
|
</kendo-dropdownlist>
|
|
65
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
65
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }] });
|
|
66
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterBooleanEditorComponent, decorators: [{
|
|
67
67
|
type: Component,
|
|
68
68
|
args: [{
|
|
@@ -80,7 +80,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
80
80
|
valueField="value"
|
|
81
81
|
>
|
|
82
82
|
</kendo-dropdownlist>
|
|
83
|
-
|
|
83
|
+
`,
|
|
84
|
+
standalone: true,
|
|
85
|
+
imports: [DropDownListComponent, AriaLabelValueDirective]
|
|
84
86
|
}]
|
|
85
87
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { currentItem: [{
|
|
86
88
|
type: Input
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
6
|
+
import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
|
|
6
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
+
import { AriaLabelValueDirective } from '../aria-label.directive';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
9
|
-
import * as i2 from "@progress/kendo-angular-dateinputs";
|
|
10
|
-
import * as i3 from "../aria-label.directive";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -25,7 +25,7 @@ export class FilterDateEditorComponent {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
FilterDateEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterDateEditorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
-
FilterDateEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterDateEditorComponent, selector: "kendo-filter-date-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled", format: "format" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
28
|
+
FilterDateEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterDateEditorComponent, isStandalone: true, selector: "kendo-filter-date-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled", format: "format" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
29
29
|
<kendo-datepicker
|
|
30
30
|
[tabindex]="-1"
|
|
31
31
|
[kendoAriaLabelValue]="messageFor('filterValueAriaLabel')"
|
|
@@ -38,7 +38,7 @@ FilterDateEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
38
38
|
[today]="messageFor('editorDateTodayText')">
|
|
39
39
|
</kendo-datepicker-messages>
|
|
40
40
|
</kendo-datepicker>
|
|
41
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
41
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }] });
|
|
42
42
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterDateEditorComponent, decorators: [{
|
|
43
43
|
type: Component,
|
|
44
44
|
args: [{
|
|
@@ -56,7 +56,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
56
56
|
[today]="messageFor('editorDateTodayText')">
|
|
57
57
|
</kendo-datepicker-messages>
|
|
58
58
|
</kendo-datepicker>
|
|
59
|
-
|
|
59
|
+
`,
|
|
60
|
+
standalone: true,
|
|
61
|
+
imports: [DatePickerComponent, AriaLabelValueDirective, DatePickerCustomMessagesComponent]
|
|
60
62
|
}]
|
|
61
63
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { currentItem: [{
|
|
62
64
|
type: Input
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
|
|
8
|
+
import { AriaLabelValueDirective } from '../aria-label.directive';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
9
|
-
import * as i2 from "@progress/kendo-angular-inputs";
|
|
10
|
-
import * as i3 from "../aria-label.directive";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -25,7 +25,7 @@ export class FilterNumericEditorComponent {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
FilterNumericEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterNumericEditorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
-
FilterNumericEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterNumericEditorComponent, selector: "kendo-filter-numeric-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled", format: "format" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
28
|
+
FilterNumericEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterNumericEditorComponent, isStandalone: true, selector: "kendo-filter-numeric-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled", format: "format" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
29
29
|
<kendo-numerictextbox
|
|
30
30
|
[tabindex]="-1"
|
|
31
31
|
[kendoAriaLabelValue]="messageFor('filterValueAriaLabel')"
|
|
@@ -38,7 +38,7 @@ FilterNumericEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
|
|
|
38
38
|
[decrement]="messageFor('editorNumericDecrement')">
|
|
39
39
|
</kendo-numerictextbox-messages>
|
|
40
40
|
</kendo-numerictextbox>
|
|
41
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
41
|
+
`, isInline: true, dependencies: [{ kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }, { kind: "component", type: NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }] });
|
|
42
42
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterNumericEditorComponent, decorators: [{
|
|
43
43
|
type: Component,
|
|
44
44
|
args: [{
|
|
@@ -56,7 +56,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
56
56
|
[decrement]="messageFor('editorNumericDecrement')">
|
|
57
57
|
</kendo-numerictextbox-messages>
|
|
58
58
|
</kendo-numerictextbox>
|
|
59
|
-
|
|
59
|
+
`,
|
|
60
|
+
standalone: true,
|
|
61
|
+
imports: [NumericTextBoxComponent, AriaLabelValueDirective, NumericTextBoxCustomMessagesComponent]
|
|
60
62
|
}]
|
|
61
63
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { currentItem: [{
|
|
62
64
|
type: Input
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
+
import { AriaLabelValueDirective } from '../aria-label.directive';
|
|
8
|
+
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
9
|
-
import * as i2 from "@progress/kendo-angular-inputs";
|
|
10
|
-
import * as i3 from "../aria-label.directive";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -25,7 +25,7 @@ export class FilterTextEditorComponent {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
FilterTextEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterTextEditorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
-
FilterTextEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterTextEditorComponent, selector: "kendo-filter-text-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
28
|
+
FilterTextEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterTextEditorComponent, isStandalone: true, selector: "kendo-filter-text-editor", inputs: { currentItem: "currentItem", isDisabled: "isDisabled" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
29
29
|
<kendo-textbox
|
|
30
30
|
[tabindex]="-1"
|
|
31
31
|
[kendoAriaLabelValue]="messageFor('filterValueAriaLabel')"
|
|
@@ -33,7 +33,7 @@ FilterTextEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
33
33
|
(valueChange)="onValueChange($event)"
|
|
34
34
|
[disabled]="isDisabled">
|
|
35
35
|
</kendo-textbox>
|
|
36
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
36
|
+
`, isInline: true, dependencies: [{ kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }] });
|
|
37
37
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterTextEditorComponent, decorators: [{
|
|
38
38
|
type: Component,
|
|
39
39
|
args: [{
|
|
@@ -46,7 +46,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
46
46
|
(valueChange)="onValueChange($event)"
|
|
47
47
|
[disabled]="isDisabled">
|
|
48
48
|
</kendo-textbox>
|
|
49
|
-
|
|
49
|
+
`,
|
|
50
|
+
standalone: true,
|
|
51
|
+
imports: [TextBoxComponent, AriaLabelValueDirective]
|
|
50
52
|
}]
|
|
51
53
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { currentItem: [{
|
|
52
54
|
type: Input
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { defaultOperators, getKeyByValue } from './util';
|
|
8
|
+
import { DropDownListComponent, ItemTemplateDirective, ValueTemplateDirective } from '@progress/kendo-angular-dropdowns';
|
|
9
|
+
import { AriaLabelValueDirective } from './aria-label.directive';
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
11
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
|
-
import * as i2 from "@progress/kendo-angular-dropdowns";
|
|
11
|
-
import * as i3 from "./aria-label.directive";
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
14
14
|
*/
|
|
@@ -29,7 +29,7 @@ export class FilterExpressionOperatorsComponent {
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
FilterExpressionOperatorsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterExpressionOperatorsComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
32
|
-
FilterExpressionOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterExpressionOperatorsComponent, selector: "kendo-filter-expression-operators", inputs: { currentItem: "currentItem", editorType: "editorType", operators: "operators" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
32
|
+
FilterExpressionOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterExpressionOperatorsComponent, isStandalone: true, selector: "kendo-filter-expression-operators", inputs: { currentItem: "currentItem", editorType: "editorType", operators: "operators" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
33
33
|
<kendo-dropdownlist
|
|
34
34
|
[tabindex]="-1"
|
|
35
35
|
[kendoAriaLabelValue]="messageFor('filterOperatorAriaLabel')"
|
|
@@ -48,7 +48,7 @@ FilterExpressionOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersio
|
|
|
48
48
|
<span>{{ getOperator(dataItem.value) }}</span>
|
|
49
49
|
</ng-template>
|
|
50
50
|
</kendo-dropdownlist>
|
|
51
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
51
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }, { kind: "directive", type: ValueTemplateDirective, selector: "[kendoDropDownListValueTemplate],[kendoDropDownTreeValueTemplate]" }, { kind: "directive", type: ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }] });
|
|
52
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterExpressionOperatorsComponent, decorators: [{
|
|
53
53
|
type: Component,
|
|
54
54
|
args: [{
|
|
@@ -72,7 +72,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
72
72
|
<span>{{ getOperator(dataItem.value) }}</span>
|
|
73
73
|
</ng-template>
|
|
74
74
|
</kendo-dropdownlist>
|
|
75
|
-
|
|
75
|
+
`,
|
|
76
|
+
standalone: true,
|
|
77
|
+
imports: [DropDownListComponent, AriaLabelValueDirective, ValueTemplateDirective, ItemTemplateDirective]
|
|
76
78
|
}]
|
|
77
79
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { currentItem: [{
|
|
78
80
|
type: Input
|
|
@@ -10,19 +10,20 @@ import { FilterErrorMessages } from './error-messages';
|
|
|
10
10
|
import { FilterService } from './filter.service';
|
|
11
11
|
import { NavigationService } from './navigation.service';
|
|
12
12
|
import { defaultDateOperators, defaultNumericOperators, defaultOperators, defaultStringOperators, FilterItem, getKeyByValue, isFilterEditor, localizeOperators, nullOperators } from './util';
|
|
13
|
+
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
14
|
+
import { FilterDateEditorComponent } from './editors/date-editor.component';
|
|
15
|
+
import { FilterBooleanEditorComponent } from './editors/boolean-editor.component';
|
|
16
|
+
import { FilterNumericEditorComponent } from './editors/numeric-editor.component';
|
|
17
|
+
import { FilterTextEditorComponent } from './editors/text-editor.component';
|
|
18
|
+
import { FilterExpressionOperatorsComponent } from './filter-expression-operators.component';
|
|
19
|
+
import { NgIf, NgSwitch, NgSwitchCase } from '@angular/common';
|
|
20
|
+
import { AriaLabelValueDirective } from './aria-label.directive';
|
|
21
|
+
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
22
|
+
import { TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
13
23
|
import * as i0 from "@angular/core";
|
|
14
24
|
import * as i1 from "./filter.service";
|
|
15
25
|
import * as i2 from "./navigation.service";
|
|
16
26
|
import * as i3 from "@progress/kendo-angular-l10n";
|
|
17
|
-
import * as i4 from "@angular/common";
|
|
18
|
-
import * as i5 from "@progress/kendo-angular-dropdowns";
|
|
19
|
-
import * as i6 from "@progress/kendo-angular-buttons";
|
|
20
|
-
import * as i7 from "./editors/numeric-editor.component";
|
|
21
|
-
import * as i8 from "./editors/text-editor.component";
|
|
22
|
-
import * as i9 from "./filter-expression-operators.component";
|
|
23
|
-
import * as i10 from "./editors/boolean-editor.component";
|
|
24
|
-
import * as i11 from "./editors/date-editor.component";
|
|
25
|
-
import * as i12 from "./aria-label.directive";
|
|
26
27
|
/**
|
|
27
28
|
* @hidden
|
|
28
29
|
*/
|
|
@@ -197,7 +198,7 @@ export class FilterExpressionComponent extends BaseFilterRowComponent {
|
|
|
197
198
|
}
|
|
198
199
|
}
|
|
199
200
|
FilterExpressionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterExpressionComponent, deps: [{ token: i1.FilterService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i2.NavigationService }, { token: i3.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
200
|
-
FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterExpressionComponent, selector: "kendo-filter-expression", inputs: { currentItem: "currentItem" }, providers: [{
|
|
201
|
+
FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterExpressionComponent, isStandalone: true, selector: "kendo-filter-expression", inputs: { currentItem: "currentItem" }, providers: [{
|
|
201
202
|
provide: FilterItem,
|
|
202
203
|
useExisting: forwardRef(() => FilterExpressionComponent)
|
|
203
204
|
}], usesInheritance: true, ngImport: i0, template: `
|
|
@@ -251,7 +252,7 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
251
252
|
</button>
|
|
252
253
|
</div>
|
|
253
254
|
</div>
|
|
254
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
255
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: AriaLabelValueDirective, selector: "[kendoAriaLabelValue]", inputs: ["kendoAriaLabelValue"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FilterExpressionOperatorsComponent, selector: "kendo-filter-expression-operators", inputs: ["currentItem", "editorType", "operators"], outputs: ["valueChange"] }, { kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: FilterTextEditorComponent, selector: "kendo-filter-text-editor", inputs: ["currentItem", "isDisabled"], outputs: ["valueChange"] }, { kind: "component", type: FilterNumericEditorComponent, selector: "kendo-filter-numeric-editor", inputs: ["currentItem", "isDisabled", "format"], outputs: ["valueChange"] }, { kind: "component", type: FilterBooleanEditorComponent, selector: "kendo-filter-boolean-editor", inputs: ["currentItem"], outputs: ["valueChange"] }, { kind: "component", type: FilterDateEditorComponent, selector: "kendo-filter-date-editor", inputs: ["currentItem", "isDisabled", "format"], outputs: ["valueChange"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
255
256
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterExpressionComponent, decorators: [{
|
|
256
257
|
type: Component,
|
|
257
258
|
args: [{
|
|
@@ -311,7 +312,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
311
312
|
</button>
|
|
312
313
|
</div>
|
|
313
314
|
</div>
|
|
314
|
-
|
|
315
|
+
`,
|
|
316
|
+
standalone: true,
|
|
317
|
+
imports: [DropDownListComponent, AriaLabelValueDirective, NgIf, FilterExpressionOperatorsComponent, NgSwitch, NgSwitchCase, FilterTextEditorComponent, FilterNumericEditorComponent, FilterBooleanEditorComponent, FilterDateEditorComponent, TemplateContextDirective, ButtonComponent]
|
|
315
318
|
}]
|
|
316
319
|
}], ctorParameters: function () { return [{ type: i1.FilterService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i2.NavigationService }, { type: i3.LocalizationService }, { type: i0.Renderer2 }]; }, propDecorators: { currentItem: [{
|
|
317
320
|
type: Input
|
|
@@ -47,12 +47,13 @@ export class FilterFieldComponent {
|
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
FilterFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
50
|
-
FilterFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterFieldComponent, selector: "kendo-filter-field", inputs: { field: "field", title: "title", editor: "editor", operators: "operators", editorFormat: "editorFormat" }, queries: [{ propertyName: "editorTemplate", first: true, predicate: FilterValueEditorTemplateDirective, descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
50
|
+
FilterFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterFieldComponent, isStandalone: true, selector: "kendo-filter-field", inputs: { field: "field", title: "title", editor: "editor", operators: "operators", editorFormat: "editorFormat" }, queries: [{ propertyName: "editorTemplate", first: true, predicate: FilterValueEditorTemplateDirective, descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
51
51
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterFieldComponent, decorators: [{
|
|
52
52
|
type: Component,
|
|
53
53
|
args: [{
|
|
54
54
|
selector: 'kendo-filter-field',
|
|
55
|
-
template:
|
|
55
|
+
template: ``,
|
|
56
|
+
standalone: true
|
|
56
57
|
}]
|
|
57
58
|
}], propDecorators: { field: [{
|
|
58
59
|
type: Input
|
|
@@ -9,13 +9,13 @@ import { BaseFilterRowComponent } from './base-filter-row.component';
|
|
|
9
9
|
import { FilterService } from './filter.service';
|
|
10
10
|
import { NavigationService } from './navigation.service';
|
|
11
11
|
import { FilterItem, getKeyByValue, localizeOperators, logicOperators, selectors } from './util';
|
|
12
|
+
import { FilterExpressionComponent } from './filter-expression.component';
|
|
13
|
+
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
14
|
+
import { NgFor, NgClass, NgIf } from '@angular/common';
|
|
12
15
|
import * as i0 from "@angular/core";
|
|
13
16
|
import * as i1 from "./filter.service";
|
|
14
17
|
import * as i2 from "./navigation.service";
|
|
15
18
|
import * as i3 from "@progress/kendo-angular-l10n";
|
|
16
|
-
import * as i4 from "@angular/common";
|
|
17
|
-
import * as i5 from "@progress/kendo-angular-buttons";
|
|
18
|
-
import * as i6 from "./filter-expression.component";
|
|
19
19
|
/**
|
|
20
20
|
* @hidden
|
|
21
21
|
*/
|
|
@@ -120,7 +120,7 @@ export class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
FilterGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", 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 });
|
|
123
|
-
FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterGroupComponent, selector: "kendo-filter-group", inputs: { currentItem: "currentItem" }, providers: [{
|
|
123
|
+
FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterGroupComponent, isStandalone: true, selector: "kendo-filter-group", inputs: { currentItem: "currentItem" }, providers: [{
|
|
124
124
|
provide: FilterItem,
|
|
125
125
|
useExisting: forwardRef(() => FilterGroupComponent)
|
|
126
126
|
}], viewQueries: [{ propertyName: "_filterItems", predicate: FilterItem, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
@@ -193,7 +193,7 @@ FilterGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
193
193
|
</li>
|
|
194
194
|
</ng-container>
|
|
195
195
|
</ul>
|
|
196
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
196
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterGroupComponent, selector: "kendo-filter-group", inputs: ["currentItem"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FilterExpressionComponent, selector: "kendo-filter-expression", inputs: ["currentItem"] }] });
|
|
197
197
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterGroupComponent, decorators: [{
|
|
198
198
|
type: Component,
|
|
199
199
|
args: [{
|
|
@@ -272,7 +272,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
272
272
|
</li>
|
|
273
273
|
</ng-container>
|
|
274
274
|
</ul>
|
|
275
|
-
|
|
275
|
+
`,
|
|
276
|
+
standalone: true,
|
|
277
|
+
imports: [NgFor, ButtonComponent, NgClass, NgIf, FilterExpressionComponent]
|
|
276
278
|
}]
|
|
277
279
|
}], ctorParameters: function () { return [{ type: i1.FilterService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i2.NavigationService }, { type: i3.LocalizationService }, { type: i0.Renderer2 }]; }, propDecorators: { _filterItems: [{
|
|
278
280
|
type: ViewChildren,
|
|
@@ -14,12 +14,12 @@ import { FilterItem } from './util';
|
|
|
14
14
|
import { NavigationService } from './navigation.service';
|
|
15
15
|
import { Keys } from '@progress/kendo-angular-common';
|
|
16
16
|
import { FilterErrorMessages } from './error-messages';
|
|
17
|
+
import { FilterGroupComponent } from './filter-group.component';
|
|
18
|
+
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
17
19
|
import * as i0 from "@angular/core";
|
|
18
20
|
import * as i1 from "./filter.service";
|
|
19
21
|
import * as i2 from "@progress/kendo-angular-l10n";
|
|
20
22
|
import * as i3 from "./navigation.service";
|
|
21
|
-
import * as i4 from "./filter-group.component";
|
|
22
|
-
import * as i5 from "./localization/localized-messages.directive";
|
|
23
23
|
/**
|
|
24
24
|
* Represents the [Kendo UI Filter component for Angular]({% slug overview_filter %}).
|
|
25
25
|
* The Filter component can be used to apply any user defined filter criteria.
|
|
@@ -284,7 +284,7 @@ export class FilterComponent {
|
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
FilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", 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 });
|
|
287
|
-
FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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: [
|
|
287
|
+
FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FilterComponent, isStandalone: true, 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: [
|
|
288
288
|
LocalizationService,
|
|
289
289
|
{
|
|
290
290
|
provide: L10N_PREFIX,
|
|
@@ -417,7 +417,7 @@ FilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
417
417
|
</li>
|
|
418
418
|
</ul>
|
|
419
419
|
</div>
|
|
420
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
420
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoFilterLocalizedMessages]" }, { kind: "component", type: FilterGroupComponent, selector: "kendo-filter-group", inputs: ["currentItem"] }] });
|
|
421
421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterComponent, decorators: [{
|
|
422
422
|
type: Component,
|
|
423
423
|
args: [{
|
|
@@ -556,7 +556,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
556
556
|
</li>
|
|
557
557
|
</ul>
|
|
558
558
|
</div>
|
|
559
|
-
|
|
559
|
+
`,
|
|
560
|
+
standalone: true,
|
|
561
|
+
imports: [LocalizedMessagesDirective, FilterGroupComponent]
|
|
560
562
|
}]
|
|
561
563
|
}], ctorParameters: function () { return [{ type: i1.FilterService }, { type: i2.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i3.NavigationService }, { type: i0.Renderer2 }]; }, propDecorators: { focusout: [{
|
|
562
564
|
type: HostListener,
|