@angular/material 17.3.0-rc.0 → 17.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/material",
3
- "version": "17.3.0-rc.0",
3
+ "version": "17.3.0",
4
4
  "description": "Angular Material",
5
5
  "repository": {
6
6
  "type": "git",
@@ -477,12 +477,12 @@
477
477
  }
478
478
  },
479
479
  "peerDependencies": {
480
- "@angular/animations": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
481
- "@angular/cdk": "17.3.0-rc.0",
482
- "@angular/core": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
483
- "@angular/common": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
484
- "@angular/forms": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
485
- "@angular/platform-browser": "^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0",
480
+ "@angular/animations": "^17.0.0 || ^18.0.0",
481
+ "@angular/cdk": "17.3.0",
482
+ "@angular/core": "^17.0.0 || ^18.0.0",
483
+ "@angular/common": "^17.0.0 || ^18.0.0",
484
+ "@angular/forms": "^17.0.0 || ^18.0.0",
485
+ "@angular/platform-browser": "^17.0.0 || ^18.0.0",
486
486
  "rxjs": "^6.5.3 || ^7.4.0"
487
487
  },
488
488
  "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 = `~17.3.0-rc.0`;
21
+ const fallbackMaterialVersionRange = `~17.3.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 || `^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0`;
36
+ const angularDependencyVersion = ngCoreVersionTag || `^17.0.0 || ^18.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 = `~17.3.0-rc.0`;
21
+ const fallbackMaterialVersionRange = `~17.3.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 || `^17.0.0-0 || ^17.1.0-0 || ^17.2.0-0 || ^17.3.0-0 || ^18.0.0-0`;
36
+ const angularDependencyVersion = ngCoreVersionTag || `^17.0.0 || ^18.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
@@ -256,6 +256,8 @@ declare interface _MatSlider {
256
256
  _onTranslateXChange: (source: _MatSliderThumb) => void;
257
257
  /** Updates the stored slider dimensions using the current bounding client rect. */
258
258
  _updateDimensions: () => void;
259
+ /** Updates the scale on the active portion of the track. */
260
+ _updateTrackUI: (source: _MatSliderThumb) => void;
259
261
  /** Used to set the transition duration for thumb and track animations. */
260
262
  _setTransition: (withAnimation: boolean) => void;
261
263
  _cdr: ChangeDetectorRef;