How do I disable ngAria in ngMaterial?

后端 未结 5 1033
不知归路
不知归路 2021-01-07 17:43

ngAria (an accessibility module) is adding an unnecessary bower import to my Angular Material project - and now it is throwing warnings:

Attribute \"

5条回答
  •  旧时难觅i
    2021-01-07 18:28

    Disabling messages globally is possible as of 1.1.0:

    app.config(function($mdAriaProvider) {
       // Globally disables all ARIA warnings.
       $mdAriaProvider.disableWarnings();
    });
    

    (But do note the discussion in other answers about aria labels being important for accessibility!)

提交回复
热议问题