angular_components icon indicating copy to clipboard operation
angular_components copied to clipboard

The official Material Design components for AngularDart. Used at Google in production apps.

Results 101 angular_components issues
Sort by recently updated
recently updated
newest added

When a form is submitted, chrome firefox and other browsers use algorithms that rely on `name` and `id` field of `input` tags to determine what value to save and retrieve...

Type: enhancement

This code works as expected: Test 1 Test 1 content Test 1 inner Test 1 inner content Press the `Test 1` button and the first modal is displayed with `Test...

Widget Request

The following code is from [focus_trap.dart](https://github.com/dart-lang/angular_components/blob/master/lib/focus/focus_trap.dart#L65) ``` dart void _focusFirstInOrder(Iterator iterator) { while (iterator.moveNext()) { if (iterator.current.tabIndex == 0 && _visible(iterator.current)) { iterator.current.focus(); return; } } _focusDefault(); } bool _visible(Element...

With materialDirectives now deprecated is there a list of exactly what to place in our directives array for a given component? Other than looking at the examples, there doesn't seem...

Type: question

Would be nice to have the toggle behavior to **Material Button Component** ``. Similar to material [button-toggle](https://material.angular.io/components/button-toggle/examples).

Widget Request

To help avoid issues like #303, consider adding a `dartdoc_options.yaml` file: ```yaml dartdoc: include: angular_components ``` Related: - #252 - https://github.com/dart-lang/dartdoc/pull/1676/files#diff-04c6e90faac2675aa89e2176d2eec7d8

See: https://pub.dartlang.org/documentation/angular_components/0.9.0-beta+1/third_party.dart_src.acx.material_datepicker_date_range/third_party.dart_src.acx.material_datepicker_date_range-library.html

These are both great components for web apps which support both desktop and mobile due to their flexibility. I don't currently have a use for a side sheet in my...

Widget Request

To reproduce: - Use stagehand (or WebStorm) to create the example AngularDart project. - Update the pubspec to use angular_components: ^0.7.0. - In `lib/src/todo_list/todo_list_component.dart`: - Wrap the `` element in...

My code: ``` ``` Result in Chrome Dev Tools: Defining the autocomplete attribute does nothing. `inputAriaAutocomplete` doesn't seem to be enough to get rid of those warnings in Chrome Dev...

Type: enhancement