@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.
11 lines (10 loc) • 419 B
TypeScript
import { ChoiceEntityBase } from '../interfaces/choice-entity-base';
import { FieldSize } from '../../styling/field-size';
import { ChoiceOption } from '../common/choice-option';
export type DropdownSorting = 'Manual' | 'Alphabetical';
export declare class DropdownEntity extends ChoiceEntityBase {
Label: string | null;
Choices: ChoiceOption[] | null;
Sorting: DropdownSorting;
FieldSize: FieldSize;
}