@progress/kendo-angular-dropdowns 16.3.0 → 16.3.1-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.
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
- import { EventEmitter, Component, Input, Output, ViewChild, HostBinding, Directive, Injectable, HostListener, ViewChildren, InjectionToken, forwardRef, isDevMode, ViewContainerRef, Optional, Inject, ContentChild, ContentChildren, ChangeDetectionStrategy, NgModule } from '@angular/core';
6
+ import { EventEmitter, Component, Input, HostBinding, Output, Directive, Injectable, HostListener, ViewChildren, ViewChild, InjectionToken, forwardRef, isDevMode, ViewContainerRef, Optional, Inject, ContentChild, ContentChildren, ChangeDetectionStrategy, NgModule } from '@angular/core';
7
7
  import * as i12 from '@progress/kendo-angular-common';
8
8
  import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, Keys, setHTMLAttributes, isChanged, closest as closest$1, isControlRequired, hasObservers, KendoInput, SuffixTemplateDirective, PrefixTemplateDirective, MultiTabStop, anyChanged, guid as guid$1, ResizeSensorModule, EventsModule, AdornmentsModule, ToggleButtonTabStopModule } from '@progress/kendo-angular-common';
9
9
  export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective, ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
@@ -38,8 +38,8 @@ const packageMetadata = {
38
38
  name: '@progress/kendo-angular-dropdowns',
39
39
  productName: 'Kendo UI for Angular',
40
40
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
41
- publishDate: 1718884880,
42
- version: '16.3.0',
41
+ publishDate: 1719306642,
42
+ version: '16.3.1-develop.1',
43
43
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
44
44
  };
45
45
 
@@ -473,16 +473,17 @@ const animationDuration = 300;
473
473
  * @hidden
474
474
  */
