@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
32 lines (31 loc) • 1.4 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import * as i0 from "@angular/core";
/**
* Represents a spacer in the content of components like TextArea and TextBox.
*
* @example
* ```html
* <kendo-textbox>
* <ng-template kendoTextBoxSuffixTemplate>
* <kendo-input-spacer></kendo-input-spacer>
* <button kendoButton icon="image"></button>
* </ng-template>
* </kendo-textbox>
* ```
*/
export declare class InputSpacerComponent {
hostClass: boolean;
get sizedClass(): boolean;
get flexBasisStyle(): string;
/**
* Specifies the width of the Input Spacer.
* Accepts string values for the [CSS `flex-basis`](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) property.
* If not set, the Input Spacer takes all available space.
*/
width: string;
static ɵfac: i0.ɵɵFactoryDeclaration<InputSpacerComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<InputSpacerComponent, "kendo-input-spacer, kendo-textbox-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
}