@progress/kendo-angular-grid 19.0.0-develop.29 → 19.0.0-develop.30
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/column-menu/column-list.component.d.ts +2 -1
- package/esm2022/column-menu/column-list.component.mjs +12 -4
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +2 -0
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +2 -0
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +2 -0
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +2 -0
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +6 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-grid.mjs +34 -7
- package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu.component.d.ts +1 -0
- package/package.json +21 -21
- package/schematics/ngAdd/index.js +4 -4
|
@@ -21,7 +21,8 @@ export declare class ColumnListComponent implements OnInit, OnDestroy {
|
|
|
21
21
|
checkIcon: import("@progress/kendo-svg-icons").SVGIcon;
|
|
22
22
|
arrowRotateCcwIcon: import("@progress/kendo-svg-icons").SVGIcon;
|
|
23
23
|
className: boolean;
|
|
24
|
-
|
|
24
|
+
get listSizeMd(): boolean;
|
|
25
|
+
get listSizeLg(): boolean;
|
|
25
26
|
reset: EventEmitter<any>;
|
|
26
27
|
apply: EventEmitter<any>;
|
|
27
28
|
columnChange: EventEmitter<any>;
|
|
@@ -32,7 +32,12 @@ export class ColumnListComponent {
|
|
|
32
32
|
checkIcon = checkIcon;
|
|
33
33
|
arrowRotateCcwIcon = arrowRotateCcwIcon;
|
|
34
34
|
className = true;
|
|
35
|
-
|
|
35
|
+
get listSizeMd() {
|
|
36
|
+
return !(this.ctx?.grid?.isActionSheetExpanded);
|
|
37
|
+
}
|
|
38
|
+
get listSizeLg() {
|
|
39
|
+
return this.ctx?.grid?.isActionSheetExpanded;
|
|
40
|
+
}
|
|
36
41
|
reset = new EventEmitter();
|
|
37
42
|
apply = new EventEmitter();
|
|
38
43
|
columnChange = new EventEmitter();
|
|
@@ -269,7 +274,7 @@ export class ColumnListComponent {
|
|
|
269
274
|
}
|
|
270
275
|
};
|
|
271
276
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.ColumnListKeyboardNavigation }, { token: i2.AdaptiveGridService, optional: true }, { token: i3.ContextService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
272
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-grid-columnlist", inputs: { columns: "columns", showActions: "showActions", autoSync: "autoSync", ariaLabel: "ariaLabel", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass", isLast: "isLast", isExpanded: "isExpanded", service: "service" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className", "class.k-column-list-md": "this.
|
|
277
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-grid-columnlist", inputs: { columns: "columns", showActions: "showActions", autoSync: "autoSync", ariaLabel: "ariaLabel", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass", isLast: "isLast", isExpanded: "isExpanded", service: "service" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className", "class.k-column-list-md": "this.listSizeMd", "class.k-column-list-lg": "this.listSizeLg" } }, providers: [ColumnListKeyboardNavigation], viewQueries: [{ propertyName: "resetButton", first: true, predicate: ["resetButton"], descendants: true }, { propertyName: "applyButton", first: true, predicate: ["applyButton"], descendants: true }, { propertyName: "options", predicate: ColumnMenuChooserItemCheckedDirective, descendants: true }, { propertyName: "checkboxes", predicate: CheckBoxComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
273
278
|
<div
|
|
274
279
|
class="k-column-list"
|
|
275
280
|
role="listbox"
|
|
@@ -371,9 +376,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
371
376
|
}] }]; }, propDecorators: { className: [{
|
|
372
377
|
type: HostBinding,
|
|
373
378
|
args: ["class.k-column-list-wrapper"]
|
|
374
|
-
}],
|
|
379
|
+
}], listSizeMd: [{
|
|
380
|
+
type: HostBinding,
|
|
381
|
+
args: ['class.k-column-list-md']
|
|
382
|
+
}], listSizeLg: [{
|
|
375
383
|
type: HostBinding,
|
|
376
|
-
args: [
|
|
384
|
+
args: ['class.k-column-list-lg']
|
|
377
385
|
}], reset: [{
|
|
378
386
|
type: Output
|
|
379
387
|
}], apply: [{
|
|
@@ -113,6 +113,7 @@ export class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
113
113
|
kendoFilterMenuRadioButton
|
|
114
114
|
[columnLabel]="columnLabel"
|
|
115
115
|
#input
|
|
116
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
116
117
|
[name]="idPrefix"
|
|
117
118
|
[checked]="isSelected(item.value)"
|
|
118
119
|
[attr.id]="radioId(item.value)"
|
|
@@ -135,6 +136,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
135
136
|
kendoFilterMenuRadioButton
|
|
136
137
|
[columnLabel]="columnLabel"
|
|
137
138
|
#input
|
|
139
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
138
140
|
[name]="idPrefix"
|
|
139
141
|
[checked]="isSelected(item.value)"
|
|
140
142
|
[attr.id]="radioId(item.value)"
|
|
@@ -77,6 +77,7 @@ export class DateFilterMenuInputComponent {
|
|
|
77
77
|
#picker
|
|
78
78
|
kendoFilterInput
|
|
79
79
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
80
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
80
81
|
[columnLabel]="columnLabel"
|
|
81
82
|
[filterDelay]="0"
|
|
82
83
|
(open)="open(picker)"
|
|
@@ -116,6 +117,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
116
117
|
#picker
|
|
117
118
|
kendoFilterInput
|
|
118
119
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
120
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
119
121
|
[columnLabel]="columnLabel"
|
|
120
122
|
[filterDelay]="0"
|
|
121
123
|
(open)="open(picker)"
|
|
@@ -103,6 +103,7 @@ export class DateFilterMenuComponent extends DateFilterComponent {
|
|
|
103
103
|
kendoFilterMenuDropDown
|
|
104
104
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
105
105
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
106
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
106
107
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
107
108
|
class="k-filter-and"
|
|
108
109
|
[data]="logicOperators"
|
|
@@ -160,6 +161,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
160
161
|
kendoFilterMenuDropDown
|
|
161
162
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
162
163
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
164
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
163
165
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
164
166
|
class="k-filter-and"
|
|
165
167
|
[data]="logicOperators"
|
|
@@ -107,6 +107,7 @@ export class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent
|
|
|
107
107
|
kendoFilterMenuDropDown
|
|
108
108
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
109
109
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
110
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
110
111
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
111
112
|
[data]="operators"
|
|
112
113
|
(valueChange)="operatorChange($event)"
|
|
@@ -128,6 +129,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
128
129
|
kendoFilterMenuDropDown
|
|
129
130
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
130
131
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
132
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
131
133
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
132
134
|
[data]="operators"
|
|
133
135
|
(valueChange)="operatorChange($event)"
|
|
@@ -94,6 +94,7 @@ export class NumericFilterMenuInputComponent {
|
|
|
94
94
|
[columnLabel]="columnLabel"
|
|
95
95
|
[filterDelay]="filterDelay"
|
|
96
96
|
[autoCorrect]="true"
|
|
97
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
97
98
|
[value]="currentFilter?.value"
|
|
98
99
|
[format]="format"
|
|
99
100
|
[decimals]="decimals"
|
|
@@ -129,6 +130,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
129
130
|
[columnLabel]="columnLabel"
|
|
130
131
|
[filterDelay]="filterDelay"
|
|
131
132
|
[autoCorrect]="true"
|
|
133
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
132
134
|
[value]="currentFilter?.value"
|
|
133
135
|
[format]="format"
|
|
134
136
|
[decimals]="decimals"
|
|
@@ -118,6 +118,7 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
|
|
|
118
118
|
kendoFilterMenuDropDown
|
|
119
119
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
120
120
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
121
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
121
122
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
122
123
|
class="k-filter-and"
|
|
123
124
|
[data]="logicOperators"
|
|
@@ -172,6 +173,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
172
173
|
kendoFilterMenuDropDown
|
|
173
174
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
174
175
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
176
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
175
177
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
176
178
|
class="k-filter-and"
|
|
177
179
|
[data]="logicOperators"
|
|
@@ -51,6 +51,7 @@ export class StringFilterMenuInputComponent {
|
|
|
51
51
|
<kendo-textbox
|
|
52
52
|
kendoFilterInput
|
|
53
53
|
[columnLabel]="columnLabel"
|
|
54
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
54
55
|
[filterDelay]="0"
|
|
55
56
|
[placeholder]="placeholder"
|
|
56
57
|
[ngModel]="currentFilter?.value ?? null">
|
|
@@ -75,6 +76,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
75
76
|
<kendo-textbox
|
|
76
77
|
kendoFilterInput
|
|
77
78
|
[columnLabel]="columnLabel"
|
|
79
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
78
80
|
[filterDelay]="0"
|
|
79
81
|
[placeholder]="placeholder"
|
|
80
82
|
[ngModel]="currentFilter?.value ?? null">
|
|
@@ -32,7 +32,8 @@ import * as i1 from "../../common/provider.service";
|
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class StringFilterMenuComponent extends StringFilterComponent {
|
|
35
|
-
|
|
35
|
+
ctx;
|
|
36
|
+
logicOperators = [];
|
|
36
37
|
/**
|
|
37
38
|
* @hidden
|
|
38
39
|
*/
|
|
@@ -69,6 +70,8 @@ export class StringFilterMenuComponent extends StringFilterComponent {
|
|
|
69
70
|
menuTabbingService;
|
|
70
71
|
constructor(ctx) {
|
|
71
72
|
super(null, ctx);
|
|
73
|
+
this.ctx = ctx;
|
|
74
|
+
this.logicOperators = logicOperators(this.ctx.localization);
|
|
72
75
|
}
|
|
73
76
|
get firstFilter() {
|
|
74
77
|
return setFilter(0, this.filter, (this.column || {}).field, this.operator);
|
|
@@ -105,6 +108,7 @@ export class StringFilterMenuComponent extends StringFilterComponent {
|
|
|
105
108
|
kendoFilterMenuDropDown
|
|
106
109
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
107
110
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
111
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
108
112
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
109
113
|
class="k-filter-and"
|
|
110
114
|
[data]="logicOperators"
|
|
@@ -145,6 +149,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
145
149
|
kendoFilterMenuDropDown
|
|
146
150
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
147
151
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
152
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
148
153
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
149
154
|
class="k-filter-and"
|
|
150
155
|
[data]="logicOperators"
|
|
@@ -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.0.0-develop.
|
|
13
|
+
publishDate: 1747836360,
|
|
14
|
+
version: '19.0.0-develop.30',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -8100,6 +8100,7 @@ class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent {
|
|
|
8100
8100
|
kendoFilterMenuDropDown
|
|
8101
8101
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8102
8102
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8103
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8103
8104
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8104
8105
|
[data]="operators"
|
|
8105
8106
|
(valueChange)="operatorChange($event)"
|
|
@@ -8121,6 +8122,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8121
8122
|
kendoFilterMenuDropDown
|
|
8122
8123
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8123
8124
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8125
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8124
8126
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8125
8127
|
[data]="operators"
|
|
8126
8128
|
(valueChange)="operatorChange($event)"
|
|
@@ -8184,6 +8186,7 @@ class StringFilterMenuInputComponent {
|
|
|
8184
8186
|
<kendo-textbox
|
|
8185
8187
|
kendoFilterInput
|
|
8186
8188
|
[columnLabel]="columnLabel"
|
|
8189
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8187
8190
|
[filterDelay]="0"
|
|
8188
8191
|
[placeholder]="placeholder"
|
|
8189
8192
|
[ngModel]="currentFilter?.value ?? null">
|
|
@@ -8208,6 +8211,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8208
8211
|
<kendo-textbox
|
|
8209
8212
|
kendoFilterInput
|
|
8210
8213
|
[columnLabel]="columnLabel"
|
|
8214
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8211
8215
|
[filterDelay]="0"
|
|
8212
8216
|
[placeholder]="placeholder"
|
|
8213
8217
|
[ngModel]="currentFilter?.value ?? null">
|
|
@@ -8254,7 +8258,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8254
8258
|
* ```
|
|
8255
8259
|
*/
|
|
8256
8260
|
class StringFilterMenuComponent extends StringFilterComponent {
|
|
8257
|
-
|
|
8261
|
+
ctx;
|
|
8262
|
+
logicOperators = [];
|
|
8258
8263
|
/**
|
|
8259
8264
|
* @hidden
|
|
8260
8265
|
*/
|
|
@@ -8291,6 +8296,8 @@ class StringFilterMenuComponent extends StringFilterComponent {
|
|
|
8291
8296
|
menuTabbingService;
|
|
8292
8297
|
constructor(ctx) {
|
|
8293
8298
|
super(null, ctx);
|
|
8299
|
+
this.ctx = ctx;
|
|
8300
|
+
this.logicOperators = logicOperators(this.ctx.localization);
|
|
8294
8301
|
}
|
|
8295
8302
|
get firstFilter() {
|
|
8296
8303
|
return setFilter(0, this.filter, (this.column || {}).field, this.operator);
|
|
@@ -8327,6 +8334,7 @@ class StringFilterMenuComponent extends StringFilterComponent {
|
|
|
8327
8334
|
kendoFilterMenuDropDown
|
|
8328
8335
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8329
8336
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8337
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8330
8338
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8331
8339
|
class="k-filter-and"
|
|
8332
8340
|
[data]="logicOperators"
|
|
@@ -8367,6 +8375,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8367
8375
|
kendoFilterMenuDropDown
|
|
8368
8376
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8369
8377
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8378
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8370
8379
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8371
8380
|
class="k-filter-and"
|
|
8372
8381
|
[data]="logicOperators"
|
|
@@ -8619,6 +8628,7 @@ class NumericFilterMenuInputComponent {
|
|
|
8619
8628
|
[columnLabel]="columnLabel"
|
|
8620
8629
|
[filterDelay]="filterDelay"
|
|
8621
8630
|
[autoCorrect]="true"
|
|
8631
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8622
8632
|
[value]="currentFilter?.value"
|
|
8623
8633
|
[format]="format"
|
|
8624
8634
|
[decimals]="decimals"
|
|
@@ -8654,6 +8664,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8654
8664
|
[columnLabel]="columnLabel"
|
|
8655
8665
|
[filterDelay]="filterDelay"
|
|
8656
8666
|
[autoCorrect]="true"
|
|
8667
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8657
8668
|
[value]="currentFilter?.value"
|
|
8658
8669
|
[format]="format"
|
|
8659
8670
|
[decimals]="decimals"
|
|
@@ -8809,6 +8820,7 @@ class NumericFilterMenuComponent extends NumericFilterComponent {
|
|
|
8809
8820
|
kendoFilterMenuDropDown
|
|
8810
8821
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8811
8822
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8823
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8812
8824
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8813
8825
|
class="k-filter-and"
|
|
8814
8826
|
[data]="logicOperators"
|
|
@@ -8863,6 +8875,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8863
8875
|
kendoFilterMenuDropDown
|
|
8864
8876
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
8865
8877
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
8878
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
8866
8879
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
8867
8880
|
class="k-filter-and"
|
|
8868
8881
|
[data]="logicOperators"
|
|
@@ -9133,6 +9146,7 @@ class DateFilterMenuInputComponent {
|
|
|
9133
9146
|
#picker
|
|
9134
9147
|
kendoFilterInput
|
|
9135
9148
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
9149
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9136
9150
|
[columnLabel]="columnLabel"
|
|
9137
9151
|
[filterDelay]="0"
|
|
9138
9152
|
(open)="open(picker)"
|
|
@@ -9172,6 +9186,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9172
9186
|
#picker
|
|
9173
9187
|
kendoFilterInput
|
|
9174
9188
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
9189
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9175
9190
|
[columnLabel]="columnLabel"
|
|
9176
9191
|
[filterDelay]="0"
|
|
9177
9192
|
(open)="open(picker)"
|
|
@@ -9319,6 +9334,7 @@ class DateFilterMenuComponent extends DateFilterComponent {
|
|
|
9319
9334
|
kendoFilterMenuDropDown
|
|
9320
9335
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
9321
9336
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
9337
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9322
9338
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
9323
9339
|
class="k-filter-and"
|
|
9324
9340
|
[data]="logicOperators"
|
|
@@ -9376,6 +9392,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9376
9392
|
kendoFilterMenuDropDown
|
|
9377
9393
|
[adaptiveTitle]="ctx.localization.get('adaptiveFilterOperatorsTitle')"
|
|
9378
9394
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
9395
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9379
9396
|
[filterMenuDropDownLabel]="filterMenuDropDownLabel"
|
|
9380
9397
|
class="k-filter-and"
|
|
9381
9398
|
[data]="logicOperators"
|
|
@@ -9620,6 +9637,7 @@ class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
9620
9637
|
kendoFilterMenuRadioButton
|
|
9621
9638
|
[columnLabel]="columnLabel"
|
|
9622
9639
|
#input
|
|
9640
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9623
9641
|
[name]="idPrefix"
|
|
9624
9642
|
[checked]="isSelected(item.value)"
|
|
9625
9643
|
[attr.id]="radioId(item.value)"
|
|
@@ -9642,6 +9660,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9642
9660
|
kendoFilterMenuRadioButton
|
|
9643
9661
|
[columnLabel]="columnLabel"
|
|
9644
9662
|
#input
|
|
9663
|
+
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
9645
9664
|
[name]="idPrefix"
|
|
9646
9665
|
[checked]="isSelected(item.value)"
|
|
9647
9666
|
[attr.id]="radioId(item.value)"
|
|
@@ -11186,7 +11205,12 @@ class ColumnListComponent {
|
|
|
11186
11205
|
checkIcon = checkIcon;
|
|
11187
11206
|
arrowRotateCcwIcon = arrowRotateCcwIcon;
|
|
11188
11207
|
className = true;
|
|
11189
|
-
|
|
11208
|
+
get listSizeMd() {
|
|
11209
|
+
return !(this.ctx?.grid?.isActionSheetExpanded);
|
|
11210
|
+
}
|
|
11211
|
+
get listSizeLg() {
|
|
11212
|
+
return this.ctx?.grid?.isActionSheetExpanded;
|
|
11213
|
+
}
|
|
11190
11214
|
reset = new EventEmitter();
|
|
11191
11215
|
apply = new EventEmitter();
|
|
11192
11216
|
columnChange = new EventEmitter();
|
|
@@ -11423,7 +11447,7 @@ class ColumnListComponent {
|
|
|
11423
11447
|
}
|
|
11424
11448
|
};
|
|
11425
11449
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ColumnListKeyboardNavigation }, { token: AdaptiveGridService, optional: true }, { token: ContextService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
11426
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-grid-columnlist", inputs: { columns: "columns", showActions: "showActions", autoSync: "autoSync", ariaLabel: "ariaLabel", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass", isLast: "isLast", isExpanded: "isExpanded", service: "service" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className", "class.k-column-list-md": "this.
|
|
11450
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-grid-columnlist", inputs: { columns: "columns", showActions: "showActions", autoSync: "autoSync", ariaLabel: "ariaLabel", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass", isLast: "isLast", isExpanded: "isExpanded", service: "service" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className", "class.k-column-list-md": "this.listSizeMd", "class.k-column-list-lg": "this.listSizeLg" } }, providers: [ColumnListKeyboardNavigation], viewQueries: [{ propertyName: "resetButton", first: true, predicate: ["resetButton"], descendants: true }, { propertyName: "applyButton", first: true, predicate: ["applyButton"], descendants: true }, { propertyName: "options", predicate: ColumnMenuChooserItemCheckedDirective, descendants: true }, { propertyName: "checkboxes", predicate: CheckBoxComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
11427
11451
|
<div
|
|
11428
11452
|
class="k-column-list"
|
|
11429
11453
|
role="listbox"
|
|
@@ -11525,9 +11549,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11525
11549
|
}] }]; }, propDecorators: { className: [{
|
|
11526
11550
|
type: HostBinding,
|
|
11527
11551
|
args: ["class.k-column-list-wrapper"]
|
|
11528
|
-
}],
|
|
11552
|
+
}], listSizeMd: [{
|
|
11553
|
+
type: HostBinding,
|
|
11554
|
+
args: ['class.k-column-list-md']
|
|
11555
|
+
}], listSizeLg: [{
|
|
11529
11556
|
type: HostBinding,
|
|
11530
|
-
args: [
|
|
11557
|
+
args: ['class.k-column-list-lg']
|
|
11531
11558
|
}], reset: [{
|
|
11532
11559
|
type: Output
|
|
11533
11560
|
}], apply: [{
|
|
@@ -20439,8 +20466,8 @@ const packageMetadata = {
|
|
|
20439
20466
|
productName: 'Kendo UI for Angular',
|
|
20440
20467
|
productCode: 'KENDOUIANGULAR',
|
|
20441
20468
|
productCodes: ['KENDOUIANGULAR'],
|
|
20442
|
-
publishDate:
|
|
20443
|
-
version: '19.0.0-develop.
|
|
20469
|
+
publishDate: 1747836360,
|
|
20470
|
+
version: '19.0.0-develop.30',
|
|
20444
20471
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
20445
20472
|
};
|
|
20446
20473
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.0.0-develop.
|
|
3
|
+
"version": "19.0.0-develop.30",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"package": {
|
|
42
42
|
"productName": "Kendo UI for Angular",
|
|
43
43
|
"productCode": "KENDOUIANGULAR",
|
|
44
|
-
"publishDate":
|
|
44
|
+
"publishDate": 1747836360,
|
|
45
45
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
@@ -54,29 +54,29 @@
|
|
|
54
54
|
"@progress/kendo-data-query": "^1.0.0",
|
|
55
55
|
"@progress/kendo-drawing": "^1.21.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.5.0",
|
|
57
|
-
"@progress/kendo-angular-buttons": "19.0.0-develop.
|
|
58
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-dateinputs": "19.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-layout": "19.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-navigation": "19.0.0-develop.
|
|
62
|
-
"@progress/kendo-angular-dropdowns": "19.0.0-develop.
|
|
63
|
-
"@progress/kendo-angular-excel-export": "19.0.0-develop.
|
|
64
|
-
"@progress/kendo-angular-icons": "19.0.0-develop.
|
|
65
|
-
"@progress/kendo-angular-inputs": "19.0.0-develop.
|
|
66
|
-
"@progress/kendo-angular-indicators": "19.0.0-develop.
|
|
67
|
-
"@progress/kendo-angular-intl": "19.0.0-develop.
|
|
68
|
-
"@progress/kendo-angular-l10n": "19.0.0-develop.
|
|
69
|
-
"@progress/kendo-angular-label": "19.0.0-develop.
|
|
70
|
-
"@progress/kendo-angular-pager": "19.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-pdf-export": "19.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-popup": "19.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-toolbar": "19.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-utils": "19.0.0-develop.
|
|
57
|
+
"@progress/kendo-angular-buttons": "19.0.0-develop.30",
|
|
58
|
+
"@progress/kendo-angular-common": "19.0.0-develop.30",
|
|
59
|
+
"@progress/kendo-angular-dateinputs": "19.0.0-develop.30",
|
|
60
|
+
"@progress/kendo-angular-layout": "19.0.0-develop.30",
|
|
61
|
+
"@progress/kendo-angular-navigation": "19.0.0-develop.30",
|
|
62
|
+
"@progress/kendo-angular-dropdowns": "19.0.0-develop.30",
|
|
63
|
+
"@progress/kendo-angular-excel-export": "19.0.0-develop.30",
|
|
64
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.30",
|
|
65
|
+
"@progress/kendo-angular-inputs": "19.0.0-develop.30",
|
|
66
|
+
"@progress/kendo-angular-indicators": "19.0.0-develop.30",
|
|
67
|
+
"@progress/kendo-angular-intl": "19.0.0-develop.30",
|
|
68
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.30",
|
|
69
|
+
"@progress/kendo-angular-label": "19.0.0-develop.30",
|
|
70
|
+
"@progress/kendo-angular-pager": "19.0.0-develop.30",
|
|
71
|
+
"@progress/kendo-angular-pdf-export": "19.0.0-develop.30",
|
|
72
|
+
"@progress/kendo-angular-popup": "19.0.0-develop.30",
|
|
73
|
+
"@progress/kendo-angular-toolbar": "19.0.0-develop.30",
|
|
74
|
+
"@progress/kendo-angular-utils": "19.0.0-develop.30",
|
|
75
75
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"tslib": "^2.3.1",
|
|
79
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
|
79
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.30",
|
|
80
80
|
"@progress/kendo-common": "^1.0.1",
|
|
81
81
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
82
82
|
},
|
|
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '19.0.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '19.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.0.0-develop.30',
|
|
8
|
+
'@progress/kendo-angular-navigation': '19.0.0-develop.30',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '19.0.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '19.0.0-develop.30',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '19.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '19.0.0-develop.30'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|