@angular/material 11.1.1 → 11.1.2
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/_theming.scss +14 -8
- package/bundles/material-core.umd.js +2 -2
- package/bundles/material-core.umd.js.map +1 -1
- package/bundles/material-core.umd.min.js +2 -2
- package/bundles/material-core.umd.min.js.map +1 -1
- package/bundles/material-datepicker.umd.js +2 -0
- package/bundles/material-datepicker.umd.js.map +1 -1
- package/bundles/material-datepicker.umd.min.js +1 -1
- package/bundles/material-datepicker.umd.min.js.map +1 -1
- package/bundles/material-expansion.umd.js +1 -1
- package/bundles/material-expansion.umd.min.js +6 -6
- package/bundles/material-expansion.umd.min.js.map +1 -1
- package/bundles/material-form-field.umd.js +1 -1
- package/bundles/material-form-field.umd.js.map +1 -1
- package/bundles/material-form-field.umd.min.js +1 -1
- package/bundles/material-form-field.umd.min.js.map +1 -1
- package/bundles/material-grid-list.umd.js +147 -145
- package/bundles/material-grid-list.umd.js.map +1 -1
- package/bundles/material-grid-list.umd.min.js +12 -19
- package/bundles/material-grid-list.umd.min.js.map +1 -1
- package/bundles/material-menu.umd.js +12 -22
- package/bundles/material-menu.umd.js.map +1 -1
- package/bundles/material-menu.umd.min.js +1 -1
- package/bundles/material-menu.umd.min.js.map +1 -1
- package/bundles/material-select.umd.js +5 -2
- package/bundles/material-select.umd.js.map +1 -1
- package/bundles/material-select.umd.min.js +5 -5
- package/bundles/material-select.umd.min.js.map +1 -1
- package/core/index.metadata.json +1 -1
- package/esm2015/core/common-behaviors/common-module.js +1 -1
- package/esm2015/core/version.js +1 -1
- package/esm2015/datepicker/month-view.js +3 -1
- package/esm2015/expansion/expansion-panel-header.js +1 -1
- package/esm2015/form-field/form-field-animations.js +2 -2
- package/esm2015/grid-list/public-api.js +3 -2
- package/esm2015/menu/menu-trigger.js +13 -23
- package/esm2015/menu/menu.js +1 -1
- package/esm2015/select/select.js +6 -3
- package/expansion/_expansion-mixins.scss +11 -0
- package/expansion/_expansion-theme.scss +3 -8
- package/expansion/index.metadata.json +1 -1
- package/fesm2015/core.js +2 -2
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/datepicker.js +2 -0
- package/fesm2015/datepicker.js.map +1 -1
- package/fesm2015/expansion.js +1 -1
- package/fesm2015/form-field.js +1 -1
- package/fesm2015/form-field.js.map +1 -1
- package/fesm2015/grid-list.js +128 -126
- package/fesm2015/grid-list.js.map +1 -1
- package/fesm2015/menu.js +12 -22
- package/fesm2015/menu.js.map +1 -1
- package/fesm2015/select.js +5 -2
- package/fesm2015/select.js.map +1 -1
- package/form-field/index.metadata.json +1 -1
- package/grid-list/index.metadata.json +1 -1
- package/grid-list/public-api.d.ts +2 -1
- package/menu/index.metadata.json +1 -1
- package/menu/menu-trigger.d.ts +1 -3
- package/menu/menu.d.ts +4 -2
- package/package.json +2 -2
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/setup-project.js +4 -3
- package/select/index.metadata.json +1 -1
package/_theming.scss
CHANGED
|
@@ -3953,6 +3953,18 @@ $mat-expansion-panel-header-density-config: (
|
|
|
3953
3953
|
// and body expansion. These are animated using Angular animations.
|
|
3954
3954
|
$mat-expansion-panel-header-transition: 225ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3955
3955
|
|
|
3956
|
+
@mixin mat-private-expansion-focus {
|
|
3957
|
+
.mat-expansion-panel {
|
|
3958
|
+
& .mat-expansion-panel-header.cdk-keyboard-focused,
|
|
3959
|
+
& .mat-expansion-panel-header.cdk-program-focused,
|
|
3960
|
+
&:not(.mat-expanded) .mat-expansion-panel-header:hover {
|
|
3961
|
+
&:not([aria-disabled='true']) {
|
|
3962
|
+
@content;
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
}
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3956
3968
|
|
|
3957
3969
|
@mixin mat-expansion-panel-color($config-or-theme) {
|
|
3958
3970
|
$config: mat-get-color-config($config-or-theme);
|
|
@@ -3969,14 +3981,8 @@ $mat-expansion-panel-header-transition: 225ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
3969
3981
|
border-top-color: mat-color($foreground, divider);
|
|
3970
3982
|
}
|
|
3971
3983
|
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
& .mat-expansion-panel-header.cdk-program-focused,
|
|
3975
|
-
&:not(.mat-expanded) .mat-expansion-panel-header:hover {
|
|
3976
|
-
&:not([aria-disabled='true']) {
|
|
3977
|
-
background: mat-color($background, hover);
|
|
3978
|
-
}
|
|
3979
|
-
}
|
|
3984
|
+
@include mat-private-expansion-focus {
|
|
3985
|
+
background: mat-color($background, hover);
|
|
3980
3986
|
}
|
|
3981
3987
|
|
|
3982
3988
|
// Disable the hover on touch devices since it can appear like it is stuck. We can't use
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* found in the LICENSE file at https://angular.io/license
|
|
13
13
|
*/
|
|
14
14
|
/** Current version of Angular Material. */
|
|
15
|
-
var VERSION = new i0.Version('11.1.
|
|
15
|
+
var VERSION = new i0.Version('11.1.2');
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* @license
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
// i.e. avoid core to depend on the @angular/material primary entry-point
|
|
53
53
|
// Can be removed once the Material primary entry-point no longer
|
|
54
54
|
// re-exports all secondary entry-points
|
|
55
|
-
var VERSION$1 = new i0.Version('11.1.
|
|
55
|
+
var VERSION$1 = new i0.Version('11.1.2');
|
|
56
56
|
/** @docs-private */
|
|
57
57
|
function MATERIAL_SANITY_CHECKS_FACTORY() {
|
|
58
58
|
return true;
|