We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6367b16 commit 8e06eacCopy full SHA for 8e06eac
src/checkbox/ux-checkbox.html
@@ -13,5 +13,5 @@
13
</div>
14
15
<!-- Leave Inline, uses :not(:empty) selector to determine margin -->
16
- <label ref="label"><slot></slot></label>
+ <label><slot>${label}</slot></label>
17
</template>
src/checkbox/ux-checkbox.ts
@@ -12,6 +12,7 @@ import { processDesignAttributes } from '../designs/design-attributes';
12
export class UxCheckbox implements Themable {
@bindable public disabled: any = null;
@bindable public effect = null;
+ @bindable public label: string;
@bindable public matcher = (a: any, b: any) => a === b;
@bindable public model: any;
18
@bindable public tabindex = 0;
0 commit comments