Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
export interface ListItem {
    name: string;
    image?: string;
    isSelected?: boolean;
    /**
     * @description sometimes the combination of current values can make one not possible
     */
    isDisabled?: boolean;
}
export interface ProductOptionsProps {
    className?: string;
    list?: Array<ListItem>;
    type?: string;
    isDropdown?: boolean;
    isProductDetailsPage?: boolean;
    onChange?: Function;
    selectedValue?: Object;
}