UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

22 lines (21 loc) 463 B
export interface ToolboxItem { id: string; type: string; name: string; category: string; icon?: string; feature?: any; dependentParent?: boolean; hideInControlBox?: boolean; disable?: boolean; fieldType?: string; templateCategory?: string; updating?: boolean; } export interface ToolboxCategory { type: string; name: string; items: ToolboxItem[]; hideInControlBox?: boolean; isHide?: boolean; }