@progress/kendo-angular-dropdowns 17.1.1-develop.5 → 17.1.1-develop.7
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/esm2022/autocomplete/autocomplete.component.mjs +2 -1
- package/esm2022/comboboxes/combobox.component.mjs +2 -1
- package/esm2022/dropdownlist/dropdownlist.component.mjs +2 -1
- package/esm2022/dropdowntrees/dropdowntree.component.mjs +2 -1
- package/esm2022/dropdowntrees/multiselecttree.component.mjs +2 -1
- package/esm2022/multiselect/multiselect.component.mjs +2 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +14 -8
- package/package.json +8 -8
- package/schematics/ngAdd/index.js +2 -2
|
@@ -1066,13 +1066,14 @@ export class AutoCompleteComponent {
|
|
|
1066
1066
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
1067
1067
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
1068
1068
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
1069
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
1069
1070
|
this.popupRef = this.popupService.open({
|
|
1070
1071
|
anchor: this.wrapper,
|
|
1071
1072
|
animate: this.popupSettings.animate,
|
|
1072
1073
|
appendTo: this.appendTo,
|
|
1073
1074
|
content: this.popupTemplate,
|
|
1074
1075
|
popupClass: this.listContainerClasses,
|
|
1075
|
-
positionMode: 'absolute',
|
|
1076
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
1076
1077
|
popupAlign: popupPosition,
|
|
1077
1078
|
anchorAlign: anchorPosition
|
|
1078
1079
|
});
|
|
@@ -1470,13 +1470,14 @@ export class ComboBoxComponent extends MultiTabStop {
|
|
|
1470
1470
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
1471
1471
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
1472
1472
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
1473
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
1473
1474
|
this.popupRef = this.popupService.open({
|
|
1474
1475
|
anchor: this.wrapper,
|
|
1475
1476
|
animate: this.popupSettings.animate,
|
|
1476
1477
|
appendTo: this.appendTo,
|
|
1477
1478
|
content: this.popupTemplate,
|
|
1478
1479
|
popupClass: this.listContainerClasses,
|
|
1479
|
-
positionMode: 'absolute',
|
|
1480
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
1480
1481
|
anchorAlign: anchorPosition,
|
|
1481
1482
|
popupAlign: popupPosition
|
|
1482
1483
|
});
|
|
@@ -985,6 +985,7 @@ export class DropDownListComponent {
|
|
|
985
985
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
986
986
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
987
987
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
988
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
988
989
|
this.popupRef = this.popupService.open({
|
|
989
990
|
anchor: this.wrapper,
|
|
990
991
|
anchorAlign: anchorPosition,
|
|
@@ -993,7 +994,7 @@ export class DropDownListComponent {
|
|
|
993
994
|
content: this.popupTemplate,
|
|
994
995
|
popupAlign: popupPosition,
|
|
995
996
|
popupClass: this.listContainerClasses,
|
|
996
|
-
positionMode: 'absolute'
|
|
997
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute'
|
|
997
998
|
});
|
|
998
999
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-expanded', 'true');
|
|
999
1000
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-controls', this.listBoxId);
|
|
@@ -1088,13 +1088,14 @@ export class DropDownTreeComponent {
|
|
|
1088
1088
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
1089
1089
|
const anchorPosition = { horizontal: horizontalAlign, vertical: 'bottom' };
|
|
1090
1090
|
const popupPosition = { horizontal: horizontalAlign, vertical: 'top' };
|
|
1091
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
1091
1092
|
this.popupRef = this.popupService.open({
|
|
1092
1093
|
anchor: this.wrapper,
|
|
1093
1094
|
appendTo: this.appendTo,
|
|
1094
1095
|
anchorAlign: anchorPosition,
|
|
1095
1096
|
content: this.popupTemplate,
|
|
1096
1097
|
popupAlign: popupPosition,
|
|
1097
|
-
positionMode: 'absolute',
|
|
1098
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
1098
1099
|
popupClass: this.popupContainerClasses
|
|
1099
1100
|
});
|
|
1100
1101
|
const popupWrapper = this.popupRef.popupElement;
|
|
@@ -1278,13 +1278,14 @@ export class MultiSelectTreeComponent {
|
|
|
1278
1278
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
1279
1279
|
const anchorPosition = { horizontal: horizontalAlign, vertical: 'bottom' };
|
|
1280
1280
|
const popupPosition = { horizontal: horizontalAlign, vertical: 'top' };
|
|
1281
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
1281
1282
|
this.popupRef = this.popupService.open({
|
|
1282
1283
|
anchor: this.wrapper,
|
|
1283
1284
|
appendTo: this.appendTo,
|
|
1284
1285
|
anchorAlign: anchorPosition,
|
|
1285
1286
|
content: this.popupTemplate,
|
|
1286
1287
|
popupAlign: popupPosition,
|
|
1287
|
-
positionMode: 'absolute',
|
|
1288
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
1288
1289
|
popupClass: this.popupContainerClasses
|
|
1289
1290
|
});
|
|
1290
1291
|
const popupWrapper = this.popupRef.popupElement;
|
|
@@ -1709,6 +1709,7 @@ export class MultiSelectComponent {
|
|
|
1709
1709
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
1710
1710
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
1711
1711
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
1712
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
1712
1713
|
this.popupRef = this.popupService.open({
|
|
1713
1714
|
anchor: this.wrapper,
|
|
1714
1715
|
anchorAlign: anchorPosition,
|
|
@@ -1717,7 +1718,7 @@ export class MultiSelectComponent {
|
|
|
1717
1718
|
content: this.popupTemplate,
|
|
1718
1719
|
popupAlign: popupPosition,
|
|
1719
1720
|
popupClass: this.listContainerClasses,
|
|
1720
|
-
positionMode: 'absolute'
|
|
1721
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute'
|
|
1721
1722
|
});
|
|
1722
1723
|
const popupWrapper = this.popupRef.popupElement;
|
|
1723
1724
|
const { min, max } = this.width;
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dropdowns',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.1.1-develop.
|
|
12
|
+
publishDate: 1733390756,
|
|
13
|
+
version: '17.1.1-develop.7',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
|
34
34
|
name: '@progress/kendo-angular-dropdowns',
|
|
35
35
|
productName: 'Kendo UI for Angular',
|
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
37
|
-
publishDate:
|
|
38
|
-
version: '17.1.1-develop.
|
|
37
|
+
publishDate: 1733390756,
|
|
38
|
+
version: '17.1.1-develop.7',
|
|
39
39
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
40
40
|
};
|
|
41
41
|
|
|
@@ -4151,13 +4151,14 @@ class AutoCompleteComponent {
|
|
|
4151
4151
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
4152
4152
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
4153
4153
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
4154
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
4154
4155
|
this.popupRef = this.popupService.open({
|
|
4155
4156
|
anchor: this.wrapper,
|
|
4156
4157
|
animate: this.popupSettings.animate,
|
|
4157
4158
|
appendTo: this.appendTo,
|
|
4158
4159
|
content: this.popupTemplate,
|
|
4159
4160
|
popupClass: this.listContainerClasses,
|
|
4160
|
-
positionMode: 'absolute',
|
|
4161
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
4161
4162
|
popupAlign: popupPosition,
|
|
4162
4163
|
anchorAlign: anchorPosition
|
|
4163
4164
|
});
|
|
@@ -6211,13 +6212,14 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6211
6212
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
6212
6213
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
6213
6214
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
6215
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
6214
6216
|
this.popupRef = this.popupService.open({
|
|
6215
6217
|
anchor: this.wrapper,
|
|
6216
6218
|
animate: this.popupSettings.animate,
|
|
6217
6219
|
appendTo: this.appendTo,
|
|
6218
6220
|
content: this.popupTemplate,
|
|
6219
6221
|
popupClass: this.listContainerClasses,
|
|
6220
|
-
positionMode: 'absolute',
|
|
6222
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
6221
6223
|
anchorAlign: anchorPosition,
|
|
6222
6224
|
popupAlign: popupPosition
|
|
6223
6225
|
});
|
|
@@ -7880,6 +7882,7 @@ class DropDownListComponent {
|
|
|
7880
7882
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
7881
7883
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
7882
7884
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
7885
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
7883
7886
|
this.popupRef = this.popupService.open({
|
|
7884
7887
|
anchor: this.wrapper,
|
|
7885
7888
|
anchorAlign: anchorPosition,
|
|
@@ -7888,7 +7891,7 @@ class DropDownListComponent {
|
|
|
7888
7891
|
content: this.popupTemplate,
|
|
7889
7892
|
popupAlign: popupPosition,
|
|
7890
7893
|
popupClass: this.listContainerClasses,
|
|
7891
|
-
positionMode: 'absolute'
|
|
7894
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute'
|
|
7892
7895
|
});
|
|
7893
7896
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-expanded', 'true');
|
|
7894
7897
|
this.renderer.setAttribute(this.wrapper.nativeElement, 'aria-controls', this.listBoxId);
|
|
@@ -11003,6 +11006,7 @@ class MultiSelectComponent {
|
|
|
11003
11006
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
11004
11007
|
const anchorPosition = { horizontal: horizontalAlign, vertical: "bottom" };
|
|
11005
11008
|
const popupPosition = { horizontal: horizontalAlign, vertical: "top" };
|
|
11009
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
11006
11010
|
this.popupRef = this.popupService.open({
|
|
11007
11011
|
anchor: this.wrapper,
|
|
11008
11012
|
anchorAlign: anchorPosition,
|
|
@@ -11011,7 +11015,7 @@ class MultiSelectComponent {
|
|
|
11011
11015
|
content: this.popupTemplate,
|
|
11012
11016
|
popupAlign: popupPosition,
|
|
11013
11017
|
popupClass: this.listContainerClasses,
|
|
11014
|
-
positionMode: 'absolute'
|
|
11018
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute'
|
|
11015
11019
|
});
|
|
11016
11020
|
const popupWrapper = this.popupRef.popupElement;
|
|
11017
11021
|
const { min, max } = this.width;
|
|
@@ -13761,13 +13765,14 @@ class DropDownTreeComponent {
|
|
|
13761
13765
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
13762
13766
|
const anchorPosition = { horizontal: horizontalAlign, vertical: 'bottom' };
|
|
13763
13767
|
const popupPosition = { horizontal: horizontalAlign, vertical: 'top' };
|
|
13768
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
13764
13769
|
this.popupRef = this.popupService.open({
|
|
13765
13770
|
anchor: this.wrapper,
|
|
13766
13771
|
appendTo: this.appendTo,
|
|
13767
13772
|
anchorAlign: anchorPosition,
|
|
13768
13773
|
content: this.popupTemplate,
|
|
13769
13774
|
popupAlign: popupPosition,
|
|
13770
|
-
positionMode: 'absolute',
|
|
13775
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
13771
13776
|
popupClass: this.popupContainerClasses
|
|
13772
13777
|
});
|
|
13773
13778
|
const popupWrapper = this.popupRef.popupElement;
|
|
@@ -16285,13 +16290,14 @@ class MultiSelectTreeComponent {
|
|
|
16285
16290
|
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
|
|
16286
16291
|
const anchorPosition = { horizontal: horizontalAlign, vertical: 'bottom' };
|
|
16287
16292
|
const popupPosition = { horizontal: horizontalAlign, vertical: 'top' };
|
|
16293
|
+
const appendToComponent = typeof this.popupSettings.appendTo === 'string' && this.popupSettings.appendTo === 'component';
|
|
16288
16294
|
this.popupRef = this.popupService.open({
|
|
16289
16295
|
anchor: this.wrapper,
|
|
16290
16296
|
appendTo: this.appendTo,
|
|
16291
16297
|
anchorAlign: anchorPosition,
|
|
16292
16298
|
content: this.popupTemplate,
|
|
16293
16299
|
popupAlign: popupPosition,
|
|
16294
|
-
positionMode: 'absolute',
|
|
16300
|
+
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
16295
16301
|
popupClass: this.popupContainerClasses
|
|
16296
16302
|
});
|
|
16297
16303
|
const popupWrapper = this.popupRef.popupElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "17.1.1-develop.
|
|
3
|
+
"version": "17.1.1-develop.7",
|
|
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",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"@angular/forms": "16 - 19",
|
|
26
26
|
"@angular/platform-browser": "16 - 19",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "17.1.1-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "17.1.1-develop.
|
|
30
|
-
"@progress/kendo-angular-navigation": "17.1.1-develop.
|
|
31
|
-
"@progress/kendo-angular-popup": "17.1.1-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "17.1.1-develop.
|
|
33
|
-
"@progress/kendo-angular-treeview": "17.1.1-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "17.1.1-develop.7",
|
|
29
|
+
"@progress/kendo-angular-l10n": "17.1.1-develop.7",
|
|
30
|
+
"@progress/kendo-angular-navigation": "17.1.1-develop.7",
|
|
31
|
+
"@progress/kendo-angular-popup": "17.1.1-develop.7",
|
|
32
|
+
"@progress/kendo-angular-icons": "17.1.1-develop.7",
|
|
33
|
+
"@progress/kendo-angular-treeview": "17.1.1-develop.7",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "17.1.1-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "17.1.1-develop.7",
|
|
39
39
|
"@progress/kendo-common": "^1.0.1"
|
|
40
40
|
},
|
|
41
41
|
"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': '17.1.1-develop.
|
|
7
|
+
'@progress/kendo-angular-inputs': '17.1.1-develop.7',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '17.1.1-develop.
|
|
9
|
+
'@progress/kendo-angular-intl': '17.1.1-develop.7',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|