@progress/kendo-angular-dropdowns 23.3.0-develop.19 → 23.3.0-develop.20
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.
|
@@ -16,9 +16,9 @@ import { getter as getter$1, touchEnabled, pointers } from '@progress/kendo-comm
|
|
|
16
16
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
17
17
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
18
18
|
import { Subscription, merge, fromEvent, Subject, of, interval } from 'rxjs';
|
|
19
|
+
import { map, switchMap, take, auditTime, tap, filter, partition, throttleTime, catchError, skipWhile, concatMap, takeUntil, debounceTime } from 'rxjs/operators';
|
|
19
20
|
import * as i2 from '@progress/kendo-angular-popup';
|
|
20
21
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
21
|
-
import { map, switchMap, take, auditTime, tap, filter, partition, throttleTime, catchError, skipWhile, concatMap, takeUntil, debounceTime } from 'rxjs/operators';
|
|
22
22
|
import { NgStyle, NgClass, NgTemplateOutlet } from '@angular/common';
|
|
23
23
|
import { checkIcon, xIcon, caretAltDownIcon, searchIcon, xCircleIcon } from '@progress/kendo-svg-icons';
|
|
24
24
|
import { IconComponent, IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
@@ -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: '23.3.0-develop.
|
|
40
|
+
publishDate: 1774614857,
|
|
41
|
+
version: '23.3.0-develop.20',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -4418,7 +4418,10 @@ class AutoCompleteComponent {
|
|
|
4418
4418
|
this.adaptiveTitle = setActionSheetTitle(this.searchbar.input, this.adaptiveTitle);
|
|
4419
4419
|
this.cdr.detectChanges();
|
|
4420
4420
|
this.opened.emit();
|
|
4421
|
-
|
|
4421
|
+
// wait for the ActionSheet animation to complete to ensure the scroll calculation is accurate
|
|
4422
|
+
this.actionSheet.expand.pipe(take(1)).subscribe(() => {
|
|
4423
|
+
this.optionsList.scrollToItem(this.selectionService.focused);
|
|
4424
|
+
});
|
|
4422
4425
|
this.selectionService.focus(this.selectionService.focused);
|
|
4423
4426
|
this.actionSheetSearchBar.focus();
|
|
4424
4427
|
}
|
|
@@ -6475,7 +6478,10 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6475
6478
|
this.adaptiveTitle = setActionSheetTitle(this.searchbar.input, this.adaptiveTitle);
|
|
6476
6479
|
this.cdr.detectChanges();
|
|
6477
6480
|
this.opened.emit();
|
|
6478
|
-
|
|
6481
|
+
// wait for the ActionSheet animation to complete to ensure the scroll calculation is accurate
|
|
6482
|
+
this.actionSheet.expand.pipe(take(1)).subscribe(() => {
|
|
6483
|
+
this.optionsList.scrollToItem(this.selectionService.focused);
|
|
6484
|
+
});
|
|
6479
6485
|
this.selectionService.focus(this.selectionService.focused);
|
|
6480
6486
|
this.actionSheetSearchBar.focus();
|
|
6481
6487
|
}
|
|
@@ -8537,7 +8543,10 @@ class DropDownListComponent {
|
|
|
8537
8543
|
this.setAriaactivedescendant();
|
|
8538
8544
|
this.adaptiveTitle = setActionSheetTitle(this.wrapper, this.adaptiveTitle);
|
|
8539
8545
|
this.cdr.detectChanges();
|
|
8540
|
-
|
|
8546
|
+
// wait for the ActionSheet animation to complete to ensure the scroll calculation is accurate
|
|
8547
|
+
this.actionSheet.expand.pipe(take(1)).subscribe(() => {
|
|
8548
|
+
this.optionsList.scrollToItem(this.selectionService.focused);
|
|
8549
|
+
});
|
|
8541
8550
|
this.selectionService.focus(this.selectionService.focused);
|
|
8542
8551
|
this.opened.emit();
|
|
8543
8552
|
}
|
|
@@ -11192,7 +11201,10 @@ class MultiSelectComponent {
|
|
|
11192
11201
|
this.adaptiveTitle = setActionSheetTitle(this.searchbar.input, this.adaptiveTitle);
|
|
11193
11202
|
this.cdr.detectChanges();
|
|
11194
11203
|
this.opened.emit();
|
|
11195
|
-
|
|
11204
|
+
// wait for the ActionSheet animation to complete to ensure the scroll calculation is accurate
|
|
11205
|
+
this.actionSheet.expand.pipe(take(1)).subscribe(() => {
|
|
11206
|
+
this.optionsList.scrollToItem(this.selectionService.focused);
|
|
11207
|
+
});
|
|
11196
11208
|
this.selectionService.focus(this.selectionService.focused);
|
|
11197
11209
|
this.actionSheetSearchBar.focus();
|
|
11198
11210
|
}
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.3.0-develop.
|
|
10
|
+
"publishDate": 1774614857,
|
|
11
|
+
"version": "23.3.0-develop.20",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "23.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.20",
|
|
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",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"package": {
|
|
101
101
|
"productName": "Kendo UI for Angular",
|
|
102
102
|
"productCode": "KENDOUIANGULAR",
|
|
103
|
-
"publishDate":
|
|
103
|
+
"publishDate": 1774614857,
|
|
104
104
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
105
105
|
}
|
|
106
106
|
},
|
|
@@ -111,18 +111,18 @@
|
|
|
111
111
|
"@angular/forms": "19 - 21",
|
|
112
112
|
"@angular/platform-browser": "19 - 21",
|
|
113
113
|
"@progress/kendo-licensing": "^1.10.0",
|
|
114
|
-
"@progress/kendo-angular-common": "23.3.0-develop.
|
|
115
|
-
"@progress/kendo-angular-utils": "23.3.0-develop.
|
|
116
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
117
|
-
"@progress/kendo-angular-navigation": "23.3.0-develop.
|
|
118
|
-
"@progress/kendo-angular-popup": "23.3.0-develop.
|
|
119
|
-
"@progress/kendo-angular-icons": "23.3.0-develop.
|
|
120
|
-
"@progress/kendo-angular-treeview": "23.3.0-develop.
|
|
114
|
+
"@progress/kendo-angular-common": "23.3.0-develop.20",
|
|
115
|
+
"@progress/kendo-angular-utils": "23.3.0-develop.20",
|
|
116
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.20",
|
|
117
|
+
"@progress/kendo-angular-navigation": "23.3.0-develop.20",
|
|
118
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.20",
|
|
119
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.20",
|
|
120
|
+
"@progress/kendo-angular-treeview": "23.3.0-develop.20",
|
|
121
121
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
122
122
|
},
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"tslib": "^2.3.1",
|
|
125
|
-
"@progress/kendo-angular-schematics": "23.3.0-develop.
|
|
125
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.20",
|
|
126
126
|
"@progress/kendo-common": "^1.0.1"
|
|
127
127
|
},
|
|
128
128
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '23.3.0-develop.
|
|
12
|
+
'@progress/kendo-angular-inputs': '23.3.0-develop.20',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '23.3.0-develop.
|
|
14
|
+
'@progress/kendo-angular-intl': '23.3.0-develop.20',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|