@rubeusteam/rb-angular-components
Version:
Adição do componente rb-change-log-dialog
17 lines (16 loc) • 463 B
TypeScript
import { RbEncapsulatedButton } from './button.interface';
export interface RbDialog {
title: string;
subtitle: string;
content: string;
isMultipleContent: boolean;
multipleContent: RbDialogMultipleContent[];
buttons?: RbEncapsulatedButton[];
actionsAlign?: 'start' | 'center' | 'end';
labelField?: string;
fieldValueDafault?: string;
}
export interface RbDialogMultipleContent {
subtitle: string;
paragraph: string;
}