@progress/kendo-angular-dropdowns 24.0.0-develop.3 → 24.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/NOTICE.txt +2599 -172
- package/comboboxes/combobox.component.d.ts +1 -1
- package/dropdownlist/dropdownlist.component.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +31 -38
- package/multiselect/multiselect.component.d.ts +1 -3
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -20,7 +20,7 @@ import { map, switchMap, take, auditTime, tap, filter, partition, throttleTime,
|
|
|
20
20
|
import * as i2 from '@progress/kendo-angular-popup';
|
|
21
21
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
22
22
|
import { NgStyle, NgClass, NgTemplateOutlet } from '@angular/common';
|
|
23
|
-
import { checkIcon, xIcon,
|
|
23
|
+
import { checkIcon, xIcon, chevronDownIcon, searchIcon, xCircleIcon } from '@progress/kendo-svg-icons';
|
|
24
24
|
import { IconComponent, IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
25
25
|
import { ActionSheetComponent, ActionSheetTemplateDirective } from '@progress/kendo-angular-navigation';
|
|
26
26
|
import { TextBoxComponent, TextBoxPrefixTemplateDirective } from '@progress/kendo-angular-inputs';
|
|
@@ -37,8 +37,8 @@ const packageMetadata = {
|
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '24.0.0-develop.
|
|
40
|
+
publishDate: 1778841704,
|
|
41
|
+
version: '24.0.0-develop.31',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -2983,7 +2983,7 @@ class AdaptiveRendererComponent {
|
|
|
2983
2983
|
</div>
|
|
2984
2984
|
</ng-template>
|
|
2985
2985
|
</kendo-actionsheet>
|
|
2986
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
2986
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: TextBoxPrefixTemplateDirective, selector: "[kendoTextBoxPrefixTemplate]", inputs: ["showSeparator"] }, { kind: "component", type: IconComponent, selector: "kendo-icon", inputs: ["name"], exportAs: ["kendoIcon"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
2987
2987
|
}
|
|
2988
2988
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveRendererComponent, decorators: [{
|
|
2989
2989
|
type: Component,
|
|
@@ -5080,7 +5080,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5080
5080
|
/**
|
|
5081
5081
|
* @hidden
|
|
5082
5082
|
*/
|
|
5083
|
-
|
|
5083
|
+
chevronDownIcon = chevronDownIcon;
|
|
5084
5084
|
set text(text) {
|
|
5085
5085
|
this._text = isPresent(text) ? text.toString() : "";
|
|
5086
5086
|
}
|
|
@@ -6641,9 +6641,9 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6641
6641
|
}"
|
|
6642
6642
|
>
|
|
6643
6643
|
<kendo-icon-wrapper
|
|
6644
|
-
[name]="icon || '
|
|
6644
|
+
[name]="icon || 'chevron-down'"
|
|
6645
6645
|
innerCssClass="k-button-icon"
|
|
6646
|
-
[svgIcon]="svgIcon ||
|
|
6646
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
6647
6647
|
>
|
|
6648
6648
|
</kendo-icon-wrapper>
|
|
6649
6649
|
</button>
|
|
@@ -6853,9 +6853,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
6853
6853
|
}"
|
|
6854
6854
|
>
|
|
6855
6855
|
<kendo-icon-wrapper
|
|
6856
|
-
[name]="icon || '
|
|
6856
|
+
[name]="icon || 'chevron-down'"
|
|
6857
6857
|
innerCssClass="k-button-icon"
|
|
6858
|
-
[svgIcon]="svgIcon ||
|
|
6858
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
6859
6859
|
>
|
|
6860
6860
|
</kendo-icon-wrapper>
|
|
6861
6861
|
</button>
|
|
@@ -7217,7 +7217,7 @@ class DropDownListComponent {
|
|
|
7217
7217
|
/**
|
|
7218
7218
|
* @hidden
|
|
7219
7219
|
*/
|
|
7220
|
-
|
|
7220
|
+
chevronDownSVGIcon = chevronDownIcon;
|
|
7221
7221
|
/**
|
|
7222
7222
|
* @hidden
|
|
7223
7223
|
*/
|
|
@@ -8619,10 +8619,10 @@ class DropDownListComponent {
|
|
|
8619
8619
|
>
|
|
8620
8620
|
<kendo-icon-wrapper
|
|
8621
8621
|
unselectable="on"
|
|
8622
|
-
[name]="icon || '
|
|
8622
|
+
[name]="icon || 'chevron-down'"
|
|
8623
8623
|
innerCssClass="k-button-icon"
|
|
8624
8624
|
[customFontClass]="customIconClass"
|
|
8625
|
-
[svgIcon]="svgIcon ||
|
|
8625
|
+
[svgIcon]="svgIcon || chevronDownSVGIcon">
|
|
8626
8626
|
</kendo-icon-wrapper>
|
|
8627
8627
|
</button>
|
|
8628
8628
|
<ng-template #popupTemplate>
|
|
@@ -8805,10 +8805,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8805
8805
|
>
|
|
8806
8806
|
<kendo-icon-wrapper
|
|
8807
8807
|
unselectable="on"
|
|
8808
|
-
[name]="icon || '
|
|
8808
|
+
[name]="icon || 'chevron-down'"
|
|
8809
8809
|
innerCssClass="k-button-icon"
|
|
8810
8810
|
[customFontClass]="customIconClass"
|
|
8811
|
-
[svgIcon]="svgIcon ||
|
|
8811
|
+
[svgIcon]="svgIcon || chevronDownSVGIcon">
|
|
8812
8812
|
</kendo-icon-wrapper>
|
|
8813
8813
|
</button>
|
|
8814
8814
|
<ng-template #popupTemplate>
|
|
@@ -9541,7 +9541,6 @@ class MultiSelectComponent {
|
|
|
9541
9541
|
renderer;
|
|
9542
9542
|
_zone;
|
|
9543
9543
|
injector;
|
|
9544
|
-
hostElement;
|
|
9545
9544
|
adaptiveService;
|
|
9546
9545
|
/**
|
|
9547
9546
|
* @hidden
|
|
@@ -10088,7 +10087,6 @@ class MultiSelectComponent {
|
|
|
10088
10087
|
* @hidden
|
|
10089
10088
|
*/
|
|
10090
10089
|
prefixTemplate;
|
|
10091
|
-
hostClasses = true;
|
|
10092
10090
|
get dir() {
|
|
10093
10091
|
return this.direction;
|
|
10094
10092
|
}
|
|
@@ -10140,7 +10138,7 @@ class MultiSelectComponent {
|
|
|
10140
10138
|
_fillMode;
|
|
10141
10139
|
_valueHolder = [];
|
|
10142
10140
|
isCustomValueSelected = false;
|
|
10143
|
-
constructor(wrapper, localization, popupService, dataService, selectionService, navigationService, disabledItemsService, cdr, differs, renderer, _zone, injector,
|
|
10141
|
+
constructor(wrapper, localization, popupService, dataService, selectionService, navigationService, disabledItemsService, cdr, differs, renderer, _zone, injector, adaptiveService) {
|
|
10144
10142
|
this.wrapper = wrapper;
|
|
10145
10143
|
this.localization = localization;
|
|
10146
10144
|
this.popupService = popupService;
|
|
@@ -10153,7 +10151,6 @@ class MultiSelectComponent {
|
|
|
10153
10151
|
this.renderer = renderer;
|
|
10154
10152
|
this._zone = _zone;
|
|
10155
10153
|
this.injector = injector;
|
|
10156
|
-
this.hostElement = hostElement;
|
|
10157
10154
|
this.adaptiveService = adaptiveService;
|
|
10158
10155
|
validatePackage(packageMetadata);
|
|
10159
10156
|
this.popupPointerDownHandler = this.onPointerDown.bind(this);
|
|
@@ -10477,6 +10474,8 @@ class MultiSelectComponent {
|
|
|
10477
10474
|
this.valueChangeDetected = false;
|
|
10478
10475
|
}
|
|
10479
10476
|
ngOnInit() {
|
|
10477
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-multiselect');
|
|
10478
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
10480
10479
|
this.renderer.removeAttribute(this.wrapper.nativeElement, "tabindex");
|
|
10481
10480
|
this.createCustomValueStream();
|
|
10482
10481
|
this.subs.add(this.localization
|
|
@@ -11233,8 +11232,8 @@ class MultiSelectComponent {
|
|
|
11233
11232
|
this.closePopup();
|
|
11234
11233
|
}
|
|
11235
11234
|
}
|
|
11236
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MultiSelectComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i2.PopupService }, { token: DataService }, { token: SelectionService }, { token: NavigationService }, { token: DisabledItemsService }, { token: i0.ChangeDetectorRef }, { token: i0.KeyValueDiffers }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }, { token:
|
|
11237
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: MultiSelectComponent, isStandalone: true, selector: "kendo-multiselect", inputs: { showStickyHeader: "showStickyHeader", focusableId: "focusableId", autoClose: "autoClose", loading: "loading", data: "data", value: "value", valueField: "valueField", textField: "textField", tabindex: "tabindex", tabIndex: "tabIndex", size: "size", rounded: "rounded", fillMode: "fillMode", placeholder: "placeholder", adaptiveMode: "adaptiveMode", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", disabled: "disabled", itemDisabled: "itemDisabled", checkboxes: "checkboxes", readonly: "readonly", filterable: "filterable", virtual: "virtual", popupSettings: "popupSettings", listHeight: "listHeight", valuePrimitive: "valuePrimitive", clearButton: "clearButton", tagMapper: "tagMapper", allowCustom: "allowCustom", valueNormalizer: "valueNormalizer", inputAttributes: "inputAttributes" }, outputs: { filterChange: "filterChange", valueChange: "valueChange", open: "open", opened: "opened", close: "close", closed: "closed", onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur", removeTag: "removeTag" }, host: { properties: { "class.k-readonly": "this.readonly", "
|
|
11235
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MultiSelectComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i2.PopupService }, { token: DataService }, { token: SelectionService }, { token: NavigationService }, { token: DisabledItemsService }, { token: i0.ChangeDetectorRef }, { token: i0.KeyValueDiffers }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }, { token: i7.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
11236
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: MultiSelectComponent, isStandalone: true, selector: "kendo-multiselect", inputs: { showStickyHeader: "showStickyHeader", focusableId: "focusableId", autoClose: "autoClose", loading: "loading", data: "data", value: "value", valueField: "valueField", textField: "textField", tabindex: "tabindex", tabIndex: "tabIndex", size: "size", rounded: "rounded", fillMode: "fillMode", placeholder: "placeholder", adaptiveMode: "adaptiveMode", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", disabled: "disabled", itemDisabled: "itemDisabled", checkboxes: "checkboxes", readonly: "readonly", filterable: "filterable", virtual: "virtual", popupSettings: "popupSettings", listHeight: "listHeight", valuePrimitive: "valuePrimitive", clearButton: "clearButton", tagMapper: "tagMapper", allowCustom: "allowCustom", valueNormalizer: "valueNormalizer", inputAttributes: "inputAttributes" }, outputs: { filterChange: "filterChange", valueChange: "valueChange", open: "open", opened: "opened", close: "close", closed: "closed", onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur", removeTag: "removeTag" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.dir", "class.k-disabled": "this.disabledClass", "class.k-loading": "this.isLoading" } }, providers: [
|
|
11238
11237
|
MULTISELECT_VALUE_ACCESSOR,
|
|
11239
11238
|
DataService,
|
|
11240
11239
|
SelectionService,
|
|
@@ -11272,7 +11271,7 @@ class MultiSelectComponent {
|
|
|
11272
11271
|
|
|
11273
11272
|
<ng-container
|
|
11274
11273
|
kendoDropDownSharedEvents
|
|
11275
|
-
[hostElement]="
|
|
11274
|
+
[hostElement]="wrapper"
|
|
11276
11275
|
[(isFocused)]="isFocused"
|
|
11277
11276
|
(handleBlur)="handleBlur()"
|
|
11278
11277
|
(onFocus)="handleFocus()"
|
|
@@ -11488,7 +11487,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11488
11487
|
|
|
11489
11488
|
<ng-container
|
|
11490
11489
|
kendoDropDownSharedEvents
|
|
11491
|
-
[hostElement]="
|
|
11490
|
+
[hostElement]="wrapper"
|
|
11492
11491
|
[(isFocused)]="isFocused"
|
|
11493
11492
|
(handleBlur)="handleBlur()"
|
|
11494
11493
|
(onFocus)="handleFocus()"
|
|
@@ -11662,7 +11661,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11662
11661
|
standalone: true,
|
|
11663
11662
|
imports: [LocalizedMessagesDirective, SharedDropDownEventsDirective, NgTemplateOutlet, SeparatorComponent, TagListComponent, SearchBarComponent, IconWrapperComponent, ResizeSensorComponent, AdaptiveRendererComponent, TemplateContextDirective, ListComponent]
|
|
11664
11663
|
}]
|
|
11665
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i2.PopupService }, { type: DataService }, { type: SelectionService }, { type: NavigationService }, { type: DisabledItemsService }, { type: i0.ChangeDetectorRef }, { type: i0.KeyValueDiffers }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.Injector }, { type:
|
|
11664
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i2.PopupService }, { type: DataService }, { type: SelectionService }, { type: NavigationService }, { type: DisabledItemsService }, { type: i0.ChangeDetectorRef }, { type: i0.KeyValueDiffers }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.Injector }, { type: i7.AdaptiveService }], propDecorators: { adaptiveRendererComponent: [{
|
|
11666
11665
|
type: ViewChild,
|
|
11667
11666
|
args: [AdaptiveRendererComponent]
|
|
11668
11667
|
}], showStickyHeader: [{
|
|
@@ -11803,12 +11802,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11803
11802
|
}], prefixTemplate: [{
|
|
11804
11803
|
type: ContentChild,
|
|
11805
11804
|
args: [PrefixTemplateDirective]
|
|
11806
|
-
}], hostClasses: [{
|
|
11807
|
-
type: HostBinding,
|
|
11808
|
-
args: ['class.k-multiselect']
|
|
11809
|
-
}, {
|
|
11810
|
-
type: HostBinding,
|
|
11811
|
-
args: ['class.k-input']
|
|
11812
11805
|
}], dir: [{
|
|
11813
11806
|
type: HostBinding,
|
|
11814
11807
|
args: ['attr.dir']
|
|
@@ -12371,9 +12364,9 @@ class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
12371
12364
|
}"
|
|
12372
12365
|
>
|
|
12373
12366
|
<kendo-icon-wrapper
|
|
12374
|
-
[name]="icon || '
|
|
12367
|
+
[name]="icon || 'chevron-down'"
|
|
12375
12368
|
innerCssClass="k-button-icon"
|
|
12376
|
-
[svgIcon]="svgIcon ||
|
|
12369
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
12377
12370
|
>
|
|
12378
12371
|
</kendo-icon-wrapper>
|
|
12379
12372
|
</button>
|
|
@@ -12681,9 +12674,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
12681
12674
|
}"
|
|
12682
12675
|
>
|
|
12683
12676
|
<kendo-icon-wrapper
|
|
12684
|
-
[name]="icon || '
|
|
12677
|
+
[name]="icon || 'chevron-down'"
|
|
12685
12678
|
innerCssClass="k-button-icon"
|
|
12686
|
-
[svgIcon]="svgIcon ||
|
|
12679
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
12687
12680
|
>
|
|
12688
12681
|
</kendo-icon-wrapper>
|
|
12689
12682
|
</button>
|
|
@@ -12956,7 +12949,7 @@ class DropDownTreeComponent {
|
|
|
12956
12949
|
/**
|
|
12957
12950
|
* @hidden
|
|
12958
12951
|
*/
|
|
12959
|
-
|
|
12952
|
+
chevronDownIcon = chevronDownIcon;
|
|
12960
12953
|
/**
|
|
12961
12954
|
* @hidden
|
|
12962
12955
|
*/
|
|
@@ -14283,9 +14276,9 @@ class DropDownTreeComponent {
|
|
|
14283
14276
|
[attr.disabled]="disabled ? '' : null"
|
|
14284
14277
|
>
|
|
14285
14278
|
<kendo-icon-wrapper
|
|
14286
|
-
[name]="icon || '
|
|
14279
|
+
[name]="icon || 'chevron-down'"
|
|
14287
14280
|
innerCssClass="k-button-icon"
|
|
14288
|
-
[svgIcon]="svgIcon ||
|
|
14281
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
14289
14282
|
>
|
|
14290
14283
|
</kendo-icon-wrapper>
|
|
14291
14284
|
</button>
|
|
@@ -14514,9 +14507,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
14514
14507
|
[attr.disabled]="disabled ? '' : null"
|
|
14515
14508
|
>
|
|
14516
14509
|
<kendo-icon-wrapper
|
|
14517
|
-
[name]="icon || '
|
|
14510
|
+
[name]="icon || 'chevron-down'"
|
|
14518
14511
|
innerCssClass="k-button-icon"
|
|
14519
|
-
[svgIcon]="svgIcon ||
|
|
14512
|
+
[svgIcon]="svgIcon || chevronDownIcon"
|
|
14520
14513
|
>
|
|
14521
14514
|
</kendo-icon-wrapper>
|
|
14522
14515
|
</button>
|
|
@@ -85,7 +85,6 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
85
85
|
private renderer;
|
|
86
86
|
private _zone;
|
|
87
87
|
private injector;
|
|
88
|
-
hostElement: ElementRef;
|
|
89
88
|
private adaptiveService;
|
|
90
89
|
/**
|
|
91
90
|
* @hidden
|
|
@@ -437,7 +436,6 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
437
436
|
* @hidden
|
|
438
437
|
*/
|
|
439
438
|
prefixTemplate: PrefixTemplateDirective;
|
|
440
|
-
hostClasses: boolean;
|
|
441
439
|
get dir(): string;
|
|
442
440
|
get disabledClass(): boolean;
|
|
443
441
|
get isLoading(): boolean;
|
|
@@ -464,7 +462,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
464
462
|
private _fillMode;
|
|
465
463
|
private _valueHolder;
|
|
466
464
|
private isCustomValueSelected;
|
|
467
|
-
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,
|
|
465
|
+
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);
|
|
468
466
|
get listContainerClasses(): any[];
|
|
469
467
|
/**
|
|
470
468
|
* @hidden
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778841704,
|
|
11
|
+
"version": "24.0.0-develop.31",
|
|
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": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.31",
|
|
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",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"package": {
|
|
122
122
|
"productName": "Kendo UI for Angular",
|
|
123
123
|
"productCode": "KENDOUIANGULAR",
|
|
124
|
-
"publishDate":
|
|
124
|
+
"publishDate": 1778841704,
|
|
125
125
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
@@ -132,18 +132,18 @@
|
|
|
132
132
|
"@angular/forms": "19 - 21",
|
|
133
133
|
"@angular/platform-browser": "19 - 21",
|
|
134
134
|
"@progress/kendo-licensing": "^1.11.0",
|
|
135
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
136
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
137
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
138
|
-
"@progress/kendo-angular-navigation": "24.0.0-develop.
|
|
139
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
140
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
141
|
-
"@progress/kendo-angular-treeview": "24.0.0-develop.
|
|
135
|
+
"@progress/kendo-angular-common": "24.0.0-develop.31",
|
|
136
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.31",
|
|
137
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.31",
|
|
138
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.31",
|
|
139
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.31",
|
|
140
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.31",
|
|
141
|
+
"@progress/kendo-angular-treeview": "24.0.0-develop.31",
|
|
142
142
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
145
|
"tslib": "^2.3.1",
|
|
146
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
146
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.31",
|
|
147
147
|
"@progress/kendo-common": "^1.0.1"
|
|
148
148
|
},
|
|
149
149
|
"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': '24.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-inputs': '24.0.0-develop.31',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '24.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-intl': '24.0.0-develop.31',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|