@progress/kendo-angular-inputs 15.1.0-develop.3 → 15.1.0-develop.4

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-inputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1708526945,
13
- version: '15.1.0-develop.3',
12
+ publishDate: 1708595684,
13
+ version: '15.1.0-develop.4',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -5,7 +5,7 @@
5
5
  /* eslint-disable @typescript-eslint/no-explicit-any */
6
6
  import { isJapanese } from './../shared/utils';
7
7
  import { NG_VALUE_ACCESSOR, NgControl } from '@angular/forms';
8
- import { Component, ElementRef, forwardRef, Input, Output, EventEmitter, HostBinding, ViewChild, NgZone, ChangeDetectorRef, Injector, ContentChild, Renderer2 } from '@angular/core';
8
+ import { Component, ElementRef, forwardRef, Input, Output, EventEmitter, HostBinding, ViewChild, NgZone, ChangeDetectorRef, Injector, ContentChild, Renderer2, ContentChildren, QueryList } from '@angular/core';
9
9
  import { validatePackage } from '@progress/kendo-licensing';
10
10
  import { packageMetadata } from '../package-metadata';
11
11
  import { invokeElementMethod } from '../common/dom-utils';
@@ -304,8 +304,9 @@ export class TextBoxComponent {
304
304
  });
305
305
  }
306
306
  ngAfterContentInit() {
307
- this.prefix = this.textBoxPrefixTemplate || this.prefixTemplate;
308
- this.suffix = this.textBoxSuffixTemplate || this.suffixTemplate;
307
+ this.configureAdornments();
308
+ this.subscriptions.add(this.textBoxPrefixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
309
+ this.subscriptions.add(this.textBoxSuffixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
309
310
  }
310
311
  ngOnChanges(changes) {
311
312
  if (changes['disabled'] || changes['readonly'] || changes['value']) {
@@ -583,6 +584,10 @@ export class TextBoxComponent {
583
584
  this.renderer.addClass(elem, classes.toAdd);
584
585
  }
585
586
  }
587
+ configureAdornments() {
588
+ this.prefix = this.textBoxPrefixTemplate.first || this.prefixTemplate;
589
+ this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
590
+ }
586
591
  }
587
592
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
588
593
  TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
@@ -594,7 +599,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
594
599
  multi: true
595
600
  },
596
601
  { provide: KendoInput, useExisting: forwardRef(() => TextBoxComponent) }
597
- ], queries: [{ propertyName: "textBoxSuffixTemplate", first: true, predicate: TextBoxSuffixTemplateDirective, descendants: true }, { propertyName: "textBoxPrefixTemplate", first: true, predicate: TextBoxPrefixTemplateDirective, descendants: true }, { propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
602
+ ], queries: [{ propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }, { propertyName: "textBoxSuffixTemplate", predicate: TextBoxSuffixTemplateDirective }, { propertyName: "textBoxPrefixTemplate", predicate: TextBoxPrefixTemplateDirective }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
598
603
  <ng-container kendoTextBoxLocalizedMessages
599
604
  i18n-clear="kendo.textbox.clear|The title for the **Clear** button in the TextBox."
600
605
  clear="Clear">
@@ -827,11 +832,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
827
832
  type: ViewChild,
828
833
  args: ['input', { static: true }]
829
834
  }], textBoxSuffixTemplate: [{
830
- type: ContentChild,
831
- args: [TextBoxSuffixTemplateDirective]
835
+ type: ContentChildren,
836
+ args: [TextBoxSuffixTemplateDirective, { descendants: false }]
832
837
  }], textBoxPrefixTemplate: [{
833
- type: ContentChild,
834
- args: [TextBoxPrefixTemplateDirective]
838
+ type: ContentChildren,
839
+ args: [TextBoxPrefixTemplateDirective, { descendants: false }]
835
840
  }], suffixTemplate: [{
836
841
  type: ContentChild,
837
842
  args: [SuffixTemplateDirective]
@@ -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 { isDevMode, Directive, Optional, EventEmitter, ElementRef, Component, Input, HostBinding, Output, ViewChild, ContentChild, ViewChildren, forwardRef, Inject, Injectable, HostListener, NgModule, ViewContainerRef, ContentChildren, ChangeDetectionStrategy } from '@angular/core';
6
+ import { isDevMode, Directive, Optional, EventEmitter, ElementRef, Component, Input, HostBinding, Output, ViewChild, ContentChild, ViewChildren, forwardRef, Inject, Injectable, HostListener, NgModule, ContentChildren, ViewContainerRef, ChangeDetectionStrategy } from '@angular/core';
7
7
  import { NgControl, NG_VALUE_ACCESSOR, NG_VALIDATORS, RadioControlValueAccessor } from '@angular/forms';
8
8
  import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } from 'rxjs';
9
9
  import { take, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
@@ -538,8 +538,8 @@ const packageMetadata = {
538
538
  name: '@progress/kendo-angular-inputs',
539
539
  productName: 'Kendo UI for Angular',
540
540
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
541
- publishDate: 1708526945,
542
- version: '15.1.0-develop.3',
541
+ publishDate: 1708595684,
542
+ version: '15.1.0-develop.4',
543
543
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
544
544
  };
545
545
 
@@ -6967,8 +6967,9 @@ class TextBoxComponent {
6967
6967
  });
6968
6968
  }
