Refactor on Dropdown doc and ts files

pull/2817/head
mertsincan 2022-07-29 05:10:44 +01:00
parent 878893a906
commit 9155e9e0c7
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ export interface DropdownFilterEvent {
value: any; value: any;
} }
export interface DropdownProps { export interface DropdownProps extends HTMLDivElement {
/** /**
* Value of the component. * Value of the component.
*/ */

View File

@ -279,13 +279,13 @@ export default {
<td>panelProps</td> <td>panelProps</td>
<td>object</td> <td>object</td>
<td>null</td> <td>null</td>
<td>Uses to pass all properties of the HTMLDivElement to the overlay panel inside the component.</td> <td>Uses to pass all properties of the HTMLDivElement to the overlay panel.</td>
</tr> </tr>
<tr> <tr>
<td>filterInputProps</td> <td>filterInputProps</td>
<td>object</td> <td>object</td>
<td>null</td> <td>null</td>
<td>Uses to pass all properties of the HTMLInputElement to the filter input inside the component.</td> <td>Uses to pass all properties of the HTMLInputElement to the filter input inside the overlay panel.</td>
</tr> </tr>
<tr> <tr>
<td>clearIconProps</td> <td>clearIconProps</td>