12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import { SuperComponent, ComponentsOptionsType, RelationsOptions } from '../common/src/index';
- export default class CheckBox extends SuperComponent {
- externalClasses: string[];
- behaviors: string[];
- relations: RelationsOptions;
- options: ComponentsOptionsType;
- properties: {
- theme: {
- type: StringConstructor;
- value: string;
- };
- borderless: {
- type: BooleanConstructor;
- value: boolean;
- };
- align?: {
- type: StringConstructor;
- value?: "left" | "right";
- };
- checkAll?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- checked?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- defaultChecked?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- color?: {
- type: StringConstructor;
- value?: string;
- };
- content?: {
- type: StringConstructor;
- value?: string;
- };
- contentDisabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- externalClasses?: {
- type: ArrayConstructor;
- value?: ["t-class", "t-class-icon", "t-class-label", "t-class-content", "t-class-border"];
- };
- icon?: {
- type: ArrayConstructor;
- value?: string[];
- };
- indeterminate?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- label?: {
- type: StringConstructor;
- value?: string;
- };
- maxContentRow?: {
- type: NumberConstructor;
- value?: number;
- };
- maxLabelRow?: {
- type: NumberConstructor;
- value?: number;
- };
- name?: {
- type: StringConstructor;
- value?: string;
- };
- readonly?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- value?: {
- type: StringConstructor;
- optionalTypes: NumberConstructor[];
- value?: string | number;
- };
- };
- data: {
- prefix: string;
- classPrefix: string;
- };
- controlledProps: {
- key: string;
- event: string;
- }[];
- methods: {
- onChange(e: WechatMiniprogram.TouchEvent): void;
- };
- }
|