Changeset e29cc2e for trip-planner-front/node_modules/@angular/material/bundles/material-input.umd.js
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@angular/material/bundles/material-input.umd.js
r59329aa re29cc2e 764 764 } 765 765 }; 766 /** Whether the form control is a native select that is displayed inline. */ 767 MatInput.prototype._isInlineSelect = function () { 768 var element = this._elementRef.nativeElement; 769 return this._isNativeSelect && (element.multiple || element.size > 1); 770 }; 766 771 return MatInput; 767 772 }(_MatInputBase)); … … 786 791 '[required]': 'required', 787 792 '[attr.readonly]': 'readonly && !_isNativeSelect || null', 793 '[class.mat-native-select-inline]': '_isInlineSelect()', 788 794 // Only mark the input as invalid for assistive technology if it has a value since the 789 795 // state usually overlaps with `aria-required` when the input is empty and can be redundant.
Note:
See TracChangeset
for help on using the changeset viewer.