We have been using angularJS a lot in our works.
But in this new project We are especially obliged by our clients to comply with the accessibility standards in order to apply the WAI-AA logo.
In this case we do not have experience and we could not give confirmation to our clients.
Searching the Web we did not find a resounding YES and we began to doubt
Thanks again.
Attributes have a name and a value. Attribute names must consist of one or more characters other than the space characters, U+0000 NULL, U+0022 QUOTATION MARK ("), U+0027 APOSTROPHE ('), U+003E GREATER-THAN SIGN (>), U+002F SOLIDUS (/), and U+003D EQUALS SIGN (=) characters, the control characters, and any characters that are not defined by Unicode. In the HTML syntax, attribute names, even those for foreign elements, may be written with any mix of lower- and uppercase letters that are an ASCII case-insensitive match for the attribute’s name.
Attribute values are a mixture of text and character references, except with the additional restriction that the text cannot contain an ambiguous ampersand.
<span aria-role="alert" *ngIf='needAlert'>{{alertText}}</span>[aria-role="alert"] {
background-color: #dff0d8;
border-color: #d0e9c6;
color: #3c763d;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
Thank you very much for your help.
I appreciate your comments and your help since I was a little lost and in many other forums, like stackoverflow, nobody answered me. Now I have more base and material on which to investigate and I am becoming more clear the possibilities of AngularJS in the world of accessibility.