This repository was archived by the owner on May 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.9.0-alpha+6
2+
3+ > NOTE: This code is considered production quality, but depends on angular:
4+ > 5.0.0-alpha+5. The alpha tag represents the evolving nature of the AngularDart
5+ > api, not code quality (5.0.0-alpha+5 is used in production Google apps).
6+
7+ * App Layout: Add mixin for permanent/persistent drawers and fix mixin for
8+ temporary drawers.
9+ * Material Auto Suggest Input: Add aria label to close button.
10+ * Material Checkbox: Remove negative top margin.
11+ * Material Input:
12+ * Show character count when maxCount is null.
13+ * Add attribute to set aria-label when a visible label is not desired.
14+ * Material Menu:
15+ * Allow expanding on group title clicks.
16+ * Add a style variation to menu group to allow emphasizing the first group.
17+ * Material Popup: Disable constrain to viewport in dropdowns via a new,
18+ separate ` @Input ` .
19+ * Material Tree: Adds an option to select parent nodes in a single selection
20+ model tree.
21+ * Remove position: -webkit-sticky support.
22+ * Update type of materialProviders so it can be used when bootstrapping.
23+ * Migrate from ` host ` to ` @HostListener ` and ` @HostBinding ` .
24+ * Create a new API for caching item renderers.
25+ * Cleanup type warnings and other Dart 2 fixes.
26+
127## 0.9.0-alpha+5
228
329> NOTE: This code is considered production quality, but depends on angular:
Original file line number Diff line number Diff line change 44
55library angular_components;
66
7- import 'package:angular/angular.dart' show Provider;
8-
97import 'app_layout/material_persistent_drawer.dart' ;
108import 'app_layout/material_temporary_drawer.dart' ;
119import 'auto_dismiss/auto_dismiss.dart' ;
@@ -272,6 +270,6 @@ const List<dynamic> materialDirectives = const [
272270];
273271
274272/// A convenience list of all providers exposed by this package.
275- const List <List < Provider >> materialProviders = const < List < Provider > > [
273+ const List <dynamic > materialProviders = const [
276274 popupBindings,
277275];
Original file line number Diff line number Diff line change 11name : angular_components
2- version : 0.9.0-alpha+5
2+ version : 0.9.0-alpha+6
33description : >
44 The official Material Design components for AngularDart. Used at Google
55 in production apps.
You can’t perform that action at this time.
0 commit comments