WidgetDrawerConfig

Definition

export interface WidgetDrawerConfig {
    title?: string
    mode?: WidgetDrawerMode
    showTypeFilter?: boolean
    showStatusFilter?: boolean
    showCategoryFilter?: boolean
    defaultType?: WidgetDrawerType
    defaultStatus?: WidgetDrawerStatus
    excludeStatuses?: WidgetDrawerStatus[]
    buttonLabel?: string
    widgetsButtonLabel?: string
    uisButtonLabel?: string    
    returnRawData?: boolean
    enableUIs?: boolean 
}

Usage

import { WidgetDrawerConfig } from 'uxp/components';

Last updated