@angular/material 17.3.5 → 17.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/datepicker/index.d.ts +5 -0
- package/esm2022/core/version.mjs +1 -1
- package/esm2022/datepicker/date-range-input.mjs +6 -1
- package/esm2022/form-field/form-field-control.mjs +1 -1
- package/esm2022/form-field/form-field.mjs +3 -3
- package/esm2022/progress-bar/progress-bar.mjs +3 -3
- package/esm2022/select/select.mjs +6 -1
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker.mjs +5 -0
- package/fesm2022/datepicker.mjs.map +1 -1
- package/fesm2022/form-field.mjs +2 -2
- package/fesm2022/form-field.mjs.map +1 -1
- package/fesm2022/progress-bar.mjs +2 -2
- package/fesm2022/progress-bar.mjs.map +1 -1
- package/fesm2022/select.mjs +5 -0
- package/fesm2022/select.mjs.map +1 -1
- package/form-field/index.d.ts +6 -0
- package/package.json +2 -2
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/schematics/ng-generate/mdc-migration/index_bundled.js +44 -44
- package/schematics/ng-update/index_bundled.js +31 -31
- package/select/index.d.ts +5 -0
package/fesm2022/datepicker.mjs
CHANGED
|
@@ -4123,6 +4123,11 @@ class MatDateRangeInput {
|
|
|
4123
4123
|
this.comparisonEnd = null;
|
|
4124
4124
|
/** Emits when the input's state has changed. */
|
|
4125
4125
|
this.stateChanges = new Subject();
|
|
4126
|
+
/**
|
|
4127
|
+
* Disable the automatic labeling to avoid issues like #27241.
|
|
4128
|
+
* @docs-private
|
|
4129
|
+
*/
|
|
4130
|
+
this.disableAutomaticLabeling = true;
|
|
4126
4131
|
if (!_dateAdapter && (typeof ngDevMode === 'undefined' || ngDevMode)) {
|
|
4127
4132
|
throw createMissingDateImplError('DateAdapter');
|
|
4128
4133
|
}
|