475
475
  class SearchBarComponent {
476
- constructor(localization, renderer, injector) {
476
+ constructor(localization, renderer, injector, input) {
477
477
  this.localization = localization;
478
478
  this.injector = injector;
479
+ this.input = input;
479
480
  this.ariaExpanded = null;
481
+ this.role = 'combobox';
480
482
  this.valueChange = new EventEmitter();
481
483
  this.onBlur = new EventEmitter();
482
484
  this.onFocus = new EventEmitter();
483
485
  this.onClick = new EventEmitter();
484
486
  this.onNavigate = new EventEmitter();
485
- this.searchBarClass = true;
486
487
  this._userInput = "";
487
488
  this._previousValue = "";
488
489
  this._placeholder = "";
@@ -492,6 +493,45 @@ class SearchBarComponent {
492
493
  this.parsedAttributes = {};
493
494
  this.direction = localization.rtl ? 'rtl' : 'ltr';
494
495
  this.renderer = renderer;
496
+ this.renderer.addClass(this.input.nativeElement, 'k-input-inner');
497
+ this.renderer.setAttribute(this.input.nativeElement, 'aria-haspopup', 'listbox');
498
+ this.renderer.setAttribute(this.input.nativeElement, 'autocomplete', 'off');
499
+ }
500
+ set readonly(readonly) {
501
+ this._readonly = readonly;
502
+ if (this._readonly) {
503
+ this.renderer.setAttribute(this.input.nativeElement, 'readonly', '');
504
+ }
505
+ else {
506
+ this.renderer.removeAttribute(this.input.nativeElement, 'readonly');
507
+ }
508
+ }
509
+ get readonly() {
510
+ return this._readonly;
511
+ }
512
+ set disabled(disabled) {
513
+ this._disabled = disabled;
514
+ if (this._disabled) {
515
+ this.renderer.setAttribute(this.input.nativeElement, 'disabled', '');
516
+ }
517
+ else {
518
+ this.renderer.removeAttribute(this.input.nativeElement, 'disabled');
519
+ }
520
+ }
521
+ get disabled() {
522
+ return this._disabled;
523
+ }
524
+ set isRequired(isRequired) {
525
+ this._isRequired = isRequired;
526
+ if (this._isRequired) {
527
+ this.renderer.setAttribute(this.input.nativeElement, 'required', '');
528
+ }
529
+ else {
530
+ this.renderer.removeAttribute(this.input.nativeElement, 'required');
531
+ }
532
+ }
533
+ get isRequired() {
534
+ return this._isRequired;
495
535
  }
496
536
  set isSuggestable(isSuggestable) {
497
537
  this._isSuggestable = isSuggestable;
@@ -536,8 +576,8 @@ class SearchBarComponent {
536
576
  get inputAttributes() {
537
577
  return this._inputAttributes;
538
578
  }
539
- get value() {
540
- return this.input.nativeElement.value;
579
+ get attrAriaInvalid() {
580
+ return this.formControl?.invalid;
541
581
  }
542
582
  set placeholder(text) {
543
583
  this._placeholder = text || '';
@@ -546,6 +586,12 @@ class SearchBarComponent {
546
586
  get placeholder() {
547
587
  return this._placeholder;
548
588
  }
589
+ get dir() {
590
+ return this.direction;
591
+ }
592
+ get value() {
593
+ return this.input.nativeElement.value;
594
+ }
549
595
  get defaultAttributes() {
550
596
  return {
551
597
  id: this.id,
@@ -610,6 +656,12 @@ class SearchBarComponent {
610
656
  this._previousValue = this.userInput;
611
657
  }
612
658
  }
659
+ ngAfterViewInit() {
660
+ this.subs.add(this.input.nativeElement.addEventListener('input', (event) => this.handleInput(event)));
661
+ this.subs.add(this.input.nativeElement.addEventListener('focus', (event) => this.handleFocus(event)));
662
+ this.subs.add(this.input.nativeElement.addEventListener('blur', (event) => this.handleBlur(event)));
663
+ this.subs.add(this.input.nativeElement.addEventListener('keydown', (event) => this.handleKeydown(event)));
664
+ }
613
665
  ngOnDestroy() {
614
666
  this.subs.unsubscribe();
615
667
  }
@@ -688,87 +740,19 @@ class SearchBarComponent {
688
740
  setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
689
741
  }
690
742
  }
691
- SearchBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SearchBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
692
- SearchBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SearchBarComponent, selector: "kendo-searchbar", inputs: { id: "id", tagListId: "tagListId", activeDescendant: "activeDescendant", disabled: "disabled", readonly: "readonly", tabIndex: "tabIndex", role: "role", isLoading: "isLoading", ariaControls: "ariaControls", ariaExpanded: "ariaExpanded", isRequired: "isRequired", isSuggestable: "isSuggestable", isFilterable: "isFilterable", userInput: "userInput", suggestedText: "suggestedText", inputAttributes: "inputAttributes", placeholder: "placeholder" }, outputs: { valueChange: "valueChange", onBlur: "onBlur", onFocus: "onFocus", onClick: "onClick", onNavigate: "onNavigate" }, host: { properties: { "class.k-searchbar": "this.searchBarClass" } }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
693
- <input #input
694
- autocomplete="off"
695
- [id]="id"
696
- [disabled]="disabled"
697
- [readonly]="readonly"
698
- [placeholder]="placeholder"
699
- class="k-input-inner"
700
- (input)="handleInput($event)"
701
- (keydown)="handleKeydown($event)"
702
- [kendoEventsOutsideAngular]="{
703
- focus: handleFocus,
704
- blur: handleBlur
705
- }"
706
- [scope]="this"
707
- [attr.tabIndex]="tabIndex"
708
- [attr.dir]="direction"
709
- [attr.role]="role"
710
- aria-haspopup="listbox"
711
- [attr.aria-expanded]="ariaExpanded"
712
- [attr.aria-controls]="ariaControls"
713
- [attr.aria-describedby]="tagListId"
714
- [attr.aria-activedescendant]="activeDescendant"
715
- [attr.aria-busy]="isLoading"
716
- [attr.aria-invalid]="formControl?.invalid"
717
- [attr.required]="isRequired ? '' : null"
718
- />
719
- `, isInline: true, dependencies: [{ kind: "directive", type: i12.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
743
+ SearchBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SearchBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
744
+ SearchBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SearchBarComponent, selector: "input[kendoSearchbar]", inputs: { tagListId: "tagListId", readonly: "readonly", disabled: "disabled", isRequired: "isRequired", isSuggestable: "isSuggestable", isFilterable: "isFilterable", userInput: "userInput", suggestedText: "suggestedText", inputAttributes: "inputAttributes", id: "id", activeDescendant: "activeDescendant", tabIndex: "tabIndex", isLoading: "isLoading", ariaControls: "ariaControls", ariaExpanded: "ariaExpanded", placeholder: "placeholder" }, outputs: { valueChange: "valueChange", onBlur: "onBlur", onFocus: "onFocus", onClick: "onClick", onNavigate: "onNavigate" }, host: { properties: { "attr.id": "this.id", "attr.aria-activedescendant": "this.activeDescendant", "attr.tabindex": "this.tabIndex", "attr.aria-busy": "this.isLoading", "attr.aria-controls": "this.ariaControls", "attr.aria-expanded": "this.ariaExpanded", "attr.aria-invalid": "this.attrAriaInvalid", "attr.placeholder": "this.placeholder", "attr.role": "this.role", "attr.dir": "this.dir" } }, usesOnChanges: true, ngImport: i0, template: ``, isInline: true });
720
745
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SearchBarComponent, decorators: [{
721
746
  type: Component,
722
747
  args: [{
723
- selector: 'kendo-searchbar',
724
- template: `
725
- <input #input
726
- autocomplete="off"
727
- [id]="id"
728
- [disabled]="disabled"
729
- [readonly]="readonly"
730
- [placeholder]="placeholder"
731
- class="k-input-inner"
732
- (input)="handleInput($event)"
733
- (keydown)="handleKeydown($event)"
734
- [kendoEventsOutsideAngular]="{
735
- focus: handleFocus,
736
- blur: handleBlur
737
- }"
738
- [scope]="this"
739
- [attr.tabIndex]="tabIndex"
740
- [attr.dir]="direction"
741
- [attr.role]="role"
742
- aria-haspopup="listbox"
743
- [attr.aria-expanded]="ariaExpanded"
744
- [attr.aria-controls]="ariaControls"
745
- [attr.aria-describedby]="tagListId"
746
- [attr.aria-activedescendant]="activeDescendant"
747
- [attr.aria-busy]="isLoading"
748
- [attr.aria-invalid]="formControl?.invalid"
749
- [attr.required]="isRequired ? '' : null"
750
- />
751
- `
748
+ selector: 'input[kendoSearchbar]',
749
+ template: ``
752
750
  }]
753
- }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i0.Injector }]; }, propDecorators: { id: [{
754
- type: Input
755
- }], tagListId: [{
756
- type: Input
757
- }], activeDescendant: [{
758
- type: Input
759
- }], disabled: [{
751
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { tagListId: [{
760
752
  type: Input
761
753
  }], readonly: [{
762
754
  type: Input
763
- }], tabIndex: [{
764
- type: Input
765
- }], role: [{
766
- type: Input
767
- }], isLoading: [{
768
- type: Input
769
- }], ariaControls: [{
770
- type: Input
771
- }], ariaExpanded: [{
755
+ }], disabled: [{
772
756
  type: Input
773
757
  }], isRequired: [{
774
758
  type: Input
@@ -782,6 +766,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
782
766
  type: Input
783
767
  }], inputAttributes: [{
784
768
  type: Input
769
+ }], id: [{
770
+ type: HostBinding,
771
+ args: ['attr.id']
772
+ }, {
773
+ type: Input
774
+ }], activeDescendant: [{
775
+ type: HostBinding,
776
+ args: ['attr.aria-activedescendant']
777
+ }, {
778
+ type: Input
779
+ }], tabIndex: [{
780
+ type: HostBinding,
781
+ args: ['attr.tabindex']
782
+ }, {
783
+ type: Input
784
+ }], isLoading: [{
785
+ type: HostBinding,
786
+ args: ['attr.aria-busy']
787
+ }, {
788
+ type: Input
789
+ }], ariaControls: [{
790
+ type: HostBinding,
791
+ args: ['attr.aria-controls']
792
+ }, {
793
+ type: Input
794
+ }], ariaExpanded: [{
795
+ type: HostBinding,
796
+ args: ['attr.aria-expanded']
797
+ }, {
798
+ type: Input
799
+ }], attrAriaInvalid: [{
800
+ type: HostBinding,
801
+ args: ['attr.aria-invalid']
802
+ }], placeholder: [{
803
+ type: HostBinding,
804
+ args: ['attr.placeholder']
805
+ }, {
806
+ type: Input
807
+ }], role: [{
808
+ type: HostBinding,
809
+ args: ['attr.role']
810
+ }], dir: [{
811
+ type: HostBinding,
812
+ args: ['attr.dir']
785
813
  }], valueChange: [{
786
814
  type: Output
787
815
  }], onBlur: [{
@@ -792,14 +820,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
792
820
  type: Output
793
821
  }], onNavigate: [{
794
822
  type: Output
795
- }], input: [{
796
- type: ViewChild,
797
- args: ['input', { static: true }]
798
- }], searchBarClass: [{
799
- type: HostBinding,
800
- args: ['class.k-searchbar']
801
- }], placeholder: [{
802
- type: Input
803
823
  }] } });
804
824
 
805
825
  /**
@@ -4098,8 +4118,8 @@ AutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
4098
4118
  </ng-template>
4099
4119
  </span>
4100
4120
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
4101
- <kendo-searchbar #searchbar
4102
- [role]="'combobox'"
4121
+ <input
4122
+ kendoSearchbar
4103
4123
  [ariaExpanded]="isOpen"
4104
4124
  [isSuggestable]="suggest"
4105
4125
  [isFilterable]="filterable"
@@ -4120,7 +4140,7 @@ AutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
4120
4140
  (onBlur)="handleInputBlur()"
4121
4141
  (onFocus)="handleInputFocus()"
4122
4142
  (click)="handleClick()"
4123
- ></kendo-searchbar>
4143
+ />
4124
4144
  <span
4125
4145
  *ngIf="!loading && !readonly && (clearButton && text?.length)"
4126
4146
  class="k-clear-value"
@@ -4210,7 +4230,7 @@ AutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
4210
4230
  }">
4211
4231
  </ng-template>
4212
4232
  </ng-template>
4213
- `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "kendo-searchbar", inputs: ["id", "tagListId", "activeDescendant", "disabled", "readonly", "tabIndex", "role", "isLoading", "ariaControls", "ariaExpanded", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
4233
+ `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "input[kendoSearchbar]", inputs: ["tagListId", "readonly", "disabled", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "id", "activeDescendant", "tabIndex", "isLoading", "ariaControls", "ariaExpanded", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
4214
4234
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoCompleteComponent, decorators: [{
4215
4235
  type: Component,
4216
4236
  args: [{
@@ -4261,8 +4281,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4261
4281
  </ng-template>
4262
4282
  </span>
4263
4283
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
4264
- <kendo-searchbar #searchbar
4265
- [role]="'combobox'"
4284
+ <input
4285
+ kendoSearchbar
4266
4286
  [ariaExpanded]="isOpen"
4267
4287
  [isSuggestable]="suggest"
4268
4288
  [isFilterable]="filterable"
@@ -4283,7 +4303,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4283
4303
  (onBlur)="handleInputBlur()"
4284
4304
  (onFocus)="handleInputFocus()"
4285
4305
  (click)="handleClick()"
4286
- ></kendo-searchbar>
4306
+ />
4287
4307
  <span
4288
4308
  *ngIf="!loading && !readonly && (clearButton && text?.length)"
4289
4309
  class="k-clear-value"
@@ -6098,8 +6118,8 @@ ComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
6098
6118
  </ng-template>
6099
6119
  </span>
6100
6120
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
6101
- <kendo-searchbar #searchbar
6102
- [role]="'combobox'"
6121
+ <input
6122
+ kendoSearchbar
6103
6123
  [ariaExpanded]="isOpen"
6104
6124
  [ariaControls]="ariaControls"
6105
6125
  [id]="focusableId"
@@ -6120,7 +6140,7 @@ ComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
6120
6140
  (onBlur)="handleInputBlur()"
6121
6141
  (onFocus)="handleInputFocus()"
6122
6142
  (click)="handleClick()"
6123
- ></kendo-searchbar>
6143
+ />
6124
6144
  <span
6125
6145
  *ngIf="clearButton && !loading && !disabled && !readonly && text?.length"
6126
6146
  class="k-clear-value"
@@ -6230,7 +6250,7 @@ ComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
6230
6250
  }">
6231
6251
  </ng-template>
6232
6252
  </ng-template>
6233
- `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "kendo-searchbar", inputs: ["id", "tagListId", "activeDescendant", "disabled", "readonly", "tabIndex", "role", "isLoading", "ariaControls", "ariaExpanded", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "directive", type: i12.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
6253
+ `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "input[kendoSearchbar]", inputs: ["tagListId", "readonly", "disabled", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "id", "activeDescendant", "tabIndex", "isLoading", "ariaControls", "ariaExpanded", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "directive", type: i12.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
6234
6254
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ComboBoxComponent, decorators: [{
6235
6255
  type: Component,
6236
6256
  args: [{
@@ -6285,8 +6305,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6285
6305
  </ng-template>
6286
6306
  </span>
6287
6307
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
6288
- <kendo-searchbar #searchbar
6289
- [role]="'combobox'"
6308
+ <input
6309
+ kendoSearchbar
6290
6310
  [ariaExpanded]="isOpen"
6291
6311
  [ariaControls]="ariaControls"
6292
6312
  [id]="focusableId"
@@ -6307,7 +6327,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6307
6327
  (onBlur)="handleInputBlur()"
6308
6328
  (onFocus)="handleInputFocus()"
6309
6329
  (click)="handleClick()"
6310
- ></kendo-searchbar>
6330
+ />
6311
6331
  <span
6312
6332
  *ngIf="clearButton && !loading && !disabled && !readonly && text?.length"
6313
6333
  class="k-clear-value"
@@ -10713,12 +10733,11 @@ MultiSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
10713
10733
  (removeTag)="handleRemoveTag($event)"
10714
10734
  >
10715
10735
  </kendo-taglist>
10716
- <kendo-searchbar
10717
- #searchbar
10718
- [ariaExpanded]="isOpen"
10736
+ <input
10737
+ kendoSearchbar
10719
10738
  [ariaControls]="ariaControls"
10739
+ [ariaExpanded]="isOpen"
10720
10740
  [id]="focusableId"
10721
- [role]="'combobox'"
10722
10741
  [tagListId]="tagListId"
10723
10742
  [isLoading]="loading"
10724
10743
  [isFilterable]="filterable"
@@ -10735,8 +10754,7 @@ MultiSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
10735
10754
  (onBlur)="handleInputBlur()"
10736
10755
  (onFocus)="handleInputFocus()"
10737
10756
  (click)="handleClick()"
10738
- >
10739
- </kendo-searchbar>
10757
+ />
10740
10758
  </div>
10741
10759
 
10742
10760
  <span
@@ -10861,7 +10879,7 @@ MultiSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
10861
10879
  }">
10862
10880
  </ng-template>
10863
10881
  </ng-template>
10864
- `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "directive", type: SelectableDirective, selector: "[kendoDropDownsSelectable]", inputs: ["index", "checkboxes", "height", "isMultiselect", "multipleSelection"] }, { kind: "component", type: SearchBarComponent, selector: "kendo-searchbar", inputs: ["id", "tagListId", "activeDescendant", "disabled", "readonly", "tabIndex", "role", "isLoading", "ariaControls", "ariaExpanded", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: TagListComponent, selector: "kendo-taglist", inputs: ["tags", "textField", "valueField", "valueDepth", "focused", "template", "groupTemplate", "disabled", "tagPrefix", "id", "size", "rounded", "fillMode", "disabledIndices"], outputs: ["removeTag"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
10882
+ `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "directive", type: SelectableDirective, selector: "[kendoDropDownsSelectable]", inputs: ["index", "checkboxes", "height", "isMultiselect", "multipleSelection"] }, { kind: "component", type: SearchBarComponent, selector: "input[kendoSearchbar]", inputs: ["tagListId", "readonly", "disabled", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "id", "activeDescendant", "tabIndex", "isLoading", "ariaControls", "ariaExpanded", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: TagListComponent, selector: "kendo-taglist", inputs: ["tags", "textField", "valueField", "valueDepth", "focused", "template", "groupTemplate", "disabled", "tagPrefix", "id", "size", "rounded", "fillMode", "disabledIndices"], outputs: ["removeTag"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
10865
10883
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiSelectComponent, decorators: [{
10866
10884
  type: Component,
10867
10885
  args: [{
@@ -10934,12 +10952,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10934
10952
  (removeTag)="handleRemoveTag($event)"
10935
10953
  >
10936
10954
  </kendo-taglist>
10937
- <kendo-searchbar
10938
- #searchbar
10939
- [ariaExpanded]="isOpen"
10955
+ <input
10956
+ kendoSearchbar
10940
10957
  [ariaControls]="ariaControls"
10958
+ [ariaExpanded]="isOpen"
10941
10959
  [id]="focusableId"
10942
- [role]="'combobox'"
10943
10960
  [tagListId]="tagListId"
10944
10961
  [isLoading]="loading"
10945
10962
  [isFilterable]="filterable"
@@ -10956,8 +10973,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10956
10973
  (onBlur)="handleInputBlur()"
10957
10974
  (onFocus)="handleInputFocus()"
10958
10975
  (click)="handleClick()"
10959
- >
10960
- </kendo-searchbar>
10976
+ />
10961
10977
  </div>
10962
10978
 
10963
10979
  <span
@@ -11579,11 +11595,10 @@ MultiColumnComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
11579
11595
  </ng-template>
11580
11596
  </span>
11581
11597
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
11582
- <kendo-searchbar
11583
- #searchbar
11584
- [role]="'combobox'"
11585
- [ariaExpanded]="isOpen"
11598
+ <input
11599
+ kendoSearchbar
11586
11600
  [ariaControls]="ariaControls"
11601
+ [ariaExpanded]="isOpen"
11587
11602
  [id]="focusableId"
11588
11603
  [isLoading]="loading"
11589
11604
  [isSuggestable]="suggest"
@@ -11602,9 +11617,7 @@ MultiColumnComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
11602
11617
  (onBlur)="handleInputBlur()"
11603
11618
  (onFocus)="handleInputFocus()"
11604
11619
  (click)="handleClick()"
11605
- >
11606
- </kendo-searchbar>
11607
-
11620
+ />
11608
11621
  <span
11609
11622
  *ngIf="clearButton && !loading && !disabled && (!readonly || readonly && isAdaptiveModeEnabled && windowSize !== 'large') && text?.length"
11610
11623
  class="k-clear-value"
@@ -11801,7 +11814,7 @@ MultiColumnComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
11801
11814
  </ng-container>
11802
11815
  </div>
11803
11816
  </ng-template>
11804
- `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "kendo-searchbar", inputs: ["id", "tagListId", "activeDescendant", "disabled", "readonly", "tabIndex", "role", "isLoading", "ariaControls", "ariaExpanded", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "directive", type: i12.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
11817
+ `, isInline: true, dependencies: [{ kind: "component", type: ListComponent, selector: "kendo-list", inputs: ["selected", "focused", "textField", "valueField", "height", "template", "groupTemplate", "fixedGroupTemplate", "show", "id", "optionPrefix", "multipleSelection", "virtual", "type", "checkboxes", "ariaLive", "isMultiselect", "isActionSheetExpanded", "showStickyHeader", "data", "size", "rounded"], outputs: ["onClick", "pageChange", "listResize", "popupListScroll"] }, { kind: "component", type: SearchBarComponent, selector: "input[kendoSearchbar]", inputs: ["tagListId", "readonly", "disabled", "isRequired", "isSuggestable", "isFilterable", "userInput", "suggestedText", "inputAttributes", "id", "activeDescendant", "tabIndex", "isLoading", "ariaControls", "ariaExpanded", "placeholder"], outputs: ["valueChange", "onBlur", "onFocus", "onClick", "onNavigate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: ResponsiveRendererComponent, selector: "responsive-renderer", inputs: ["title", "showActionButtons", "subtitle", "size", "showTextInput", "sharedPopupActionSheetTemplate", "isActionSheetExpanded", "text", "placeholder"], outputs: ["closePopup", "textInputChange", "navigate", "onExpand", "onCollapse", "onApply", "onCancel"] }, { kind: "directive", type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i12.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDropDownListLocalizedMessages],\n [kendoDropDownTreeLocalizedMessages],\n [kendoComboBoxLocalizedMessages],\n [kendoMultiColumnComboBoxLocalizedMessages],\n [kendoAutoCompleteLocalizedMessages],\n [kendoMultiSelectLocalizedMessages],\n [kendoMultiSelectTreeLocalizedMessages]\n " }, { kind: "directive", type: i12.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i14.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.SeparatorComponent, selector: "kendo-separator", inputs: ["orientation"] }, { kind: "directive", type: SharedDropDownEventsDirective, selector: "[kendoDropDownSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }] });
11805
11818
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiColumnComboBoxComponent, decorators: [{
11806
11819
  type: Component,
11807
11820
  args: [{
@@ -11864,11 +11877,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11864
11877
  </ng-template>
11865
11878
  </span>
11866
11879
  <kendo-separator *ngIf="prefixTemplate && prefixTemplate.showSeparator"></kendo-separator>
11867
- <kendo-searchbar
11868
- #searchbar
11869
- [role]="'combobox'"
11870
- [ariaExpanded]="isOpen"
11880
+ <input
11881
+ kendoSearchbar
11871
11882
  [ariaControls]="ariaControls"
11883
+ [ariaExpanded]="isOpen"
11872
11884
  [id]="focusableId"
11873
11885
  [isLoading]="loading"
11874
11886
  [isSuggestable]="suggest"
@@ -11887,9 +11899,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11887
11899
  (onBlur)="handleInputBlur()"
11888
11900
  (onFocus)="handleInputFocus()"
11889
11901
  (click)="handleClick()"
11890
- >
11891
- </kendo-searchbar>
11892
-
11902
+ />
11893
11903
  <span
11894
11904
  *ngIf="clearButton && !loading && !disabled && (!readonly || readonly && isAdaptiveModeEnabled && windowSize !== 'large') && text?.length"
11895
11905
  class="k-clear-value"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "16.3.0",
3
+ "version": "16.3.1-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",
@@ -25,17 +25,17 @@
25
25
  "@angular/forms": "15 - 18",
26
26
  "@angular/platform-browser": "15 - 18",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "16.3.0",
29
- "@progress/kendo-angular-l10n": "16.3.0",
30
- "@progress/kendo-angular-navigation": "16.3.0",
31
- "@progress/kendo-angular-popup": "16.3.0",
32
- "@progress/kendo-angular-icons": "16.3.0",
33
- "@progress/kendo-angular-treeview": "16.3.0",
28
+ "@progress/kendo-angular-common": "16.3.1-develop.1",
29
+ "@progress/kendo-angular-l10n": "16.3.1-develop.1",
30
+ "@progress/kendo-angular-navigation": "16.3.1-develop.1",
31
+ "@progress/kendo-angular-popup": "16.3.1-develop.1",
32
+ "@progress/kendo-angular-icons": "16.3.1-develop.1",
33
+ "@progress/kendo-angular-treeview": "16.3.1-develop.1",
34
34
  "rxjs": "^6.5.3 || ^7.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "16.3.0",
38
+ "@progress/kendo-angular-schematics": "16.3.1-develop.1",
39
39
  "@progress/kendo-common": "^0.2.1"
40
40
  },
41
41
  "schematics": "./schematics/collection.json",
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
6
6
  // peers of the treeview
7
- '@progress/kendo-angular-inputs': '16.3.0',
7
+ '@progress/kendo-angular-inputs': '16.3.1-develop.1',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '16.3.0',
9
+ '@progress/kendo-angular-intl': '16.3.1-develop.1',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^3.0.0'