You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
:: BASE_DOC ::
API
Checkbox Props
| name |
type |
default |
description |
required |
| placement |
String |
left |
options:left/right |
N |
| block |
Boolean |
true |
- |
N |
| check-all |
Boolean |
false |
- |
N |
| checked |
Boolean |
false |
- |
N |
| default-checked |
Boolean |
undefined |
uncontrolled property |
N |
| content |
String / Slot |
- |
- |
N |
| content-disabled |
Boolean |
- |
- |
N |
| disabled |
Boolean |
undefined |
- |
N |
| external-classes |
Array |
- |
['t-class', 't-class-icon', 't-class-label', 't-class-content', 't-class-border'] |
N |
| icon |
String / Array |
'circle' |
Typescript:'circle' | 'line' | 'rectangle' | string[] |
N |
| indeterminate |
Boolean |
false |
- |
N |
| label |
String / Slot |
- |
- |
N |
| max-content-row |
Number |
5 |
- |
N |
| max-label-row |
Number |
3 |
- |
N |
| name |
String |
- |
- |
N |
| readonly |
Boolean |
false |
- |
N |
| value |
String / Number |
- |
Typescript:string | number | boolean |
N |
Checkbox Events
| name |
params |
description |
| change |
(checked: boolean) |
- |
CheckboxGroup Props
| name |
type |
default |
description |
required |
| disabled |
Boolean |
false |
- |
N |
| max |
Number |
undefined |
- |
N |
| name |
String |
- |
- |
N |
| options |
Array |
[] |
Typescript:Array<CheckboxOption> type CheckboxOption = string | number | CheckboxOptionObj interface CheckboxOptionObj { label?: string; value?: string | number; disabled?: boolean; checkAll?: true }。see more ts definition |
N |
| value |
Array |
[] |
Typescript:CheckboxGroupValue type CheckboxGroupValue = Array<string | number>。see more ts definition |
N |
| default-value |
Array |
undefined |
uncontrolled property。Typescript:CheckboxGroupValue type CheckboxGroupValue = Array<string | number>。see more ts definition |
N |
CheckboxGroup Events
| name |
params |
description |
| change |
(value: CheckboxGroupValue, context: CheckboxGroupChangeContext) |
see more ts definition。
interface CheckboxGroupChangeContext { e: Event; current: string | number; option: CheckboxOption | TdCheckboxProps; type: 'check' | 'uncheck' }
|