UNPKG

@progress/sitefinity-nextjs-sdk

Version:

Provides OOB widgets developed using the Next.js framework, which includes an abstraction layer for Sitefinity communication. Additionally, it offers an expanded API, typings, and tools for further development and integration.

27 lines (26 loc) 793 B
export interface EditorMetadata { Title?: string; Name?: string; EmptyIconText?: string; EmptyIconAction?: 'Edit' | 'None'; EmptyIcon?: string; /** @deprecated Not used with the new look for widget selector introduced with Sitefinity 15.1 */ ThumbnailUrl?: string; IconName?: string; IconUrl?: string; Category?: 'Content' | 'Layout' | 'Layout & Presets' | 'Navigation & Search' | 'Login & Users'; Section?: string; Toolbox?: string; Warning?: string; HideEmptyVisual?: boolean; HasQuickEditOperation?: boolean; Order?: number; IsEmptyEntity?: boolean; InitialProperties?: { [key: string]: string; }; WidgetBehavior?: WidgetBehavior; } export interface WidgetBehavior { NotPersonalizable?: boolean; }