diff --git a/src/material/timepicker/timepicker-input.ts b/src/material/timepicker/timepicker-input.ts index 795c4cb1b72e..54f088f7dd28 100644 --- a/src/material/timepicker/timepicker-input.ts +++ b/src/material/timepicker/timepicker-input.ts @@ -144,8 +144,11 @@ export class MatTimepickerInput implements ControlValueAccessor, Validator, O () => this.disabledInput() || this._accessorDisabled(), ); - /** Whether the input should be disabled through the template. */ - protected readonly disabledInput: InputSignalWithTransform = input(false, { + /** + * Whether the input should be disabled through the template. + * @docs-private + */ + readonly disabledInput: InputSignalWithTransform = input(false, { transform: booleanAttribute, alias: 'disabled', }); diff --git a/tools/public_api_guard/material/timepicker.md b/tools/public_api_guard/material/timepicker.md index c30900da874a..ecfcae907ac8 100644 --- a/tools/public_api_guard/material/timepicker.md +++ b/tools/public_api_guard/material/timepicker.md @@ -71,7 +71,7 @@ export class MatTimepickerInput implements ControlValueAccessor, Validator, O protected readonly _ariaControls: Signal; protected readonly _ariaExpanded: Signal; readonly disabled: Signal; - protected readonly disabledInput: InputSignalWithTransform; + readonly disabledInput: InputSignalWithTransform; focus(): void; _getLabelId(): string | null; getOverlayOrigin(): ElementRef;