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

Commit 1b3bad9

Browse files
committed
Prep to publish angular_components v0.9.0-alpha+14
Update README, CHANGELOG, and pubspec. PiperOrigin-RevId: 199513830
1 parent 539aff0 commit 1b3bad9

File tree

3 files changed

+34
-33
lines changed

3 files changed

+34
-33
lines changed

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.9.0-alpha+14
2+
3+
> NOTE: This code is considered production quality, but depends on angular:
4+
> 5.0.0-alpha+14. The alpha tag represents the evolving nature of the
5+
> AngularDart API, not code quality (5.0.0-alpha+14 is used in production Google
6+
> apps).
7+
8+
* Add Material Stepper component.
9+
* Material Button: Update size and position of text labels for icon buttons.
10+
* Material Checkbox: Migrate from the deprecated Glyph component to Material
11+
Icon.
12+
* Material Input: Don't override unfocused underline color when the input is
13+
invalid.
14+
* Material Select:
15+
* Support focus on dropdown button when dismissed via keyboard.
16+
* Fix focus bug when clicking on a different focusable element.
17+
* Add new CSS class names used by `ShowHideDirective` to avoid conflicts with
18+
Angular JS apps.
19+
* Only focus when `_autoFocus` is `true` when using `AutoFocusDirective`.
20+
* Update various components to use finals for `Intl.message`s to improve
21+
performance.
22+
* Update `PopupHierarchy` to better handle cases with multiple modals.
23+
124
## 0.9.0-alpha+13
225

326
> NOTE: This code is considered production quality, but depends on angular:
@@ -9,8 +32,8 @@
932
* Material Icon:
1033
* Add flag to mirror icon.
1134
* Roll back change that flipped help icon in RTL.
12-
* Material Input: Adding field to material input mixin to specify the label
13-
color when there is an error and the label is focused.
35+
* Material Input: Add field to material input mixin to specify the label color
36+
when there is an error and the label is focused.
1437
* Material Menu:
1538
* Allow setting the class for each affix item.
1639
* Add helper constructor for flat menus.

README.md

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Angular package.
1515

1616
This is a continually growing set of widgets. Recent additions include:
1717

18+
* Material Stepper
1819
* Material Slider
1920
* Material Datepicker
20-
* Material Menu
2121

2222
At this time we are not taking pull requests, but please
2323
[file an issue](https://github.com/dart-lang/angular_components/issues)
@@ -29,33 +29,11 @@ Firefox, and Safari.
2929
## Package `build_runner` support
3030

3131
As of angular: 5.0.0-alpha+5 the pub transformer has been removed in favor of
32-
code generation through package [build]. To build your project with
33-
[build_runner]:
32+
code generation through package [build]. Please see the Dart 2
33+
[migration guide].
3434

35-
1. Add two dev dependencies to your `pubspec.yaml` file:
36-
37-
```yaml
38-
dev_dependencies:
39-
build_runner: ^0.8.6
40-
build_web_compilers: ^0.4.0
41-
```
42-
43-
2. Run `pub get` on your package.
44-
3. Build your package:
45-
46-
```
47-
pub run build_runner build
48-
```
49-
50-
Or run a local development server with a file watcher and incremental
51-
rebuilds:
52-
53-
```
54-
pub run build_runner serve
55-
```
56-
57-
[build_runner]: https://pub.dartlang.org/packages/build_runner
5835
[build]: https://pub.dartlang.org/packages/build
36+
[migration guide]: https://webdev.dartlang.org/dart-2
5937

6038
## Useful links
6139

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: angular_components
2-
version: 0.9.0-alpha+13
2+
version: 0.9.0-alpha+14
33
description: >
44
The official Material Design components for AngularDart. Used at Google
55
in production apps.
66
homepage: https://webdev.dartlang.org/components
77
author: Dart Team <[email protected]>
88
environment:
9-
sdk: '>=2.0.0-dev.55.0 <2.0.0'
9+
sdk: '>=2.0.0-dev.56.0 <2.0.0'
1010
dependencies:
11-
angular: 5.0.0-alpha+13
12-
angular_forms: 2.0.0-alpha+5
11+
angular: 5.0.0-alpha+14
12+
angular_forms: 2.0.0-alpha+6
1313
async: ^2.0.6
1414
build: '>=0.11.1 <0.13.0'
1515
build_config: ^0.2.6
@@ -24,4 +24,4 @@ dependencies:
2424
protobuf: ^0.8.0
2525
perf_api: ^0.1.0
2626
quiver: '>=0.24.0 <0.30.0'
27-
sass_builder: ^2.0.0
27+
sass_builder: ^2.0.1

0 commit comments

Comments
 (0)