|
@@ -2,8 +2,8 @@ import * as React from 'react';
|
|
|
export interface IHeaderSearchProps {
|
|
export interface IHeaderSearchProps {
|
|
|
placeholder?: string;
|
|
placeholder?: string;
|
|
|
dataSource?: string[];
|
|
dataSource?: string[];
|
|
|
- defaultOpen: boolean;
|
|
|
|
|
- open: boolean;
|
|
|
|
|
|
|
+ defaultOpen?: boolean;
|
|
|
|
|
+ open?: boolean;
|
|
|
onSearch?: (value: string) => void;
|
|
onSearch?: (value: string) => void;
|
|
|
onChange?: (value: string) => void;
|
|
onChange?: (value: string) => void;
|
|
|
onVisibleChange?: (visible: boolean) => void;
|
|
onVisibleChange?: (visible: boolean) => void;
|