Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Commit 1eb873c

Browse files
committed
Prep for external sync.
Update pubspec and CHANGELOG. Update type of materialProviders so it can be used when bootstrapping external applications. PiperOrigin-RevId: 186512889
1 parent b9f986e commit 1eb873c

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
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:

lib/angular_components.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
library angular_components;
66

7-
import 'package:angular/angular.dart' show Provider;
8-
97
import 'app_layout/material_persistent_drawer.dart';
108
import 'app_layout/material_temporary_drawer.dart';
119
import '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
];

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: angular_components
2-
version: 0.9.0-alpha+5
2+
version: 0.9.0-alpha+6
33
description: >
44
The official Material Design components for AngularDart. Used at Google
55
in production apps.

0 commit comments

Comments
 (0)