input.d.ts 874 B

123456789101112131415161718192021222324252627282930313233
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Input extends SuperComponent {
  3. options: {
  4. multipleSlots: boolean;
  5. };
  6. externalClasses: string[];
  7. behaviors: string[];
  8. properties: import("./type").TdInputProps;
  9. data: {
  10. prefix: string;
  11. classPrefix: string;
  12. classBasePrefix: string;
  13. };
  14. lifetimes: {
  15. ready(): void;
  16. };
  17. observers: {
  18. prefixIcon(v: any): void;
  19. suffixIcon(v: any): void;
  20. clearable(v: any): void;
  21. };
  22. methods: {
  23. updateValue(value: any): void;
  24. onInput(e: any): void;
  25. onFocus(e: any): void;
  26. onBlur(e: any): void;
  27. onConfirm(e: any): void;
  28. onSuffixClick(): void;
  29. onSuffixIconClick(): void;
  30. clearInput(e: any): void;
  31. onKeyboardHeightChange(e: any): void;
  32. };
  33. }