UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

24 lines 659 B
/// <reference types="react" /> /** * PropertyFieldOrderHost properties interface */ export interface IPropertyFieldOrderHostProps { label: string; disabled: boolean; items: Array<any>; textProperty?: string; moveUpIconName: string; moveDownIconName: string; disableDragAndDrop: boolean; removeArrows: boolean; maxHeight?: number; valueChanged: (newValue: Array<any>) => void; onRenderItem?: (item: any, index: number) => JSX.Element; } /** * PropertyFieldOrderHost state interface */ export interface IPropertyFieldOrderHostState { items: Array<any>; } //# sourceMappingURL=IPropertyFieldOrderHost.d.ts.map