@progress/kendo-angular-dropdowns 25.0.0-develop.3 → 25.0.0-develop.31
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/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 +1155 -593
- package/index.d.ts +120 -69
- 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
|
/**
|
|
@@ -849,6 +849,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
849
849
|
private zone;
|
|
850
850
|
private renderer;
|
|
851
851
|
private localization;
|
|
852
|
+
private injector;
|
|
852
853
|
selected: any[];
|
|
853
854
|
focused: number;
|
|
854
855
|
textField: string;
|
|
@@ -865,14 +866,21 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
865
866
|
type: ListType;
|
|
866
867
|
checkboxes: MultiSelectCheckableSettings;
|
|
867
868
|
ariaLive: string;
|
|
869
|
+
ariaLabel: string;
|
|
868
870
|
isMultiselect: boolean;
|
|
869
871
|
isActionSheetExpanded: boolean;
|
|
870
872
|
showStickyHeader: boolean;
|
|
871
873
|
rowWidth: number;
|
|
874
|
+
columnsWidths: number[];
|
|
872
875
|
customItemTemplate: CustomItemTemplateDirective;
|
|
873
876
|
text: string;
|
|
874
877
|
allowCustom: boolean;
|
|
875
878
|
defaultItem: string;
|
|
879
|
+
selectAll: boolean;
|
|
880
|
+
selectAllText: string;
|
|
881
|
+
isAllSelected: boolean;
|
|
882
|
+
isPartiallySelected: boolean;
|
|
883
|
+
selectAllClick: EventEmitter<CheckBoxState>;
|
|
876
884
|
set data(data: any[]);
|
|
877
885
|
get data(): any[];
|
|
878
886
|
set size(size: DropDownSize);
|
|
@@ -904,6 +912,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
904
912
|
private scrollSubscription;
|
|
905
913
|
private selectSubscription;
|
|
906
914
|
private _size;
|
|
915
|
+
selectAllCheckboxState: CheckBoxState;
|
|
907
916
|
get pageSize(): number;
|
|
908
917
|
get scrollHeight(): number;
|
|
909
918
|
get overflowY(): string;
|
|
@@ -915,14 +924,20 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
915
924
|
* @hidden
|
|
916
925
|
*/
|
|
917
926
|
get checkboxClasses(): any;
|
|
918
|
-
|
|
927
|
+
/**
|
|
928
|
+
* @hidden
|
|
929
|
+
*/
|
|
930
|
+
isSelectAllFocused(): boolean;
|
|
931
|
+
constructor(dataService: DataService, wrapper: ElementRef<HTMLElement>, selectionService: SelectionService, disabledItemsService: DisabledItemsService, cdr: ChangeDetectorRef, zone: NgZone, renderer: Renderer2, localization: LocalizationService, injector: Injector);
|
|
919
932
|
ngOnChanges(changes: {
|
|
920
933
|
[propertyName: string]: SimpleChange;
|
|
921
934
|
}): void;
|
|
922
935
|
ngAfterViewInit(): void;
|
|
923
936
|
ngAfterViewChecked(): void;
|
|
924
937
|
ngOnDestroy(): void;
|
|
925
|
-
|
|
938
|
+
onCheckboxStateChange(state: CheckBoxState, index: number): void;
|
|
939
|
+
handleSelectAllClick(): void;
|
|
940
|
+
handleSelectAllStateChange(state: CheckBoxState): void;
|
|
926
941
|
prepareClasses(): void;
|
|
927
942
|
isChecked(index: number): boolean;
|
|
928
943
|
firstVisibleItem(): any;
|
|
@@ -944,6 +959,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
944
959
|
*/
|
|
945
960
|
hasScrollbar(): boolean;
|
|
946
961
|
isItemSelected(index: number): boolean;
|
|
962
|
+
itemAriaSelected(index: number): boolean | null;
|
|
947
963
|
get isDisabledDefaultItem(): boolean;
|
|
948
964
|
getDefaultItemText(): any;
|
|
949
965
|
/**
|
|
@@ -956,8 +972,10 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
956
972
|
private hasVirtualScrollbar;
|
|
957
973
|
private positionItems;
|
|
958
974
|
private setComponentClasses;
|
|
975
|
+
private updateSelectAllCheckboxState;
|
|
976
|
+
private initSelectAllCheckboxState;
|
|
959
977
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
960
|
-
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>;
|
|
961
979
|
}
|
|
962
980
|
|
|
963
981
|
/**
|
|
@@ -974,6 +992,7 @@ declare class AdaptiveRendererComponent {
|
|
|
974
992
|
placeholder: string;
|
|
975
993
|
searchBarValue: string;
|
|
976
994
|
filterable: boolean;
|
|
995
|
+
showListContainer: boolean;
|
|
977
996
|
closePopup: EventEmitter<any>;
|
|
978
997
|
textInputChange: EventEmitter<any>;
|
|
979
998
|
navigate: EventEmitter<any>;
|
|
@@ -983,6 +1002,7 @@ declare class AdaptiveRendererComponent {
|
|
|
983
1002
|
constructor(localization: LocalizationService, adaptiveService: AdaptiveService);
|
|
984
1003
|
animationDuration: number;
|
|
985
1004
|
checkIcon: SVGIcon;
|
|
1005
|
+
searchIcon: SVGIcon;
|
|
986
1006
|
private expanded;
|
|
987
1007
|
messageFor(key: string): string;
|
|
988
1008
|
onValueChange(value: string): void;
|
|
@@ -991,7 +1011,7 @@ declare class AdaptiveRendererComponent {
|
|
|
991
1011
|
handleClose(): void;
|
|
992
1012
|
get windowSize(): AdaptiveSize;
|
|
993
1013
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveRendererComponent, never>;
|
|
994
|
-
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>;
|
|
995
1015
|
}
|
|
996
1016
|
|
|
997
1017
|
/**
|
|
@@ -2049,6 +2069,7 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
|
|
|
2049
2069
|
*/
|
|
2050
2070
|
preventEventDefault(event: Event): void;
|
|
2051
2071
|
private get focusedItemText();
|
|
2072
|
+
private shouldResolveSuggestedItem;
|
|
2052
2073
|
/**
|
|
2053
2074
|
* Focuses the first match when there's text in the input field, but no focused item.
|
|
2054
2075
|
*/
|
|
@@ -2672,10 +2693,10 @@ declare class TagTemplateDirective {
|
|
|
2672
2693
|
*
|
|
2673
2694
|
* @example
|
|
2674
2695
|
* ```ts
|
|
2675
|
-
*
|
|
2696
|
+
* @Component({
|
|
2676
2697
|
* selector: 'my-app',
|
|
2677
2698
|
* template: `
|
|
2678
|
-
* <kendo-multiselect
|
|
2699
|
+
* <kendo-multiselect [summaryTagAfter]="1" [data]="items">
|
|
2679
2700
|
* <ng-template kendoMultiSelectGroupTagTemplate let-dataItems>
|
|
2680
2701
|
* <span>{{dataItems.length}} item(s) selected</span>
|
|
2681
2702
|
* </ng-template>
|
|
@@ -2710,6 +2731,14 @@ declare class RemoveTagEvent extends PreventableEvent {
|
|
|
2710
2731
|
constructor(dataItem: any);
|
|
2711
2732
|
}
|
|
2712
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
|
+
|
|
2713
2742
|
/**
|
|
2714
2743
|
* @hidden
|
|
2715
2744
|
*/
|
|
@@ -2730,6 +2759,7 @@ declare class TagListComponent {
|
|
|
2730
2759
|
disabled: boolean;
|
|
2731
2760
|
tagPrefix: string;
|
|
2732
2761
|
id: string;
|
|
2762
|
+
ariaLabel: string;
|
|
2733
2763
|
set size(size: DropDownSize);
|
|
2734
2764
|
get size(): DropDownSize;
|
|
2735
2765
|
rounded: DropDownRounded;
|
|
@@ -2742,7 +2772,9 @@ declare class TagListComponent {
|
|
|
2742
2772
|
hostClass: boolean;
|
|
2743
2773
|
get hostId(): string;
|
|
2744
2774
|
taglistRole: string;
|
|
2775
|
+
get hostAriaLabel(): string | null;
|
|
2745
2776
|
multiselectable: boolean;
|
|
2777
|
+
ariaOrientation: string;
|
|
2746
2778
|
private _size;
|
|
2747
2779
|
constructor(renderer: Renderer2, hostElement: ElementRef<HTMLElement>);
|
|
2748
2780
|
tagProp(tag: any, prop: string | string[], index: number): string;
|
|
@@ -2753,7 +2785,7 @@ declare class TagListComponent {
|
|
|
2753
2785
|
tagAriaHidden(index: any): boolean;
|
|
2754
2786
|
private getPropField;
|
|
2755
2787
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagListComponent, never>;
|
|
2756
|
-
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>;
|
|
2757
2789
|
}
|
|
2758
2790
|
|
|
2759
2791
|
/**
|
|
@@ -2815,6 +2847,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2815
2847
|
popupRef: PopupRef;
|
|
2816
2848
|
text: string;
|
|
2817
2849
|
tags: any[];
|
|
2850
|
+
isAllSelected: boolean;
|
|
2851
|
+
isPartiallySelected: boolean;
|
|
2818
2852
|
focusedTagIndex: number;
|
|
2819
2853
|
/**
|
|
2820
2854
|
* @hidden
|
|
@@ -2842,7 +2876,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2842
2876
|
get formControl(): FormControl;
|
|
2843
2877
|
/**
|
|
2844
2878
|
* Focuses a specific item in the MultiSelect based on the provided index.
|
|
2845
|
-
* 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.
|
|
2846
2880
|
* Pass `null` or an invalid index to remove focus.
|
|
2847
2881
|
*/
|
|
2848
2882
|
focusItemAt(index: number): void;
|
|
@@ -2850,6 +2884,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2850
2884
|
* Focuses the MultiSelect input element.
|
|
2851
2885
|
*/
|
|
2852
2886
|
focus(): void;
|
|
2887
|
+
/**
|
|
2888
|
+
* @hidden
|
|
2889
|
+
*/
|
|
2890
|
+
handleSelectAllStateChange(checkBoxState: CheckBoxState): void;
|
|
2853
2891
|
/**
|
|
2854
2892
|
* @hidden
|
|
2855
2893
|
*/
|
|
@@ -2884,6 +2922,22 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2884
2922
|
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
2885
2923
|
*/
|
|
2886
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;
|
|
2887
2941
|
/**
|
|
2888
2942
|
* @hidden
|
|
2889
2943
|
*/
|
|
@@ -3128,6 +3182,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3128
3182
|
* You can prevent tag removal by calling `preventDefault()` on the event.
|
|
3129
3183
|
*/
|
|
3130
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>;
|
|
3131
3190
|
container: ViewContainerRef;
|
|
3132
3191
|
searchbar: SearchBarComponent;
|
|
3133
3192
|
tagList: TagListComponent;
|
|
@@ -3176,6 +3235,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3176
3235
|
private _fillMode;
|
|
3177
3236
|
private _valueHolder;
|
|
3178
3237
|
private isCustomValueSelected;
|
|
3238
|
+
private preserveFocusIndex;
|
|
3239
|
+
private get isAllSelectedComputed();
|
|
3240
|
+
private get isPartiallySelectedComputed();
|
|
3241
|
+
private get hasCustomValueItem();
|
|
3242
|
+
private get availableItemsForSelectAll();
|
|
3179
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);
|
|
3180
3244
|
get listContainerClasses(): any[];
|
|
3181
3245
|
/**
|
|
@@ -3272,10 +3336,6 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3272
3336
|
* @hidden
|
|
3273
3337
|
*/
|
|
3274
3338
|
setDisabledState(isDisabled: boolean): void;
|
|
3275
|
-
/**
|
|
3276
|
-
* @hidden
|
|
3277
|
-
*/
|
|
3278
|
-
onTagMapperChange(): void;
|
|
3279
3339
|
/**
|
|
3280
3340
|
* @hidden
|
|
3281
3341
|
*/
|
|
@@ -3336,6 +3396,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3336
3396
|
private handleDelete;
|
|
3337
3397
|
private handleLeftKey;
|
|
3338
3398
|
private handleDownKey;
|
|
3399
|
+
private calculateNavigationIndex;
|
|
3339
3400
|
private handleRightKey;
|
|
3340
3401
|
private findIndex;
|
|
3341
3402
|
private searchTextAndFocus;
|
|
@@ -3349,6 +3410,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3349
3410
|
private _toggle;
|
|
3350
3411
|
private destroyPopup;
|
|
3351
3412
|
private createPopup;
|
|
3413
|
+
private buildTags;
|
|
3414
|
+
private refreshSummaryTagMapper;
|
|
3352
3415
|
private emitValueChange;
|
|
3353
3416
|
private resolveDataItemFromTags;
|
|
3354
3417
|
private firstFocusableIndex;
|
|
@@ -3356,8 +3419,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3356
3419
|
private setComponentClasses;
|
|
3357
3420
|
private openActionSheet;
|
|
3358
3421
|
private blurComponent;
|
|
3422
|
+
private isItemSelected;
|
|
3423
|
+
private updateSelectAllState;
|
|
3359
3424
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
3360
|
-
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>;
|
|
3361
3426
|
}
|
|
3362
3427
|
|
|
3363
3428
|
/**
|
|
@@ -3557,6 +3622,10 @@ declare class MultiColumnComboBoxComponent extends ComboBoxComponent implements
|
|
|
3557
3622
|
* @hidden
|
|
3558
3623
|
*/
|
|
3559
3624
|
totalColumnsWidth: number;
|
|
3625
|
+
/**
|
|
3626
|
+
* @hidden
|
|
3627
|
+
*/
|
|
3628
|
+
get visibleColumnsWidths(): number[];
|
|
3560
3629
|
protected get popupWidth(): {
|
|
3561
3630
|
min: string;
|
|
3562
3631
|
max: string;
|
|
@@ -3689,7 +3758,7 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
|
|
|
3689
3758
|
get hostTabIndex(): number;
|
|
3690
3759
|
role: string;
|
|
3691
3760
|
ariaHasPopup: string;
|
|
3692
|
-
get isAriaExpanded(): boolean;
|
|
3761
|
+
get isAriaExpanded(): boolean | null;
|
|
3693
3762
|
get hostAriaAutocomplete(): string;
|
|
3694
3763
|
noDataTemplate: NoDataTemplateDirective;
|
|
3695
3764
|
headerTemplate: HeaderTemplateDirective;
|
|
@@ -4353,17 +4422,13 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
4353
4422
|
xIcon: SVGIcon$1;
|
|
4354
4423
|
get isDisabled(): boolean | null;
|
|
4355
4424
|
treeViewId: string;
|
|
4356
|
-
get hostAriaAutocomplete(): string;
|
|
4357
4425
|
get isLoading(): boolean;
|
|
4358
4426
|
get hostAriaInvalid(): boolean | null;
|
|
4359
4427
|
get isBusy(): string;
|
|
4360
4428
|
get id(): string;
|
|
4361
4429
|
direction: Direction;
|
|
4362
4430
|
get hostTabIndex(): number;
|
|
4363
|
-
role: string;
|
|
4364
|
-
ariaHasPopup: string;
|
|
4365
4431
|
get isReadonly(): string;
|
|
4366
|
-
get ariaDescribedBy(): string;
|
|
4367
4432
|
get ariaActiveDescendant(): string;
|
|
4368
4433
|
/**
|
|
4369
4434
|
* @hidden
|
|
@@ -5129,15 +5194,19 @@ declare class Messages extends ComponentMessages {
|
|
|
5129
5194
|
*/
|
|
5130
5195
|
clearTitle: string;
|
|
5131
5196
|
/**
|
|
5132
|
-
* 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.
|
|
5133
5202
|
*/
|
|
5134
5203
|
checkAllText: string;
|
|
5135
5204
|
/**
|
|
5136
|
-
|
|
5205
|
+
* The text set as aria-label on the select button. Available for DropDownList, ComboBox, MultiColumnComboBox, and DropDownTree.
|
|
5137
5206
|
*/
|
|
5138
5207
|
selectButtonText: string;
|
|
5139
5208
|
/**
|
|
5140
|
-
|
|
5209
|
+
* The text set as aria-label on the list filter input. Available for DropDownList, DropDownTree, and MultiSelectTree.
|
|
5141
5210
|
*/
|
|
5142
5211
|
filterInputLabel: string;
|
|
5143
5212
|
/**
|
|
@@ -5149,11 +5218,15 @@ declare class Messages extends ComponentMessages {
|
|
|
5149
5218
|
*/
|
|
5150
5219
|
adaptiveCloseButtonTitle: string;
|
|
5151
5220
|
/**
|
|
5152
|
-
|
|
5221
|
+
* The text for the input's placeholder when filtering is enabled. Available for DropDownTree and MultiSelectTree.
|
|
5153
5222
|
*/
|
|
5154
5223
|
filterInputPlaceholder: string;
|
|
5155
5224
|
/**
|
|
5156
|
-
|
|
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.
|
|
5157
5230
|
*
|
|
5158
5231
|
* The text includes a localizable string and the custom value.
|
|
5159
5232
|
* For example, when adding a custom value **Test**, the default text is **Use "Test"**.
|
|
@@ -5162,8 +5235,16 @@ declare class Messages extends ComponentMessages {
|
|
|
5162
5235
|
* Use `{customValue}` to insert the value, for example, **Add: {customValue}**.
|
|
5163
5236
|
*/
|
|
5164
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;
|
|
5165
5246
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
5166
|
-
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>;
|
|
5167
5248
|
}
|
|
5168
5249
|
|
|
5169
5250
|
/**
|
|
@@ -5182,7 +5263,8 @@ declare class Messages extends ComponentMessages {
|
|
|
5182
5263
|
* <kendo-combobox>
|
|
5183
5264
|
* <kendo-combobox-messages
|
|
5184
5265
|
* noDataText="No items found"
|
|
5185
|
-
* filterInputPlaceholder="Search items"
|
|
5266
|
+
* filterInputPlaceholder="Search items"
|
|
5267
|
+
* clearTitle="Clear selection">
|
|
5186
5268
|
* </kendo-combobox-messages>
|
|
5187
5269
|
* </kendo-combobox>
|
|
5188
5270
|
*
|
|
@@ -5196,7 +5278,8 @@ declare class Messages extends ComponentMessages {
|
|
|
5196
5278
|
* <kendo-autocomplete>
|
|
5197
5279
|
* <kendo-autocomplete-messages
|
|
5198
5280
|
* noDataText="No items found"
|
|
5199
|
-
* filterInputPlaceholder="Type to search"
|
|
5281
|
+
* filterInputPlaceholder="Type to search"
|
|
5282
|
+
* clearTitle="Clear input">
|
|
5200
5283
|
* </kendo-autocomplete-messages>
|
|
5201
5284
|
* </kendo-autocomplete>
|
|
5202
5285
|
*
|
|
@@ -5435,36 +5518,6 @@ declare class SelectableDirective {
|
|
|
5435
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>;
|
|
5436
5519
|
}
|
|
5437
5520
|
|
|
5438
|
-
/**
|
|
5439
|
-
* Configures the MultiSelect to show one summary tag for all selected items.
|
|
5440
|
-
* Set a number to display the summary tag after the respective number of items are selected.
|
|
5441
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode).
|
|
5442
|
-
*
|
|
5443
|
-
* @example
|
|
5444
|
-
* ```ts-no-run
|
|
5445
|
-
* <kendo-multiselect kendoMultiSelectSummaryTag [data]="data"></kendo-multiselect>
|
|
5446
|
-
* ```
|
|
5447
|
-
*
|
|
5448
|
-
* @example
|
|
5449
|
-
* ```ts-no-run
|
|
5450
|
-
* <kendo-multiselect [kendoMultiSelectSummaryTag]="2" [data]="data"></kendo-multiselect>
|
|
5451
|
-
* ```
|
|
5452
|
-
*/
|
|
5453
|
-
declare class SummaryTagDirective implements OnChanges {
|
|
5454
|
-
private multiSelectComponent;
|
|
5455
|
-
/**
|
|
5456
|
-
* Sets the number of selected items after which the summary tag appears.
|
|
5457
|
-
*
|
|
5458
|
-
* @default 0
|
|
5459
|
-
*/
|
|
5460
|
-
showAfter: number | string;
|
|
5461
|
-
constructor(multiSelectComponent: MultiSelectComponent);
|
|
5462
|
-
ngOnChanges(changes: any): void;
|
|
5463
|
-
private createTagMapper;
|
|
5464
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryTagDirective, never>;
|
|
5465
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
|
|
5466
|
-
}
|
|
5467
|
-
|
|
5468
5521
|
/**
|
|
5469
5522
|
* Configures the `kendoDropDownFilter` directive.
|
|
5470
5523
|
*
|
|
@@ -5520,7 +5573,6 @@ interface DropDownFilterSettings {
|
|
|
5520
5573
|
/**
|
|
5521
5574
|
* Implements an event handler for the `filterChange` event of a DropDowns component
|
|
5522
5575
|
* which performs simple data filtering.
|
|
5523
|
-
* Currently, the built-in filtering does not work with [grouped data](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupby).
|
|
5524
5576
|
*
|
|
5525
5577
|
* @example
|
|
5526
5578
|
* ```ts
|
|
@@ -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-develop.
|
|
10
|
+
"publishDate": 1786459668,
|
|
11
|
+
"version": "25.0.0-develop.31",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|