UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

24 lines 707 B
import { PropertyFieldColorPickerStyle } from './IPropertyFieldColorPicker'; /** * PropertyFieldColorPickerHost properties interface */ export interface IPropertyFieldColorPickerHostProps { label: string; alphaSliderHidden: boolean; disabled: boolean; debounce: number; isHidden: boolean; selectedColor: string; style: PropertyFieldColorPickerStyle; iconName: string; showPreview: boolean; onColorChanged: (color: string) => void; } /** * PropertyFieldColorPickerHost state interface */ export interface IPropertyFieldColorPickerHostState { errorMessage?: string; inlinePickerShowing: boolean; } //# sourceMappingURL=IPropertyFieldColorPickerHost.d.ts.map