UNPKG

@progress/kendo-vue-layout

Version:
65 lines (64 loc) 2.33 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; import { StackLayoutAlign } from './StackLayoutProps'; /** * Represents the [Kendo UI for Vue StackLayout component]({% slug overview_stacklayout %}). * Arranges its inner elements horizontally, or vertically in a stack. Nesting stack layouts is supported to build more complex layouts. */ declare const StackLayout: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ id: PropType<string>; orientation: { type: PropType<string>; default: string; validator: (value: string) => any; }; gap: { type: PropType<string | number>; }; align: { type: PropType<StackLayoutAlign>; validator: (value: StackLayoutAlign) => any; }; }>, {}, {}, { hAlign(): any; vAlign(): any; stackLayoutClasses(): { 'k-stack-layout': boolean; 'k-hstack': boolean; 'k-vstack': boolean; 'k-justify-content-start': boolean; 'k-justify-content-center': boolean; 'k-justify-content-end': boolean; 'k-justify-content-stretch': boolean; 'k-align-items-start': boolean; 'k-align-items-center': boolean; 'k-align-items-end': boolean; 'k-align-items-stretch': boolean; }; stackLayoutStyles(): { gap: string; }; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ id: PropType<string>; orientation: { type: PropType<string>; default: string; validator: (value: string) => any; }; gap: { type: PropType<string | number>; }; align: { type: PropType<StackLayoutAlign>; validator: (value: StackLayoutAlign) => any; }; }>> & Readonly<{}>, { orientation: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { StackLayout };