@progress/kendo-angular-dropdowns 25.0.0-develop.7 → 25.0.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/NOTICE.txt +33 -34
- package/codemods/libs/common/src/codemods/utils.js +15 -0
- package/codemods/libs/dropdowns/codemods/v25/dropdowns-rendering-changes.js +41 -0
- package/codemods/libs/dropdowns/codemods/v25/multiselect-summaryTag.js +34 -0
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +1123 -580
- package/index.d.ts +118 -67
- package/package-metadata.mjs +2 -2
- package/package.json +22 -10
- package/schematics/ngAdd/index.js +2 -2
package/index.d.ts
CHANGED
|
@@ -11,9 +11,9 @@ import { AdaptiveService, AdaptiveSize } from '@progress/kendo-angular-utils';
|
|
|
11
11
|
import { FormControl, ControlValueAccessor } from '@angular/forms';
|
|
12
12
|
import { LocalizationService, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
13
13
|
import { PopupRef, PopupService } from '@progress/kendo-angular-popup';
|
|
14
|
+
import { CheckBoxState, TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
14
15
|
import { SVGIcon as SVGIcon$1 } from '@progress/kendo-svg-icons';
|
|
15
16
|
import { ActionSheetComponent } from '@progress/kendo-angular-navigation';
|
|
16
|
-
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
17
17
|
import { SVGIcon } from '@progress/kendo-angular-icons';
|
|
18
18
|
import { Observable } from 'rxjs';
|
|
19
19
|
import { DataBoundComponent, ExpandableComponent, TreeViewComponent, TreeItem, NodeClickEvent, FlatDataBindingDirective, HierarchyBindingDirective, ExpandDirective, FilterExpandSettings } from '@progress/kendo-angular-treeview';
|
|
@@ -41,8 +41,8 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
41
41
|
get isRequired(): boolean;
|
|
42
42
|
set isSuggestable(isSuggestable: boolean);
|
|
43
43
|
get isSuggestable(): boolean;
|
|
44
|
-
set
|
|
45
|
-
get
|
|
44
|
+
set hasListAutocomplete(hasListAutocomplete: boolean);
|
|
45
|
+
get hasListAutocomplete(): boolean;
|
|
46
46
|
get userInput(): string;
|
|
47
47
|
set userInput(userInput: string);
|
|
48
48
|
/**
|
|
@@ -83,7 +83,7 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
83
83
|
private _previousValue;
|
|
84
84
|
private _placeholder;
|
|
85
85
|
private _isSuggestable;
|
|
86
|
-
private
|
|
86
|
+
private _hasListAutocomplete;
|
|
87
87
|
private renderer;
|
|
88
88
|
private subs;
|
|
89
89
|
private _inputAttributes;
|
|
@@ -107,7 +107,7 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
107
107
|
setInputSize(): void;
|
|
108
108
|
private setInputAttributes;
|
|
109
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": { "alias": "tagListId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isSuggestable": { "alias": "isSuggestable"; "required": false; }; "
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": { "alias": "tagListId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isSuggestable": { "alias": "isSuggestable"; "required": false; }; "hasListAutocomplete": { "alias": "hasListAutocomplete"; "required": false; }; "userInput": { "alias": "userInput"; "required": false; }; "suggestedText": { "alias": "suggestedText"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "id": { "alias": "id"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onNavigate": "onNavigate"; }, never, never, true, never>;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
/**
|
|
@@ -866,14 +866,21 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
866
866
|
type: ListType;
|
|
867
867
|
checkboxes: MultiSelectCheckableSettings;
|
|
868
868
|
ariaLive: string;
|
|
869
|
+
ariaLabel: string;
|
|
869
870
|
isMultiselect: boolean;
|
|
870
871
|
isActionSheetExpanded: boolean;
|
|
871
872
|
showStickyHeader: boolean;
|
|
872
873
|
rowWidth: number;
|
|
874
|
+
columnsWidths: number[];
|
|
873
875
|
customItemTemplate: CustomItemTemplateDirective;
|
|
874
876
|
text: string;
|
|
875
877
|
allowCustom: boolean;
|
|
876
878
|
defaultItem: string;
|
|
879
|
+
selectAll: boolean;
|
|
880
|
+
selectAllText: string;
|
|
881
|
+
isAllSelected: boolean;
|
|
882
|
+
isPartiallySelected: boolean;
|
|
883
|
+
selectAllClick: EventEmitter<CheckBoxState>;
|
|
877
884
|
set data(data: any[]);
|
|
878
885
|
get data(): any[];
|
|
879
886
|
set size(size: DropDownSize);
|
|
@@ -905,6 +912,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
905
912
|
private scrollSubscription;
|
|
906
913
|
private selectSubscription;
|
|
907
914
|
private _size;
|
|
915
|
+
selectAllCheckboxState: CheckBoxState;
|
|
908
916
|
get pageSize(): number;
|
|
909
917
|
get scrollHeight(): number;
|
|
910
918
|
get overflowY(): string;
|
|
@@ -916,6 +924,10 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
916
924
|
* @hidden
|
|
917
925
|
*/
|
|
918
926
|
get checkboxClasses(): any;
|
|
927
|
+
/**
|
|
928
|
+
* @hidden
|
|
929
|
+
*/
|
|
930
|
+
isSelectAllFocused(): boolean;
|
|
919
931
|
constructor(dataService: DataService, wrapper: ElementRef<HTMLElement>, selectionService: SelectionService, disabledItemsService: DisabledItemsService, cdr: ChangeDetectorRef, zone: NgZone, renderer: Renderer2, localization: LocalizationService, injector: Injector);
|
|
920
932
|
ngOnChanges(changes: {
|
|
921
933
|
[propertyName: string]: SimpleChange;
|
|
@@ -923,7 +935,9 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
923
935
|
ngAfterViewInit(): void;
|
|
924
936
|
ngAfterViewChecked(): void;
|
|
925
937
|
ngOnDestroy(): void;
|
|
926
|
-
|
|
938
|
+
onCheckboxStateChange(state: CheckBoxState, index: number): void;
|
|
939
|
+
handleSelectAllClick(): void;
|
|
940
|
+
handleSelectAllStateChange(state: CheckBoxState): void;
|
|
927
941
|
prepareClasses(): void;
|
|
928
942
|
isChecked(index: number): boolean;
|
|
929
943
|
firstVisibleItem(): any;
|
|
@@ -945,6 +959,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
945
959
|
*/
|
|
946
960
|
hasScrollbar(): boolean;
|
|
947
961
|
isItemSelected(index: number): boolean;
|
|
962
|
+
itemAriaSelected(index: number): boolean | null;
|
|
948
963
|
get isDisabledDefaultItem(): boolean;
|
|
949
964
|
getDefaultItemText(): any;
|
|
950
965
|
/**
|
|
@@ -957,8 +972,10 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
957
972
|
private hasVirtualScrollbar;
|
|
958
973
|
private positionItems;
|
|
959
974
|
private setComponentClasses;
|
|
975
|
+
private updateSelectAllCheckboxState;
|
|
976
|
+
private initSelectAllCheckboxState;
|
|
960
977
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
961
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": { "alias": "selected"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "height": { "alias": "height"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "fixedGroupTemplate": { "alias": "fixedGroupTemplate"; "required": false; }; "show": { "alias": "show"; "required": false; }; "id": { "alias": "id"; "required": false; }; "optionPrefix": { "alias": "optionPrefix"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "type": { "alias": "type"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "rowWidth": { "alias": "rowWidth"; "required": false; }; "customItemTemplate": { "alias": "customItemTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never,
|
|
978
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": { "alias": "selected"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "height": { "alias": "height"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "fixedGroupTemplate": { "alias": "fixedGroupTemplate"; "required": false; }; "show": { "alias": "show"; "required": false; }; "id": { "alias": "id"; "required": false; }; "optionPrefix": { "alias": "optionPrefix"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "type": { "alias": "type"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "rowWidth": { "alias": "rowWidth"; "required": false; }; "columnsWidths": { "alias": "columnsWidths"; "required": false; }; "customItemTemplate": { "alias": "customItemTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "isAllSelected": { "alias": "isAllSelected"; "required": false; }; "isPartiallySelected": { "alias": "isPartiallySelected"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "selectAllClick": "selectAllClick"; "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, [".k-no-data"], true, never>;
|
|
962
979
|
}
|
|
963
980
|
|
|
964
981
|
/**
|
|
@@ -975,6 +992,7 @@ declare class AdaptiveRendererComponent {
|
|
|
975
992
|
placeholder: string;
|
|
976
993
|
searchBarValue: string;
|
|
977
994
|
filterable: boolean;
|
|
995
|
+
showListContainer: boolean;
|
|
978
996
|
closePopup: EventEmitter<any>;
|
|
979
997
|
textInputChange: EventEmitter<any>;
|
|
980
998
|
navigate: EventEmitter<any>;
|
|
@@ -984,6 +1002,7 @@ declare class AdaptiveRendererComponent {
|
|
|
984
1002
|
constructor(localization: LocalizationService, adaptiveService: AdaptiveService);
|
|
985
1003
|
animationDuration: number;
|
|
986
1004
|
checkIcon: SVGIcon;
|
|
1005
|
+
searchIcon: SVGIcon;
|
|
987
1006
|
private expanded;
|
|
988
1007
|
messageFor(key: string): string;
|
|
989
1008
|
onValueChange(value: string): void;
|
|
@@ -992,7 +1011,7 @@ declare class AdaptiveRendererComponent {
|
|
|
992
1011
|
handleClose(): void;
|
|
993
1012
|
get windowSize(): AdaptiveSize;
|
|
994
1013
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveRendererComponent, never>;
|
|
995
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveRendererComponent, "kendo-adaptive-renderer", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showTextInput": { "alias": "showTextInput"; "required": false; }; "sharedPopupActionSheetTemplate": { "alias": "sharedPopupActionSheetTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchBarValue": { "alias": "searchBarValue"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; }, never, never, true, never>;
|
|
1014
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveRendererComponent, "kendo-adaptive-renderer", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showTextInput": { "alias": "showTextInput"; "required": false; }; "sharedPopupActionSheetTemplate": { "alias": "sharedPopupActionSheetTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchBarValue": { "alias": "searchBarValue"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "showListContainer": { "alias": "showListContainer"; "required": false; }; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; }, never, never, true, never>;
|
|
996
1015
|
}
|
|
997
1016
|
|
|
998
1017
|
/**
|
|
@@ -2050,6 +2069,7 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
|
|
|
2050
2069
|
*/
|
|
2051
2070
|
preventEventDefault(event: Event): void;
|
|
2052
2071
|
private get focusedItemText();
|
|
2072
|
+
private shouldResolveSuggestedItem;
|
|
2053
2073
|
/**
|
|
2054
2074
|
* Focuses the first match when there's text in the input field, but no focused item.
|
|
2055
2075
|
*/
|
|
@@ -2673,10 +2693,10 @@ declare class TagTemplateDirective {
|
|
|
2673
2693
|
*
|
|
2674
2694
|
* @example
|
|
2675
2695
|
* ```ts
|
|
2676
|
-
*
|
|
2696
|
+
* @Component({
|
|
2677
2697
|
* selector: 'my-app',
|
|
2678
2698
|
* template: `
|
|
2679
|
-
* <kendo-multiselect
|
|
2699
|
+
* <kendo-multiselect [summaryTagAfter]="1" [data]="items">
|
|
2680
2700
|
* <ng-template kendoMultiSelectGroupTagTemplate let-dataItems>
|
|
2681
2701
|
* <span>{{dataItems.length}} item(s) selected</span>
|
|
2682
2702
|
* </ng-template>
|
|
@@ -2711,6 +2731,14 @@ declare class RemoveTagEvent extends PreventableEvent {
|
|
|
2711
2731
|
constructor(dataItem: any);
|
|
2712
2732
|
}
|
|
2713
2733
|
|
|
2734
|
+
/**
|
|
2735
|
+
* Represents the state of the Select All checkbox in the MultiSelect component.
|
|
2736
|
+
* - `checked`—All items are selected
|
|
2737
|
+
* - `unchecked`—No items are selected
|
|
2738
|
+
* - `indeterminate`—Some but not all items are selected
|
|
2739
|
+
*/
|
|
2740
|
+
type MultiSelectSelectAllEvent = 'checked' | 'unchecked' | 'indeterminate';
|
|
2741
|
+
|
|
2714
2742
|
/**
|
|
2715
2743
|
* @hidden
|
|
2716
2744
|
*/
|
|
@@ -2731,6 +2759,7 @@ declare class TagListComponent {
|
|
|
2731
2759
|
disabled: boolean;
|
|
2732
2760
|
tagPrefix: string;
|
|
2733
2761
|
id: string;
|
|
2762
|
+
ariaLabel: string;
|
|
2734
2763
|
set size(size: DropDownSize);
|
|
2735
2764
|
get size(): DropDownSize;
|
|
2736
2765
|
rounded: DropDownRounded;
|
|
@@ -2743,7 +2772,9 @@ declare class TagListComponent {
|
|
|
2743
2772
|
hostClass: boolean;
|
|
2744
2773
|
get hostId(): string;
|
|
2745
2774
|
taglistRole: string;
|
|
2775
|
+
get hostAriaLabel(): string | null;
|
|
2746
2776
|
multiselectable: boolean;
|
|
2777
|
+
ariaOrientation: string;
|
|
2747
2778
|
private _size;
|
|
2748
2779
|
constructor(renderer: Renderer2, hostElement: ElementRef<HTMLElement>);
|
|
2749
2780
|
tagProp(tag: any, prop: string | string[], index: number): string;
|
|
@@ -2754,7 +2785,7 @@ declare class TagListComponent {
|
|
|
2754
2785
|
tagAriaHidden(index: any): boolean;
|
|
2755
2786
|
private getPropField;
|
|
2756
2787
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagListComponent, never>;
|
|
2757
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": { "alias": "tags"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valueDepth": { "alias": "valueDepth"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagPrefix": { "alias": "tagPrefix"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "disabledIndices": { "alias": "disabledIndices"; "required": false; }; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
|
|
2788
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": { "alias": "tags"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valueDepth": { "alias": "valueDepth"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagPrefix": { "alias": "tagPrefix"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "disabledIndices": { "alias": "disabledIndices"; "required": false; }; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
|
|
2758
2789
|
}
|
|
2759
2790
|
|
|
2760
2791
|
/**
|
|
@@ -2816,6 +2847,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2816
2847
|
popupRef: PopupRef;
|
|
2817
2848
|
text: string;
|
|
2818
2849
|
tags: any[];
|
|
2850
|
+
isAllSelected: boolean;
|
|
2851
|
+
isPartiallySelected: boolean;
|
|
2819
2852
|
focusedTagIndex: number;
|
|
2820
2853
|
/**
|
|
2821
2854
|
* @hidden
|
|
@@ -2843,7 +2876,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2843
2876
|
get formControl(): FormControl;
|
|
2844
2877
|
/**
|
|
2845
2878
|
* Focuses a specific item in the MultiSelect based on the provided index.
|
|
2846
|
-
* Sets the index to `-1` to focus the custom item if available.
|
|
2879
|
+
* Sets the index to `-1` to focus the custom item if available, or `-2` to focus the Select All item.
|
|
2847
2880
|
* Pass `null` or an invalid index to remove focus.
|
|
2848
2881
|
*/
|
|
2849
2882
|
focusItemAt(index: number): void;
|
|
@@ -2851,6 +2884,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2851
2884
|
* Focuses the MultiSelect input element.
|
|
2852
2885
|
*/
|
|
2853
2886
|
focus(): void;
|
|
2887
|
+
/**
|
|
2888
|
+
* @hidden
|
|
2889
|
+
*/
|
|
2890
|
+
handleSelectAllStateChange(checkBoxState: CheckBoxState): void;
|
|
2854
2891
|
/**
|
|
2855
2892
|
* @hidden
|
|
2856
2893
|
*/
|
|
@@ -2885,6 +2922,22 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2885
2922
|
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
2886
2923
|
*/
|
|
2887
2924
|
showStickyHeader: boolean;
|
|
2925
|
+
/**
|
|
2926
|
+
* Renders a Select All sticky header item at the top of the popup list.
|
|
2927
|
+
* Clicking it selects or deselects all currently available items and triggers the `valueChange` event.
|
|
2928
|
+
*
|
|
2929
|
+
* @default false
|
|
2930
|
+
*/
|
|
2931
|
+
selectAll: boolean;
|
|
2932
|
+
/**
|
|
2933
|
+
* Sets the number of selected items after which a summary chip replaces the remaining individual chips.
|
|
2934
|
+
* Set to `0` to always show a single summary chip.
|
|
2935
|
+
* Pass `null` to disable summarization.
|
|
2936
|
+
* When `selectAll` is enabled and this input is not explicitly set, defaults to `10`.
|
|
2937
|
+
*
|
|
2938
|
+
* @default null
|
|
2939
|
+
*/
|
|
2940
|
+
summaryTagAfter: number | null;
|
|
2888
2941
|
/**
|
|
2889
2942
|
* @hidden
|
|
2890
2943
|
*/
|
|
@@ -3129,6 +3182,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3129
3182
|
* You can prevent tag removal by calling `preventDefault()` on the event.
|
|
3130
3183
|
*/
|
|
3131
3184
|
removeTag: EventEmitter<RemoveTagEvent>;
|
|
3185
|
+
/**
|
|
3186
|
+
* Emitted when the Select All item state changes.
|
|
3187
|
+
* Useful for virtualization scenarios where the consumer manages the full dataset.
|
|
3188
|
+
*/
|
|
3189
|
+
selectAllChange: EventEmitter<MultiSelectSelectAllEvent>;
|
|
3132
3190
|
container: ViewContainerRef;
|
|
3133
3191
|
searchbar: SearchBarComponent;
|
|
3134
3192
|
tagList: TagListComponent;
|
|
@@ -3177,6 +3235,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3177
3235
|
private _fillMode;
|
|
3178
3236
|
private _valueHolder;
|
|
3179
3237
|
private isCustomValueSelected;
|
|
3238
|
+
private preserveFocusIndex;
|
|
3239
|
+
private get isAllSelectedComputed();
|
|
3240
|
+
private get isPartiallySelectedComputed();
|
|
3241
|
+
private get hasCustomValueItem();
|
|
3242
|
+
private get availableItemsForSelectAll();
|
|
3180
3243
|
constructor(wrapper: ElementRef, localization: LocalizationService, popupService: PopupService, dataService: DataService, selectionService: SelectionService, navigationService: NavigationService, disabledItemsService: DisabledItemsService, cdr: ChangeDetectorRef, differs: KeyValueDiffers, renderer: Renderer2, _zone: NgZone, injector: Injector, adaptiveService: AdaptiveService);
|
|
3181
3244
|
get listContainerClasses(): any[];
|
|
3182
3245
|
/**
|
|
@@ -3273,10 +3336,6 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3273
3336
|
* @hidden
|
|
3274
3337
|
*/
|
|
3275
3338
|
setDisabledState(isDisabled: boolean): void;
|
|
3276
|
-
/**
|
|
3277
|
-
* @hidden
|
|
3278
|
-
*/
|
|
3279
|
-
onTagMapperChange(): void;
|
|
3280
3339
|
/**
|
|
3281
3340
|
* @hidden
|
|
3282
3341
|
*/
|
|
@@ -3337,6 +3396,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3337
3396
|
private handleDelete;
|
|
3338
3397
|
private handleLeftKey;
|
|
3339
3398
|
private handleDownKey;
|
|
3399
|
+
private calculateNavigationIndex;
|
|
3340
3400
|
private handleRightKey;
|
|
3341
3401
|
private findIndex;
|
|
3342
3402
|
private searchTextAndFocus;
|
|
@@ -3350,6 +3410,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3350
3410
|
private _toggle;
|
|
3351
3411
|
private destroyPopup;
|
|
3352
3412
|
private createPopup;
|
|
3413
|
+
private buildTags;
|
|
3414
|
+
private refreshSummaryTagMapper;
|
|
3353
3415
|
private emitValueChange;
|
|
3354
3416
|
private resolveDataItemFromTags;
|
|
3355
3417
|
private firstFocusableIndex;
|
|
@@ -3357,8 +3419,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3357
3419
|
private setComponentClasses;
|
|
3358
3420
|
private openActionSheet;
|
|
3359
3421
|
private blurComponent;
|
|
3422
|
+
private isItemSelected;
|
|
3423
|
+
private updateSelectAllState;
|
|
3360
3424
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
3361
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kendo-multiselect", ["kendoMultiSelect"], { "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "focusableId": { "alias": "focusableId"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "adaptiveTitle": { "alias": "adaptiveTitle"; "required": false; }; "adaptiveSubtitle": { "alias": "adaptiveSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "tagMapper": { "alias": "tagMapper"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "valueNormalizer": { "alias": "valueNormalizer"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "filterChange": "filterChange"; "valueChange": "valueChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "removeTag": "removeTag"; }, ["template", "customItemTemplate", "groupTemplate", "fixedGroupTemplate", "headerTemplate", "footerTemplate", "tagTemplate", "groupTagTemplate", "noDataTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
3425
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kendo-multiselect", ["kendoMultiSelect"], { "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "summaryTagAfter": { "alias": "summaryTagAfter"; "required": false; }; "focusableId": { "alias": "focusableId"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "adaptiveTitle": { "alias": "adaptiveTitle"; "required": false; }; "adaptiveSubtitle": { "alias": "adaptiveSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "tagMapper": { "alias": "tagMapper"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "valueNormalizer": { "alias": "valueNormalizer"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "filterChange": "filterChange"; "valueChange": "valueChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "removeTag": "removeTag"; "selectAllChange": "selectAllChange"; }, ["template", "customItemTemplate", "groupTemplate", "fixedGroupTemplate", "headerTemplate", "footerTemplate", "tagTemplate", "groupTagTemplate", "noDataTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
3362
3426
|
}
|
|
3363
3427
|
|
|
3364
3428
|
/**
|
|
@@ -3558,6 +3622,10 @@ declare class MultiColumnComboBoxComponent extends ComboBoxComponent implements
|
|
|
3558
3622
|
* @hidden
|
|
3559
3623
|
*/
|
|
3560
3624
|
totalColumnsWidth: number;
|
|
3625
|
+
/**
|
|
3626
|
+
* @hidden
|
|
3627
|
+
*/
|
|
3628
|
+
get visibleColumnsWidths(): number[];
|
|
3561
3629
|
protected get popupWidth(): {
|
|
3562
3630
|
min: string;
|
|
3563
3631
|
max: string;
|
|
@@ -3690,7 +3758,7 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
|
|
|
3690
3758
|
get hostTabIndex(): number;
|
|
3691
3759
|
role: string;
|
|
3692
3760
|
ariaHasPopup: string;
|
|
3693
|
-
get isAriaExpanded(): boolean;
|
|
3761
|
+
get isAriaExpanded(): boolean | null;
|
|
3694
3762
|
get hostAriaAutocomplete(): string;
|
|
3695
3763
|
noDataTemplate: NoDataTemplateDirective;
|
|
3696
3764
|
headerTemplate: HeaderTemplateDirective;
|
|
@@ -4354,17 +4422,13 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
4354
4422
|
xIcon: SVGIcon$1;
|
|
4355
4423
|
get isDisabled(): boolean | null;
|
|
4356
4424
|
treeViewId: string;
|
|
4357
|
-
get hostAriaAutocomplete(): string;
|
|
4358
4425
|
get isLoading(): boolean;
|
|
4359
4426
|
get hostAriaInvalid(): boolean | null;
|
|
4360
4427
|
get isBusy(): string;
|
|
4361
4428
|
get id(): string;
|
|
4362
4429
|
direction: Direction;
|
|
4363
4430
|
get hostTabIndex(): number;
|
|
4364
|
-
role: string;
|
|
4365
|
-
ariaHasPopup: string;
|
|
4366
4431
|
get isReadonly(): string;
|
|
4367
|
-
get ariaDescribedBy(): string;
|
|
4368
4432
|
get ariaActiveDescendant(): string;
|
|
4369
4433
|
/**
|
|
4370
4434
|
* @hidden
|
|
@@ -5130,15 +5194,19 @@ declare class Messages extends ComponentMessages {
|
|
|
5130
5194
|
*/
|
|
5131
5195
|
clearTitle: string;
|
|
5132
5196
|
/**
|
|
5133
|
-
* The text
|
|
5197
|
+
* The text of the Select All item in the popup.
|
|
5198
|
+
*/
|
|
5199
|
+
selectAllText: string;
|
|
5200
|
+
/**
|
|
5201
|
+
* The text of the Check All checkbox label in the tree popup.
|
|
5134
5202
|
*/
|
|
5135
5203
|
checkAllText: string;
|
|
5136
5204
|
/**
|
|
5137
|
-
|
|
5205
|
+
* The text set as aria-label on the select button. Available for DropDownList, ComboBox, MultiColumnComboBox, and DropDownTree.
|
|
5138
5206
|
*/
|
|
5139
5207
|
selectButtonText: string;
|
|
5140
5208
|
/**
|
|
5141
|
-
|
|
5209
|
+
* The text set as aria-label on the list filter input. Available for DropDownList, DropDownTree, and MultiSelectTree.
|
|
5142
5210
|
*/
|
|
5143
5211
|
filterInputLabel: string;
|
|
5144
5212
|
/**
|
|
@@ -5150,11 +5218,15 @@ declare class Messages extends ComponentMessages {
|
|
|
5150
5218
|
*/
|
|
5151
5219
|
adaptiveCloseButtonTitle: string;
|
|
5152
5220
|
/**
|
|
5153
|
-
|
|
5221
|
+
* The text for the input's placeholder when filtering is enabled. Available for DropDownTree and MultiSelectTree.
|
|
5154
5222
|
*/
|
|
5155
5223
|
filterInputPlaceholder: string;
|
|
5156
5224
|
/**
|
|
5157
|
-
|
|
5225
|
+
* The accessible label of the tag list element that contains the selected items. Available for MultiSelect and MultiSelectTree.
|
|
5226
|
+
*/
|
|
5227
|
+
chipListLabel: string;
|
|
5228
|
+
/**
|
|
5229
|
+
* The text displayed when the user types a custom value that is not in the list of options. Available for ComboBox and MultiSelect.
|
|
5158
5230
|
*
|
|
5159
5231
|
* The text includes a localizable string and the custom value.
|
|
5160
5232
|
* For example, when adding a custom value **Test**, the default text is **Use "Test"**.
|
|
@@ -5163,8 +5235,16 @@ declare class Messages extends ComponentMessages {
|
|
|
5163
5235
|
* Use `{customValue}` to insert the value, for example, **Add: {customValue}**.
|
|
5164
5236
|
*/
|
|
5165
5237
|
useCustomValueText: string;
|
|
5238
|
+
/**
|
|
5239
|
+
* The accessible label of the listbox that contains the list of options. Available for DropDownList, ComboBox, MultiColumnComboBox, AutoComplete, and MultiSelect.
|
|
5240
|
+
*/
|
|
5241
|
+
listboxLabel: string;
|
|
5242
|
+
/**
|
|
5243
|
+
* The accessible label of the input element. Available for MultiSelectTree.
|
|
5244
|
+
*/
|
|
5245
|
+
inputLabel: string;
|
|
5166
5246
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
5167
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; }, {}, never, never, true, never>;
|
|
5247
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "chipListLabel": { "alias": "chipListLabel"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
5168
5248
|
}
|
|
5169
5249
|
|
|
5170
5250
|
/**
|
|
@@ -5183,7 +5263,8 @@ declare class Messages extends ComponentMessages {
|
|
|
5183
5263
|
* <kendo-combobox>
|
|
5184
5264
|
* <kendo-combobox-messages
|
|
5185
5265
|
* noDataText="No items found"
|
|
5186
|
-
* filterInputPlaceholder="Search items"
|
|
5266
|
+
* filterInputPlaceholder="Search items"
|
|
5267
|
+
* clearTitle="Clear selection">
|
|
5187
5268
|
* </kendo-combobox-messages>
|
|
5188
5269
|
* </kendo-combobox>
|
|
5189
5270
|
*
|
|
@@ -5197,7 +5278,8 @@ declare class Messages extends ComponentMessages {
|
|
|
5197
5278
|
* <kendo-autocomplete>
|
|
5198
5279
|
* <kendo-autocomplete-messages
|
|
5199
5280
|
* noDataText="No items found"
|
|
5200
|
-
* filterInputPlaceholder="Type to search"
|
|
5281
|
+
* filterInputPlaceholder="Type to search"
|
|
5282
|
+
* clearTitle="Clear input">
|
|
5201
5283
|
* </kendo-autocomplete-messages>
|
|
5202
5284
|
* </kendo-autocomplete>
|
|
5203
5285
|
*
|
|
@@ -5436,36 +5518,6 @@ declare class SelectableDirective {
|
|
|
5436
5518
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectableDirective, "[kendoDropDownsSelectable]", never, { "index": { "alias": "index"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "height": { "alias": "height"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; }, {}, never, never, true, never>;
|
|
5437
5519
|
}
|
|
5438
5520
|
|
|
5439
|
-
/**
|
|
5440
|
-
* Configures the MultiSelect to show one summary tag for all selected items.
|
|
5441
|
-
* Set a number to display the summary tag after the respective number of items are selected.
|
|
5442
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode).
|
|
5443
|
-
*
|
|
5444
|
-
* @example
|
|
5445
|
-
* ```ts-no-run
|
|
5446
|
-
* <kendo-multiselect kendoMultiSelectSummaryTag [data]="data"></kendo-multiselect>
|
|
5447
|
-
* ```
|
|
5448
|
-
*
|
|
5449
|
-
* @example
|
|
5450
|
-
* ```ts-no-run
|
|
5451
|
-
* <kendo-multiselect [kendoMultiSelectSummaryTag]="2" [data]="data"></kendo-multiselect>
|
|
5452
|
-
* ```
|
|
5453
|
-
*/
|
|
5454
|
-
declare class SummaryTagDirective implements OnChanges {
|
|
5455
|
-
private multiSelectComponent;
|
|
5456
|
-
/**
|
|
5457
|
-
* Sets the number of selected items after which the summary tag appears.
|
|
5458
|
-
*
|
|
5459
|
-
* @default 0
|
|
5460
|
-
*/
|
|
5461
|
-
showAfter: number | string;
|
|
5462
|
-
constructor(multiSelectComponent: MultiSelectComponent);
|
|
5463
|
-
ngOnChanges(changes: any): void;
|
|
5464
|
-
private createTagMapper;
|
|
5465
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryTagDirective, never>;
|
|
5466
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
|
|
5467
|
-
}
|
|
5468
|
-
|
|
5469
5521
|
/**
|
|
5470
5522
|
* Configures the `kendoDropDownFilter` directive.
|
|
5471
5523
|
*
|
|
@@ -5620,7 +5672,7 @@ declare class FilterInputDirective implements OnChanges {
|
|
|
5620
5672
|
*/
|
|
5621
5673
|
declare class DropDownsModule {
|
|
5622
5674
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownsModule, never>;
|
|
5623
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownsModule, never, [typeof AutoCompleteComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof ComboBoxComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof MultiColumnComboBoxComponent, typeof ComboBoxColumnComponent, typeof ColumnHeaderTemplateDirective, typeof ColumnCellTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof DropDownListComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof MultiSelectComponent, typeof
|
|
5675
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownsModule, never, [typeof AutoCompleteComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof ComboBoxComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof MultiColumnComboBoxComponent, typeof ComboBoxColumnComponent, typeof ColumnHeaderTemplateDirective, typeof ColumnCellTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof DropDownListComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof DropDownTreeComponent, typeof DropDownTreeFlatBindingDirective, typeof DropDownTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent, typeof MultiSelectTreeComponent, typeof MultiSelectTreeFlatBindingDirective, typeof MultiSelectTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof MultiSelectTreeSummaryTagDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective], [typeof AutoCompleteComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof ComboBoxComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof MultiColumnComboBoxComponent, typeof ComboBoxColumnComponent, typeof ColumnHeaderTemplateDirective, typeof ColumnCellTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective, typeof DropDownListComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof DropDownTreeComponent, typeof DropDownTreeFlatBindingDirective, typeof DropDownTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent, typeof MultiSelectTreeComponent, typeof MultiSelectTreeFlatBindingDirective, typeof MultiSelectTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof MultiSelectTreeSummaryTagDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.ToggleButtonTabStopDirective]>;
|
|
5624
5676
|
static ɵinj: i0.ɵɵInjectorDeclaration<DropDownsModule>;
|
|
5625
5677
|
}
|
|
5626
5678
|
|
|
@@ -5629,7 +5681,6 @@ declare class DropDownsModule {
|
|
|
5629
5681
|
*
|
|
5630
5682
|
* This module exports all MultiSelect-related components and directives:
|
|
5631
5683
|
* - `MultiSelectComponent`—The main MultiSelect component class.
|
|
5632
|
-
* - `SummaryTagDirective`—The summary tag directive for MultiSelect.
|
|
5633
5684
|
* - `ItemTemplateDirective`—The item template directive.
|
|
5634
5685
|
* - `CustomItemTemplateDirective`—The custom item template directive.
|
|
5635
5686
|
* - `TagTemplateDirective`—The tag template directive.
|
|
@@ -5656,7 +5707,7 @@ declare class DropDownsModule {
|
|
|
5656
5707
|
*/
|
|
5657
5708
|
declare class MultiSelectModule {
|
|
5658
5709
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectModule, never>;
|
|
5659
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, never, [typeof MultiSelectComponent, typeof
|
|
5710
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, never, [typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent], [typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof i10.SuffixTemplateDirective, typeof i10.PrefixTemplateDirective, typeof i10.SeparatorComponent, typeof i10.PrefixTemplateDirective, typeof i10.SuffixTemplateDirective, typeof i10.SeparatorComponent]>;
|
|
5660
5711
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectModule>;
|
|
5661
5712
|
}
|
|
5662
5713
|
|
|
@@ -5784,7 +5835,7 @@ declare const KENDO_DROPDOWNLIST: readonly [typeof DropDownListComponent, typeof
|
|
|
5784
5835
|
/**
|
|
5785
5836
|
* Utility array that contains all `MultiSelect` related components and directives
|
|
5786
5837
|
*/
|
|
5787
|
-
declare const KENDO_MULTISELECT: readonly [typeof MultiSelectComponent, typeof
|
|
5838
|
+
declare const KENDO_MULTISELECT: readonly [typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent];
|
|
5788
5839
|
/**
|
|
5789
5840
|
* Utility array that contains all `DropDownTree` related components and directives
|
|
5790
5841
|
*/
|
|
@@ -5796,7 +5847,7 @@ declare const KENDO_MULTISELECTTREE: readonly [typeof MultiSelectTreeComponent,
|
|
|
5796
5847
|
/**
|
|
5797
5848
|
* Utility array that contains all `@progress/kendo-angular-dropdowns` related components and directives
|
|
5798
5849
|
*/
|
|
5799
|
-
declare const KENDO_DROPDOWNS: readonly [typeof AutoCompleteComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ComboBoxComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ToggleButtonTabStopDirective, typeof MultiColumnComboBoxComponent, typeof ComboBoxColumnComponent, typeof ColumnHeaderTemplateDirective, typeof ColumnCellTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ToggleButtonTabStopDirective, typeof DropDownListComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof MultiSelectComponent, typeof
|
|
5850
|
+
declare const KENDO_DROPDOWNS: readonly [typeof AutoCompleteComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ComboBoxComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ToggleButtonTabStopDirective, typeof MultiColumnComboBoxComponent, typeof ComboBoxColumnComponent, typeof ColumnHeaderTemplateDirective, typeof ColumnCellTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof ToggleButtonTabStopDirective, typeof DropDownListComponent, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof MultiSelectComponent, typeof CustomItemTemplateDirective, typeof FixedGroupTemplateDirective, typeof FooterTemplateDirective, typeof GroupTemplateDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof ItemTemplateDirective, typeof NoDataTemplateDirective, typeof FilterDirective, typeof CustomMessagesComponent, typeof SuffixTemplateDirective, typeof PrefixTemplateDirective, typeof SeparatorComponent, typeof DropDownTreeComponent, typeof DropDownTreeFlatBindingDirective, typeof DropDownTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent, typeof MultiSelectTreeComponent, typeof MultiSelectTreeFlatBindingDirective, typeof MultiSelectTreeHierarchyBindingDirective, typeof DropDownTreesExpandDirective, typeof NodeTemplateDirective, typeof MultiSelectTreeSummaryTagDirective, typeof GroupTagTemplateDirective, typeof TagTemplateDirective, typeof HeaderTemplateDirective, typeof FooterTemplateDirective, typeof ValueTemplateDirective, typeof NoDataTemplateDirective, typeof CustomMessagesComponent];
|
|
5800
5851
|
|
|
5801
|
-
export { AdaptiveRendererComponent, AutoCompleteComponent, AutoCompleteModule, CheckAllDirective, CheckDirective, ColumnCellTemplateDirective, ColumnHeaderTemplateDirective, ComboBoxColumnComponent, ComboBoxComponent, ComboBoxModule, CustomItemTemplateDirective, CustomMessagesComponent, DataService, DisabledItemsService, DropDownListComponent, DropDownListModule, DropDownTreeComponent, DropDownTreeFlatBindingDirective, DropDownTreeHierarchyBindingDirective, DropDownTreesExpandDirective, DropDownTreesModule, DropDownsModule, FilterDirective, FilterInputDirective, FilterableComponent, FixedGroupTemplateDirective, FooterTemplateDirective, GroupTagTemplateDirective, GroupTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_AUTOCOMPLETE, KENDO_COMBOBOX, KENDO_DROPDOWNLIST, KENDO_DROPDOWNS, KENDO_DROPDOWNTREE, KENDO_MULTICOLUMNCOMBOBOX, KENDO_MULTISELECT, KENDO_MULTISELECTTREE, ListComponent, ListItemDirective, LocalizedMessagesDirective, MultiColumnComboBoxComponent, MultiSelectComponent, MultiSelectModule, MultiSelectTreeComponent, MultiSelectTreeFlatBindingDirective, MultiSelectTreeHierarchyBindingDirective, MultiSelectTreeSummaryTagDirective, NavigationService, NoDataTemplateDirective, NodeTemplateDirective, PreventableEvent, RemoveTagEvent, SearchBarComponent, SelectableDirective, SelectionService,
|
|
5802
|
-
export type { AdaptiveMode, DropDownFillMode, DropDownFilterSettings, DropDownRounded, DropDownSize, ItemArgs, ItemDisabledFn, MultiSelectCheckableSettings, MultiSelectTreeCheckableSettings, PopupSettings, VirtualizationSettings };
|
|
5852
|
+
export { AdaptiveRendererComponent, AutoCompleteComponent, AutoCompleteModule, CheckAllDirective, CheckDirective, ColumnCellTemplateDirective, ColumnHeaderTemplateDirective, ComboBoxColumnComponent, ComboBoxComponent, ComboBoxModule, CustomItemTemplateDirective, CustomMessagesComponent, DataService, DisabledItemsService, DropDownListComponent, DropDownListModule, DropDownTreeComponent, DropDownTreeFlatBindingDirective, DropDownTreeHierarchyBindingDirective, DropDownTreesExpandDirective, DropDownTreesModule, DropDownsModule, FilterDirective, FilterInputDirective, FilterableComponent, FixedGroupTemplateDirective, FooterTemplateDirective, GroupTagTemplateDirective, GroupTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_AUTOCOMPLETE, KENDO_COMBOBOX, KENDO_DROPDOWNLIST, KENDO_DROPDOWNS, KENDO_DROPDOWNTREE, KENDO_MULTICOLUMNCOMBOBOX, KENDO_MULTISELECT, KENDO_MULTISELECTTREE, ListComponent, ListItemDirective, LocalizedMessagesDirective, MultiColumnComboBoxComponent, MultiSelectComponent, MultiSelectModule, MultiSelectTreeComponent, MultiSelectTreeFlatBindingDirective, MultiSelectTreeHierarchyBindingDirective, MultiSelectTreeSummaryTagDirective, NavigationService, NoDataTemplateDirective, NodeTemplateDirective, PreventableEvent, RemoveTagEvent, SearchBarComponent, SelectableDirective, SelectionService, TagListComponent, TagTemplateDirective, ValueTemplateDirective };
|
|
5853
|
+
export type { AdaptiveMode, DropDownFillMode, DropDownFilterSettings, DropDownRounded, DropDownSize, ItemArgs, ItemDisabledFn, MultiSelectCheckableSettings, MultiSelectSelectAllEvent, MultiSelectTreeCheckableSettings, PopupSettings, VirtualizationSettings };
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0
|
|
10
|
+
"publishDate": 1786525923,
|
|
11
|
+
"version": "25.0.0",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|