@angular/material 16.1.0-rc.0 → 16.1.0
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/esm2022/core/version.mjs +1 -1
- package/esm2022/icon/icon-registry.mjs +2 -2
- package/esm2022/select/select.mjs +14 -1
- package/esm2022/slider/slider-input.mjs +2 -1
- package/esm2022/slider/slider-interface.mjs +1 -1
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +6 -3
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/icon.mjs +1 -1
- package/fesm2022/icon.mjs.map +1 -1
- package/fesm2022/select.mjs +13 -0
- package/fesm2022/select.mjs.map +1 -1
- package/fesm2022/slider.mjs +1 -0
- package/fesm2022/slider.mjs.map +1 -1
- package/fesm2022/tabs.mjs +4 -1
- package/fesm2022/tabs.mjs.map +1 -1
- package/form-field/_form-field-theme.import.scss +1 -1
- package/icon/index.d.ts +1 -1
- package/package.json +7 -7
- package/schematics/ng-add/index.js +2 -2
- package/schematics/ng-add/index.mjs +2 -2
- package/slider/index.d.ts +1 -0
|
@@ -14,7 +14,7 @@ $mat-mdc-mdc-text-field-disabled-placeholder-ink-color, $mat-mdc-mdc-text-field-
|
|
|
14
14
|
$mat-mdc-mdc-text-field-ink-color, $mat-mdc-mdc-text-field-label,
|
|
15
15
|
$mat-mdc-mdc-text-field-outlined-disabled-border, $mat-mdc-mdc-text-field-outlined-hover-border,
|
|
16
16
|
$mat-mdc-mdc-text-field-outlined-idle-border, $mat-mdc-mdc-text-field-placeholder-ink-color;
|
|
17
|
-
@forward '
|
|
17
|
+
@forward '../core/style/layout-common.import';
|
|
18
18
|
@forward 'form-field-density' as mat-mdc-*;
|
|
19
19
|
@forward 'form-field-subscript' as mat-mdc-*;
|
|
20
20
|
@forward 'form-field-focus-overlay' as mat-mdc-*;
|
package/icon/index.d.ts
CHANGED
|
@@ -265,7 +265,7 @@ export declare class MatIconRegistry implements OnDestroy {
|
|
|
265
265
|
/**
|
|
266
266
|
* The CSS classes to apply when an `<mat-icon>` component has no icon name, url, or font
|
|
267
267
|
* specified. The default 'material-icons' value assumes that the material icon font has been
|
|
268
|
-
* loaded as described at
|
|
268
|
+
* loaded as described at https://google.github.io/material-design-icons/#icon-font-for-the-web
|
|
269
269
|
*/
|
|
270
270
|
private _defaultFontSetClass;
|
|
271
271
|
constructor(_httpClient: HttpClient, _sanitizer: DomSanitizer, document: any, _errorHandler: ErrorHandler);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/material",
|
|
3
|
-
"version": "16.1.0
|
|
3
|
+
"version": "16.1.0",
|
|
4
4
|
"description": "Angular Material",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -756,12 +756,12 @@
|
|
|
756
756
|
}
|
|
757
757
|
},
|
|
758
758
|
"peerDependencies": {
|
|
759
|
-
"@angular/animations": "^16.0.0
|
|
760
|
-
"@angular/cdk": "16.1.0
|
|
761
|
-
"@angular/core": "^16.0.0
|
|
762
|
-
"@angular/common": "^16.0.0
|
|
763
|
-
"@angular/forms": "^16.0.0
|
|
764
|
-
"@angular/platform-browser": "^16.0.0
|
|
759
|
+
"@angular/animations": "^16.0.0 || ^17.0.0",
|
|
760
|
+
"@angular/cdk": "16.1.0",
|
|
761
|
+
"@angular/core": "^16.0.0 || ^17.0.0",
|
|
762
|
+
"@angular/common": "^16.0.0 || ^17.0.0",
|
|
763
|
+
"@angular/forms": "^16.0.0 || ^17.0.0",
|
|
764
|
+
"@angular/platform-browser": "^16.0.0 || ^17.0.0",
|
|
765
765
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
766
766
|
},
|
|
767
767
|
"dependencies": {
|
|
@@ -18,7 +18,7 @@ const package_config_1 = require("./package-config");
|
|
|
18
18
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
19
19
|
* the default for Angular framework dependencies in CLI projects.
|
|
20
20
|
*/
|
|
21
|
-
const fallbackMaterialVersionRange = `~16.1.0
|
|
21
|
+
const fallbackMaterialVersionRange = `~16.1.0`;
|
|
22
22
|
/**
|
|
23
23
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
24
24
|
* automatically executed if developers run `ng add @angular/material`.
|
|
@@ -33,7 +33,7 @@ function default_1(options) {
|
|
|
33
33
|
// have the same version tag if possible.
|
|
34
34
|
const ngCoreVersionTag = (0, package_config_1.getPackageVersionFromPackageJson)(host, '@angular/core');
|
|
35
35
|
const materialVersionRange = (0, package_config_1.getPackageVersionFromPackageJson)(host, '@angular/material');
|
|
36
|
-
const angularDependencyVersion = ngCoreVersionTag || `^16.0.0
|
|
36
|
+
const angularDependencyVersion = ngCoreVersionTag || `^16.0.0 || ^17.0.0`;
|
|
37
37
|
// The CLI inserts `@angular/material` into the `package.json` before this schematic runs.
|
|
38
38
|
// This means that we do not need to insert Angular Material into `package.json` files again.
|
|
39
39
|
// In some cases though, it could happen that this schematic runs outside of the CLI `ng add`
|
|
@@ -18,7 +18,7 @@ const package_config_1 = require("./package-config");
|
|
|
18
18
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
19
19
|
* the default for Angular framework dependencies in CLI projects.
|
|
20
20
|
*/
|
|
21
|
-
const fallbackMaterialVersionRange = `~16.1.0
|
|
21
|
+
const fallbackMaterialVersionRange = `~16.1.0`;
|
|
22
22
|
/**
|
|
23
23
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
24
24
|
* automatically executed if developers run `ng add @angular/material`.
|
|
@@ -33,7 +33,7 @@ function default_1(options) {
|
|
|
33
33
|
// have the same version tag if possible.
|
|
34
34
|
const ngCoreVersionTag = (0, package_config_1.getPackageVersionFromPackageJson)(host, '@angular/core');
|
|
35
35
|
const materialVersionRange = (0, package_config_1.getPackageVersionFromPackageJson)(host, '@angular/material');
|
|
36
|
-
const angularDependencyVersion = ngCoreVersionTag || `^16.0.0
|
|
36
|
+
const angularDependencyVersion = ngCoreVersionTag || `^16.0.0 || ^17.0.0`;
|
|
37
37
|
// The CLI inserts `@angular/material` into the `package.json` before this schematic runs.
|
|
38
38
|
// This means that we do not need to insert Angular Material into `package.json` files again.
|
|
39
39
|
// In some cases though, it could happen that this schematic runs outside of the CLI `ng add`
|
package/slider/index.d.ts
CHANGED