Skip to content

Commit

Permalink
feat(cascader): hidden radio
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangpaopao0609 committed Mar 15, 2023
1 parent 3cf8602 commit 0eb83fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/radio-group/radio-group.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
icon="{{icon}}"
borderless="{{borderless}}"
bind:change="handleRadioChange"
aria-hidden="{{ ariaHidden === undefined ? false : !!ariaHidden }}"
/>
</block>
</view>
1 change: 1 addition & 0 deletions src/radio/radio.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
aria-disabled="{{disabled}}"
tabindex="{{tabindex}}"
bind:tap="handleTap"
aria-hidden="{{ ariaHidden === undefined ? false : !!ariaHidden }}"
>
<view
class="{{_.cls(classPrefix + '__icon', [placement, ['checked', checked], ['disabled', disabled]])}} {{prefix}}-class-icon"
Expand Down

0 comments on commit 0eb83fb

Please sign in to comment.