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

Commit c0e542b

Browse files
committed
Prep to publish angular_components v0.11.0
- Update pubspecs, CHANGELOG. PiperOrigin-RevId: 225095694
1 parent ff9326d commit c0e542b

File tree

31 files changed

+145
-64
lines changed

31 files changed

+145
-64
lines changed

angular_components/CHANGELOG.md

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,90 @@
1+
## 0.11.0
2+
3+
### New Component
4+
* Simple HTML Component.
5+
6+
### Component Updates
7+
8+
#### Material Chips
9+
* Add a focused style to delete icon.
10+
* Remove default value from `$max-chip-width` in the `material-chip-max-width`
11+
Sass mixin.
12+
* Remove `material-chips-margin` Sass mixin.
13+
14+
#### Material Date Range Picker
15+
* Make dropdown not tabbable so it can be opened using the top level button
16+
decorator.
17+
* Add NextNDaysFromToday class.
18+
* Auto scroll to the bottom when comparison is turned on by the user.
19+
* Fix constrained sizing on Firefox browser.
20+
* Make intl messages `final`.
21+
22+
#### Material Dialog
23+
* Fix size of full screen dialog.
24+
* Close parent modal on escape key by default.
25+
26+
#### Material Input
27+
* Update the integer error message per Editorial feedback.
28+
* Add Sass mixin for changing the color of the counter.
29+
* Fix a11y fix when there is a `labeledby` id and a aria label specified.
30+
31+
#### Material Menu
32+
* Add a drop-in replacement for `secondaryIcon` - `itemSuffix` that removes the
33+
boilerplate of creating an observable list for a single element.
34+
* Automatically expand a collapsed category when keyboard navigating to a child
35+
item.
36+
* Remove usages of secondary icon and related fields/methods from menu item
37+
model.
38+
* Prevent refocus on a menu item when the menu is closing.
39+
40+
#### Material Popup
41+
* Correctly restore focus in nested popups.
42+
43+
#### Material Select
44+
* Add type parameters on `BaseDropdownSelectValueAccessor` and subclasses.
45+
* Set max-width to 100% on `dynamic-item`.
46+
* Removing Sass mixin for setting the width of the container element in
47+
dropdowns with factoryRenderers to 100%, as this was adopted as the standard.
48+
* Use the generic type parameter from MaterialDropdownSelectComponent on the
49+
ActivateItemOnKeyPressMixin.
50+
* Fix focus bugs when mixing keyboard and mouse navigation.
51+
* Add temporary fix for scrolling bug in Chrome browser.
52+
53+
#### Material Tabs
54+
* Make default width of `tab-content` to 100%.
55+
56+
#### Material Tooltip
57+
* Improve a11y and keyboard navigation.
58+
59+
#### Modal/Overlay
60+
* Add ability to create an accessible overlay container for clients that
61+
currently provide custom overlay container.
62+
* Fix selector of `PopupSizeProviderDirective`.
63+
* Restore focus to popup source element if the popup is closed via keyboard from
64+
inside itself.
65+
* Close popup on escape if the focus is inside the popup or on the popup source
66+
element.
67+
68+
### Miscellaneous
69+
* Improve error message when selection type is wrong in `SelectionInputAdapter`.
70+
* Add `primaryStyle` to `StyleFormatter`.
71+
* Refactor the keyboard only focus indicator so that when an element is focused
72+
programmatically it will obey the focus state of the last known interaction.
73+
* Only consider mouseup events as part of `triggersOutside()` if the
74+
corresponding mousedown event came from the same element.
75+
* Set attached portals on portals attached to `DomPortalHosts`
76+
* Fix focus issues with modal dialogs.
77+
* Add `FocusIndicatorController` for use in debug environments.
78+
79+
### Documentation
80+
* Minor docs fixes.
81+
182
## 0.10.1
283

384
### Component Updates
485

586
#### Material Chips
6-
* Improved support for generics.
87+
* Improve support for generics.
788
* Stop setting popup attributes as those attributes are set on the input
889
directly.
990
* Only set the `aria-owns` property and `inputAriaActivedescendent` when the

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.10.1
2+
version: 0.11.0
33
description: >
44
The official Material Design components for AngularDart. Used at Google in
55
production apps.
@@ -9,7 +9,7 @@ author: Dart Team <[email protected]>
99
environment:
1010
sdk: '>=2.1.0-dev.9.4 <3.0.0'
1111
dependencies:
12-
angular: ^5.1.0
12+
angular: ^5.2.0
1313
angular_forms: ^2.1.0
1414
async: ^2.0.8
1515
build: '>=0.11.1 <2.0.0'

angular_gallery/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
88
angular_forms: ^2.1.0
9-
angular_router: 2.0.0-alpha+20
9+
angular_router: 2.0.0-alpha+21
1010
build: '>=0.11.1 <2.0.0'
1111
build_config: '>=0.2.6 <0.4.0'
1212
mustache: ^1.0.0

angular_gallery_section/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
analyzer: ^0.33.0
7-
angular: ^5.1.0
8-
angular_components: 0.10.1
6+
analyzer: ^0.34.0
7+
angular: ^5.2.0
8+
angular_components: 0.11.0
99
build: '>=0.11.1 <2.0.0'
1010
build_config: '>=0.2.6 <0.4.0'
1111
glob: ^1.1.5

examples/angular_components_example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55

66
dependencies:
7-
angular: ^5.1.0
8-
angular_components: 0.10.1
7+
angular: ^5.2.0
8+
angular_components: 0.11.0
99
angular_gallery:
1010
path: ../../angular_gallery
1111
app_layout_example:
@@ -64,7 +64,7 @@ dependencies:
6464

6565
dev_dependencies:
6666
build_runner: '>=0.10.0 <2.0.0'
67-
build_web_compilers: ^0.4.0
67+
build_web_compilers: '>=0.4.0 <2.0.0'
6868

6969
dependency_overrides:
7070
angular_components:

examples/app_layout_example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
88
angular_forms: ^2.1.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section

examples/material_chips_example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ author: Dart Team <[email protected]>
33
environment:
44
sdk: '>=2.1.0-dev.9.4 <3.0.0'
55
dependencies:
6-
angular: ^5.1.0
7-
angular_components: 0.10.1
6+
angular: ^5.2.0
7+
angular_components: 0.11.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'

0 commit comments

Comments
 (0)