react-select-async-paginate
Advanced tools
Comparing version 0.3.8 to 0.3.9
@@ -35,2 +35,12 @@ import * as React from 'react'; | ||
export type BaseState = { | ||
optionsCache: { [key: string]: any }; | ||
} | ||
export class AsyncPaginateBase<OptionType, Additional = any> extends React.Component<Props<OptionType, Additional>, BaseState> { | ||
onInputChange: (inputValue: string) => Promise<void>; | ||
onMenuClose: () => Promise<void>; | ||
onMenuOpen: () => Promise<void>; | ||
} | ||
export default AsyncPaginate; |
{ | ||
"name": "react-select-async-paginate", | ||
"version": "0.3.8", | ||
"version": "0.3.9", | ||
"description": "Wrapper above react-select that supports pagination on menu scroll", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
65236
1403