stepper.d.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Stepper extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. addGlobalClass: boolean;
  6. };
  7. properties: {
  8. style?: {
  9. type: StringConstructor;
  10. value?: string;
  11. };
  12. disableInput?: {
  13. type: BooleanConstructor;
  14. value?: boolean;
  15. };
  16. disabled?: {
  17. type: BooleanConstructor;
  18. value?: boolean;
  19. };
  20. externalClasses?: {
  21. type: ArrayConstructor;
  22. value?: ["t-class", "t-class-input", "t-class-add", "t-class-minus"];
  23. };
  24. inputWidth?: {
  25. type: NumberConstructor;
  26. value?: number;
  27. };
  28. max?: {
  29. type: NumberConstructor;
  30. value?: number;
  31. };
  32. min?: {
  33. type: NumberConstructor;
  34. value?: number;
  35. };
  36. step?: {
  37. type: NumberConstructor;
  38. value?: number;
  39. };
  40. size?: {
  41. type: StringConstructor;
  42. value?: string;
  43. };
  44. theme?: {
  45. type: StringConstructor;
  46. value?: "outline" | "normal" | "filled";
  47. };
  48. value?: {
  49. type: StringConstructor;
  50. optionalTypes: NumberConstructor[];
  51. value?: string | number;
  52. };
  53. defaultValue?: {
  54. type: StringConstructor;
  55. optionalTypes: NumberConstructor[];
  56. value?: string | number;
  57. };
  58. };
  59. controlledProps: {
  60. key: string;
  61. event: string;
  62. }[];
  63. observers: {
  64. value(v: any): void;
  65. };
  66. data: {
  67. currentValue: number;
  68. classPrefix: string;
  69. prefix: string;
  70. };
  71. attached(): void;
  72. isDisabled(type: any): boolean;
  73. format(value: any): number;
  74. setValue(value: any): void;
  75. minusValue(): boolean;
  76. plusValue(): boolean;
  77. changeValue(e: any): string | 0;
  78. focusHandle(e: any): void;
  79. inputHandle(e: any): void;
  80. blurHandle(e: any): void;
  81. }