From c6d30cdce4eb1d3ba66721f2275c0dc8aa4ad6b5 Mon Sep 17 00:00:00 2001 From: Darpan Kumar Date: Tue, 14 Nov 2023 23:57:12 +0530 Subject: [PATCH] fix issue #1210 in material.angular.io https://github.com/angular/material.angular.io/issues/1210 --- .../creating-a-custom-form-field-control.html | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs-content/guides/creating-a-custom-form-field-control.html b/docs-content/guides/creating-a-custom-form-field-control.html index adca7ddd53..ec1d3739be 100755 --- a/docs-content/guides/creating-a-custom-form-field-control.html +++ b/docs-content/guides/creating-a-custom-form-field-control.html @@ -364,7 +364,25 @@ +

This property allows us to specify Whether the input is currently in an autofilled state. + If set true it will add mat-form-field-autofilled class to the <mat-form-field>, + If property is not present on the control it is assumed to be false. +

autofilled = true | false;
+  
+ + +

This property allows us to specify the Value + of aria-describedby that should be merged with the described-by ids which are set by the form-field. +

userAriaDescribedBy = 'id' | 'space-separated list of element ids';
+  
+