@progress/kendo-angular-dropdowns 19.2.0-develop.8 → 19.2.0
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/README.md +8 -3
- package/common/util.d.ts +0 -4
- package/esm2022/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2022/comboboxes/combobox.component.mjs +2 -2
- package/esm2022/common/filtering/filter.directive.mjs +1 -1
- package/esm2022/common/shared-events.directive.mjs +2 -4
- package/esm2022/common/util.mjs +1 -18
- package/esm2022/dropdownlist/dropdownlist.component.mjs +2 -2
- package/esm2022/dropdowntrees/checked-state/check-all.directive.mjs +1 -1
- package/esm2022/dropdowntrees/dropdowntree.component.mjs +1 -1
- package/esm2022/dropdowntrees/multiselecttree.component.mjs +3 -5
- package/esm2022/multiselect/multiselect.component.mjs +2 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +19 -40
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
package/README.md
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
## Kendo UI for Angular DropDowns Package
|
6
6
|
|
7
|
-
> * This package is part of
|
8
|
-
> *
|
9
|
-
> *
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
|
8
|
+
> * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
9
|
+
> * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
|
10
|
+
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
11
|
+
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
12
|
+
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
13
|
+
>
|
14
|
+
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
10
15
|
|
11
16
|
The [Angular Dropdowns package](https://www.telerik.com/kendo-angular-ui/components/dropdowns) includes variety of highly configurable drop-down types that allow you to quickly and easily create the exact Dropdowns component you need to statisfy requirements for functionality and appearance. The Dropdowns are built from the ground-up and specifically for Angular, so that you get high-performance drop-down controls which integrate tightly with your application.
|
12
17
|
|
package/common/util.d.ts
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, Renderer2, forwardRef, ElementRef, Input, Output, EventEmitter, ContentChild, ViewChild, ViewContainerRef, TemplateRef, HostBinding, isDevMode, ChangeDetectorRef, NgZone, Injector } from '@angular/core';
|
6
|
-
import { isDocumentAvailable, KendoInput, hasObservers, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, SeparatorComponent, ResizeSensorComponent, TemplateContextDirective } from '@progress/kendo-angular-common';
|
6
|
+
import { isDocumentAvailable, KendoInput, hasObservers, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, SeparatorComponent, ResizeSensorComponent, TemplateContextDirective, guid } from '@progress/kendo-angular-common';
|
7
7
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
8
8
|
import { NG_VALUE_ACCESSOR, NgControl } from '@angular/forms';
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
@@ -18,7 +18,7 @@ import { SelectionService } from '../common/selection/selection.service';
|
|
18
18
|
import { NavigationService } from '../common/navigation/navigation.service';
|
19
19
|
import { DisabledItemsService } from '../common/disabled-items/disabled-items.service';
|
20
20
|
import { Subject, Subscription, merge } from 'rxjs';
|
21
|
-
import { isPresent,
|
21
|
+
import { isPresent, getter, isUntouched, noop, inDropDown, getSizeClass, getRoundedClass, getFillModeClass, isTruthy, setListBoxAriaLabelledBy, setActionSheetTitle, animationDuration } from '../common/util';
|
22
22
|
import { NavigationAction } from '../common/navigation/navigation-action';
|
23
23
|
import { NoDataTemplateDirective } from '../common/templates/no-data-template.directive';
|
24
24
|
import { PreventableEvent } from '../common/models/preventable-event';
|
@@ -18,9 +18,9 @@ import { NavigationService } from '../common/navigation/navigation.service';
|
|
18
18
|
import { DisabledItemsService } from '../common/disabled-items/disabled-items.service';
|
19
19
|
import { merge, of, Subject, Subscription } from 'rxjs';
|
20
20
|
import { catchError, filter, map, partition, tap, throttleTime } from 'rxjs/operators';
|
21
|
-
import { isChanged, isDocumentAvailable, KendoInput, hasObservers, anyChanged, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, MultiTabStop, SeparatorComponent, EventsOutsideAngularDirective, ResizeSensorComponent, Keys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
21
|
+
import { isChanged, isDocumentAvailable, KendoInput, hasObservers, anyChanged, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, MultiTabStop, SeparatorComponent, EventsOutsideAngularDirective, ResizeSensorComponent, Keys, TemplateContextDirective, guid } from '@progress/kendo-angular-common';
|
22
22
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
23
|
-
import { isPresent,
|
23
|
+
import { isPresent, getter, isEmptyString, isUntouched, inDropDown, getSizeClass, getRoundedClass, getFillModeClass, isTruthy, setListBoxAriaLabelledBy, setActionSheetTitle, animationDuration } from '../common/util';
|
24
24
|
import { NavigationAction } from '../common/navigation/navigation-action';
|
25
25
|
import { PreventableEvent } from '../common/models/preventable-event';
|
26
26
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
@@ -52,10 +52,8 @@ export class SharedDropDownEventsDirective {
|
|
52
52
|
}
|
53
53
|
tabbing = false;
|
54
54
|
}
|
55
|
-
else {
|
56
|
-
|
57
|
-
this.handleBlur.emit();
|
58
|
-
}
|
55
|
+
else if (!cursorInsideWrapper) {
|
56
|
+
this.handleBlur.emit();
|
59
57
|
}
|
60
58
|
}));
|
61
59
|
this.subscriptions.add(this.renderer.listen(hostElement, 'mouseenter', () => {
|
package/esm2022/common/util.mjs
CHANGED
@@ -13,22 +13,6 @@ export const isPresent = (value) => value !== null && value !== undefined;
|
|
13
13
|
* @hidden
|
14
14
|
*/
|
15
15
|
export const isNumber = (value) => !isNaN(value);
|
16
|
-
/**
|
17
|
-
* @hidden
|
18
|
-
*/
|
19
|
-
export const guid = () => {
|
20
|
-
let id = "";
|
21
|
-
let i;
|
22
|
-
let random;
|
23
|
-
for (i = 0; i < 32; i++) {
|
24
|
-
random = Math.random() * 16 | 0;
|
25
|
-
if (i === 8 || i === 12 || i === 16 || i === 20) {
|
26
|
-
id += "-";
|
27
|
-
}
|
28
|
-
id += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16);
|
29
|
-
}
|
30
|
-
return id;
|
31
|
-
};
|
32
16
|
/**
|
33
17
|
* @hidden
|
34
18
|
*/
|
@@ -124,7 +108,6 @@ export const resolveValue = (args) => {
|
|
124
108
|
};
|
125
109
|
}
|
126
110
|
else if (args.index) {
|
127
|
-
dataItem = args.data[args.index];
|
128
111
|
return {
|
129
112
|
dataItem: args.data[args.index],
|
130
113
|
focused: args.index,
|
@@ -169,7 +152,7 @@ export const matchText = (text, word, ignoreCase) => {
|
|
169
152
|
if (ignoreCase) {
|
170
153
|
temp = temp.toLowerCase();
|
171
154
|
}
|
172
|
-
return temp.
|
155
|
+
return temp.startsWith(word);
|
173
156
|
};
|
174
157
|
/**
|
175
158
|
* @hidden
|
@@ -8,9 +8,9 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
8
8
|
import { packageMetadata } from '../package-metadata';
|
9
9
|
import { merge, interval, Subscription } from 'rxjs';
|
10
10
|
import { concatMap, filter, map, skipWhile, take, takeUntil, tap } from 'rxjs/operators';
|
11
|
-
import { isDocumentAvailable, KendoInput, hasObservers, anyChanged, isChanged, EventsOutsideAngularDirective, ResizeSensorComponent, Keys, TemplateContextDirective, isSafari } from '@progress/kendo-angular-common';
|
11
|
+
import { isDocumentAvailable, KendoInput, hasObservers, anyChanged, isChanged, EventsOutsideAngularDirective, ResizeSensorComponent, Keys, TemplateContextDirective, isSafari, guid } from '@progress/kendo-angular-common';
|
12
12
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
13
|
-
import { isPresent,
|
13
|
+
import { isPresent, getter, shuffleData, sameCharsOnly, matchText, isUntouched, inDropDown, getSizeClass, getRoundedClass, getFillModeClass, isTruthy, setListBoxAriaLabelledBy, setActionSheetTitle, animationDuration } from '../common/util';
|
14
14
|
import { SelectionService } from '../common/selection/selection.service';
|
15
15
|
import { NavigationService, NavigationEvent } from '../common/navigation/navigation.service';
|
16
16
|
import { ItemTemplateDirective } from '../common/templates/item-template.directive';
|
@@ -42,7 +42,7 @@ export class CheckAllDirective extends BaseCheckDirective {
|
|
42
42
|
// Need to store the current checkbox state at the moment of click
|
43
43
|
this.currentCheckedState = event.checked;
|
44
44
|
this.currentIndeterminateState = this.isIndeterminate;
|
45
|
-
this.treeview.nodes.
|
45
|
+
this.treeview.nodes.forEach((_value, index) => {
|
46
46
|
const itemIndex = String(index);
|
47
47
|
const itemLookup = this.treeview.itemLookup(itemIndex);
|
48
48
|
this.checkNode(itemLookup);
|
@@ -662,7 +662,7 @@ export class DropDownTreeComponent {
|
|
662
662
|
this.subs.add(this.printableCharacters.pipe(tap((char) => {
|
663
663
|
this._typedValue += char;
|
664
664
|
const itemToFocus = this._searchableNodes.find((node) => {
|
665
|
-
return node.text.toLowerCase().
|
665
|
+
return node.text.toLowerCase().startsWith(this._typedValue);
|
666
666
|
});
|
667
667
|
this.treeview.focus(itemToFocus?.index);
|
668
668
|
}), debounceTime(1000)).subscribe(() => {
|
@@ -832,7 +832,7 @@ export class MultiSelectTreeComponent {
|
|
832
832
|
this.subs.add(this.printableCharacters.pipe(tap((char) => {
|
833
833
|
this._typedValue += char;
|
834
834
|
const itemToFocus = this._searchableNodes.find((node) => {
|
835
|
-
return node.text.toLowerCase().
|
835
|
+
return node.text.toLowerCase().startsWith(this._typedValue);
|
836
836
|
});
|
837
837
|
this.treeview.focus(itemToFocus?.index);
|
838
838
|
}), debounceTime(1000)).subscribe(() => {
|
@@ -1427,10 +1427,8 @@ export class MultiSelectTreeComponent {
|
|
1427
1427
|
if (this.filterable) {
|
1428
1428
|
this.isActionSheetExpanded ? this.actionSheetSearchBar.focus() : this.filterInput.nativeElement.focus();
|
1429
1429
|
}
|
1430
|
-
else {
|
1431
|
-
|
1432
|
-
this.focus();
|
1433
|
-
}
|
1430
|
+
else if (!this.isActionSheetExpanded) {
|
1431
|
+
this.focus();
|
1434
1432
|
}
|
1435
1433
|
}
|
1436
1434
|
}
|
@@ -2,11 +2,11 @@
|
|
2
2
|
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import {
|
5
|
+
import { isPresent, isArray, isObjectArray, resolveAllValues, selectedIndices, getter, isNumber, isUntouched, inDropDown, getSizeClass, getRoundedClass, getFillModeClass, animationDuration, isTruthy, setListBoxAriaLabelledBy, setActionSheetTitle } from '../common/util';
|
6
6
|
import { SearchBarComponent } from '../common/searchbar.component';
|
7
7
|
import { ViewChild, Renderer2, ViewContainerRef, Component, HostBinding, Input, ElementRef, TemplateRef, Output, EventEmitter, isDevMode, forwardRef, ContentChild, ChangeDetectorRef, KeyValueDiffers, NgZone, Injector } from '@angular/core';
|
8
8
|
import { Subscription, Subject, of, merge } from 'rxjs';
|
9
|
-
import { isChanged, isDocumentAvailable, KendoInput, hasObservers, anyChanged, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, SeparatorComponent, ResizeSensorComponent, Keys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
9
|
+
import { isChanged, isDocumentAvailable, KendoInput, hasObservers, anyChanged, SuffixTemplateDirective, PrefixTemplateDirective, isControlRequired, SeparatorComponent, ResizeSensorComponent, Keys, TemplateContextDirective, guid } from '@progress/kendo-angular-common';
|
10
10
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
11
11
|
import { catchError, filter, map, take, tap } from 'rxjs/operators';
|
12
12
|
import { NG_VALUE_ACCESSOR, NgControl } from '@angular/forms';
|
@@ -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.2.0
|
13
|
+
publishDate: 1751463102,
|
14
|
+
version: '19.2.0',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
@@ -5,7 +5,7 @@
|
|
5
5
|
import * as i0 from '@angular/core';
|
6
6
|
import { EventEmitter, Component, Input, HostBinding, Output, Directive, Injectable, HostListener, ViewChildren, ViewChild, forwardRef, isDevMode, ViewContainerRef, ContentChild, ContentChildren, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
7
7
|
import * as i10 from '@progress/kendo-angular-common';
|
8
|
-
import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, Keys, setHTMLAttributes, isChanged, TemplateContextDirective, ResizeSensorComponent, closest as closest$1, isControlRequired, hasObservers, KendoInput, SuffixTemplateDirective, PrefixTemplateDirective, SeparatorComponent, MultiTabStop, anyChanged, EventsOutsideAngularDirective,
|
8
|
+
import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, Keys, setHTMLAttributes, isChanged, TemplateContextDirective, ResizeSensorComponent, closest as closest$1, isControlRequired, guid, hasObservers, KendoInput, SuffixTemplateDirective, PrefixTemplateDirective, SeparatorComponent, MultiTabStop, anyChanged, EventsOutsideAngularDirective, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_ADORNMENTS, KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
9
9
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective, ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
10
10
|
import * as i7 from '@progress/kendo-angular-utils';
|
11
11
|
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
@@ -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: '19.2.0
|
40
|
+
publishDate: 1751463102,
|
41
|
+
version: '19.2.0',
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
43
43
|
};
|
44
44
|
|
@@ -51,22 +51,6 @@ const isPresent = (value) => value !== null && value !== undefined;
|
|
51
51
|
* @hidden
|
52
52
|
*/
|
53
53
|
const isNumber = (value) => !isNaN(value);
|
54
|
-
/**
|
55
|
-
* @hidden
|
56
|
-
*/
|
57
|
-
const guid = () => {
|
58
|
-
let id = "";
|
59
|
-
let i;
|
60
|
-
let random;
|
61
|
-
for (i = 0; i < 32; i++) {
|
62
|
-
random = Math.random() * 16 | 0;
|
63
|
-
if (i === 8 || i === 12 || i === 16 || i === 20) {
|
64
|
-
id += "-";
|
65
|
-
}
|
66
|
-
id += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16);
|
67
|
-
}
|
68
|
-
return id;
|
69
|
-
};
|
70
54
|
/**
|
71
55
|
* @hidden
|
72
56
|
*/
|
@@ -162,7 +146,6 @@ const resolveValue = (args) => {
|
|
162
146
|
};
|
163
147
|
}
|
164
148
|
else if (args.index) {
|
165
|
-
dataItem = args.data[args.index];
|
166
149
|
return {
|
167
150
|
dataItem: args.data[args.index],
|
168
151
|
focused: args.index,
|
@@ -207,7 +190,7 @@ const matchText = (text, word, ignoreCase) => {
|
|
207
190
|
if (ignoreCase) {
|
208
191
|
temp = temp.toLowerCase();
|
209
192
|
}
|
210
|
-
return temp.
|
193
|
+
return temp.startsWith(word);
|
211
194
|
};
|
212
195
|
/**
|
213
196
|
* @hidden
|
@@ -3052,10 +3035,8 @@ class SharedDropDownEventsDirective {
|
|
3052
3035
|
}
|
3053
3036
|
tabbing = false;
|
3054
3037
|
}
|
3055
|
-
else {
|
3056
|
-
|
3057
|
-
this.handleBlur.emit();
|
3058
|
-
}
|
3038
|
+
else if (!cursorInsideWrapper) {
|
3039
|
+
this.handleBlur.emit();
|
3059
3040
|
}
|
3060
3041
|
}));
|
3061
3042
|
this.subscriptions.add(this.renderer.listen(hostElement, 'mouseenter', () => {
|
@@ -13008,7 +12989,7 @@ class DropDownTreeComponent {
|
|
13008
12989
|
*
|
13009
12990
|
* Used by the kendo-label and kendo-floatinglabel to access and associate the focusable element with the provided label via aria-labelledby.
|
13010
12991
|
*/
|
13011
|
-
focusableId = `k-${guid
|
12992
|
+
focusableId = `k-${guid()}`;
|
13012
12993
|
set isFocused(isFocused) {
|
13013
12994
|
this.renderer[isFocused ? 'addClass' : 'removeClass'](this.wrapper.nativeElement, 'k-focus');
|
13014
12995
|
this._isFocused = isFocused;
|
@@ -13177,7 +13158,7 @@ class DropDownTreeComponent {
|
|
13177
13158
|
*
|
13178
13159
|
* Used to associate the value label with the wrapper via aria-describedby.
|
13179
13160
|
*/
|
13180
|
-
valueLabelId = `k-${guid
|
13161
|
+
valueLabelId = `k-${guid()}`;
|
13181
13162
|
/**
|
13182
13163
|
* @hidden
|
13183
13164
|
*/
|
@@ -13185,7 +13166,7 @@ class DropDownTreeComponent {
|
|
13185
13166
|
const ngControl = this.injector.get(NgControl, null);
|
13186
13167
|
return ngControl?.control || null;
|
13187
13168
|
}
|
13188
|
-
treeViewId = `k-${guid
|
13169
|
+
treeViewId = `k-${guid()}`;
|
13189
13170
|
_nodes;
|
13190
13171
|
_value;
|
13191
13172
|
_popupSettings = DEFAULT_POPUP_SETTINGS$1;
|
@@ -13223,7 +13204,7 @@ class DropDownTreeComponent {
|
|
13223
13204
|
this.subs.add(this.printableCharacters.pipe(tap((char) => {
|
13224
13205
|
this._typedValue += char;
|
13225
13206
|
const itemToFocus = this._searchableNodes.find((node) => {
|
13226
|
-
return node.text.toLowerCase().
|
13207
|
+
return node.text.toLowerCase().startsWith(this._typedValue);
|
13227
13208
|
});
|
13228
13209
|
this.treeview.focus(itemToFocus?.index);
|
13229
13210
|
}), debounceTime(1000)).subscribe(() => {
|
@@ -14817,7 +14798,7 @@ class CheckAllDirective extends BaseCheckDirective {
|
|
14817
14798
|
// Need to store the current checkbox state at the moment of click
|
14818
14799
|
this.currentCheckedState = event.checked;
|
14819
14800
|
this.currentIndeterminateState = this.isIndeterminate;
|
14820
|
-
this.treeview.nodes.
|
14801
|
+
this.treeview.nodes.forEach((_value, index) => {
|
14821
14802
|
const itemIndex = String(index);
|
14822
14803
|
const itemLookup = this.treeview.itemLookup(itemIndex);
|
14823
14804
|
this.checkNode(itemLookup);
|
@@ -15016,7 +14997,7 @@ class MultiSelectTreeComponent {
|
|
15016
14997
|
get isDisabled() {
|
15017
14998
|
return this.disabled || null;
|
15018
14999
|
}
|
15019
|
-
treeViewId = `k-${guid
|
15000
|
+
treeViewId = `k-${guid()}`;
|
15020
15001
|
get hostAriaAutocomplete() {
|
15021
15002
|
return this.filterable ? 'list' : null;
|
15022
15003
|
}
|
@@ -15409,7 +15390,7 @@ class MultiSelectTreeComponent {
|
|
15409
15390
|
* Sets the unique identifier for the focusable element.
|
15410
15391
|
* Used internally for accessibility and label association.
|
15411
15392
|
*/
|
15412
|
-
focusableId = `k-${guid
|
15393
|
+
focusableId = `k-${guid()}`;
|
15413
15394
|
/**
|
15414
15395
|
* Shows a clear button to reset all selections.
|
15415
15396
|
* Appears on hover when selections exist and the component is not disabled.
|
@@ -15688,8 +15669,8 @@ class MultiSelectTreeComponent {
|
|
15688
15669
|
* @hidden
|
15689
15670
|
*/
|
15690
15671
|
allNodesHidden = false;
|
15691
|
-
tagListId = `k-${guid
|
15692
|
-
tagPrefix = "tag-" + guid
|
15672
|
+
tagListId = `k-${guid()}`;
|
15673
|
+
tagPrefix = "tag-" + guid();
|
15693
15674
|
popupRef;
|
15694
15675
|
tags;
|
15695
15676
|
focusedTagIndex = undefined;
|
@@ -15733,7 +15714,7 @@ class MultiSelectTreeComponent {
|
|
15733
15714
|
this.subs.add(this.printableCharacters.pipe(tap((char) => {
|
15734
15715
|
this._typedValue += char;
|
15735
15716
|
const itemToFocus = this._searchableNodes.find((node) => {
|
15736
|
-
return node.text.toLowerCase().
|
15717
|
+
return node.text.toLowerCase().startsWith(this._typedValue);
|
15737
15718
|
});
|
15738
15719
|
this.treeview.focus(itemToFocus?.index);
|
15739
15720
|
}), debounceTime(1000)).subscribe(() => {
|
@@ -16328,10 +16309,8 @@ class MultiSelectTreeComponent {
|
|
16328
16309
|
if (this.filterable) {
|
16329
16310
|
this.isActionSheetExpanded ? this.actionSheetSearchBar.focus() : this.filterInput.nativeElement.focus();
|
16330
16311
|
}
|
16331
|
-
else {
|
16332
|
-
|
16333
|
-
this.focus();
|
16334
|
-
}
|
16312
|
+
else if (!this.isActionSheetExpanded) {
|
16313
|
+
this.focus();
|
16335
16314
|
}
|
16336
16315
|
}
|
16337
16316
|
}
|
@@ -17575,7 +17554,7 @@ class FilterDirective {
|
|
17575
17554
|
return target.indexOf(query) !== -1;
|
17576
17555
|
}
|
17577
17556
|
else {
|
17578
|
-
return target.
|
17557
|
+
return target.startsWith(query);
|
17579
17558
|
}
|
17580
17559
|
}
|
17581
17560
|
normalizeValue(value) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
3
|
-
"version": "19.2.0
|
3
|
+
"version": "19.2.0",
|
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": 1751463102,
|
104
104
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
105
105
|
}
|
106
106
|
},
|
@@ -111,18 +111,18 @@
|
|
111
111
|
"@angular/forms": "16 - 20",
|
112
112
|
"@angular/platform-browser": "16 - 20",
|
113
113
|
"@progress/kendo-licensing": "^1.5.0",
|
114
|
-
"@progress/kendo-angular-common": "19.2.0
|
115
|
-
"@progress/kendo-angular-utils": "19.2.0
|
116
|
-
"@progress/kendo-angular-l10n": "19.2.0
|
117
|
-
"@progress/kendo-angular-navigation": "19.2.0
|
118
|
-
"@progress/kendo-angular-popup": "19.2.0
|
119
|
-
"@progress/kendo-angular-icons": "19.2.0
|
120
|
-
"@progress/kendo-angular-treeview": "19.2.0
|
114
|
+
"@progress/kendo-angular-common": "19.2.0",
|
115
|
+
"@progress/kendo-angular-utils": "19.2.0",
|
116
|
+
"@progress/kendo-angular-l10n": "19.2.0",
|
117
|
+
"@progress/kendo-angular-navigation": "19.2.0",
|
118
|
+
"@progress/kendo-angular-popup": "19.2.0",
|
119
|
+
"@progress/kendo-angular-icons": "19.2.0",
|
120
|
+
"@progress/kendo-angular-treeview": "19.2.0",
|
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": "19.2.0
|
125
|
+
"@progress/kendo-angular-schematics": "19.2.0",
|
126
126
|
"@progress/kendo-common": "^1.0.1",
|
127
127
|
"node-html-parser": "^7.0.1"
|
128
128
|
},
|
@@ -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': '19.2.0
|
7
|
+
'@progress/kendo-angular-inputs': '19.2.0',
|
8
8
|
// peers of inputs
|
9
|
-
'@progress/kendo-angular-intl': '19.2.0
|
9
|
+
'@progress/kendo-angular-intl': '19.2.0',
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
11
11
|
// Peer dependency of icons
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|