@progress/kendo-vue-dialogs
Version:
77 lines (76 loc) • 2.13 kB
TypeScript
/**
* @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';
/**
* @hidden
*/
export interface DialogActionsBarProps {
/**
* Set the layout of the actions.
*
* The supported values are:
* * (Default) `start`
* * `center`
* * `end`
* * `stretched`
*/
layout: string;
/**
* Specifies the orientation of the Dialog action buttons.
*
* * The possible values are:
* * (Default) `horizontal`
* * `vertical`
*
*/
orientation?: 'horizontal' | 'vertical' | string;
}
/**
* @hidden
*/
export interface DialogActionsBarComputed {
[key: string]: any;
wrapperClasses: object;
}
/**
* @hidden
*/
declare const DialogActionsBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
layout: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
orientation: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
}>, {}, {}, {
wrapperClasses(): {
[x: string]: any;
'k-actions': boolean;
'k-dialog-actions': boolean;
'k-window-actions': boolean;
};
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
layout: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
orientation: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
}>> & Readonly<{}>, {
orientation: string;
layout: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { DialogActionsBar };