@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
20 lines • 566 B
TypeScript
/**
* PropertyFieldColorPickerHost properties interface
*/
export interface IPropertyFieldSpinButtonHostProps {
label: string;
disabled: boolean;
value: string;
incrementIconName: string;
decrementIconName: string;
onValidate: (value: string) => string;
onIncrement: (value: string) => string;
onDecrement: (value: string) => string;
}
/**
* PropertyFieldColorPickerHost state interface
*/
export interface IPropertyFieldSpinButtonHostState {
errorMessage?: string;
}
//# sourceMappingURL=IPropertyFieldSpinButtonHost.d.ts.map