Refactor #3922 - For Checkbox
parent
d1f4dee460
commit
6539ba296d
|
@ -37,6 +37,10 @@ export interface CheckboxPassThroughOptions {
|
|||
* Uses to pass attributes to the icon's DOM element.
|
||||
*/
|
||||
icon?: CheckboxPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the hidden accessible DOM element.
|
||||
*/
|
||||
hiddenAccessible?: CheckboxPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the input aria's DOM element.
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div :class="containerClass" @click="onClick($event)" v-bind="ptm('root')">
|
||||
<div class="p-hidden-accessible">
|
||||
<div class="p-hidden-accessible" v-bind="ptm('hiddenAccessible')">
|
||||
<input
|
||||
ref="input"
|
||||
:id="inputId"
|
||||
|
|
Loading…
Reference in New Issue