@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
12 lines • 442 B
TypeScript
import { Theme } from "@fluentui/react-components";
export interface IPalettePickerProps {
label: string;
selectedPalette: string;
onPropertyChange: (propertyPath: string, newValue: string) => void;
onSelectedPalette?: (palette: Record<string, string[]>) => void;
disabled?: boolean;
targetProperty: string;
theme?: Theme;
palettes: Record<string, string[]>;
}
//# sourceMappingURL=IPalettePickerProps.d.ts.map