@agendize/design-system
Version:
Agendize web design system
27 lines • 666 B
TypeScript
export interface PageProperties {
id?: string;
title?: string;
subTitle?: string;
hasPrevious?: boolean;
hasScrollToTop?: boolean;
tabs: TabsOptions[];
initialTabId?: string;
organisationName?: string;
changeTabManually?: boolean;
paddingOnMobile?: boolean;
panelOpen?: boolean;
autoFocus?: boolean;
}
export interface PageEmits {
(eventName: 'goBack'): void;
(eventName: 'changeCurrentTab', tabId: string): void;
}
export interface TabsOptions {
id: string;
title: string;
subTitle?: string;
icon?: string;
helper?: boolean;
visible?: boolean;
}
//# sourceMappingURL=viewModel.d.ts.map