type.d.ts 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import { SizeEnum } from '../common/common';
  2. export interface TdStepperProps {
  3. disableInput?: {
  4. type: BooleanConstructor;
  5. value?: boolean;
  6. };
  7. disabled?: {
  8. type: BooleanConstructor;
  9. value?: boolean;
  10. };
  11. inputWidth?: {
  12. type: NumberConstructor;
  13. value?: number;
  14. };
  15. integer?: {
  16. type: BooleanConstructor;
  17. value?: boolean;
  18. };
  19. max?: {
  20. type: NumberConstructor;
  21. value?: number;
  22. };
  23. min?: {
  24. type: NumberConstructor;
  25. value?: number;
  26. };
  27. size?: {
  28. type: StringConstructor;
  29. value?: SizeEnum;
  30. };
  31. step?: {
  32. type: NumberConstructor;
  33. value?: number;
  34. };
  35. theme?: {
  36. type: StringConstructor;
  37. value?: 'normal' | 'filled' | 'outline';
  38. };
  39. value?: {
  40. type: null;
  41. value?: string | number;
  42. };
  43. defaultValue?: {
  44. type: null;
  45. value?: string | number;
  46. };
  47. }