checkbox.d.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. import { SuperComponent, ComponentsOptionsType, RelationsOptions } from '../common/src/index';
  2. export default class CheckBox extends SuperComponent {
  3. externalClasses: string[];
  4. behaviors: string[];
  5. relations: RelationsOptions;
  6. options: ComponentsOptionsType;
  7. properties: {
  8. theme: {
  9. type: StringConstructor;
  10. value: string;
  11. };
  12. borderless: {
  13. type: BooleanConstructor;
  14. value: boolean;
  15. };
  16. align?: {
  17. type: StringConstructor;
  18. value?: "left" | "right";
  19. };
  20. block?: {
  21. type: BooleanConstructor;
  22. value?: boolean;
  23. };
  24. checkAll?: {
  25. type: BooleanConstructor;
  26. value?: boolean;
  27. };
  28. checked?: {
  29. type: BooleanConstructor;
  30. value?: boolean;
  31. };
  32. defaultChecked?: {
  33. type: BooleanConstructor;
  34. value?: boolean;
  35. };
  36. content?: {
  37. type: StringConstructor;
  38. value?: string;
  39. };
  40. contentDisabled?: {
  41. type: BooleanConstructor;
  42. value?: boolean;
  43. };
  44. style?: {
  45. type: StringConstructor;
  46. value?: string;
  47. };
  48. disabled?: {
  49. type: BooleanConstructor;
  50. value?: boolean;
  51. };
  52. externalClasses?: {
  53. type: ArrayConstructor;
  54. value?: ["t-class", "t-class-icon", "t-class-label", "t-class-content", "t-class-border"];
  55. };
  56. icon?: {
  57. type: null;
  58. value?: string[] | "circle" | "rectangle" | "line";
  59. };
  60. indeterminate?: {
  61. type: BooleanConstructor;
  62. value?: boolean;
  63. };
  64. label?: {
  65. type: StringConstructor;
  66. value?: string;
  67. };
  68. maxContentRow?: {
  69. type: NumberConstructor;
  70. value?: number;
  71. };
  72. maxLabelRow?: {
  73. type: NumberConstructor;
  74. value?: number;
  75. };
  76. name?: {
  77. type: StringConstructor;
  78. value?: string;
  79. };
  80. readonly?: {
  81. type: BooleanConstructor;
  82. value?: boolean;
  83. };
  84. value?: {
  85. type: null;
  86. value?: string | number | boolean;
  87. };
  88. };
  89. data: {
  90. prefix: string;
  91. classPrefix: string;
  92. };
  93. controlledProps: {
  94. key: string;
  95. event: string;
  96. }[];
  97. methods: {
  98. onChange(e: WechatMiniprogram.TouchEvent): void;
  99. };
  100. }