| 123456789101112131415161718192021222324252627282930313233343536 |
- import { SuperComponent, RelationsOptions } from '../common/src/index';
- export default class Picker extends SuperComponent {
- behaviors: string[];
- properties: import("./type").TdPickerProps;
- externalClasses: string[];
- options: {
- multipleSlots: boolean;
- };
- relations: RelationsOptions;
- observers: {
- 'value, visible'(value: any, visible: any): void;
- 'itemHeight, visibleItemCount'(): void;
- };
- data: {
- prefix: string;
- classPrefix: string;
- defaultPopUpProps: {};
- defaultPopUpzIndex: number;
- indicatorTop: number;
- };
- methods: {
- updateChildren(): void;
- getSelectedValue(): any[];
- getColumnIndexes(): any;
- onConfirm(): void;
- triggerColumnChange({ column, index }: {
- column: any;
- index: any;
- }): void;
- onCancel(): void;
- onPopupChange(e: any): void;
- close(trigger: any): void;
- updateIndicatorPosition(): void;
- };
- ready(): void;
- }
|