| <div class="input-password-toggle-container"> |
| :title="togglePasswordLabel" |
| class="input-action-btn btn-icon-only" |
| :class="{ isVisible: isVisible }" |
| @click="toggleVisibility" |
| <icon-view-off v-if="isVisible" /> |
| <span class="sr-only">{{ togglePasswordLabel }}</span> |
| import IconView from '@carbon/icons-vue/es/view/20'; |
| import IconViewOff from '@carbon/icons-vue/es/view--off/20'; |
| name: 'InputPasswordToggle', |
| components: { IconView, IconViewOff }, |
| togglePasswordLabel: this.$t('global.ariaLabel.showPassword'), |
| const firstChild = this.$children[0]; |
| const inputEl = firstChild ? firstChild.$el : null; |
| this.isVisible = !this.isVisible; |
| if (inputEl && inputEl.nodeName === 'INPUT') { |
| inputEl.type = this.isVisible ? 'text' : 'password'; |
| ? (this.togglePasswordLabel = this.$t('global.ariaLabel.hidePassword')) |
| : (this.togglePasswordLabel = this.$t('global.ariaLabel.showPassword')); |
| <style lang="scss" scoped> |
| .input-password-toggle-container { |