You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
588 B
18 lines
588 B
import { Component } from '../../core';
|
|
import type { SelectOptions, SelectStyleProps } from './types';
|
|
export declare class Select extends Component<SelectStyleProps> {
|
|
static defaultOptions: SelectOptions;
|
|
/** 当前 value */
|
|
private currentValue;
|
|
private isPointerInSelect;
|
|
setValue(value: string | number): void;
|
|
getValue(): string | number;
|
|
private get dropdownPadding();
|
|
private select;
|
|
private dropdown;
|
|
private renderSelect;
|
|
private renderDropdown;
|
|
constructor(options: SelectOptions);
|
|
render(): void;
|
|
bindEvents(): void;
|
|
}
|
|
|