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

Commit 81e93c8

Browse files
committed
Prep to publish angular_components v0.9.2
Update dependencies, and CHANGELOG. Update copybara script to fix path errors after switching to mono_repo. PiperOrigin-RevId: 214342130
1 parent 98f929a commit 81e93c8

File tree

31 files changed

+89
-32
lines changed

31 files changed

+89
-32
lines changed

angular_components/CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1+
## 0.9.2
2+
3+
### Component Updates
4+
5+
#### Material Auto Suggest Input
6+
* Implement `HasDisabled`.
7+
* Allow `selection` input to take selected value for single selection in
8+
addition to `SelectionModel`.
9+
* Expose `selection` output to emit selected value(s) on selection changes.
10+
* Add `shouldClearSelectionOnInput` input.
11+
12+
#### Material Button
13+
* Remove unused `hover-color` argument from button color Sass mixins.
14+
15+
#### Material Datepicker
16+
* Add Sass mixins for rendering the range title to the left of the dropdown
17+
component and for removing some padding to save vertical space.
18+
* Harden `DatepickerComparison.comparesTo()` against nulls.
19+
20+
#### Material Expansion Panel
21+
* Add transition to save/cancel collapse.
22+
* Add Sass mixin for custom `box-shadow`.
23+
24+
#### Material Input
25+
* Add Sass mixin to set the bottom section margins.
26+
* Allow `MaterialPercentInputDirective` to follow `NumberFormat` specification
27+
for percent.
28+
* Allow `selectionOptions` input to accept a `List` in addition to
29+
`SelectionOptions`.
30+
31+
#### Material Menu
32+
* Remove Sass mixin `material-fab-menu-icon-size`.
33+
34+
#### Material Tooltip
35+
* Change the ink tooltip stay open if the mouse is currently in it's bounds.
36+
37+
#### Material Tree
38+
* Allows dropdown component to accept custom popup positions.
39+
* Fix off-center alignment issue between radio button and text in
40+
`MaterialTreeGroupFlatRadioComponent`.
41+
42+
#### Scorecard
43+
* Expose `ScorecardBarDirective` so it can be resued by other card bar
44+
implementations.
45+
46+
### Miscellaneous
47+
* Improvements to `StickyController` for the __single-stickyKey case__: Add
48+
`enableSmoothPushing` setting, and partially support stickyKey'd elements of
49+
differing heights.
50+
* Replace all deprecated Material typography variables/mixins with their
51+
canonical versions, and inline mixins with no replacement.
52+
* Fix `unawaited_futures` lint warnings by adding missing `await`s.
53+
54+
### Documentation
55+
* Add new readme for Material Auto-suggest Input.
56+
* Minor docs fixes.
57+
158
## 0.9.1
259

360
### Component Updates

angular_components/lib/app_layout/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Here is an example:
6868
</header>
6969
```
7070

71-
![Simple App Bar](/dart-lang/angular_components/master/lib/app_layout/g3doc/simple_app_bar.png)
71+
![Simple App Bar](/dart-lang/angular_components/master/angular_components/lib/app_layout/g3doc/simple_app_bar.png)
7272

7373
## Drawers
7474

@@ -271,7 +271,7 @@ using a mixin.
271271
Example scss drawer content component:
272272

273273
```scss
274-
@import 'third_party/dart_src/acx/app_layout/lib/mixins';
274+
@import 'package:angular_components/lib/app_layout/mixins';
275275

276276
:host {
277277
@include mat-drawer-list-items;

angular_components/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: angular_components
2-
version: 0.9.1
2+
version: 0.9.2
33
description: >
44
The official Material Design components for AngularDart. Used at Google in
55
production apps.
@@ -14,7 +14,7 @@ dependencies:
1414
async: ^2.0.8
1515
build: '>=0.11.1 <0.13.0'
1616
build_config: '>=0.2.6 <0.4.0'
17-
built_collection: '>=1.6.0 <4.0.0'
17+
built_collection: ^4.0.0
1818
collection: ^1.14.10
1919
fixnum: ^0.10.7
2020
intl: '>=0.14.0 <0.16.0'

angular_gallery/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_router: 2.0.0-alpha+19
1010
build: '>=0.11.1 <0.13.0'

angular_gallery_section/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
dependencies:
66
analyzer: ^0.32.4
77
angular: ^5.0.0
8-
angular_components: 0.9.1
8+
angular_components: 0.9.2
99
build: '>=0.11.1 <0.13.0'
1010
build_config: '>=0.2.6 <0.4.0'
1111
glob: ^1.1.5

examples/angular_components_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55

66
dependencies:
77
angular: ^5.0.0
8-
angular_components: 0.9.1
8+
angular_components: 0.9.2
99
angular_gallery:
1010
path: ../../angular_gallery
1111
app_layout_example:

examples/app_layout_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_button_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_card_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_checkbox_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_chips_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_datepicker_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_dialog_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_expansionpanel_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_icon_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_input_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_list_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_menu_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_popup_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_progress_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_radio_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_select_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_slider_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_spinner_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_stepper_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_tab_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_toggle_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_tooltip_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_tree_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/material_yes_no_buttons_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

examples/scorecard_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
sdk: '>=2.0.0-dev.69.5 <3.0.0'
55
dependencies:
66
angular: ^5.0.0
7-
angular_components: 0.9.1
7+
angular_components: 0.9.2
88
angular_forms: ^2.0.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

0 commit comments

Comments
 (0)