@progress/kendo-angular-dropdowns 18.5.0-develop.9 → 18.5.1-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.
|
@@ -26,6 +26,7 @@ import { SharedDropDownEventsDirective } from '../common/shared-events.directive
|
|
|
26
26
|
import { LocalizedMessagesDirective } from '../common/localization/localized-messages.directive';
|
|
27
27
|
import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
28
28
|
import { Subscription } from 'rxjs';
|
|
29
|
+
import { take } from 'rxjs/operators';
|
|
29
30
|
import * as i0 from "@angular/core";
|
|
30
31
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
31
32
|
import * as i2 from "@progress/kendo-angular-popup";
|
|
@@ -70,7 +71,9 @@ export class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
70
71
|
set headerTable(headerTable) {
|
|
71
72
|
this._headerTable = headerTable;
|
|
72
73
|
if (this.headerTable) {
|
|
73
|
-
this.
|
|
74
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
75
|
+
this.rowWidth = this.calculateRowWidth();
|
|
76
|
+
});
|
|
74
77
|
}
|
|
75
78
|
}
|
|
76
79
|
get headerTable() {
|
|
@@ -80,7 +83,9 @@ export class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
80
83
|
* @hidden
|
|
81
84
|
*/
|
|
82
85
|
set headerColumns(columns) {
|
|
83
|
-
this.
|
|
86
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
87
|
+
this.headerColumnWidths = columns.map(column => column.nativeElement.offsetWidth);
|
|
88
|
+
});
|
|
84
89
|
}
|
|
85
90
|
/**
|
|
86
91
|
* @hidden
|
|
@@ -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: '18.5.
|
|
13
|
+
publishDate: 1744640880,
|
|
14
|
+
version: '18.5.1-develop.2',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -37,8 +37,8 @@ const packageMetadata = {
|
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '18.5.
|
|
40
|
+
publishDate: 1744640880,
|
|
41
|
+
version: '18.5.1-develop.2',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -11961,7 +11961,9 @@ class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
11961
11961
|
set headerTable(headerTable) {
|
|
11962
11962
|
this._headerTable = headerTable;
|
|
11963
11963
|
if (this.headerTable) {
|
|
11964
|
-
this.
|
|
11964
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
11965
|
+
this.rowWidth = this.calculateRowWidth();
|
|
11966
|
+
});
|
|
11965
11967
|
}
|
|
11966
11968
|
}
|
|
11967
11969
|
get headerTable() {
|
|
@@ -11971,7 +11973,9 @@ class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
11971
11973
|
* @hidden
|
|
11972
11974
|
*/
|
|
11973
11975
|
set headerColumns(columns) {
|
|
11974
|
-
this.
|
|
11976
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
11977
|
+
this.headerColumnWidths = columns.map(column => column.nativeElement.offsetWidth);
|
|
11978
|
+
});
|
|
11975
11979
|
}
|
|
11976
11980
|
/**
|
|
11977
11981
|
* @hidden
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "18.5.
|
|
3
|
+
"version": "18.5.1-develop.2",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"package": {
|
|
21
21
|
"productName": "Kendo UI for Angular",
|
|
22
22
|
"productCode": "KENDOUIANGULAR",
|
|
23
|
-
"publishDate":
|
|
23
|
+
"publishDate": 1744640880,
|
|
24
24
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"@angular/forms": "16 - 19",
|
|
32
32
|
"@angular/platform-browser": "16 - 19",
|
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
|
34
|
-
"@progress/kendo-angular-common": "18.5.
|
|
35
|
-
"@progress/kendo-angular-utils": "18.5.
|
|
36
|
-
"@progress/kendo-angular-l10n": "18.5.
|
|
37
|
-
"@progress/kendo-angular-navigation": "18.5.
|
|
38
|
-
"@progress/kendo-angular-popup": "18.5.
|
|
39
|
-
"@progress/kendo-angular-icons": "18.5.
|
|
40
|
-
"@progress/kendo-angular-treeview": "18.5.
|
|
34
|
+
"@progress/kendo-angular-common": "18.5.1-develop.2",
|
|
35
|
+
"@progress/kendo-angular-utils": "18.5.1-develop.2",
|
|
36
|
+
"@progress/kendo-angular-l10n": "18.5.1-develop.2",
|
|
37
|
+
"@progress/kendo-angular-navigation": "18.5.1-develop.2",
|
|
38
|
+
"@progress/kendo-angular-popup": "18.5.1-develop.2",
|
|
39
|
+
"@progress/kendo-angular-icons": "18.5.1-develop.2",
|
|
40
|
+
"@progress/kendo-angular-treeview": "18.5.1-develop.2",
|
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"tslib": "^2.3.1",
|
|
45
|
-
"@progress/kendo-angular-schematics": "18.5.
|
|
45
|
+
"@progress/kendo-angular-schematics": "18.5.1-develop.2",
|
|
46
46
|
"@progress/kendo-common": "^1.0.1"
|
|
47
47
|
},
|
|
48
48
|
"schematics": "./schematics/collection.json",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
6
6
|
// peers of the treeview
|
|
7
|
-
'@progress/kendo-angular-inputs': '18.5.
|
|
7
|
+
'@progress/kendo-angular-inputs': '18.5.1-develop.2',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '18.5.
|
|
9
|
+
'@progress/kendo-angular-intl': '18.5.1-develop.2',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|