Skip to content

Commit

Permalink
fix(input): pass required attribute to input #97
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Jan 27, 2023
1 parent 3f4840d commit a7db9d2
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/auro-datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,21 +449,6 @@ class AuroDatePicker extends LitElement {
return true;
}

// /**
// * @private
// * @returns {void} Determines if dropdown bib should be closed on focus change.
// */
// handleFocusLoss() {
// if (!this.noHideOnThisFocusLoss && !this.hasAttribute('noHideOnThisFocusLoss')) {
// document.activeElement.addEventListener('focusout', () => {
// if (document.activeElement !== document.querySelector('body') && !this.contains(document.activeElement)) {
// this.hide();
// }
// });
// }
// }


updated(changedProperties) {
if (changedProperties.has('value') && this.value) {
if (this.value !== this.input.value) {
Expand Down

0 comments on commit a7db9d2

Please sign in to comment.