@progress/kendo-angular-common
Version:
Kendo UI for Angular - Utility Package
48 lines (47 loc) • 1.92 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { SeparatorOrientation } from './separator-orientation';
import * as i0 from "@angular/core";
/**
* Specifies a separator in the content of the [Inputs](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#separator) and [DropDowns](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/adornments#separator).
* @example
* ```ts
* @Component({
* selector: 'my-app',
* template: `
* <kendo-textbox>
* <ng-template kendoSuffixTemplate>
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
* <kendo-separator></kendo-separator>
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
* </ng-template>
* </kendo-textbox>
* `
* })
* class AppComponent {}
* ```
*/
export declare class SeparatorComponent {
/**
* Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/textareacomponent).
*
* @default 'vertical'
*/
orientation: SeparatorOrientation;
/**
* @hidden
*/
get vertical(): boolean;
/**
* @hidden
*/
get horizontal(): boolean;
/**
* @hidden
*/
hostClass: boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<SeparatorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SeparatorComponent, "kendo-separator", never, { "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, never, true, never>;
}