UNPKG

@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

16 lines (15 loc) 875 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Sets the resize behavior for the TextArea. * * The possible values are: * * `vertical` (Default)—You can resize the TextArea vertically. * * `auto`—The TextArea adjusts its height automatically based on the content. * * `horizontal`—You can resize the TextArea horizontally. * * `both`—You can resize the TextArea both horizontally and vertically. * * `none`—You cannot resize the TextArea. */ export type TextAreaResize = 'auto' | 'vertical' | 'horizontal' | 'both' | 'none';