File

projects/davita/bridge-library/shared/dialog-data.model.ts

Index

Properties

Properties

description
description: string
Type : string
disableClose
disableClose: boolean
Type : boolean
Optional
fieldErrorText
fieldErrorText: string
Type : string
Optional
fieldLabel
fieldLabel: string
Type : string
Optional
fieldType
fieldType: "select" | "text" | "innerHtml"
Type : "select" | "text" | "innerHtml"
Optional
header
header: string
Type : string
hidePrimaryButton
hidePrimaryButton: boolean
Type : boolean
Optional
hideSecondaryButton
hideSecondaryButton: boolean
Type : boolean
Optional
imageUrl
imageUrl: string
Type : string
Optional
innerHtml
innerHtml: string
Type : string
Optional
linkLabel
linkLabel: string
Type : string
Optional
linkURL
linkURL: string
Type : string
Optional
maxLength
maxLength: number
Type : number
Optional
placeHolder
placeHolder: string
Type : string
Optional
primaryButtonLabel
primaryButtonLabel: string
Type : string
Optional
requiredFieldError
requiredFieldError: string
Type : string
Optional
secondaryButtonLabel
secondaryButtonLabel: string
Type : string
Optional
selectionData
selectionData: SelectData[]
Type : SelectData[]
Optional
videoLink
videoLink: string
Type : string
Optional
import { SelectData } from './select-data.model';

export interface DialogData {
  header: string;
  description: string;
  secondaryButtonLabel?: string;
  primaryButtonLabel?: string;
  imageUrl?: string;
  videoLink?: string;
  innerHtml?: string;
  fieldType?: 'select' | 'text' | 'innerHtml';
  fieldLabel?: string;
  fieldErrorText?: string;
  selectionData?: SelectData[];
  requiredFieldError?: string;
  maxLength?: number;
  placeHolder?: string;
  linkURL?: string;
  linkLabel?: string;
  hidePrimaryButton?: boolean;
  hideSecondaryButton?: boolean;
  disableClose?: boolean;
}

results matching ""

    No results matching ""