@angular/material 17.3.8 → 17.3.10
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/chips/index.d.ts +2 -9
- package/esm2022/chips/chip-input.mjs +9 -28
- package/esm2022/chips/chip.mjs +4 -2
- package/esm2022/core/ripple/ripple-renderer.mjs +2 -1
- package/esm2022/core/version.mjs +1 -1
- package/esm2022/slider/slider-input.mjs +6 -4
- package/esm2022/slider/slider-interface.mjs +1 -1
- package/esm2022/slider/slider.mjs +4 -4
- package/fesm2022/chips.mjs +11 -28
- package/fesm2022/chips.mjs.map +1 -1
- package/fesm2022/core.mjs +2 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/slider.mjs +8 -6
- package/fesm2022/slider.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/slider/index.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/material",
|
|
3
|
-
"version": "17.3.
|
|
3
|
+
"version": "17.3.10",
|
|
4
4
|
"description": "Angular Material",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
},
|
|
479
479
|
"peerDependencies": {
|
|
480
480
|
"@angular/animations": "^17.0.0 || ^18.0.0",
|
|
481
|
-
"@angular/cdk": "17.3.
|
|
481
|
+
"@angular/cdk": "17.3.10",
|
|
482
482
|
"@angular/core": "^17.0.0 || ^18.0.0",
|
|
483
483
|
"@angular/common": "^17.0.0 || ^18.0.0",
|
|
484
484
|
"@angular/forms": "^17.0.0 || ^18.0.0",
|
|
@@ -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.
|
|
21
|
+
const fallbackMaterialVersionRange = `~17.3.10`;
|
|
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`.
|
|
@@ -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.
|
|
21
|
+
const fallbackMaterialVersionRange = `~17.3.10`;
|
|
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`.
|
package/slider/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { QueryList } from '@angular/core';
|
|
|
13
13
|
import { RippleGlobalOptions } from '@angular/material/core';
|
|
14
14
|
import { Subject } from 'rxjs';
|
|
15
15
|
import { ThemePalette } from '@angular/material/core';
|
|
16
|
+
import { WritableSignal } from '@angular/core';
|
|
16
17
|
|
|
17
18
|
declare namespace i2 {
|
|
18
19
|
export {
|
|
@@ -410,7 +411,7 @@ export declare class MatSliderThumb implements _MatSliderThumb, OnDestroy, Contr
|
|
|
410
411
|
/** The host native HTML input element. */
|
|
411
412
|
_hostElement: HTMLInputElement;
|
|
412
413
|
/** The aria-valuetext string representation of the input's value. */
|
|
413
|
-
_valuetext: string
|
|
414
|
+
_valuetext: WritableSignal<string>;
|
|
414
415
|
/** The radius of a native html slider's knob. */
|
|
415
416
|
_knobRadius: number;
|
|
416
417
|
/** The distance in px from the start of the slider track to the first tick mark. */
|
|
@@ -555,7 +556,7 @@ declare interface _MatSliderThumb {
|
|
|
555
556
|
/** Whether the input is currently focused (either by tab or after clicking). */
|
|
556
557
|
_isFocused: boolean;
|
|
557
558
|
/** The aria-valuetext string representation of the input's value. */
|
|
558
|
-
_valuetext: string
|
|
559
|
+
_valuetext: WritableSignal<string>;
|
|
559
560
|
/**
|
|
560
561
|
* Indicates whether UI updates should be skipped.
|
|
561
562
|
*
|