@progress/kendo-angular-filter 17.0.0-develop.4 → 17.0.0-develop.41
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/README.md +35 -17
- 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/{esm2020 → esm2022}/aria-label.directive.mjs +6 -3
- package/{esm2020 → esm2022}/base-filter-row.component.mjs +10 -5
- package/{esm2020 → esm2022}/editors/boolean-editor.component.mjs +11 -7
- package/{esm2020 → esm2022}/editors/date-editor.component.mjs +9 -5
- package/{esm2020 → esm2022}/editors/numeric-editor.component.mjs +9 -5
- package/{esm2020 → esm2022}/editors/text-editor.component.mjs +8 -5
- package/{esm2020 → esm2022}/filter-expression-operators.component.mjs +9 -6
- package/{esm2020 → esm2022}/filter-expression.component.mjs +28 -20
- package/{esm2020 → esm2022}/filter-field.component.mjs +50 -3
- package/{esm2020 → esm2022}/filter-group.component.mjs +41 -36
- package/{esm2020 → esm2022}/filter.component.mjs +40 -29
- package/{esm2020 → esm2022}/filter.module.mjs +26 -26
- package/{esm2020 → esm2022}/filter.service.mjs +5 -7
- package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/localization/messages.mjs +243 -0
- package/{esm2020 → esm2022}/navigation.service.mjs +12 -9
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/templates/value-editor.template.mjs +4 -3
- package/{esm2020 → esm2022}/util.mjs +3 -3
- package/{fesm2020 → fesm2022}/progress-kendo-angular-filter.mjs +442 -193
- 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/localization/messages.d.ts +1 -1
- package/model/filter-expression.d.ts +2 -2
- package/package.json +19 -25
- package/schematics/ngAdd/index.js +4 -4
- package/util.d.ts +1 -1
- package/esm2020/localization/messages.mjs +0 -95
- package/fesm2015/progress-kendo-angular-filter.mjs +0 -2278
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/error-messages.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/model/filter-expression.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-filter.mjs +0 -0
|
@@ -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:
|
|
13
|
-
version: '17.0.0-develop.
|
|
12
|
+
publishDate: 1730818518,
|
|
13
|
+
version: '17.0.0-develop.41',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -5,13 +5,14 @@
|
|
|
5
5
|
import { Directive, TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export class FilterValueEditorTemplateDirective {
|
|
8
|
+
templateRef;
|
|
8
9
|
constructor(templateRef) {
|
|
9
10
|
this.templateRef = templateRef;
|
|
10
11
|
}
|
|
12
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterValueEditorTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterValueEditorTemplateDirective, isStandalone: true, selector: "[kendoFilterValueEditorTemplate]", ngImport: i0 });
|
|
11
14
|
}
|
|
12
|
-
|
|
13
|
-
FilterValueEditorTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FilterValueEditorTemplateDirective, isStandalone: true, selector: "[kendoFilterValueEditorTemplate]", ngImport: i0 });
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterValueEditorTemplateDirective, decorators: [{
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterValueEditorTemplateDirective, decorators: [{
|
|
15
16
|
type: Directive,
|
|
16
17
|
args: [{
|
|
17
18
|
selector: '[kendoFilterValueEditorTemplate]',
|
|
@@ -144,10 +144,10 @@ export const isPresent = (value) => value !== null && value !== undefined;
|
|
|
144
144
|
* @hidden
|
|
145
145
|
*/
|
|
146
146
|
export class FilterItem {
|
|
147
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterItem, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
148
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterItem });
|
|
147
149
|
}
|
|
148
|
-
|
|
149
|
-
FilterItem.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterItem });
|
|
150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterItem, decorators: [{
|
|
150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterItem, decorators: [{
|
|
151
151
|
type: Injectable
|
|
152
152
|
}] });
|
|
153
153
|
/**
|