@angular/material 16.2.1 → 16.2.3
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/autocomplete/index.d.ts +1 -1
- package/datepicker/index.d.ts +3 -3
- package/esm2022/autocomplete/autocomplete.mjs +2 -2
- package/esm2022/button-toggle/button-toggle.mjs +2 -2
- package/esm2022/core/version.mjs +1 -1
- package/esm2022/datepicker/month-view.mjs +2 -2
- package/esm2022/datepicker/multi-year-view.mjs +2 -2
- package/esm2022/datepicker/year-view.mjs +2 -2
- package/esm2022/select/select.mjs +3 -3
- package/esm2022/slider/slider-input.mjs +19 -9
- package/esm2022/slider/slider.mjs +2 -2
- package/esm2022/tabs/tab-group.mjs +3 -3
- package/fesm2022/autocomplete.mjs +1 -1
- package/fesm2022/autocomplete.mjs.map +1 -1
- package/fesm2022/button-toggle.mjs +1 -1
- package/fesm2022/button-toggle.mjs.map +1 -1
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker.mjs +3 -3
- package/fesm2022/datepicker.mjs.map +1 -1
- package/fesm2022/select.mjs +2 -2
- package/fesm2022/select.mjs.map +1 -1
- package/fesm2022/slider.mjs +20 -10
- package/fesm2022/slider.mjs.map +1 -1
- package/fesm2022/tabs.mjs +2 -2
- package/fesm2022/tabs.mjs.map +1 -1
- package/form-field/_form-field-sizing.scss +1 -1
- 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 +46 -46
- package/schematics/ng-generate/mdc-migration/index_bundled.js.map +3 -3
- package/schematics/ng-update/index_bundled.js +25 -25
package/fesm2022/datepicker.mjs
CHANGED
|
@@ -962,7 +962,7 @@ class MatMonthView {
|
|
|
962
962
|
this._changeDetectorRef.markForCheck();
|
|
963
963
|
}
|
|
964
964
|
/**
|
|
965
|
-
* Takes the index of a calendar body cell wrapped in
|
|
965
|
+
* Takes the index of a calendar body cell wrapped in an event as argument. For the date that
|
|
966
966
|
* corresponds to the given cell, set `activeDate` to that date and fire `activeDateChange` with
|
|
967
967
|
* that date.
|
|
968
968
|
*
|
|
@@ -1383,7 +1383,7 @@ class MatMultiYearView {
|
|
|
1383
1383
|
this.selectedChange.emit(selectedDate);
|
|
1384
1384
|
}
|
|
1385
1385
|
/**
|
|
1386
|
-
* Takes the index of a calendar body cell wrapped in
|
|
1386
|
+
* Takes the index of a calendar body cell wrapped in an event as argument. For the date that
|
|
1387
1387
|
* corresponds to the given cell, set `activeDate` to that date and fire `activeDateChange` with
|
|
1388
1388
|
* that date.
|
|
1389
1389
|
*
|
|
@@ -1678,7 +1678,7 @@ class MatYearView {
|
|
|
1678
1678
|
this.selectedChange.emit(selectedDate);
|
|
1679
1679
|
}
|
|
1680
1680
|
/**
|
|
1681
|
-
* Takes the index of a calendar body cell wrapped in
|
|
1681
|
+
* Takes the index of a calendar body cell wrapped in an event as argument. For the date that
|
|
1682
1682
|
* corresponds to the given cell, set `activeDate` to that date and fire `activeDateChange` with
|
|
1683
1683
|
* that date.
|
|
1684
1684
|
*
|