6969
6969
  ngAfterContentInit() {
6970
- this.prefix = this.textBoxPrefixTemplate || this.prefixTemplate;
6971
- this.suffix = this.textBoxSuffixTemplate || this.suffixTemplate;
6970
+ this.configureAdornments();
6971
+ this.subscriptions.add(this.textBoxPrefixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
6972
+ this.subscriptions.add(this.textBoxSuffixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
6972
6973
  }
6973
6974
  ngOnChanges(changes) {
6974
6975
  if (changes['disabled'] || changes['readonly'] || changes['value']) {
@@ -7246,6 +7247,10 @@ class TextBoxComponent {
7246
7247
  this.renderer.addClass(elem, classes.toAdd);
7247
7248
  }
7248
7249
  }
7250
+ configureAdornments() {
7251
+ this.prefix = this.textBoxPrefixTemplate.first || this.prefixTemplate;
7252
+ this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
7253
+ }
7249
7254
  }
7250
7255
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
7251
7256
  TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
@@ -7257,7 +7262,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
7257
7262
  multi: true
7258
7263
  },
7259
7264
  { provide: KendoInput, useExisting: forwardRef(() => TextBoxComponent) }
7260
- ], queries: [{ propertyName: "textBoxSuffixTemplate", first: true, predicate: TextBoxSuffixTemplateDirective, descendants: true }, { propertyName: "textBoxPrefixTemplate", first: true, predicate: TextBoxPrefixTemplateDirective, descendants: true }, { propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
7265
+ ], queries: [{ propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }, { propertyName: "textBoxSuffixTemplate", predicate: TextBoxSuffixTemplateDirective }, { propertyName: "textBoxPrefixTemplate", predicate: TextBoxPrefixTemplateDirective }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
7261
7266
  <ng-container kendoTextBoxLocalizedMessages
7262
7267
  i18n-clear="kendo.textbox.clear|The title for the **Clear** button in the TextBox."
7263
7268
  clear="Clear">
@@ -7490,11 +7495,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7490
7495
  type: ViewChild,
7491
7496
  args: ['input', { static: true }]
7492
7497
  }], textBoxSuffixTemplate: [{
7493
- type: ContentChild,
7494
- args: [TextBoxSuffixTemplateDirective]
7498
+ type: ContentChildren,
7499
+ args: [TextBoxSuffixTemplateDirective, { descendants: false }]
7495
7500
  }], textBoxPrefixTemplate: [{
7496
- type: ContentChild,
7497
- args: [TextBoxPrefixTemplateDirective]
7501
+ type: ContentChildren,
7502
+ args: [TextBoxPrefixTemplateDirective, { descendants: false }]
7498
7503
  }], suffixTemplate: [{
7499
7504
  type: ContentChild,
7500
7505
  args: [SuffixTemplateDirective]
@@ -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 { isDevMode, Directive, Optional, EventEmitter, ElementRef, Component, Input, HostBinding, Output, ViewChild, ContentChild, ViewChildren, forwardRef, Inject, Injectable, HostListener, NgModule, ViewContainerRef, ContentChildren, ChangeDetectionStrategy } from '@angular/core';
6
+ import { isDevMode, Directive, Optional, EventEmitter, ElementRef, Component, Input, HostBinding, Output, ViewChild, ContentChild, ViewChildren, forwardRef, Inject, Injectable, HostListener, NgModule, ContentChildren, ViewContainerRef, ChangeDetectionStrategy } from '@angular/core';
7
7
  import { NgControl, NG_VALUE_ACCESSOR, NG_VALIDATORS, RadioControlValueAccessor } from '@angular/forms';
8
8
  import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } from 'rxjs';
9
9
  import { take, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
@@ -537,8 +537,8 @@ const packageMetadata = {
537
537
  name: '@progress/kendo-angular-inputs',
538
538
  productName: 'Kendo UI for Angular',
539
539
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
540
- publishDate: 1708526945,
541
- version: '15.1.0-develop.3',
540
+ publishDate: 1708595684,
541
+ version: '15.1.0-develop.4',
542
542
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
543
543
  };
544
544
 
@@ -6954,8 +6954,9 @@ class TextBoxComponent {
6954
6954
  });
6955
6955
  }
