wix-style-react
Version:
wix-style-react
29 lines • 1.08 kB
TypeScript
export default class DropdownPicker extends React.Component<any, any, any> {
static propTypes: {
dataHook: PropTypes.Requireable<string>;
className: PropTypes.Requireable<string>;
caption: PropTypes.Requireable<PropTypes.ReactNodeLike>;
options: PropTypes.Requireable<any[]>;
onChange: PropTypes.Requireable<(...args: any[]) => any>;
selectedId: PropTypes.Requireable<number>;
ariaLabel: PropTypes.Requireable<string>;
ariaLabelledBy: PropTypes.Requireable<string>;
};
constructor(props: any);
constructor(props: any, context: any);
state: {
open: boolean;
visibleOptions: any;
};
componentDidUpdate(prevProps: any): void;
_onSelect: (data: any) => void;
_toggle: () => void;
_onKeyDown: (e: any, delegateKeyDown: any) => void;
_close: () => void;
_open: () => void;
_fetchMoreOptions: () => void;
render(): React.JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=DatePickerDropdown.d.ts.map