From 91924fadb6b5750a0286203c9f03614ad2780edc Mon Sep 17 00:00:00 2001 From: Sasha Khamkov Date: Sat, 14 Sep 2019 00:40:58 +0300 Subject: [PATCH] FIX (types): add missing and fix incorrect types closes #33 #34 --- types.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index 086b995a..71e32c01 100644 --- a/types.d.ts +++ b/types.d.ts @@ -52,6 +52,7 @@ export interface IItemRenderer { } export interface ISelectProps { + className?: string; addPlaceholder?: string; placeholder?: string; values: object[]; @@ -84,7 +85,7 @@ export interface ISelectProps { portal?: string; create?: boolean; direction?: 'ltr' | 'rtl'; - name?: null; + name?: string; onChange: (value: any) => void; onDropdownOpen?: () => void; onDropdownClose?: () => void;