UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

12 lines 456 B
import { Theme } from "@fluentui/react-components"; export interface IPropertyPanePalettePickerProps { label: string; selectedPalette: string; onPropertyChange: (propertyPath: string, newValue: string) => void; onSelectedPalette?: (palette: Record<string, string[]>) => void; disabled?: boolean; key?: string; theme?: Theme; palettes: Record<string, string[]>; } //# sourceMappingURL=IPropertyPanePalettePickerProps.d.ts.map