@angular/material 19.0.2 → 19.0.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/expansion/index.d.ts +9 -8
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/expansion.mjs +89 -82
- package/fesm2022/expansion.mjs.map +1 -1
- package/fesm2022/menu.mjs +41 -56
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/paginator.mjs +31 -22
- package/fesm2022/paginator.mjs.map +1 -1
- package/fesm2022/select.mjs +15 -4
- package/fesm2022/select.mjs.map +1 -1
- package/fesm2022/timepicker.mjs +42 -27
- package/fesm2022/timepicker.mjs.map +1 -1
- package/menu/index.d.ts +6 -0
- package/package.json +2 -2
- package/paginator/index.d.ts +8 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/schematics/ng-generate/theme-color/index_bundled.js +2 -2
- package/schematics/ng-update/index_bundled.js +31 -31
- package/select/index.d.ts +15 -2
- package/timepicker/index.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/material",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.3",
|
|
4
4
|
"description": "Angular Material",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
},
|
|
355
355
|
"peerDependencies": {
|
|
356
356
|
"@angular/animations": "^19.0.0 || ^20.0.0",
|
|
357
|
-
"@angular/cdk": "19.0.
|
|
357
|
+
"@angular/cdk": "19.0.3",
|
|
358
358
|
"@angular/core": "^19.0.0 || ^20.0.0",
|
|
359
359
|
"@angular/common": "^19.0.0 || ^20.0.0",
|
|
360
360
|
"@angular/forms": "^19.0.0 || ^20.0.0",
|
package/paginator/index.d.ts
CHANGED
|
@@ -126,6 +126,14 @@ export declare class MatPaginator implements OnInit, OnDestroy {
|
|
|
126
126
|
private _updateDisplayedPageSizeOptions;
|
|
127
127
|
/** Emits an event notifying that a change of the paginator's properties has been triggered. */
|
|
128
128
|
private _emitPageEvent;
|
|
129
|
+
/** Navigates to a specific page index. */
|
|
130
|
+
private _navigate;
|
|
131
|
+
/**
|
|
132
|
+
* Callback invoked when one of the navigation buttons is called.
|
|
133
|
+
* @param targetIndex Index to which the paginator should navigate.
|
|
134
|
+
* @param isDisabled Whether the button is disabled.
|
|
135
|
+
*/
|
|
136
|
+
protected _buttonClicked(targetIndex: number, isDisabled: boolean): void;
|
|
129
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatPaginator, [null, null, { optional: true; }]>;
|
|
130
138
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatPaginator, "mat-paginator", ["matPaginator"], { "color": { "alias": "color"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "length": { "alias": "length"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "selectConfig": { "alias": "selectConfig"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "page": "page"; }, never, never, true, never>;
|
|
131
139
|
static ngAcceptInputType_pageIndex: unknown;
|
|
@@ -19,7 +19,7 @@ const package_config_1 = require("./package-config");
|
|
|
19
19
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
20
20
|
* the default for Angular framework dependencies in CLI projects.
|
|
21
21
|
*/
|
|
22
|
-
const fallbackMaterialVersionRange = `~19.0.
|
|
22
|
+
const fallbackMaterialVersionRange = `~19.0.3`;
|
|
23
23
|
/**
|
|
24
24
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
25
25
|
* automatically executed if developers run `ng add @angular/material`.
|
|
@@ -19,7 +19,7 @@ const package_config_1 = require("./package-config");
|
|
|
19
19
|
* Note that the fallback version range does not use caret, but tilde because that is
|
|
20
20
|
* the default for Angular framework dependencies in CLI projects.
|
|
21
21
|
*/
|
|
22
|
-
const fallbackMaterialVersionRange = `~19.0.
|
|
22
|
+
const fallbackMaterialVersionRange = `~19.0.3`;
|
|
23
23
|
/**
|
|
24
24
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
25
25
|
* automatically executed if developers run `ng add @angular/material`.
|
|
@@ -50,7 +50,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
50
50
|
});
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
// bazel-out/
|
|
53
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-generate/theme-color/index.mjs
|
|
54
54
|
var theme_color_exports = {};
|
|
55
55
|
__export(theme_color_exports, {
|
|
56
56
|
default: () => theme_color_default,
|
|
@@ -2573,7 +2573,7 @@ function parseIntHex(value) {
|
|
|
2573
2573
|
return parseInt(value, 16);
|
|
2574
2574
|
}
|
|
2575
2575
|
|
|
2576
|
-
// bazel-out/
|
|
2576
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-generate/theme-color/index.mjs
|
|
2577
2577
|
var HUE_TONES = [0, 10, 20, 25, 30, 35, 40, 50, 60, 70, 80, 90, 95, 98, 99, 100];
|
|
2578
2578
|
var NEUTRAL_HUES = /* @__PURE__ */ new Map([
|
|
2579
2579
|
[4, { prev: 0, next: 10 }],
|
|
@@ -658,9 +658,9 @@ var require_tslib = __commonJS({
|
|
|
658
658
|
}
|
|
659
659
|
});
|
|
660
660
|
|
|
661
|
-
// bazel-out/
|
|
661
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/attribute-selectors.js
|
|
662
662
|
var require_attribute_selectors = __commonJS({
|
|
663
|
-
"bazel-out/
|
|
663
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/attribute-selectors.js"(exports) {
|
|
664
664
|
"use strict";
|
|
665
665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
666
666
|
exports.attributeSelectors = void 0;
|
|
@@ -668,9 +668,9 @@ var require_attribute_selectors = __commonJS({
|
|
|
668
668
|
}
|
|
669
669
|
});
|
|
670
670
|
|
|
671
|
-
// bazel-out/
|
|
671
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/class-names.js
|
|
672
672
|
var require_class_names = __commonJS({
|
|
673
|
-
"bazel-out/
|
|
673
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/class-names.js"(exports) {
|
|
674
674
|
"use strict";
|
|
675
675
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
676
676
|
exports.classNames = void 0;
|
|
@@ -678,9 +678,9 @@ var require_class_names = __commonJS({
|
|
|
678
678
|
}
|
|
679
679
|
});
|
|
680
680
|
|
|
681
|
-
// bazel-out/
|
|
681
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/constructor-checks.js
|
|
682
682
|
var require_constructor_checks = __commonJS({
|
|
683
|
-
"bazel-out/
|
|
683
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/constructor-checks.js"(exports) {
|
|
684
684
|
"use strict";
|
|
685
685
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
686
686
|
exports.constructorChecks = void 0;
|
|
@@ -688,9 +688,9 @@ var require_constructor_checks = __commonJS({
|
|
|
688
688
|
}
|
|
689
689
|
});
|
|
690
690
|
|
|
691
|
-
// bazel-out/
|
|
691
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/css-selectors.js
|
|
692
692
|
var require_css_selectors = __commonJS({
|
|
693
|
-
"bazel-out/
|
|
693
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/css-selectors.js"(exports) {
|
|
694
694
|
"use strict";
|
|
695
695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
696
696
|
exports.cssSelectors = void 0;
|
|
@@ -698,9 +698,9 @@ var require_css_selectors = __commonJS({
|
|
|
698
698
|
}
|
|
699
699
|
});
|
|
700
700
|
|
|
701
|
-
// bazel-out/
|
|
701
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/css-tokens.js
|
|
702
702
|
var require_css_tokens = __commonJS({
|
|
703
|
-
"bazel-out/
|
|
703
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/css-tokens.js"(exports) {
|
|
704
704
|
"use strict";
|
|
705
705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
706
706
|
exports.cssTokens = void 0;
|
|
@@ -708,9 +708,9 @@ var require_css_tokens = __commonJS({
|
|
|
708
708
|
}
|
|
709
709
|
});
|
|
710
710
|
|
|
711
|
-
// bazel-out/
|
|
711
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/element-selectors.js
|
|
712
712
|
var require_element_selectors = __commonJS({
|
|
713
|
-
"bazel-out/
|
|
713
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/element-selectors.js"(exports) {
|
|
714
714
|
"use strict";
|
|
715
715
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
716
716
|
exports.elementSelectors = void 0;
|
|
@@ -718,9 +718,9 @@ var require_element_selectors = __commonJS({
|
|
|
718
718
|
}
|
|
719
719
|
});
|
|
720
720
|
|
|
721
|
-
// bazel-out/
|
|
721
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/input-names.js
|
|
722
722
|
var require_input_names = __commonJS({
|
|
723
|
-
"bazel-out/
|
|
723
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/input-names.js"(exports) {
|
|
724
724
|
"use strict";
|
|
725
725
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
726
726
|
exports.inputNames = void 0;
|
|
@@ -728,9 +728,9 @@ var require_input_names = __commonJS({
|
|
|
728
728
|
}
|
|
729
729
|
});
|
|
730
730
|
|
|
731
|
-
// bazel-out/
|
|
731
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/method-call-checks.js
|
|
732
732
|
var require_method_call_checks = __commonJS({
|
|
733
|
-
"bazel-out/
|
|
733
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/method-call-checks.js"(exports) {
|
|
734
734
|
"use strict";
|
|
735
735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
736
736
|
exports.methodCallChecks = void 0;
|
|
@@ -738,9 +738,9 @@ var require_method_call_checks = __commonJS({
|
|
|
738
738
|
}
|
|
739
739
|
});
|
|
740
740
|
|
|
741
|
-
// bazel-out/
|
|
741
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/output-names.js
|
|
742
742
|
var require_output_names = __commonJS({
|
|
743
|
-
"bazel-out/
|
|
743
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/output-names.js"(exports) {
|
|
744
744
|
"use strict";
|
|
745
745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
746
746
|
exports.outputNames = void 0;
|
|
@@ -748,9 +748,9 @@ var require_output_names = __commonJS({
|
|
|
748
748
|
}
|
|
749
749
|
});
|
|
750
750
|
|
|
751
|
-
// bazel-out/
|
|
751
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/property-names.js
|
|
752
752
|
var require_property_names = __commonJS({
|
|
753
|
-
"bazel-out/
|
|
753
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/property-names.js"(exports) {
|
|
754
754
|
"use strict";
|
|
755
755
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
756
756
|
exports.propertyNames = void 0;
|
|
@@ -758,9 +758,9 @@ var require_property_names = __commonJS({
|
|
|
758
758
|
}
|
|
759
759
|
});
|
|
760
760
|
|
|
761
|
-
// bazel-out/
|
|
761
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/symbol-removal.js
|
|
762
762
|
var require_symbol_removal = __commonJS({
|
|
763
|
-
"bazel-out/
|
|
763
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/symbol-removal.js"(exports) {
|
|
764
764
|
"use strict";
|
|
765
765
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
766
766
|
exports.symbolRemoval = void 0;
|
|
@@ -768,9 +768,9 @@ var require_symbol_removal = __commonJS({
|
|
|
768
768
|
}
|
|
769
769
|
});
|
|
770
770
|
|
|
771
|
-
// bazel-out/
|
|
771
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/index.js
|
|
772
772
|
var require_data = __commonJS({
|
|
773
|
-
"bazel-out/
|
|
773
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/data/index.js"(exports) {
|
|
774
774
|
"use strict";
|
|
775
775
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
776
776
|
var tslib_1 = require_tslib();
|
|
@@ -788,9 +788,9 @@ var require_data = __commonJS({
|
|
|
788
788
|
}
|
|
789
789
|
});
|
|
790
790
|
|
|
791
|
-
// bazel-out/
|
|
791
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/upgrade-data.js
|
|
792
792
|
var require_upgrade_data = __commonJS({
|
|
793
|
-
"bazel-out/
|
|
793
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/upgrade-data.js"(exports) {
|
|
794
794
|
"use strict";
|
|
795
795
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
796
796
|
exports.materialUpgradeData = void 0;
|
|
@@ -7210,9 +7210,9 @@ var require_scss_syntax = __commonJS({
|
|
|
7210
7210
|
}
|
|
7211
7211
|
});
|
|
7212
7212
|
|
|
7213
|
-
// bazel-out/
|
|
7213
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/migrations/mat-core-removal.js
|
|
7214
7214
|
var require_mat_core_removal = __commonJS({
|
|
7215
|
-
"bazel-out/
|
|
7215
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/migrations/mat-core-removal.js"(exports) {
|
|
7216
7216
|
"use strict";
|
|
7217
7217
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7218
7218
|
exports.MatCoreMigration = void 0;
|
|
@@ -7287,9 +7287,9 @@ var require_mat_core_removal = __commonJS({
|
|
|
7287
7287
|
}
|
|
7288
7288
|
});
|
|
7289
7289
|
|
|
7290
|
-
// bazel-out/
|
|
7290
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/migrations/explicit-system-variable-prefix.js
|
|
7291
7291
|
var require_explicit_system_variable_prefix = __commonJS({
|
|
7292
|
-
"bazel-out/
|
|
7292
|
+
"bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/migrations/explicit-system-variable-prefix.js"(exports) {
|
|
7293
7293
|
"use strict";
|
|
7294
7294
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7295
7295
|
exports.ExplicitSystemVariablePrefixMigration = void 0;
|
|
@@ -7375,7 +7375,7 @@ var require_explicit_system_variable_prefix = __commonJS({
|
|
|
7375
7375
|
}
|
|
7376
7376
|
});
|
|
7377
7377
|
|
|
7378
|
-
// bazel-out/
|
|
7378
|
+
// bazel-out/k8-fastbuild/bin/src/material/schematics/ng-update/index.mjs
|
|
7379
7379
|
var ng_update_exports = {};
|
|
7380
7380
|
__export(ng_update_exports, {
|
|
7381
7381
|
updateToV19: () => updateToV19
|
package/select/index.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export declare class MatSelect implements AfterContentInit, OnChanges, OnDestroy
|
|
|
100
100
|
ngControl: NgControl;
|
|
101
101
|
private _liveAnnouncer;
|
|
102
102
|
protected _defaultOptions: MatSelectConfig | null;
|
|
103
|
+
private _initialized;
|
|
103
104
|
/** All of the defined select options. */
|
|
104
105
|
options: QueryList<MatOption>;
|
|
105
106
|
/** All of the defined groups of options. */
|
|
@@ -249,7 +250,13 @@ export declare class MatSelect implements AfterContentInit, OnChanges, OnDestroy
|
|
|
249
250
|
* If set to null or an empty string, the panel will grow to match the longest option's text.
|
|
250
251
|
*/
|
|
251
252
|
panelWidth: string | number | null;
|
|
252
|
-
|
|
253
|
+
/**
|
|
254
|
+
* By default selecting an option with a `null` or `undefined` value will reset the select's
|
|
255
|
+
* value. Enable this option if the reset behavior doesn't match your requirements and instead
|
|
256
|
+
* the nullable options should become selected. The value of this input can be controlled app-wide
|
|
257
|
+
* using the `MAT_SELECT_CONFIG` injection token.
|
|
258
|
+
*/
|
|
259
|
+
canSelectNullableOptions: boolean;
|
|
253
260
|
/** Combined stream of all of the child options' change events. */
|
|
254
261
|
readonly optionSelectionChanges: Observable<MatOptionSelectionChange>;
|
|
255
262
|
/** Event emitted when the select panel has been toggled. */
|
|
@@ -427,7 +434,7 @@ export declare class MatSelect implements AfterContentInit, OnChanges, OnDestroy
|
|
|
427
434
|
*/
|
|
428
435
|
get shouldLabelFloat(): boolean;
|
|
429
436
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatSelect, never>;
|
|
430
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatSelect, "mat-select", ["matSelect"], { "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "hideSingleSelectionIndicator": { "alias": "hideSingleSelectionIndicator"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disableOptionCentering": { "alias": "disableOptionCentering"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "value": { "alias": "value"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "typeaheadDebounceInterval": { "alias": "typeaheadDebounceInterval"; "required": false; }; "sortComparator": { "alias": "sortComparator"; "required": false; }; "id": { "alias": "id"; "required": false; }; "panelWidth": { "alias": "panelWidth"; "required": false; }; }, { "openedChange": "openedChange"; "_openedStream": "opened"; "_closedStream": "closed"; "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, ["customTrigger", "options", "optionGroups"], ["mat-select-trigger", "*"], true, never>;
|
|
437
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatSelect, "mat-select", ["matSelect"], { "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "hideSingleSelectionIndicator": { "alias": "hideSingleSelectionIndicator"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disableOptionCentering": { "alias": "disableOptionCentering"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "value": { "alias": "value"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "typeaheadDebounceInterval": { "alias": "typeaheadDebounceInterval"; "required": false; }; "sortComparator": { "alias": "sortComparator"; "required": false; }; "id": { "alias": "id"; "required": false; }; "panelWidth": { "alias": "panelWidth"; "required": false; }; "canSelectNullableOptions": { "alias": "canSelectNullableOptions"; "required": false; }; }, { "openedChange": "openedChange"; "_openedStream": "opened"; "_closedStream": "closed"; "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, ["customTrigger", "options", "optionGroups"], ["mat-select-trigger", "*"], true, never>;
|
|
431
438
|
static ngAcceptInputType_disabled: unknown;
|
|
432
439
|
static ngAcceptInputType_disableRipple: unknown;
|
|
433
440
|
static ngAcceptInputType_tabIndex: unknown;
|
|
@@ -436,6 +443,7 @@ export declare class MatSelect implements AfterContentInit, OnChanges, OnDestroy
|
|
|
436
443
|
static ngAcceptInputType_multiple: unknown;
|
|
437
444
|
static ngAcceptInputType_disableOptionCentering: unknown;
|
|
438
445
|
static ngAcceptInputType_typeaheadDebounceInterval: unknown;
|
|
446
|
+
static ngAcceptInputType_canSelectNullableOptions: unknown;
|
|
439
447
|
}
|
|
440
448
|
|
|
441
449
|
/**
|
|
@@ -482,6 +490,11 @@ export declare interface MatSelectConfig {
|
|
|
482
490
|
* If set to null or an empty string, the panel will grow to match the longest option's text.
|
|
483
491
|
*/
|
|
484
492
|
panelWidth?: string | number | null;
|
|
493
|
+
/**
|
|
494
|
+
* Whether nullable options can be selected by default.
|
|
495
|
+
* See `MatSelect.canSelectNullableOptions` for more information.
|
|
496
|
+
*/
|
|
497
|
+
canSelectNullableOptions?: boolean;
|
|
485
498
|
}
|
|
486
499
|
|
|
487
500
|
export declare class MatSelectModule {
|
package/timepicker/index.d.ts
CHANGED
|
@@ -93,6 +93,8 @@ export declare class MatTimepicker<D> implements OnDestroy, MatOptionParentCompo
|
|
|
93
93
|
readonly ariaLabel: InputSignal<string | null>;
|
|
94
94
|
/** ID of the label element for the timepicker panel. */
|
|
95
95
|
readonly ariaLabelledby: InputSignal<string | null>;
|
|
96
|
+
/** Whether the timepicker is currently disabled. */
|
|
97
|
+
readonly disabled: Signal<boolean>;
|
|
96
98
|
constructor();
|
|
97
99
|
/** Opens the timepicker. */
|
|
98
100
|
open(): void;
|
|
@@ -281,6 +283,7 @@ export declare interface MatTimepickerSelected<D> {
|
|
|
281
283
|
export declare class MatTimepickerToggle<D> {
|
|
282
284
|
private _defaultConfig;
|
|
283
285
|
private _defaultTabIndex;
|
|
286
|
+
protected _isDisabled: Signal<boolean>;
|
|
284
287
|
/** Timepicker instance that the button will toggle. */
|
|
285
288
|
readonly timepicker: InputSignal<MatTimepicker<D>>;
|
|
286
289
|
/** Screen-reader label for the button. */
|