react-dropdown
Advanced tools
Comparing version 1.3.4 to 1.3.5
declare module "react-dropdown" { | ||
import * as React from "react"; | ||
interface Option { | ||
export interface Option { | ||
label: string; | ||
value: string; | ||
} | ||
interface Group { | ||
export interface Group { | ||
type: "group"; | ||
@@ -14,4 +14,4 @@ name: string; | ||
options: (Group | Option)[]; | ||
baseClassName: string; | ||
className: string; | ||
baseClassName?: string; | ||
className?: string; | ||
disabled?: boolean; | ||
@@ -18,0 +18,0 @@ onChange?: (arg: Option) => void; |
{ | ||
"name": "react-dropdown", | ||
"version": "1.3.4", | ||
"version": "1.3.5", | ||
"description": "React dropdown component", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15957