| | |
| | | export interface TdCheckboxProps { |
| | | placement?: { |
| | | type: StringConstructor; |
| | | value?: 'left' | 'right'; |
| | | }; |
| | | block?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | borderless?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | 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: null; |
| | |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | placement?: { |
| | | type: StringConstructor; |
| | | value?: 'left' | 'right'; |
| | | }; |
| | | readonly?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |