@progress/kendo-angular-inputs 8.0.2-dev.202201211313 → 8.0.3-dev.202202071246

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.
Files changed (33) hide show
  1. package/dist/cdn/js/kendo-angular-inputs.js +1 -1
  2. package/dist/cdn/main.js +1 -1
  3. package/dist/es/colorpicker/color-input.component.js +1 -1
  4. package/dist/es/colorpicker/colorpicker.component.js +11 -10
  5. package/dist/es/colorpicker/flatcolorpicker-actions.component.js +1 -1
  6. package/dist/es/colorpicker/flatcolorpicker-header.component.js +1 -1
  7. package/dist/es/package-metadata.js +1 -1
  8. package/dist/es/textarea/textarea-suffix.component.js +1 -1
  9. package/dist/es/textarea/textarea.component.js +17 -3
  10. package/dist/es/textbox/textbox.component.js +2 -2
  11. package/dist/es2015/colorpicker/color-input.component.js +1 -0
  12. package/dist/es2015/colorpicker/colorpicker.component.d.ts +0 -4
  13. package/dist/es2015/colorpicker/colorpicker.component.js +11 -11
  14. package/dist/es2015/colorpicker/flatcolorpicker-actions.component.js +2 -0
  15. package/dist/es2015/colorpicker/flatcolorpicker-header.component.js +2 -0
  16. package/dist/es2015/index.metadata.json +1 -1
  17. package/dist/es2015/package-metadata.js +1 -1
  18. package/dist/es2015/textarea/textarea-suffix.component.js +1 -1
  19. package/dist/es2015/textarea/textarea.component.d.ts +1 -0
  20. package/dist/es2015/textarea/textarea.component.js +18 -7
  21. package/dist/es2015/textbox/textbox.component.js +2 -2
  22. package/dist/fesm2015/index.js +38 -22
  23. package/dist/fesm5/index.js +35 -20
  24. package/dist/npm/colorpicker/color-input.component.js +1 -1
  25. package/dist/npm/colorpicker/colorpicker.component.js +11 -10
  26. package/dist/npm/colorpicker/flatcolorpicker-actions.component.js +1 -1
  27. package/dist/npm/colorpicker/flatcolorpicker-header.component.js +1 -1
  28. package/dist/npm/package-metadata.js +1 -1
  29. package/dist/npm/textarea/textarea-suffix.component.js +1 -1
  30. package/dist/npm/textarea/textarea.component.js +17 -3
  31. package/dist/npm/textbox/textbox.component.js +2 -2
  32. package/dist/systemjs/kendo-angular-inputs.js +1 -1
  33. package/package.json +1 -1
@@ -477,12 +477,6 @@ var ColorPickerComponent = /** @class */ (function () {
477
477
  _this.isFocused = false;
478
478
  });
479
479
  };
480
- /**
481
- * @hidden
482
- */
483
- ColorPickerComponent.prototype.arrowButtonMouseDown = function (ev) {
484
- ev.preventDefault();
485
- };
486
480
  /**
487
481
  * Clears the value of the ColorPicker.
488
482
  */
