mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32: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.
|
* Uses to pass attributes to the icon's DOM element.
|
||||||
*/
|
*/
|
||||||
icon?: CheckboxPassThroughOptionType;
|
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.
|
* Uses to pass attributes to the input aria's DOM element.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div :class="containerClass" @click="onClick($event)" v-bind="ptm('root')">
|
<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
|
<input
|
||||||
ref="input"
|
ref="input"
|
||||||
:id="inputId"
|
:id="inputId"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue