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.
25 lines
750 B
25 lines
750 B
2 years ago
|
<wux-cell
|
||
|
wux-class="{{ classes.cell }}"
|
||
|
prefixCls="{{ cellPrefixCls }}"
|
||
|
title="{{ title }}"
|
||
|
label="{{ label }}"
|
||
|
extra="{{ extra }}"
|
||
|
hasLine="{{ !isLast }}"
|
||
|
disabled="{{ disabled || context.disabled }}"
|
||
|
hoverClass="{{ !(readOnly || context.readOnly) ? 'default' : 'none' }}"
|
||
|
wrapStyle="{{ wrapStyle }}"
|
||
|
>
|
||
|
<wux-selectable
|
||
|
slot="header"
|
||
|
wux-class="{{ classes.selectable }}"
|
||
|
prefixCls="{{ selectablePrefixCls }}"
|
||
|
value="{{ value }}"
|
||
|
checked="{{ inputChecked }}"
|
||
|
color="{{ color }}"
|
||
|
disabled="{{ disabled || context.disabled }}"
|
||
|
readOnly="{{ readOnly || context.readOnly }}"
|
||
|
controlled
|
||
|
bind:change="checkboxChange"
|
||
|
/>
|
||
|
</wux-cell>
|