@@ -642,7 +636,8 @@ var ColorPickerComponent = /** @class */ (function () {
642
636
  var _this = this;
643
637
  this.ngZone.onStable.pipe(operators_1.take(1)).subscribe(function () {
644
638
  if (_this.flatColorPicker) {
645
- var elementToFocus = _this.flatColorPicker.gradient ? _this.flatColorPicker.gradient.gradientDragHandle :
639
+ var gradient = _this.flatColorPicker.gradient;
640
+ var elementToFocus = gradient ? gradient.gradientDragHandle :
646
641
  _this.flatColorPicker.palette.host;
647
642
  elementToFocus.nativeElement.focus();
648
643
  }
@@ -682,7 +677,8 @@ var ColorPickerComponent = /** @class */ (function () {
682
677
  Object.defineProperty(ColorPickerComponent.prototype, "firstFocusableElement", {
683
678
  get: function () {
684
679
  if (!this.flatColorPicker.header || (this.views.length <= 1 && !this.flatColorPicker.clearButton)) {
685
- return this.flatColorPicker.gradient ? this.flatColorPicker.gradient.gradientDragHandle : this.flatColorPicker.palette.host;
680
+ var gradient = this.flatColorPicker.gradient;
681
+ return gradient ? gradient.gradientDragHandle : this.flatColorPicker.palette.host;
686
682
  }
687
683
  return this.views.length > 1 ? this.flatColorPicker.header.viewButtonsCollection.toArray()[0] : this.flatColorPicker.header.clearButtonElement;
688
684
  },
@@ -697,7 +693,12 @@ var ColorPickerComponent = /** @class */ (function () {
697
693
  if (this.flatColorPicker.palette) {
698
694
  return this.flatColorPicker.palette.host;
699
695
  }
700
- return this.gradientSettings.opacity ? this.flatColorPicker.gradient.inputs.opacityInput.numericInput : this.flatColorPicker.gradient.inputs.blueInput;
696
+ var gradient = this.flatColorPicker.gradient;
697
+ var inputs = gradient && gradient.inputs;
698
+ if (gradient && inputs && inputs.formatView === 'hex') {
699
+ return inputs.hexInput;
700
+ }
701
+ return this.gradientSettings.opacity ? inputs.opacityInput.numericInput : inputs.blueInput;
701
702
  },
702
703
  enumerable: true,
703
704
  configurable: true
@@ -945,7 +946,7 @@ var ColorPickerComponent = /** @class */ (function () {
945
946
  useValue: 'kendo.colorpicker'
946
947
  }
947
948
  ],
948
- template: "\n <ng-container kendoColorPickerLocalizedMessages\n i18n-colorPickerNoColor=\"kendo.colorpicker.colorPickerNoColor|The aria-label applied to the ColorPicker component when the value is empty.\"\n colorPickerNoColor=\"Colorpicker no color chosen\"\n i18n-flatColorPickerNoColor=\"kendo.colorpicker.flatColorPickerNoColor|The aria-label applied to the FlatColorPicker component when the value is empty.\"\n flatColorPickerNoColor=\"Flatcolorpicker no color chosen\"\n i18n-colorGradientNoColor=\"kendo.colorpicker.colorGradientNoColor|The aria-label applied to the ColorGradient component when the value is empty.\"\n colorGradientNoColor=\"Colorgradient no color chosen\"\n i18n-colorPaletteNoColor=\"kendo.colorpicker.colorPaletteNoColor|The aria-label applied to the ColorPalette component when the value is empty.\"\n colorPaletteNoColor=\"Colorpalette no color chosen\"\n i18n-colorGradientHandle=\"kendo.colorpicker.colorGradientHandle|The title for the gradient color drag handle chooser.\"\n colorGradientHandle=\"Choose color\"\n i18n-clearButton=\"kendo.colorpicker.clearButton|The title for the clear button.\"\n clearButton=\"Clear value\"\n i18n-hueSliderHandle=\"kendo.colorpicker.hueSliderHandle|The title for the hue slider handle.\"\n hueSliderHandle=\"Set hue\"\n i18n-opacitySliderHandle=\"kendo.colorpicker.opacitySliderHandle|The title for the opacity slider handle.\"\n opacitySliderHandle=\"Set opacity\"\n i18n-contrastRatio=\"kendo.colorpicker.contrastRatio|The contrast ratio message for the contrast tool.\"\n contrastRatio=\"Contrast ratio\"\n i18n-previewColor=\"kendo.colorpicker.previewColor|The message for the color preview pane.\"\n previewColor=\"Color preview\"\n i18n-revertSelection=\"kendo.colorpicker.revertSelection|The message for the selected color pane.\"\n revertSelection=\"Revert selection\"\n i18n-gradientView=\"kendo.colorpicker.gradientView|The message for the gradient view button.\"\n gradientView=\"Gradient view\"\n i18n-paletteView=\"kendo.colorpicker.paletteView|The message for the palette view button.\"\n paletteView=\"Palette view\"\n i18n-formatButton=\"kendo.colorpicker.formatButton|The message for the input format toggle button.\"\n formatButton=\"Change color format\"\n i18n-applyButton=\"kendo.colorpicker.applyButton|The message for the Apply action button.\"\n applyButton=\"Apply\"\n i18n-cancelButton=\"kendo.colorpicker.cancelButton|The message for the Cancel action button.\"\n cancelButton=\"Cancel\">\n </ng-container>\n <span #activeColor class=\"k-input-inner\">\n <span\n class=\"k-value-icon k-color-preview\"\n [ngClass]=\"{'k-icon-color-preview': iconStyles, 'k-no-color': !value}\">\n <span *ngIf=\"iconClass || icon\" class=\"k-color-preview-icon k-icon\" [ngClass]=\"iconStyles\"></span>\n <span class=\"k-color-preview-mask\" [style.background-color]=\"value\"></span>\n </span>\n </span>\n <button\n #arrowButton\n tabindex=\"-1\"\n role=\"button\"\n class=\"k-input-button k-button k-button-md k-button-solid k-button-solid-base k-icon-button\">\n <span class=\"k-button-icon k-icon k-i-arrow-s\"></span>\n </button>\n <ng-template #popupTemplate>\n <kendo-flatcolorpicker\n #flatColorPicker\n [value]=\"value\"\n [format]=\"format\"\n [views]=\"views\"\n [activeView]=\"activeView\"\n [actionsLayout]=\"actionsLayout\"\n [preview]=\"preview\"\n [gradientSettings]=\"gradientSettings\"\n [paletteSettings]=\"paletteSettings\"\n [clearButton]=\"clearButton\"\n (cancel)=\"handleCancelEvent($event)\"\n (focusout)=\"handlePopupBlur($event)\"\n (valueChange)=\"handleValueChange($event)\"\n (keydown)=\"handlePopupKeyDown($event)\"\n (activeViewChange)=\"activeViewChange.emit($event)\"\n (actionButtonClick)=\"togglePopup()\">\n </kendo-flatcolorpicker>\n </ng-template>\n <ng-container #container></ng-container>\n "
949
+ template: "\n <ng-container kendoColorPickerLocalizedMessages\n i18n-colorPickerNoColor=\"kendo.colorpicker.colorPickerNoColor|The aria-label applied to the ColorPicker component when the value is empty.\"\n colorPickerNoColor=\"Colorpicker no color chosen\"\n i18n-flatColorPickerNoColor=\"kendo.colorpicker.flatColorPickerNoColor|The aria-label applied to the FlatColorPicker component when the value is empty.\"\n flatColorPickerNoColor=\"Flatcolorpicker no color chosen\"\n i18n-colorGradientNoColor=\"kendo.colorpicker.colorGradientNoColor|The aria-label applied to the ColorGradient component when the value is empty.\"\n colorGradientNoColor=\"Colorgradient no color chosen\"\n i18n-colorPaletteNoColor=\"kendo.colorpicker.colorPaletteNoColor|The aria-label applied to the ColorPalette component when the value is empty.\"\n colorPaletteNoColor=\"Colorpalette no color chosen\"\n i18n-colorGradientHandle=\"kendo.colorpicker.colorGradientHandle|The title for the gradient color drag handle chooser.\"\n colorGradientHandle=\"Choose color\"\n i18n-clearButton=\"kendo.colorpicker.clearButton|The title for the clear button.\"\n clearButton=\"Clear value\"\n i18n-hueSliderHandle=\"kendo.colorpicker.hueSliderHandle|The title for the hue slider handle.\"\n hueSliderHandle=\"Set hue\"\n i18n-opacitySliderHandle=\"kendo.colorpicker.opacitySliderHandle|The title for the opacity slider handle.\"\n opacitySliderHandle=\"Set opacity\"\n i18n-contrastRatio=\"kendo.colorpicker.contrastRatio|The contrast ratio message for the contrast tool.\"\n contrastRatio=\"Contrast ratio\"\n i18n-previewColor=\"kendo.colorpicker.previewColor|The message for the color preview pane.\"\n previewColor=\"Color preview\"\n i18n-revertSelection=\"kendo.colorpicker.revertSelection|The message for the selected color pane.\"\n revertSelection=\"Revert selection\"\n i18n-gradientView=\"kendo.colorpicker.gradientView|The message for the gradient view button.\"\n gradientView=\"Gradient view\"\n i18n-paletteView=\"kendo.colorpicker.paletteView|The message for the palette view button.\"\n paletteView=\"Palette view\"\n i18n-formatButton=\"kendo.colorpicker.formatButton|The message for the input format toggle button.\"\n formatButton=\"Change color format\"\n i18n-applyButton=\"kendo.colorpicker.applyButton|The message for the Apply action button.\"\n applyButton=\"Apply\"\n i18n-cancelButton=\"kendo.colorpicker.cancelButton|The message for the Cancel action button.\"\n cancelButton=\"Cancel\">\n </ng-container>\n <span #activeColor class=\"k-input-inner\">\n <span\n class=\"k-value-icon k-color-preview\"\n [ngClass]=\"{'k-icon-color-preview': iconStyles, 'k-no-color': !value}\">\n <span *ngIf=\"iconClass || icon\" class=\"k-color-preview-icon k-icon\" [ngClass]=\"iconStyles\"></span>\n <span class=\"k-color-preview-mask\" [style.background-color]=\"value\"></span>\n </span>\n </span>\n <button\n tabindex=\"-1\"\n type=\"button\"\n class=\"k-input-button k-button k-button-md k-button-solid k-button-solid-base k-icon-button\">\n <span class=\"k-button-icon k-icon k-i-arrow-s\"></span>\n </button>\n <ng-template #popupTemplate>\n <kendo-flatcolorpicker\n #flatColorPicker\n [value]=\"value\"\n [format]=\"format\"\n [views]=\"views\"\n [activeView]=\"activeView\"\n [actionsLayout]=\"actionsLayout\"\n [preview]=\"preview\"\n [gradientSettings]=\"gradientSettings\"\n [paletteSettings]=\"paletteSettings\"\n [clearButton]=\"clearButton\"\n (cancel)=\"handleCancelEvent($event)\"\n (focusout)=\"handlePopupBlur($event)\"\n (valueChange)=\"handleValueChange($event)\"\n (keydown)=\"handlePopupKeyDown($event)\"\n (activeViewChange)=\"activeViewChange.emit($event)\"\n (actionButtonClick)=\"togglePopup()\">\n </kendo-flatcolorpicker>\n </ng-template>\n <ng-container #container></ng-container>\n "
949
950
  }),
950
951
  tslib_1.__metadata("design:paramtypes", [core_1.ElementRef,
951
952
  kendo_angular_popup_1.PopupService,
@@ -43,7 +43,7 @@ var FlatColorPickerActionButtonsComponent = /** @class */ (function () {
43
43
  FlatColorPickerActionButtonsComponent = tslib_1.__decorate([
44
44
  core_1.Component({
45
45
  selector: '[kendoFlatColorPickerActionButtons]',
46
- template: "\n <button\n class=\"k-coloreditor-cancel k-button k-button-md k-button-solid k-button-solid-base\"\n [attr.title]=\"getText('cancelButton')\"\n (click)=\"onActionButtonClick('cancel', $event)\"\n >{{getText('cancelButton')}}</button>\n <button #last\n class=\"k-coloreditor-apply k-button k-button-md k-button-solid k-button-solid-primary\"\n [attr.title]=\"getText('applyButton')\"\n (click)=\"onActionButtonClick('apply', $event)\"\n >{{getText('applyButton')}}</button>\n "
46
+ template: "\n <button\n class=\"k-coloreditor-cancel k-button k-button-md k-button-solid k-button-solid-base\"\n [attr.title]=\"getText('cancelButton')\"\n (click)=\"onActionButtonClick('cancel', $event)\"\n type=\"button\"\n >{{getText('cancelButton')}}</button>\n <button #last\n class=\"k-coloreditor-apply k-button k-button-md k-button-solid k-button-solid-primary\"\n [attr.title]=\"getText('applyButton')\"\n (click)=\"onActionButtonClick('apply', $event)\"\n type=\"button\"\n >{{getText('applyButton')}}</button>\n "
47
47
  }),
48
48
  tslib_1.__metadata("design:paramtypes", [kendo_angular_l10n_1.LocalizationService])
49
49
  ], FlatColorPickerActionButtonsComponent);
@@ -87,7 +87,7 @@ var FlatColorPickerHeaderComponent = /** @class */ (function () {
87
87
  FlatColorPickerHeaderComponent = tslib_1.__decorate([
88
88
  core_1.Component({
89
89
  selector: '[kendoFlatColorPickerHeader]',
90
- template: "\n <div class=\"k-coloreditor-header-actions k-hstack\">\n <div *ngIf=\"viewButtons\" class=\"k-button-group k-button-group-flat\">\n <button *ngFor=\"let view of views\"\n #viewButtons\n (click)=\"onViewButtonClick(view)\"\n class=\"k-button k-button-md k-button-flat k-button-flat-base k-icon-button\"\n [attr.title]=\"getText(view === 'gradient' ? 'gradientView' : 'paletteView')\"\n [attr.aria-label]=\"getText(view === 'gradient' ? 'gradientView' : 'paletteView')\"\n [attr.aria-pressed]=\"activeView === view\"\n [ngClass]=\"activeView === view ? 'k-state-selected' : ''\"\n >\n <span\n class=\"k-button-icon k-icon\"\n [ngClass]=\"getViewButtonIcon(view)\">\n </span>\n </button>\n </div>\n </div>\n <div class=\"k-spacer\"></div>\n <div class=\"k-coloreditor-header-actions k-hstack\">\n <button *ngIf=\"clearButton\"\n #clearButton\n class=\"k-button k-button-md k-button-flat k-button-flat-base k-icon-button k-coloreditor-reset\"\n [attr.aria-label]=\"getText('clearButton')\"\n [attr.title]=\"getText('clearButton')\"\n (click)=\"clearButtonClick.emit()\">\n <span class=\"k-button-icon k-icon k-i-reset-color\"></span>\n </button>\n <div class=\"k-coloreditor-preview k-vstack\" *ngIf=\"preview\">\n <span\n class=\"k-coloreditor-preview-color k-color-preview\"\n [attr.title]=\"getText('previewColor')\"\n [style.background-color]=\"selection\">\n </span>\n <span class=\"k-coloreditor-current-color k-color-preview\"\n [style.background-color]=\"value\"\n [attr.title]=\"getText('revertSelection')\"\n (click)=\"valuePaneClick.emit($event)\">\n </span>\n </div>\n </div>\n "
90
+ template: "\n <div class=\"k-coloreditor-header-actions k-hstack\">\n <div *ngIf=\"viewButtons\" class=\"k-button-group k-button-group-flat\">\n <button *ngFor=\"let view of views\"\n #viewButtons\n type=\"button\"\n (click)=\"onViewButtonClick(view)\"\n class=\"k-button k-button-md k-button-flat k-button-flat-base k-icon-button\"\n [attr.title]=\"getText(view === 'gradient' ? 'gradientView' : 'paletteView')\"\n [attr.aria-label]=\"getText(view === 'gradient' ? 'gradientView' : 'paletteView')\"\n [attr.aria-pressed]=\"activeView === view\"\n [ngClass]=\"activeView === view ? 'k-state-selected' : ''\"\n >\n <span\n class=\"k-button-icon k-icon\"\n [ngClass]=\"getViewButtonIcon(view)\">\n </span>\n </button>\n </div>\n </div>\n <div class=\"k-spacer\"></div>\n <div class=\"k-coloreditor-header-actions k-hstack\">\n <button *ngIf=\"clearButton\"\n #clearButton\n type=\"button\"\n class=\"k-button k-button-md k-button-flat k-button-flat-base k-icon-button k-coloreditor-reset\"\n [attr.aria-label]=\"getText('clearButton')\"\n [attr.title]=\"getText('clearButton')\"\n (click)=\"clearButtonClick.emit()\">\n <span class=\"k-button-icon k-icon k-i-reset-color\"></span>\n </button>\n <div class=\"k-coloreditor-preview k-vstack\" *ngIf=\"preview\">\n <span\n class=\"k-coloreditor-preview-color k-color-preview\"\n [attr.title]=\"getText('previewColor')\"\n [style.background-color]=\"selection\">\n </span>\n <span class=\"k-coloreditor-current-color k-color-preview\"\n [style.background-color]=\"value\"\n [attr.title]=\"getText('revertSelection')\"\n (click)=\"valuePaneClick.emit($event)\">\n </span>\n </div>\n </div>\n "
91
91
  }),
92
92
  tslib_1.__metadata("design:paramtypes", [kendo_angular_l10n_1.LocalizationService])
93
93
  ], FlatColorPickerHeaderComponent);
@@ -11,7 +11,7 @@ exports.packageMetadata = {
11
11
  name: '@progress/kendo-angular-inputs',
12
12
  productName: 'Kendo UI for Angular',
13
13
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
14
- publishDate: 1642770497,
14
+ publishDate: 1644237797,
15
15
  version: '',
16
16
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
17
17
  };
@@ -28,7 +28,7 @@ var TextAreaSuffixComponent = /** @class */ (function () {
28
28
  this.hostClass = true;
29
29
  }
30
30
  tslib_1.__decorate([
31
- core_1.HostBinding('class.k-textarea-suffix'),
31
+ core_1.HostBinding('class.k-input-suffix'),
32
32
  tslib_1.__metadata("design:type", Boolean)
33
33
  ], TextAreaSuffixComponent.prototype, "hostClass", void 0);
34
34
  TextAreaSuffixComponent = tslib_1.__decorate([
@@ -297,6 +297,7 @@ var TextAreaComponent = /** @class */ (function (_super) {
297
297
  tabbing = false;
298
298
  }
299
299
  }));
300
+ _this.handleFlow();
300
301
  });
301
302
  var stylingInputs = ['size', 'rounded', 'fillMode'];
302
303
  stylingInputs.forEach(function (input) {
@@ -322,6 +323,9 @@ var TextAreaComponent = /** @class */ (function (_super) {
322
323
  TextAreaComponent.prototype.ngOnChanges = function (changes) {
323
324
  var hostElement = this.hostElement.nativeElement;
324
325
  var element = this.input.nativeElement;
326
+ if (changes.flow) {
327
+ this.handleFlow();
328
+ }
325
329
  if (changes.resizable) {
326
330
  if (this.resizable === 'auto') {
327
331
  this.initialHeight = element.offsetHeight;
@@ -485,6 +489,16 @@ var TextAreaComponent = /** @class */ (function (_super) {
485
489
  this.renderer.addClass(elem, classes.toAdd);
486
490
  }
487
491
  };
492
+ TextAreaComponent.prototype.handleFlow = function () {
493
+ var isVertical = this.flow === 'vertical';
494
+ var hostElement = this.hostElement.nativeElement;
495
+ var element = this.input.nativeElement;
496
+ var suffix = hostElement.children[1];
497
+ this.renderer.setStyle(element, 'flex', isVertical ? 'none' : '1');
498
+ if (suffix) {
499
+ this.renderer.setStyle(suffix, 'align-items', isVertical ? 'center' : 'start');
500
+ }
501
+ };
488
502
  var TextAreaComponent_1;
489
503
  tslib_1.__decorate([
490
504
  core_1.Input(),
@@ -496,12 +510,12 @@ var TextAreaComponent = /** @class */ (function (_super) {
496
510
  tslib_1.__metadata("design:type", Boolean)
497
511
  ], TextAreaComponent.prototype, "hostClasses", void 0);
498
512
  tslib_1.__decorate([
499
- core_1.HostBinding('class.k-flex-col'),
513
+ core_1.HostBinding('class.\!k-flex-col'),
500
514
  tslib_1.__metadata("design:type", Boolean),
501
515
  tslib_1.__metadata("design:paramtypes", [])
502
516
  ], TextAreaComponent.prototype, "flowCol", null);
503
517
  tslib_1.__decorate([
504
- core_1.HostBinding('class.k-flex-row'),
518
+ core_1.HostBinding('class.\!k-flex-row'),
505
519
  tslib_1.__metadata("design:type", Boolean),
506
520
  tslib_1.__metadata("design:paramtypes", [])
507
521
  ], TextAreaComponent.prototype, "flowRow", null);
@@ -576,7 +590,7 @@ var TextAreaComponent = /** @class */ (function (_super) {
576
590
  ],
577
591
  selector: 'kendo-textarea',
578
592
  template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n ",
579
- styles: ["\n :host(.k-flex-col) {\n flex-direction: column !important;\n }\n :host(.k-flex-row) {\n flex-direction: row !important;\n }\n "]
593
+ styles: ["\n :host {\n display: inline-flex;\n }\n "]
580
594
  }),
581
595
  tslib_1.__metadata("design:paramtypes", [kendo_angular_l10n_1.LocalizationService,
582
596
  core_1.NgZone,
@@ -491,7 +491,7 @@ var TextBoxComponent = /** @class */ (function () {
491
491
  get: function () {
492
492
  return this.successIcon
493
493
  ? "" + this.successIcon
494
- : "k-validation-icon k-icon k-i-check";
494
+ : "k-input-validation-icon k-icon k-i-check";
495
495
  },
496
496
  enumerable: true,
497
497
  configurable: true
@@ -503,7 +503,7 @@ var TextBoxComponent = /** @class */ (function () {
503
503
  get: function () {
504
504
  return this.errorIcon
505
505
  ? "" + this.errorIcon
506
- : "k-validation-icon k-icon k-i-warning";
506
+ : "k-input-validation-icon k-icon k-i-warning";
507
507
  },
508
508
  enumerable: true,
509
509
  configurable: true