Skip to content

Commit

Permalink
Refactor #5071
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jan 14, 2024
1 parent bd5b3f7 commit 097f563
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/lib/checkbox/Checkbox.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :class="cx('root')" v-bind="getPTOptions('root')" data-pc-name="checkbox" :data-p-checked="checked" :data-p-disabled="disabled">
<div :class="cx('root')" v-bind="getPTOptions('root')" data-pc-name="checkbox" :data-p-highlight="checked" :data-p-disabled="disabled">
<input
:id="inputId"
type="checkbox"
Expand Down
2 changes: 1 addition & 1 deletion components/lib/radiobutton/RadioButton.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :class="cx('root')" v-bind="getPTOptions('root')" data-pc-name="radiobutton" :data-p-checked="checked" :data-p-disabled="disabled">
<div :class="cx('root')" v-bind="getPTOptions('root')" data-pc-name="radiobutton" :data-p-highlight="checked" :data-p-disabled="disabled">
<input
:id="inputId"
type="radio"
Expand Down
1 change: 1 addition & 0 deletions components/lib/treetable/BodyCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
:class="cx('rowCheckbox')"
@change="toggleCheckbox"
:pt="getColumnCheckboxPT('rowCheckbox')"
:data-p-highlight="checked"
:data-p-checked="checked"
:data-p-partialchecked="partialChecked"
>
Expand Down

0 comments on commit 097f563

Please sign in to comment.