angular_components
angular_components copied to clipboard
The official Material Design components for AngularDart. Used at Google in production apps.
I have following markup: ``` ``` and backcode ``` testModel = FormBuilder.controlGroup({ "test1": ["", Validators.required], "test2": ["", Validators.required] }); testModel.controls['test2'].value; print( testModel.controls['test2']); ``` I have added directrives like ``` coreDirectives,...
According to #132, `material-button` is not backed by a HTML `button`. This breaks form accessibility. If a form has no explicitly declared submit button it cannot be submitted with the...
MaterialTimePickerComponent popupVisible "Make the dropdown visibility accessible so it can be opened from outside the component." If you set `timePicker.popupVisible = true;` the popupVisibleChange event is triggered with a bool...
I learned on my own fault that this has to be two ways in order to actually modify the selection list.
I'm using: Dart 2.5.0, ``` dependencies: angular: ^5.3.0 angular_components: ^0.13.0 ``` If I set a text on `yesText` in a `MaterialStepperComponent`, the stepper ignores it and shows "Continue". I have...
I'm creating table rows in with an *ngFor. For certain students I would like to show an icon that shows a material-tooltip-card when hovered over it. Is there a way...
The analyzer shows the following message to MenuItem component: > _'action' is deprecated and shouldn't be used._ However, the _example_ in AngularDart Gallery is implemeting the deprecated `action`: [Material Menu/MaterialMenuDemoComponent...
I have found a bug where binding two inputs of material-checkbox gives an event stream with a false event on it. If the checked and indeterminate inputs are changed from...
factoryRenderer isn't functional in MaterialTreeDropdownComponent because it's not being passed to the MaterialTreeComponent. Seems like a simple oversight.
You can not put a acx-scorecard inside a material-expansionpanel. The scorecard will be always shown as part of the name/title of the expansionpanel, not as content. ``` dependencies: angular: ^6.0.0-alpha...