6956
6956
  ngAfterContentInit() {
6957
- this.prefix = this.textBoxPrefixTemplate || this.prefixTemplate;
6958
- this.suffix = this.textBoxSuffixTemplate || this.suffixTemplate;
6957
+ this.configureAdornments();
6958
+ this.subscriptions.add(this.textBoxPrefixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
6959
+ this.subscriptions.add(this.textBoxSuffixTemplate.changes.subscribe(this.configureAdornments.bind(this)));
6959
6960
  }
6960
6961
  ngOnChanges(changes) {
6961
6962
  if (changes['disabled'] || changes['readonly'] || changes['value']) {
@@ -7233,6 +7234,10 @@ class TextBoxComponent {
7233
7234
  this.renderer.addClass(elem, classes.toAdd);
7234
7235
  }
7235
7236
  }
7237
+ configureAdornments() {
7238
+ this.prefix = this.textBoxPrefixTemplate.first || this.prefixTemplate;
7239
+ this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
7240
+ }
7236
7241
  }
7237
7242
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
7238
7243
  TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
@@ -7244,7 +7249,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
7244
7249
  multi: true
7245
7250
  },
7246
7251
  { provide: KendoInput, useExisting: forwardRef(() => TextBoxComponent) }
7247
- ], queries: [{ propertyName: "textBoxSuffixTemplate", first: true, predicate: TextBoxSuffixTemplateDirective, descendants: true }, { propertyName: "textBoxPrefixTemplate", first: true, predicate: TextBoxPrefixTemplateDirective, descendants: true }, { propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
7252
+ ], queries: [{ propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }, { propertyName: "textBoxSuffixTemplate", predicate: TextBoxSuffixTemplateDirective }, { propertyName: "textBoxPrefixTemplate", predicate: TextBoxPrefixTemplateDirective }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
7248
7253
  <ng-container kendoTextBoxLocalizedMessages
7249
7254
  i18n-clear="kendo.textbox.clear|The title for the **Clear** button in the TextBox."
7250
7255
  clear="Clear">
@@ -7477,11 +7482,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7477
7482
  type: ViewChild,
7478
7483
  args: ['input', { static: true }]
7479
7484
  }], textBoxSuffixTemplate: [{
7480
- type: ContentChild,
7481
- args: [TextBoxSuffixTemplateDirective]
7485
+ type: ContentChildren,
7486
+ args: [TextBoxSuffixTemplateDirective, { descendants: false }]
7482
7487
  }], textBoxPrefixTemplate: [{
7483
- type: ContentChild,
7484
- args: [TextBoxPrefixTemplateDirective]
7488
+ type: ContentChildren,
7489
+ args: [TextBoxPrefixTemplateDirective, { descendants: false }]
7485
7490
  }], suffixTemplate: [{
7486
7491
  type: ContentChild,
7487
7492
  args: [SuffixTemplateDirective]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "15.1.0-develop.3",
3
+ "version": "15.1.0-develop.4",
4
4
  "description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,19 +34,19 @@
34
34
  "@angular/platform-browser": "13 - 17",
35
35
  "@progress/kendo-drawing": "^1.19.0",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "15.1.0-develop.3",
38
- "@progress/kendo-angular-common": "15.1.0-develop.3",
39
- "@progress/kendo-angular-dialog": "15.1.0-develop.3",
40
- "@progress/kendo-angular-intl": "15.1.0-develop.3",
41
- "@progress/kendo-angular-l10n": "15.1.0-develop.3",
42
- "@progress/kendo-angular-popup": "15.1.0-develop.3",
43
- "@progress/kendo-angular-icons": "15.1.0-develop.3",
37
+ "@progress/kendo-angular-buttons": "15.1.0-develop.4",
38
+ "@progress/kendo-angular-common": "15.1.0-develop.4",
39
+ "@progress/kendo-angular-dialog": "15.1.0-develop.4",
40
+ "@progress/kendo-angular-intl": "15.1.0-develop.4",
41
+ "@progress/kendo-angular-l10n": "15.1.0-develop.4",
42
+ "@progress/kendo-angular-popup": "15.1.0-develop.4",
43
+ "@progress/kendo-angular-icons": "15.1.0-develop.4",
44
44
  "rxjs": "^6.5.3 || ^7.0.0",
45
- "@progress/kendo-angular-upload": "15.1.0-develop.3"
45
+ "@progress/kendo-angular-upload": "15.1.0-develop.4"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.3.1",
49
- "@progress/kendo-angular-schematics": "15.1.0-develop.3",
49
+ "@progress/kendo-angular-schematics": "15.1.0-develop.4",
50
50
  "@progress/kendo-common": "^0.2.2",
51
51
  "@progress/kendo-draggable": "^3.0.0",
52
52
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Subscription } from 'rxjs';
6
6
  import { ControlValueAccessor, NgControl } from '@angular/forms';
7
- import { ElementRef, EventEmitter, NgZone, ChangeDetectorRef, Injector, Renderer2, SimpleChanges } from '@angular/core';
7
+ import { ElementRef, EventEmitter, NgZone, ChangeDetectorRef, Injector, Renderer2, SimpleChanges, QueryList } from '@angular/core';
8
8
  import { IconShowOptions } from './models/icon-show-options';
9
9
  import { SuffixTemplateDirective, PrefixTemplateDirective } from '@progress/kendo-angular-common';
10
10
  import { TextBoxSuffixTemplateDirective } from './textbox-suffix.directive';
@@ -230,11 +230,11 @@ export declare class TextBoxComponent implements ControlValueAccessor {
230
230
  /**
231
231
  * @hidden
232
232
  */
233
- textBoxSuffixTemplate: TextBoxSuffixTemplateDirective;
233
+ textBoxSuffixTemplate: QueryList<TextBoxSuffixTemplateDirective>;
234
234
  /**
235
235
  * @hidden
236
236
  */
237
- textBoxPrefixTemplate: TextBoxPrefixTemplateDirective;
237
+ textBoxPrefixTemplate: QueryList<TextBoxPrefixTemplateDirective>;
238
238
  /**
239
239
  * @hidden
240
240
  */
@@ -255,12 +255,12 @@ export declare class TextBoxComponent implements ControlValueAccessor {
255
255
  */
256
256
  clearButtonClicked: boolean;
257
257
  /**
258
- * @hidden
259
- */
258
+ * @hidden
259
+ */
260
260
  suffix: TextBoxSuffixTemplateDirective | SuffixTemplateDirective;
261
261
  /**
262
- * @hidden
263
- */
262
+ * @hidden
263
+ */
264
264
  prefix: TextBoxPrefixTemplateDirective | PrefixTemplateDirective;
265
265
  protected control: NgControl;
266
266
  protected subscriptions: Subscription;
@@ -409,6 +409,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
409
409
  */
410
410
  handleBlur(): void;
411
411
  private handleClasses;
412
+ private configureAdornments;
412
413
  static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
413
- static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": "focusableId"; "title": "title"; "type": "type"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "value": "value"; "selectOnFocus": "selectOnFocus"; "showSuccessIcon": "showSuccessIcon"; "showErrorIcon": "showErrorIcon"; "clearButton": "clearButton"; "successIcon": "successIcon"; "successSvgIcon": "successSvgIcon"; "errorIcon": "errorIcon"; "errorSvgIcon": "errorSvgIcon"; "clearButtonIcon": "clearButtonIcon"; "clearButtonSvgIcon": "clearButtonSvgIcon"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "maxlength": "maxlength"; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["textBoxSuffixTemplate", "textBoxPrefixTemplate", "suffixTemplate", "prefixTemplate"], never>;
414
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": "focusableId"; "title": "title"; "type": "type"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "value": "value"; "selectOnFocus": "selectOnFocus"; "showSuccessIcon": "showSuccessIcon"; "showErrorIcon": "showErrorIcon"; "clearButton": "clearButton"; "successIcon": "successIcon"; "successSvgIcon": "successSvgIcon"; "errorIcon": "errorIcon"; "errorSvgIcon": "errorSvgIcon"; "clearButtonIcon": "clearButtonIcon"; "clearButtonSvgIcon": "clearButtonSvgIcon"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "maxlength": "maxlength"; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["suffixTemplate", "prefixTemplate", "textBoxSuffixTemplate", "textBoxPrefixTemplate"], never>;
414
415
  }