UNPKG

@progress/kendo-vue-layout

Version:
62 lines (61 loc) 2.36 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 { GridLayoutAlign } from './interfaces/GridLayoutProps'; import { GridLayoutItemProps } from './interfaces/GridLayoutItemProps'; import { PropType } from 'vue'; /** * @hidden */ declare const GridLayout: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ id: PropType<string>; gap: { type: PropType<import('./interfaces/GridLayoutProps').GridLayoutGap>; }; align: { type: PropType<any>; validator: (value: GridLayoutAlign) => any; }; rows: PropType<import('..').GridLayoutRowProps[]>; cols: PropType<import('..').GridLayoutColumnProps[]>; items: PropType<GridLayoutItemProps[]>; }>, {}, {}, { hAlign(): any; vAlign(): any; gridLayoutClasses(): { 'k-grid-layout': boolean; 'k-justify-items-start': boolean; 'k-justify-items-center': boolean; 'k-justify-items-end': boolean; 'k-justify-items-stretch': boolean; 'k-align-items-start': boolean; 'k-align-items-center': boolean; 'k-align-items-end': boolean; 'k-align-items-stretch': boolean; }; gapStyle(): string; gridTemplateRowsStyle(): any; gridTemplateColumnsStyle(): any; gridLayoutStyles(): { gap: any; gridTemplateColumns: any; gridTemplateRows: any; }; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ id: PropType<string>; gap: { type: PropType<import('./interfaces/GridLayoutProps').GridLayoutGap>; }; align: { type: PropType<any>; validator: (value: GridLayoutAlign) => any; }; rows: PropType<import('..').GridLayoutRowProps[]>; cols: PropType<import('..').GridLayoutColumnProps[]>; items: PropType<GridLayoutItemProps[]>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { GridLayout };