cascader.d.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /// <reference types="miniprogram-api-typings" />
  2. import { SuperComponent } from '../common/src/index';
  3. import { TdCascaderProps } from './type';
  4. export interface CascaderProps extends TdCascaderProps {
  5. }
  6. export default class Cascader extends SuperComponent {
  7. externalClasses: string[];
  8. options: WechatMiniprogram.Component.ComponentOptions;
  9. properties: TdCascaderProps<import("../common/common").TreeOptionData>;
  10. data: {
  11. prefix: string;
  12. name: string;
  13. stepIndex: number;
  14. selectedIndexes: any[];
  15. selectedValue: any[];
  16. defaultOptionLabel: string;
  17. scrollTopList: any[];
  18. steps: string[];
  19. };
  20. observers: {
  21. visible(v: any): void;
  22. 'value, options'(): void;
  23. 'selectedIndexes, options'(): void;
  24. stepIndex(): Promise<void>;
  25. };
  26. methods: {
  27. initWithValue(): void;
  28. getIndexesByValue(options: import("../common/common").TreeOptionData[], value: any): any[];
  29. updateScrollTop(): void;
  30. hide(): void;
  31. onStepClick(e: any): void;
  32. onTabChange(e: any): void;
  33. handleSelect(e: any): void;
  34. };
  35. }