Represents the props for the FeatureView component.

interface IFeatureViewProps {
    changeSubject?: TSubject<any>;
    className?: string;
    data?: null | string[];
    expandAll?: boolean;
    features: IFeatureGroup<any, any>[];
    onChange?: (data: string[]) => void;
    outlinePaper?: boolean;
    readonly?: boolean;
    style?: any;
    sx?: any;
    transparentPaper?: boolean;
}

Properties

changeSubject?: TSubject<any>
className?: string
data?: null | string[]
expandAll?: boolean
features: IFeatureGroup<any, any>[]
onChange?: (data: string[]) => void
outlinePaper?: boolean
readonly?: boolean
style?: any
sx?: any
transparentPaper?: boolean