@progress/kendo-angular-grid 15.0.2-develop.1 → 15.0.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/column-menu/column-list.component.d.ts +2 -1
- package/esm2020/column-menu/column-list.component.mjs +18 -9
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +20 -11
- package/fesm2020/progress-kendo-angular-grid.mjs +20 -11
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
|
@@ -42,11 +42,11 @@ export declare class ColumnListComponent implements OnInit, OnDestroy {
|
|
|
42
42
|
private allColumns;
|
|
43
43
|
private domSubscriptions;
|
|
44
44
|
constructor(element: ElementRef, ngZone: NgZone, renderer: Renderer2, listNavigationService: ColumnListKeyboardNavigation);
|
|
45
|
-
isDisabled(column: any): boolean;
|
|
46
45
|
ngOnInit(): void;
|
|
47
46
|
ngAfterViewInit(): void;
|
|
48
47
|
ngOnChanges(changes: SimpleChanges): void;
|
|
49
48
|
ngOnDestroy(): void;
|
|
49
|
+
isDisabled(column: any): boolean;
|
|
50
50
|
cancelChanges(): void;
|
|
51
51
|
applyChanges(): void;
|
|
52
52
|
onTab(e: Event): void;
|
|
@@ -54,6 +54,7 @@ export declare class ColumnListComponent implements OnInit, OnDestroy {
|
|
|
54
54
|
private forEachCheckBox;
|
|
55
55
|
private updateDisabled;
|
|
56
56
|
private updateColumnState;
|
|
57
|
+
private setDisabledState;
|
|
57
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnListComponent, never>;
|
|
58
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnListComponent, "kendo-grid-columnlist", never, { "columns": "columns"; "autoSync": "autoSync"; "ariaLabel": "ariaLabel"; "allowHideAll": "allowHideAll"; "applyText": "applyText"; "resetText": "resetText"; "actionsClass": "actionsClass"; "isLast": "isLast"; "isExpanded": "isExpanded"; "service": "service"; }, { "reset": "reset"; "apply": "apply"; "columnChange": "columnChange"; }, never, never>;
|
|
59
60
|
}
|
|
@@ -58,10 +58,6 @@ export class ColumnListComponent {
|
|
|
58
58
|
get columns() {
|
|
59
59
|
return this._columns;
|
|
60
60
|
}
|
|
61
|
-
isDisabled(column) {
|
|
62
|
-
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
63
|
-
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
64
|
-
}
|
|
65
61
|
ngOnInit() {
|
|
66
62
|
if (!this.element) {
|
|
67
63
|
return;
|
|
@@ -105,6 +101,7 @@ export class ColumnListComponent {
|
|
|
105
101
|
ngAfterViewInit() {
|
|
106
102
|
this.listNavigationService.items = this.options.toArray();
|
|
107
103
|
this.listNavigationService.toggle(0, true);
|
|
104
|
+
this.updateDisabled();
|
|
108
105
|
}
|
|
109
106
|
ngOnChanges(changes) {
|
|
110
107
|
if (!this.service) {
|
|
@@ -120,6 +117,10 @@ export class ColumnListComponent {
|
|
|
120
117
|
ngOnDestroy() {
|
|
121
118
|
this.domSubscriptions.unsubscribe();
|
|
122
119
|
}
|
|
120
|
+
isDisabled(column) {
|
|
121
|
+
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
122
|
+
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
123
|
+
}
|
|
123
124
|
cancelChanges() {
|
|
124
125
|
this.forEachCheckBox((element, index) => {
|
|
125
126
|
element.checked = !this.columns[index].hidden;
|
|
@@ -167,16 +168,16 @@ export class ColumnListComponent {
|
|
|
167
168
|
if (checkbox.checked) {
|
|
168
169
|
checkedItems.push({ checkbox, index });
|
|
169
170
|
}
|
|
170
|
-
checkbox
|
|
171
|
+
this.setDisabledState(checkbox, false);
|
|
171
172
|
});
|
|
172
173
|
if (!this.allowHideAll && checkedItems.length === 1 && !this.hasFiltered) {
|
|
173
|
-
checkedItems[0].checkbox
|
|
174
|
+
this.setDisabledState(checkedItems[0].checkbox, true);
|
|
174
175
|
}
|
|
175
176
|
else if (this.hasLocked && !this.hasUnlockedFiltered) {
|
|
176
177
|
const columns = this.columns;
|
|
177
178
|
const checkedUnlocked = checkedItems.filter(item => !columns[item.index].locked);
|
|
178
179
|
if (checkedUnlocked.length === 1) {
|
|
179
|
-
checkedUnlocked[0].checkbox
|
|
180
|
+
this.setDisabledState(checkedUnlocked[0].checkbox, true);
|
|
180
181
|
}
|
|
181
182
|
}
|
|
182
183
|
}
|
|
@@ -194,6 +195,14 @@ export class ColumnListComponent {
|
|
|
194
195
|
this.hasUnlockedFiltered = false;
|
|
195
196
|
}
|
|
196
197
|
}
|
|
198
|
+
setDisabledState(element, disabled) {
|
|
199
|
+
element.disabled = disabled;
|
|
200
|
+
const parent = element.parentElement;
|
|
201
|
+
const classCommand = disabled ? 'addClass' : 'removeClass';
|
|
202
|
+
const attributeCommand = disabled ? 'setAttribute' : 'removeAttribute';
|
|
203
|
+
this.renderer[classCommand](parent, 'k-disabled');
|
|
204
|
+
this.renderer[attributeCommand](parent, 'aria-disabled', disabled ? 'true' : undefined);
|
|
205
|
+
}
|
|
197
206
|
}
|
|
198
207
|
ColumnListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.ColumnListKeyboardNavigation }], target: i0.ɵɵFactoryTarget.Component });
|
|
199
208
|
ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnListComponent, selector: "kendo-grid-columnlist", inputs: { columns: "columns", 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" } }, 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 }], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -210,7 +219,7 @@ ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
210
219
|
<input
|
|
211
220
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
212
221
|
type="checkbox"
|
|
213
|
-
[attr.data-index]="index"
|
|
222
|
+
[attr.data-index]="index"
|
|
214
223
|
[checked]="!column.hidden"
|
|
215
224
|
tabindex="-1"
|
|
216
225
|
[attr.aria-hidden]="true"
|
|
@@ -255,7 +264,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
255
264
|
<input
|
|
256
265
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
257
266
|
type="checkbox"
|
|
258
|
-
[attr.data-index]="index"
|
|
267
|
+
[attr.data-index]="index"
|
|
259
268
|
[checked]="!column.hidden"
|
|
260
269
|
tabindex="-1"
|
|
261
270
|
[attr.aria-hidden]="true"
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '15.0.2-develop.
|
|
12
|
+
publishDate: 1707215761,
|
|
13
|
+
version: '15.0.2-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -4532,8 +4532,8 @@ const packageMetadata = {
|
|
|
4532
4532
|
name: '@progress/kendo-angular-grid',
|
|
4533
4533
|
productName: 'Kendo UI for Angular',
|
|
4534
4534
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4535
|
-
publishDate:
|
|
4536
|
-
version: '15.0.2-develop.
|
|
4535
|
+
publishDate: 1707215761,
|
|
4536
|
+
version: '15.0.2-develop.2',
|
|
4537
4537
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4538
4538
|
};
|
|
4539
4539
|
|
|
@@ -12639,10 +12639,6 @@ class ColumnListComponent {
|
|
|
12639
12639
|
get columns() {
|
|
12640
12640
|
return this._columns;
|
|
12641
12641
|
}
|
|
12642
|
-
isDisabled(column) {
|
|
12643
|
-
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
12644
|
-
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
12645
|
-
}
|
|
12646
12642
|
ngOnInit() {
|
|
12647
12643
|
if (!this.element) {
|
|
12648
12644
|
return;
|
|
@@ -12686,6 +12682,7 @@ class ColumnListComponent {
|
|
|
12686
12682
|
ngAfterViewInit() {
|
|
12687
12683
|
this.listNavigationService.items = this.options.toArray();
|
|
12688
12684
|
this.listNavigationService.toggle(0, true);
|
|
12685
|
+
this.updateDisabled();
|
|
12689
12686
|
}
|
|
12690
12687
|
ngOnChanges(changes) {
|
|
12691
12688
|
if (!this.service) {
|
|
@@ -12701,6 +12698,10 @@ class ColumnListComponent {
|
|
|
12701
12698
|
ngOnDestroy() {
|
|
12702
12699
|
this.domSubscriptions.unsubscribe();
|
|
12703
12700
|
}
|
|
12701
|
+
isDisabled(column) {
|
|
12702
|
+
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
12703
|
+
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
12704
|
+
}
|
|
12704
12705
|
cancelChanges() {
|
|
12705
12706
|
this.forEachCheckBox((element, index) => {
|
|
12706
12707
|
element.checked = !this.columns[index].hidden;
|
|
@@ -12748,16 +12749,16 @@ class ColumnListComponent {
|
|
|
12748
12749
|
if (checkbox.checked) {
|
|
12749
12750
|
checkedItems.push({ checkbox, index });
|
|
12750
12751
|
}
|
|
12751
|
-
checkbox
|
|
12752
|
+
this.setDisabledState(checkbox, false);
|
|
12752
12753
|
});
|
|
12753
12754
|
if (!this.allowHideAll && checkedItems.length === 1 && !this.hasFiltered) {
|
|
12754
|
-
checkedItems[0].checkbox
|
|
12755
|
+
this.setDisabledState(checkedItems[0].checkbox, true);
|
|
12755
12756
|
}
|
|
12756
12757
|
else if (this.hasLocked && !this.hasUnlockedFiltered) {
|
|
12757
12758
|
const columns = this.columns;
|
|
12758
12759
|
const checkedUnlocked = checkedItems.filter(item => !columns[item.index].locked);
|
|
12759
12760
|
if (checkedUnlocked.length === 1) {
|
|
12760
|
-
checkedUnlocked[0].checkbox
|
|
12761
|
+
this.setDisabledState(checkedUnlocked[0].checkbox, true);
|
|
12761
12762
|
}
|
|
12762
12763
|
}
|
|
12763
12764
|
}
|
|
@@ -12775,6 +12776,14 @@ class ColumnListComponent {
|
|
|
12775
12776
|
this.hasUnlockedFiltered = false;
|
|
12776
12777
|
}
|
|
12777
12778
|
}
|
|
12779
|
+
setDisabledState(element, disabled) {
|
|
12780
|
+
element.disabled = disabled;
|
|
12781
|
+
const parent = element.parentElement;
|
|
12782
|
+
const classCommand = disabled ? 'addClass' : 'removeClass';
|
|
12783
|
+
const attributeCommand = disabled ? 'setAttribute' : 'removeAttribute';
|
|
12784
|
+
this.renderer[classCommand](parent, 'k-disabled');
|
|
12785
|
+
this.renderer[attributeCommand](parent, 'aria-disabled', disabled ? 'true' : undefined);
|
|
12786
|
+
}
|
|
12778
12787
|
}
|
|
12779
12788
|
ColumnListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ColumnListKeyboardNavigation }], target: i0.ɵɵFactoryTarget.Component });
|
|
12780
12789
|
ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnListComponent, selector: "kendo-grid-columnlist", inputs: { columns: "columns", 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" } }, 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 }], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -12791,7 +12800,7 @@ ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
12791
12800
|
<input
|
|
12792
12801
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
12793
12802
|
type="checkbox"
|
|
12794
|
-
[attr.data-index]="index"
|
|
12803
|
+
[attr.data-index]="index"
|
|
12795
12804
|
[checked]="!column.hidden"
|
|
12796
12805
|
tabindex="-1"
|
|
12797
12806
|
[attr.aria-hidden]="true"
|
|
@@ -12836,7 +12845,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12836
12845
|
<input
|
|
12837
12846
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
12838
12847
|
type="checkbox"
|
|
12839
|
-
[attr.data-index]="index"
|
|
12848
|
+
[attr.data-index]="index"
|
|
12840
12849
|
[checked]="!column.hidden"
|
|
12841
12850
|
tabindex="-1"
|
|
12842
12851
|
[attr.aria-hidden]="true"
|
|
@@ -4500,8 +4500,8 @@ const packageMetadata = {
|
|
|
4500
4500
|
name: '@progress/kendo-angular-grid',
|
|
4501
4501
|
productName: 'Kendo UI for Angular',
|
|
4502
4502
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4503
|
-
publishDate:
|
|
4504
|
-
version: '15.0.2-develop.
|
|
4503
|
+
publishDate: 1707215761,
|
|
4504
|
+
version: '15.0.2-develop.2',
|
|
4505
4505
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4506
4506
|
};
|
|
4507
4507
|
|
|
@@ -12571,10 +12571,6 @@ class ColumnListComponent {
|
|
|
12571
12571
|
get columns() {
|
|
12572
12572
|
return this._columns;
|
|
12573
12573
|
}
|
|
12574
|
-
isDisabled(column) {
|
|
12575
|
-
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
12576
|
-
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
12577
|
-
}
|
|
12578
12574
|
ngOnInit() {
|
|
12579
12575
|
if (!this.element) {
|
|
12580
12576
|
return;
|
|
@@ -12618,6 +12614,7 @@ class ColumnListComponent {
|
|
|
12618
12614
|
ngAfterViewInit() {
|
|
12619
12615
|
this.listNavigationService.items = this.options.toArray();
|
|
12620
12616
|
this.listNavigationService.toggle(0, true);
|
|
12617
|
+
this.updateDisabled();
|
|
12621
12618
|
}
|
|
12622
12619
|
ngOnChanges(changes) {
|
|
12623
12620
|
if (!this.service) {
|
|
@@ -12633,6 +12630,10 @@ class ColumnListComponent {
|
|
|
12633
12630
|
ngOnDestroy() {
|
|
12634
12631
|
this.domSubscriptions.unsubscribe();
|
|
12635
12632
|
}
|
|
12633
|
+
isDisabled(column) {
|
|
12634
|
+
return !(this.allowHideAll || this.hasFiltered || column.hidden || this.columns.find(current => current !== column && !current.hidden)) ||
|
|
12635
|
+
(this.hasVisibleLocked && !this.hasUnlockedFiltered && this.unlockedCount === 1 && !column.locked && !column.hidden);
|
|
12636
|
+
}
|
|
12636
12637
|
cancelChanges() {
|
|
12637
12638
|
this.forEachCheckBox((element, index) => {
|
|
12638
12639
|
element.checked = !this.columns[index].hidden;
|
|
@@ -12680,16 +12681,16 @@ class ColumnListComponent {
|
|
|
12680
12681
|
if (checkbox.checked) {
|
|
12681
12682
|
checkedItems.push({ checkbox, index });
|
|
12682
12683
|
}
|
|
12683
|
-
checkbox
|
|
12684
|
+
this.setDisabledState(checkbox, false);
|
|
12684
12685
|
});
|
|
12685
12686
|
if (!this.allowHideAll && checkedItems.length === 1 && !this.hasFiltered) {
|
|
12686
|
-
checkedItems[0].checkbox
|
|
12687
|
+
this.setDisabledState(checkedItems[0].checkbox, true);
|
|
12687
12688
|
}
|
|
12688
12689
|
else if (this.hasLocked && !this.hasUnlockedFiltered) {
|
|
12689
12690
|
const columns = this.columns;
|
|
12690
12691
|
const checkedUnlocked = checkedItems.filter(item => !columns[item.index].locked);
|
|
12691
12692
|
if (checkedUnlocked.length === 1) {
|
|
12692
|
-
checkedUnlocked[0].checkbox
|
|
12693
|
+
this.setDisabledState(checkedUnlocked[0].checkbox, true);
|
|
12693
12694
|
}
|
|
12694
12695
|
}
|
|
12695
12696
|
}
|
|
@@ -12707,6 +12708,14 @@ class ColumnListComponent {
|
|
|
12707
12708
|
this.hasUnlockedFiltered = false;
|
|
12708
12709
|
}
|
|
12709
12710
|
}
|
|
12711
|
+
setDisabledState(element, disabled) {
|
|
12712
|
+
element.disabled = disabled;
|
|
12713
|
+
const parent = element.parentElement;
|
|
12714
|
+
const classCommand = disabled ? 'addClass' : 'removeClass';
|
|
12715
|
+
const attributeCommand = disabled ? 'setAttribute' : 'removeAttribute';
|
|
12716
|
+
this.renderer[classCommand](parent, 'k-disabled');
|
|
12717
|
+
this.renderer[attributeCommand](parent, 'aria-disabled', disabled ? 'true' : undefined);
|
|
12718
|
+
}
|
|
12710
12719
|
}
|
|
12711
12720
|
ColumnListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ColumnListKeyboardNavigation }], target: i0.ɵɵFactoryTarget.Component });
|
|
12712
12721
|
ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnListComponent, selector: "kendo-grid-columnlist", inputs: { columns: "columns", 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" } }, 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 }], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -12723,7 +12732,7 @@ ColumnListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
12723
12732
|
<input
|
|
12724
12733
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
12725
12734
|
type="checkbox"
|
|
12726
|
-
[attr.data-index]="index"
|
|
12735
|
+
[attr.data-index]="index"
|
|
12727
12736
|
[checked]="!column.hidden"
|
|
12728
12737
|
tabindex="-1"
|
|
12729
12738
|
[attr.aria-hidden]="true"
|
|
@@ -12768,7 +12777,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12768
12777
|
<input
|
|
12769
12778
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
12770
12779
|
type="checkbox"
|
|
12771
|
-
[attr.data-index]="index"
|
|
12780
|
+
[attr.data-index]="index"
|
|
12772
12781
|
[checked]="!column.hidden"
|
|
12773
12782
|
tabindex="-1"
|
|
12774
12783
|
[attr.aria-hidden]="true"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "15.0.2-develop.
|
|
3
|
+
"version": "15.0.2-develop.2",
|
|
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",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.19.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "15.0.2-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "15.0.2-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "15.0.2-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "15.0.2-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "15.0.2-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "15.0.2-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "15.0.2-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "15.0.2-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "15.0.2-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "15.0.2-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "15.0.2-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "15.0.2-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "15.0.2-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "15.0.2-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "15.0.2-develop.2",
|
|
37
|
+
"@progress/kendo-angular-common": "15.0.2-develop.2",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "15.0.2-develop.2",
|
|
39
|
+
"@progress/kendo-angular-layout": "15.0.2-develop.2",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "15.0.2-develop.2",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "15.0.2-develop.2",
|
|
42
|
+
"@progress/kendo-angular-icons": "15.0.2-develop.2",
|
|
43
|
+
"@progress/kendo-angular-inputs": "15.0.2-develop.2",
|
|
44
|
+
"@progress/kendo-angular-intl": "15.0.2-develop.2",
|
|
45
|
+
"@progress/kendo-angular-l10n": "15.0.2-develop.2",
|
|
46
|
+
"@progress/kendo-angular-label": "15.0.2-develop.2",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "15.0.2-develop.2",
|
|
48
|
+
"@progress/kendo-angular-popup": "15.0.2-develop.2",
|
|
49
|
+
"@progress/kendo-angular-utils": "15.0.2-develop.2",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1",
|
|
54
|
-
"@progress/kendo-angular-schematics": "15.0.2-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "15.0.2-develop.2",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -4,13 +4,13 @@ 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 dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '15.0.2-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.0.2-develop.2',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.0.2-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.0.2-develop.2',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-layout
|
|
13
|
-
'@progress/kendo-angular-progressbar': '15.0.2-develop.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '15.0.2-develop.2'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|