@progress/kendo-angular-dropdowns 25.0.0-develop.8 → 25.1.0-develop.1
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 +550 -293
- package/index.d.ts +78 -50
- 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';
|
|
@@ -876,6 +876,11 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
876
876
|
text: string;
|
|
877
877
|
allowCustom: boolean;
|
|
878
878
|
defaultItem: string;
|
|
879
|
+
selectAll: boolean;
|
|
880
|
+
selectAllText: string;
|
|
881
|
+
isAllSelected: boolean;
|
|
882
|
+
isPartiallySelected: boolean;
|
|
883
|
+
selectAllClick: EventEmitter<CheckBoxState>;
|
|
879
884
|
set data(data: any[]);
|
|
880
885
|
get data(): any[];
|
|
881
886
|
set size(size: DropDownSize);
|
|
@@ -907,6 +912,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
907
912
|
private scrollSubscription;
|
|
908
913
|
private selectSubscription;
|
|
909
914
|
private _size;
|
|
915
|
+
selectAllCheckboxState: CheckBoxState;
|
|
910
916
|
get pageSize(): number;
|
|
911
917
|
get scrollHeight(): number;
|
|
912
918
|
get overflowY(): string;
|
|
@@ -918,6 +924,10 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
918
924
|
* @hidden
|
|
919
925
|
*/
|
|
920
926
|
get checkboxClasses(): any;
|
|
927
|
+
/**
|
|
928
|
+
* @hidden
|
|
929
|
+
*/
|
|
930
|
+
isSelectAllFocused(): boolean;
|
|
921
931
|
constructor(dataService: DataService, wrapper: ElementRef<HTMLElement>, selectionService: SelectionService, disabledItemsService: DisabledItemsService, cdr: ChangeDetectorRef, zone: NgZone, renderer: Renderer2, localization: LocalizationService, injector: Injector);
|
|
922
932
|
ngOnChanges(changes: {
|
|
923
933
|
[propertyName: string]: SimpleChange;
|
|
@@ -925,7 +935,9 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
925
935
|
ngAfterViewInit(): void;
|
|
926
936
|
ngAfterViewChecked(): void;
|
|
927
937
|
ngOnDestroy(): void;
|
|
928
|
-
|
|
938
|
+
onCheckboxStateChange(state: CheckBoxState, index: number): void;
|
|
939
|
+
handleSelectAllClick(): void;
|
|
940
|
+
handleSelectAllStateChange(state: CheckBoxState): void;
|
|
929
941
|
prepareClasses(): void;
|
|
930
942
|
isChecked(index: number): boolean;
|
|
931
943
|
firstVisibleItem(): any;
|
|
@@ -960,8 +972,10 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
|
960
972
|
private hasVirtualScrollbar;
|
|
961
973
|
private positionItems;
|
|
962
974
|
private setComponentClasses;
|
|
975
|
+
private updateSelectAllCheckboxState;
|
|
976
|
+
private initSelectAllCheckboxState;
|
|
963
977
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
964
|
-
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; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, [".k-no-data"], true, 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>;
|
|
965
979
|
}
|
|
966
980
|
|
|
967
981
|
/**
|
|
@@ -2679,10 +2693,10 @@ declare class TagTemplateDirective {
|
|
|
2679
2693
|
*
|
|
2680
2694
|
* @example
|
|
2681
2695
|
* ```ts
|
|
2682
|
-
*
|
|
2696
|
+
* @Component({
|
|
2683
2697
|
* selector: 'my-app',
|
|
2684
2698
|
* template: `
|
|
2685
|
-
* <kendo-multiselect
|
|
2699
|
+
* <kendo-multiselect [summaryTagAfter]="1" [data]="items">
|
|
2686
2700
|
* <ng-template kendoMultiSelectGroupTagTemplate let-dataItems>
|
|
2687
2701
|
* <span>{{dataItems.length}} item(s) selected</span>
|
|
2688
2702
|
* </ng-template>
|
|
@@ -2717,6 +2731,14 @@ declare class RemoveTagEvent extends PreventableEvent {
|
|
|
2717
2731
|
constructor(dataItem: any);
|
|
2718
2732
|
}
|
|
2719
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
|
+
|
|
2720
2742
|
/**
|
|
2721
2743
|
* @hidden
|
|
2722
2744
|
*/
|
|
@@ -2825,6 +2847,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2825
2847
|
popupRef: PopupRef;
|
|
2826
2848
|
text: string;
|
|
2827
2849
|
tags: any[];
|
|
2850
|
+
isAllSelected: boolean;
|
|
2851
|
+
isPartiallySelected: boolean;
|
|
2828
2852
|
focusedTagIndex: number;
|
|
2829
2853
|
/**
|
|
2830
2854
|
* @hidden
|
|
@@ -2852,7 +2876,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2852
2876
|
get formControl(): FormControl;
|
|
2853
2877
|
/**
|
|
2854
2878
|
* Focuses a specific item in the MultiSelect based on the provided index.
|
|
2855
|
-
* 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.
|
|
2856
2880
|
* Pass `null` or an invalid index to remove focus.
|
|
2857
2881
|
*/
|
|
2858
2882
|
focusItemAt(index: number): void;
|
|
@@ -2860,6 +2884,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2860
2884
|
* Focuses the MultiSelect input element.
|
|
2861
2885
|
*/
|
|
2862
2886
|
focus(): void;
|
|
2887
|
+
/**
|
|
2888
|
+
* @hidden
|
|
2889
|
+
*/
|
|
2890
|
+
handleSelectAllStateChange(checkBoxState: CheckBoxState): void;
|
|
2863
2891
|
/**
|
|
2864
2892
|
* @hidden
|
|
2865
2893
|
*/
|
|
@@ -2894,6 +2922,22 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
2894
2922
|
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
2895
2923
|
*/
|
|
2896
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;
|
|
2897
2941
|
/**
|
|
2898
2942
|
* @hidden
|
|
2899
2943
|
*/
|
|
@@ -3138,6 +3182,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3138
3182
|
* You can prevent tag removal by calling `preventDefault()` on the event.
|
|
3139
3183
|
*/
|
|
3140
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>;
|
|
3141
3190
|
container: ViewContainerRef;
|
|
3142
3191
|
searchbar: SearchBarComponent;
|
|
3143
3192
|
tagList: TagListComponent;
|
|
@@ -3186,6 +3235,11 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3186
3235
|
private _fillMode;
|
|
3187
3236
|
private _valueHolder;
|
|
3188
3237
|
private isCustomValueSelected;
|
|
3238
|
+
private preserveFocusIndex;
|
|
3239
|
+
private get isAllSelectedComputed();
|
|
3240
|
+
private get isPartiallySelectedComputed();
|
|
3241
|
+
private get hasCustomValueItem();
|
|
3242
|
+
private get availableItemsForSelectAll();
|
|
3189
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);
|
|
3190
3244
|
get listContainerClasses(): any[];
|
|
3191
3245
|
/**
|
|
@@ -3282,10 +3336,6 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3282
3336
|
* @hidden
|
|
3283
3337
|
*/
|
|
3284
3338
|
setDisabledState(isDisabled: boolean): void;
|
|
3285
|
-
/**
|
|
3286
|
-
* @hidden
|
|
3287
|
-
*/
|
|
3288
|
-
onTagMapperChange(): void;
|
|
3289
3339
|
/**
|
|
3290
3340
|
* @hidden
|
|
3291
3341
|
*/
|
|
@@ -3346,6 +3396,7 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3346
3396
|
private handleDelete;
|
|
3347
3397
|
private handleLeftKey;
|
|
3348
3398
|
private handleDownKey;
|
|
3399
|
+
private calculateNavigationIndex;
|
|
3349
3400
|
private handleRightKey;
|
|
3350
3401
|
private findIndex;
|
|
3351
3402
|
private searchTextAndFocus;
|
|
@@ -3359,6 +3410,8 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3359
3410
|
private _toggle;
|
|
3360
3411
|
private destroyPopup;
|
|
3361
3412
|
private createPopup;
|
|
3413
|
+
private buildTags;
|
|
3414
|
+
private refreshSummaryTagMapper;
|
|
3362
3415
|
private emitValueChange;
|
|
3363
3416
|
private resolveDataItemFromTags;
|
|
3364
3417
|
private firstFocusableIndex;
|
|
@@ -3366,8 +3419,10 @@ declare class MultiSelectComponent implements OnDestroy, OnChanges, OnInit, DoCh
|
|
|
3366
3419
|
private setComponentClasses;
|
|
3367
3420
|
private openActionSheet;
|
|
3368
3421
|
private blurComponent;
|
|
3422
|
+
private isItemSelected;
|
|
3423
|
+
private updateSelectAllState;
|
|
3369
3424
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
3370
|
-
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>;
|
|
3371
3426
|
}
|
|
3372
3427
|
|
|
3373
3428
|
/**
|
|
@@ -5139,7 +5194,11 @@ declare class Messages extends ComponentMessages {
|
|
|
5139
5194
|
*/
|
|
5140
5195
|
clearTitle: string;
|
|
5141
5196
|
/**
|
|
5142
|
-
|
|
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.
|
|
5143
5202
|
*/
|
|
5144
5203
|
checkAllText: string;
|
|
5145
5204
|
/**
|
|
@@ -5185,7 +5244,7 @@ declare class Messages extends ComponentMessages {
|
|
|
5185
5244
|
*/
|
|
5186
5245
|
inputLabel: string;
|
|
5187
5246
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
5188
|
-
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; }; "chipListLabel": { "alias": "chipListLabel"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "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>;
|
|
5189
5248
|
}
|
|
5190
5249
|
|
|
5191
5250
|
/**
|
|
@@ -5459,36 +5518,6 @@ declare class SelectableDirective {
|
|
|
5459
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>;
|
|
5460
5519
|
}
|
|
5461
5520
|
|
|
5462
|
-
/**
|
|
5463
|
-
* Configures the MultiSelect to show one summary tag for all selected items.
|
|
5464
|
-
* Set a number to display the summary tag after the respective number of items are selected.
|
|
5465
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode).
|
|
5466
|
-
*
|
|
5467
|
-
* @example
|
|
5468
|
-
* ```ts-no-run
|
|
5469
|
-
* <kendo-multiselect kendoMultiSelectSummaryTag [data]="data"></kendo-multiselect>
|
|
5470
|
-
* ```
|
|
5471
|
-
*
|
|
5472
|
-
* @example
|
|
5473
|
-
* ```ts-no-run
|
|
5474
|
-
* <kendo-multiselect [kendoMultiSelectSummaryTag]="2" [data]="data"></kendo-multiselect>
|
|
5475
|
-
* ```
|
|
5476
|
-
*/
|
|
5477
|
-
declare class SummaryTagDirective implements OnChanges {
|
|
5478
|
-
private multiSelectComponent;
|
|
5479
|
-
/**
|
|
5480
|
-
* Sets the number of selected items after which the summary tag appears.
|
|
5481
|
-
*
|
|
5482
|
-
* @default 0
|
|
5483
|
-
*/
|
|
5484
|
-
showAfter: number | string;
|
|
5485
|
-
constructor(multiSelectComponent: MultiSelectComponent);
|
|
5486
|
-
ngOnChanges(changes: any): void;
|
|
5487
|
-
private createTagMapper;
|
|
5488
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryTagDirective, never>;
|
|
5489
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
|
|
5490
|
-
}
|
|
5491
|
-
|
|
5492
5521
|
/**
|
|
5493
5522
|
* Configures the `kendoDropDownFilter` directive.
|
|
5494
5523
|
*
|
|
@@ -5643,7 +5672,7 @@ declare class FilterInputDirective implements OnChanges {
|
|
|
5643
5672
|
*/
|
|
5644
5673
|
declare class DropDownsModule {
|
|
5645
5674
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownsModule, never>;
|
|
5646
|
-
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]>;
|
|
5647
5676
|
static ɵinj: i0.ɵɵInjectorDeclaration<DropDownsModule>;
|
|
5648
5677
|
}
|
|
5649
5678
|
|
|
@@ -5652,7 +5681,6 @@ declare class DropDownsModule {
|
|
|
5652
5681
|
*
|
|
5653
5682
|
* This module exports all MultiSelect-related components and directives:
|
|
5654
5683
|
* - `MultiSelectComponent`—The main MultiSelect component class.
|
|
5655
|
-
* - `SummaryTagDirective`—The summary tag directive for MultiSelect.
|
|
5656
5684
|
* - `ItemTemplateDirective`—The item template directive.
|
|
5657
5685
|
* - `CustomItemTemplateDirective`—The custom item template directive.
|
|
5658
5686
|
* - `TagTemplateDirective`—The tag template directive.
|
|
@@ -5679,7 +5707,7 @@ declare class DropDownsModule {
|
|
|
5679
5707
|
*/
|
|
5680
5708
|
declare class MultiSelectModule {
|
|
5681
5709
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectModule, never>;
|
|
5682
|
-
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]>;
|
|
5683
5711
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectModule>;
|
|
5684
5712
|
}
|
|
5685
5713
|
|
|
@@ -5807,7 +5835,7 @@ declare const KENDO_DROPDOWNLIST: readonly [typeof DropDownListComponent, typeof
|
|
|
5807
5835
|
/**
|
|
5808
5836
|
* Utility array that contains all `MultiSelect` related components and directives
|
|
5809
5837
|
*/
|
|
5810
|
-
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];
|
|
5811
5839
|
/**
|
|
5812
5840
|
* Utility array that contains all `DropDownTree` related components and directives
|
|
5813
5841
|
*/
|
|
@@ -5819,7 +5847,7 @@ declare const KENDO_MULTISELECTTREE: readonly [typeof MultiSelectTreeComponent,
|
|
|
5819
5847
|
/**
|
|
5820
5848
|
* Utility array that contains all `@progress/kendo-angular-dropdowns` related components and directives
|
|
5821
5849
|
*/
|
|
5822
|
-
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];
|
|
5823
5851
|
|
|
5824
|
-
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,
|
|
5825
|
-
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.
|
|
10
|
+
"publishDate": 1786626758,
|
|
11
|
+
"version": "25.1.0-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.1.0-develop.1",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -115,13 +115,24 @@
|
|
|
115
115
|
"file": "codemods/v21/dropdowns-rendering-changes.js",
|
|
116
116
|
"instructionsOnly": true
|
|
117
117
|
}
|
|
118
|
+
],
|
|
119
|
+
"25": [
|
|
120
|
+
{
|
|
121
|
+
"description": "The kendoMultiSelectSummaryTag directive is replaced by the summaryTagAfter input on MultiSelect.",
|
|
122
|
+
"file": "codemods/v25/multiselect-summaryTag.js"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"description": "The Dropdowns components have rendering changes that may affect custom styling.",
|
|
126
|
+
"file": "codemods/v25/dropdowns-rendering-changes.js",
|
|
127
|
+
"instructionsOnly": true
|
|
128
|
+
}
|
|
118
129
|
]
|
|
119
130
|
}
|
|
120
131
|
},
|
|
121
132
|
"package": {
|
|
122
133
|
"productName": "Kendo UI for Angular",
|
|
123
134
|
"productCode": "KENDOUIANGULAR",
|
|
124
|
-
"publishDate":
|
|
135
|
+
"publishDate": 1786626758,
|
|
125
136
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
126
137
|
}
|
|
127
138
|
},
|
|
@@ -132,18 +143,19 @@
|
|
|
132
143
|
"@angular/forms": "20 - 22",
|
|
133
144
|
"@angular/platform-browser": "20 - 22",
|
|
134
145
|
"@progress/kendo-licensing": "^1.11.0",
|
|
135
|
-
"@progress/kendo-angular-common": "25.
|
|
136
|
-
"@progress/kendo-angular-utils": "25.
|
|
137
|
-
"@progress/kendo-angular-l10n": "25.
|
|
138
|
-
"@progress/kendo-angular-navigation": "25.
|
|
139
|
-
"@progress/kendo-angular-popup": "25.
|
|
140
|
-
"@progress/kendo-angular-icons": "25.
|
|
141
|
-
"@progress/kendo-angular-
|
|
146
|
+
"@progress/kendo-angular-common": "25.1.0-develop.1",
|
|
147
|
+
"@progress/kendo-angular-utils": "25.1.0-develop.1",
|
|
148
|
+
"@progress/kendo-angular-l10n": "25.1.0-develop.1",
|
|
149
|
+
"@progress/kendo-angular-navigation": "25.1.0-develop.1",
|
|
150
|
+
"@progress/kendo-angular-popup": "25.1.0-develop.1",
|
|
151
|
+
"@progress/kendo-angular-icons": "25.1.0-develop.1",
|
|
152
|
+
"@progress/kendo-angular-inputs": "25.1.0-develop.1",
|
|
153
|
+
"@progress/kendo-angular-treeview": "25.1.0-develop.1",
|
|
142
154
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
143
155
|
},
|
|
144
156
|
"dependencies": {
|
|
145
157
|
"tslib": "^2.3.1",
|
|
146
|
-
"@progress/kendo-angular-schematics": "25.
|
|
158
|
+
"@progress/kendo-angular-schematics": "25.1.0-develop.1",
|
|
147
159
|
"@progress/kendo-common": "^1.0.1"
|
|
148
160
|
},
|
|
149
161
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '25.
|
|
12
|
+
'@progress/kendo-angular-inputs': '25.1.0-develop.1',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '25.
|
|
14
|
+
'@progress/kendo-angular-intl': '25.1.0-develop.1',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|