@progress/kendo-angular-inputs
Version:
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, Te
17 lines (16 loc) • 1.01 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies if the TextArea should auto resize, resize directions or none resize.
*
* The possible values are:
* * `vertical`(Default)—The TextArea component can be resized in vertical direction.
* * `auto`—Specifies whether the TextArea component will adjust its height automatically, based on the content.
* * `horizontal`—The TextArea component can be resized in horizontal direction.
* * `both`—The TextArea component can be resized in both - horizontal and vertical directions.
* * `none`—The TextArea cannot be resized.
*
*/
export type TextAreaResize = 'auto' | 'vertical' | 'horizontal' | 'both' | 'none';