mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #3922 - For Checkbox
This commit is contained in:
parent
d1f4dee460
commit
6539ba296d
2 changed files with 5 additions and 1 deletions
4
components/lib/checkbox/Checkbox.d.ts
vendored
4
components/lib/checkbox/Checkbox.d.ts
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue