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 +34
-33
lines changed Expand file tree Collapse file tree 3 files changed +34
-33
lines changed Original file line number Diff line number Diff line change
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
+
1
24
## 0.9.0-alpha+13
2
25
3
26
> NOTE: This code is considered production quality, but depends on angular:
9
32
* Material Icon:
10
33
* Add flag to mirror icon.
11
34
* 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.
14
37
* Material Menu:
15
38
* Allow setting the class for each affix item.
16
39
* Add helper constructor for flat menus.
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ Angular package.
15
15
16
16
This is a continually growing set of widgets. Recent additions include:
17
17
18
+ * Material Stepper
18
19
* Material Slider
19
20
* Material Datepicker
20
- * Material Menu
21
21
22
22
At this time we are not taking pull requests, but please
23
23
[ file an issue] ( https://github.com/dart-lang/angular_components/issues )
@@ -29,33 +29,11 @@ Firefox, and Safari.
29
29
## Package ` build_runner ` support
30
30
31
31
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 ] .
34
34
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
58
35
[ build ] : https://pub.dartlang.org/packages/build
36
+ [ migration guide ] : https://webdev.dartlang.org/dart-2
59
37
60
38
## Useful links
61
39
Original file line number Diff line number Diff line change 1
1
name : angular_components
2
- version : 0.9.0-alpha+13
2
+ version : 0.9.0-alpha+14
3
3
description : >
4
4
The official Material Design components for AngularDart. Used at Google
5
5
in production apps.
6
6
homepage : https://webdev.dartlang.org/components
7
7
author :
Dart Team <[email protected] >
8
8
environment :
9
- sdk : ' >=2.0.0-dev.55 .0 <2.0.0'
9
+ sdk : ' >=2.0.0-dev.56 .0 <2.0.0'
10
10
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
13
13
async : ^2.0.6
14
14
build : ' >=0.11.1 <0.13.0'
15
15
build_config : ^0.2.6
@@ -24,4 +24,4 @@ dependencies:
24
24
protobuf : ^0.8.0
25
25
perf_api : ^0.1.0
26
26
quiver : ' >=0.24.0 <0.30.0'
27
- sass_builder : ^2.0.0
27
+ sass_builder : ^2.0.1
You can’t perform that action at this time.
0 commit comments