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.

35 lines (34 loc) 1.06 kB
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 { /** * Indicates whether the widget is personalizable. */ NotPersonalizable?: boolean; /** * Indicates whether the widget registers a content location. * SelectedItems property of type MixedContentContent is required in the entity. */ IsContentLocation?: boolean; }