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

Commit

Permalink
Prep to publish angular_components v0.9.2
Browse files Browse the repository at this point in the history
Update dependencies, and CHANGELOG.
Update copybara script to fix path errors after switching to mono_repo.

PiperOrigin-RevId: 214342130
  • Loading branch information
nshahan committed Sep 25, 2018
1 parent 98f929a commit 81e93c8
Show file tree
Hide file tree
Showing 31 changed files with 89 additions and 32 deletions.
57 changes: 57 additions & 0 deletions angular_components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
## 0.9.2

### Component Updates

#### Material Auto Suggest Input
* Implement `HasDisabled`.
* Allow `selection` input to take selected value for single selection in
addition to `SelectionModel`.
* Expose `selection` output to emit selected value(s) on selection changes.
* Add `shouldClearSelectionOnInput` input.

#### Material Button
* Remove unused `hover-color` argument from button color Sass mixins.

#### Material Datepicker
* Add Sass mixins for rendering the range title to the left of the dropdown
component and for removing some padding to save vertical space.
* Harden `DatepickerComparison.comparesTo()` against nulls.

#### Material Expansion Panel
* Add transition to save/cancel collapse.
* Add Sass mixin for custom `box-shadow`.

#### Material Input
* Add Sass mixin to set the bottom section margins.
* Allow `MaterialPercentInputDirective` to follow `NumberFormat` specification
for percent.
* Allow `selectionOptions` input to accept a `List` in addition to
`SelectionOptions`.

#### Material Menu
* Remove Sass mixin `material-fab-menu-icon-size`.

#### Material Tooltip
* Change the ink tooltip stay open if the mouse is currently in it's bounds.

#### Material Tree
* Allows dropdown component to accept custom popup positions.
* Fix off-center alignment issue between radio button and text in
`MaterialTreeGroupFlatRadioComponent`.

#### Scorecard
* Expose `ScorecardBarDirective` so it can be resued by other card bar
implementations.

### Miscellaneous
* Improvements to `StickyController` for the __single-stickyKey case__: Add
`enableSmoothPushing` setting, and partially support stickyKey'd elements of
differing heights.
* Replace all deprecated Material typography variables/mixins with their
canonical versions, and inline mixins with no replacement.
* Fix `unawaited_futures` lint warnings by adding missing `await`s.

### Documentation
* Add new readme for Material Auto-suggest Input.
* Minor docs fixes.

## 0.9.1

### Component Updates
Expand Down
4 changes: 2 additions & 2 deletions angular_components/lib/app_layout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Here is an example:
</header>
```

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

## Drawers

Expand Down Expand Up @@ -271,7 +271,7 @@ using a mixin.
Example scss drawer content component:

```scss
@import 'third_party/dart_src/acx/app_layout/lib/mixins';
@import 'package:angular_components/lib/app_layout/mixins';

:host {
@include mat-drawer-list-items;
Expand Down
4 changes: 2 additions & 2 deletions angular_components/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angular_components
version: 0.9.1
version: 0.9.2
description: >
The official Material Design components for AngularDart. Used at Google in
production apps.
Expand All @@ -14,7 +14,7 @@ dependencies:
async: ^2.0.8
build: '>=0.11.1 <0.13.0'
build_config: '>=0.2.6 <0.4.0'
built_collection: '>=1.6.0 <4.0.0'
built_collection: ^4.0.0
collection: ^1.14.10
fixnum: ^0.10.7
intl: '>=0.14.0 <0.16.0'
Expand Down
2 changes: 1 addition & 1 deletion angular_gallery/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_router: 2.0.0-alpha+19
build: '>=0.11.1 <0.13.0'
Expand Down
2 changes: 1 addition & 1 deletion angular_gallery_section/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:
dependencies:
analyzer: ^0.32.4
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
build: '>=0.11.1 <0.13.0'
build_config: '>=0.2.6 <0.4.0'
glob: ^1.1.5
Expand Down
2 changes: 1 addition & 1 deletion examples/angular_components_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:

dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery:
path: ../../angular_gallery
app_layout_example:
Expand Down
2 changes: 1 addition & 1 deletion examples/app_layout_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_button_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_card_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_checkbox_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down
2 changes: 1 addition & 1 deletion examples/material_chips_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_datepicker_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
Expand Down
2 changes: 1 addition & 1 deletion examples/material_dialog_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_expansionpanel_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down
2 changes: 1 addition & 1 deletion examples/material_icon_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_input_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down
2 changes: 1 addition & 1 deletion examples/material_list_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_menu_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
Expand Down
2 changes: 1 addition & 1 deletion examples/material_popup_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_progress_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_radio_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down
2 changes: 1 addition & 1 deletion examples/material_select_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down
2 changes: 1 addition & 1 deletion examples/material_slider_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_spinner_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_stepper_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_tab_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_toggle_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_tooltip_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_tree_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/material_yes_no_buttons_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_gallery_section:
path: ../../angular_gallery_section
build_config: '>=0.2.6 <0.4.0'
2 changes: 1 addition & 1 deletion examples/scorecard_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
sdk: '>=2.0.0-dev.69.5 <3.0.0'
dependencies:
angular: ^5.0.0
angular_components: 0.9.1
angular_components: 0.9.2
angular_forms: ^2.0.0
angular_gallery_section:
path: ../../angular_gallery_section
Expand Down

0 comments on commit 81e93c8

Please sign in to comment.