@progress/kendo-angular-inputs 24.0.0-develop.26 → 24.0.0-develop.27

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.
@@ -583,8 +583,8 @@ const packageMetadata = {
583
583
  productName: 'Kendo UI for Angular',
584
584
  productCode: 'KENDOUIANGULAR',
585
585
  productCodes: ['KENDOUIANGULAR'],
586
- publishDate: 1778594697,
587
- version: '24.0.0-develop.26',
586
+ publishDate: 1778613079,
587
+ version: '24.0.0-develop.27',
588
588
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
589
589
  };
590
590
 
@@ -7774,7 +7774,6 @@ class TextBoxComponent {
7774
7774
  get disabledClass() {
7775
7775
  return this.disabled;
7776
7776
  }
7777
- hostClasses = true;
7778
7777
  direction;
7779
7778
  /**
7780
7779
  * @hidden
@@ -7824,8 +7823,12 @@ class TextBoxComponent {
7824
7823
  this.hostElement = hostElement;
7825
7824
  validatePackage(packageMetadata);
7826
7825
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
7826
+ this.renderer.addClass(this.hostElement.nativeElement, 'k-textbox');
7827
+ this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
7827
7828
  }
7828
7829
  ngOnInit() {
7830
+ this.renderer.addClass(this.hostElement.nativeElement, 'k-textbox');
7831
+ this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
7829
7832
  this.control = this.injector.get(NgControl, null);
7830
7833
  this.checkClearButton();
7831
7834
  this.subscriptions = this.localizationService.changes.subscribe(({ rtl }) => {
@@ -8171,7 +8174,7 @@ class TextBoxComponent {
8171
8174
  setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
8172
8175
  }
8173
8176
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", 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 });
8174
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TextBoxComponent, isStandalone: true, 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", inputAttributes: "inputAttributes" }, 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: [
8177
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TextBoxComponent, isStandalone: true, 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", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "attr.dir": "this.direction" } }, providers: [
8175
8178
  LocalizationService,
8176
8179
  { provide: L10N_PREFIX, useValue: 'kendo.textbox' },
8177
8180
  {
@@ -8456,12 +8459,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
8456
8459
  }], disabledClass: [{
8457
8460
  type: HostBinding,
8458
8461
  args: ['class.k-disabled']
8459
- }], hostClasses: [{
8460
- type: HostBinding,
8461
- args: ['class.k-textbox']
8462
- }, {
8463
- type: HostBinding,
8464
- args: ['class.k-input']
8465
8462
  }], direction: [{
8466
8463
  type: HostBinding,
8467
8464
  args: ['attr.dir']
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1778594697,
11
- "version": "24.0.0-develop.26",
10
+ "publishDate": 1778613079,
11
+ "version": "24.0.0-develop.27",
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-inputs",
3
- "version": "24.0.0-develop.26",
3
+ "version": "24.0.0-develop.27",
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",
@@ -55,7 +55,7 @@
55
55
  "package": {
56
56
  "productName": "Kendo UI for Angular",
57
57
  "productCode": "KENDOUIANGULAR",
58
- "publishDate": 1778594697,
58
+ "publishDate": 1778613079,
59
59
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
60
60
  }
61
61
  },
@@ -67,20 +67,20 @@
67
67
  "@angular/platform-browser": "19 - 21",
68
68
  "@progress/kendo-drawing": "^1.25.0",
69
69
  "@progress/kendo-licensing": "^1.11.0",
70
- "@progress/kendo-angular-buttons": "24.0.0-develop.26",
71
- "@progress/kendo-angular-common": "24.0.0-develop.26",
72
- "@progress/kendo-angular-utils": "24.0.0-develop.26",
73
- "@progress/kendo-angular-navigation": "24.0.0-develop.26",
74
- "@progress/kendo-angular-dialog": "24.0.0-develop.26",
75
- "@progress/kendo-angular-intl": "24.0.0-develop.26",
76
- "@progress/kendo-angular-l10n": "24.0.0-develop.26",
77
- "@progress/kendo-angular-popup": "24.0.0-develop.26",
78
- "@progress/kendo-angular-icons": "24.0.0-develop.26",
70
+ "@progress/kendo-angular-buttons": "24.0.0-develop.27",
71
+ "@progress/kendo-angular-common": "24.0.0-develop.27",
72
+ "@progress/kendo-angular-utils": "24.0.0-develop.27",
73
+ "@progress/kendo-angular-navigation": "24.0.0-develop.27",
74
+ "@progress/kendo-angular-dialog": "24.0.0-develop.27",
75
+ "@progress/kendo-angular-intl": "24.0.0-develop.27",
76
+ "@progress/kendo-angular-l10n": "24.0.0-develop.27",
77
+ "@progress/kendo-angular-popup": "24.0.0-develop.27",
78
+ "@progress/kendo-angular-icons": "24.0.0-develop.27",
79
79
  "rxjs": "^6.5.3 || ^7.0.0"
80
80
  },
81
81
  "dependencies": {
82
82
  "tslib": "^2.3.1",
83
- "@progress/kendo-angular-schematics": "24.0.0-develop.26",
83
+ "@progress/kendo-angular-schematics": "24.0.0-develop.27",
84
84
  "@progress/kendo-common": "^1.0.1",
85
85
  "@progress/kendo-draggable": "^3.0.0",
86
86
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -194,7 +194,6 @@ export declare class TextBoxComponent implements ControlValueAccessor {
194
194
  */
195
195
  prefixTemplate: PrefixTemplateDirective;
196
196
  get disabledClass(): boolean;
197
- hostClasses: boolean;
198
197
  direction: string;
199
198
  /**
200
199
  * @hidden