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

Commit 0aaf631

Browse files
committed
Prep to publish angular_components v0.10.0
PiperOrigin-RevId: 216944200
1 parent f88a02e commit 0aaf631

File tree

31 files changed

+173
-102
lines changed

31 files changed

+173
-102
lines changed

angular_components/CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,69 @@
1+
## 0.10.0
2+
3+
### Component Updates
4+
5+
#### Material Auto Suggest Input
6+
* Rename `shouldClearOnSelection` to `shouldClearInputOnSelection`.
7+
* Improve keyboard navigation after mouse interactions in the popup.
8+
* Only allow deselection via in multi-selection mode in material auto suggest
9+
input.
10+
* Disallow selecting disabled options via keyboard.
11+
* Remove deprecated `suggestions` and `sorted` inputs.
12+
* Update to support generics.
13+
14+
#### Material Button
15+
* Mark certain fields as `visibleForTemplate` and drop the copied value where
16+
not needed.
17+
18+
#### Material Chips
19+
* Add Sass mixins to adjust border and font size of a single chip and border
20+
padding, and background color, border, and padding of a set of chips.
21+
22+
#### Material Expansion Panel
23+
* Wrap the buttons in a `defferredContent` directive. This is to help
24+
accessibility and have those buttons not be available for screen readers.
25+
26+
#### Material Input
27+
* Fix bug in `MaterialNumberValueAccessor` where null value won't clear previous
28+
input.
29+
30+
#### Material Dropdown Select
31+
* Provide the simplified selection and options inputs. Pull the common logic
32+
into SelectionInputAdapter mixin class.
33+
* Migrate `ComponentRenderer` to `FactoryRenderer`.
34+
* Disallow selecting disabled options via keyboard.
35+
* Highlight disabled items when activated via keyboard.
36+
37+
#### Material Menu
38+
* Add a secondary-label field. The appearance of this label is subject to minor
39+
changes in the near future as the UX is still experimental.
40+
* Properly use the sub-menu's width, not the parent menu's width, to determine
41+
the width of the menu.
42+
43+
#### Material Radio
44+
* Tighten down the public API surface of the radio component by marking many of
45+
them as `visibleForTemplate`.
46+
47+
#### Material Select Searchbox
48+
* Add in null pointer protection when input is set without a filterable.
49+
50+
#### Modal/Overlay
51+
* Enable useMultiModalDismissal by default.
52+
53+
### Miscellaneous
54+
* Use typed provider for location providers.
55+
* Also corrected the type signature of `runOutsideAngular`, which in turn may
56+
enable hint-level warnings by the analyzer. Users may be impacted if they fail
57+
the build on hints.
58+
* Add `StickyController.onUpdate`, a stream which fires events immediately after
59+
`StickyController` writes to the DOM, and expose it as an output on
60+
`ElementScrollHost`.
61+
* Trigger the sticky controller sync on `scrollToPosition` calls.
62+
63+
### Documentation
64+
* Add new readme for Material Dropdown Select.
65+
* Minor docs fixes.
66+
167
## 0.9.2
268

369
### Component Updates

angular_components/pubspec.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: angular_components
2-
version: 0.9.2
2+
version: 0.10.0
33
description: >
44
The official Material Design components for AngularDart. Used at Google in
55
production apps.
66
homepage: https://webdev.dartlang.org/components
77
documentation: https://webdev.dartlang.org/api?package=angular_components
88
author: Dart Team <[email protected]>
99
environment:
10-
sdk: '>=2.0.0-dev.69.5.0 <3.0.0'
10+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
1111
dependencies:
12-
angular: ^5.0.0
13-
angular_forms: ^2.0.0
12+
angular: ^5.1.0
13+
angular_forms: ^2.1.0
1414
async: ^2.0.8
15-
build: '>=0.11.1 <0.13.0'
15+
build: '>=0.11.1 <2.0.0'
1616
build_config: '>=0.2.6 <0.4.0'
1717
built_collection: ^4.0.0
1818
collection: ^1.14.10
@@ -27,4 +27,5 @@ dependencies:
2727
sass_builder: ^2.0.2
2828

2929
dev_dependencies:
30+
path: ^1.6.1
3031
test: ^1.0.0

angular_gallery/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ builders:
1111
angular_gallery:
1212
target: ":angular_gallery"
1313
import: "package:angular_gallery/builders.dart"
14-
builder_factories: [galleryAppBuilder, galleryLibBuilder]
14+
builder_factories: [
15+
galleryAppBuilder,
16+
galleryLibBuilder,
17+
syntaxHighlightBuilder,
18+
]
1519
build_extensions: {
1620
".html": [".dart"],
1721
"$web$": ["index.html", "main.dart", "style.scss"]}

angular_gallery/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: angular_gallery
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
8-
angular_forms: ^2.0.0
9-
angular_router: 2.0.0-alpha+19
10-
build: '>=0.11.1 <0.13.0'
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
8+
angular_forms: ^2.1.0
9+
angular_router: 2.0.0-alpha+20
10+
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: angular_gallery_section
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
analyzer: ^0.32.4
7-
angular: ^5.0.0
8-
angular_components: 0.9.2
9-
build: '>=0.11.1 <0.13.0'
6+
analyzer: ^0.33.0
7+
angular: ^5.1.0
8+
angular_components: 0.10.0
9+
build: '>=0.11.1 <2.0.0'
1010
build_config: '>=0.2.6 <0.4.0'
1111
glob: ^1.1.5
1212
markdown: ^2.0.0

examples/angular_components_example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: angular_components_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55

66
dependencies:
7-
angular: ^5.0.0
8-
angular_components: 0.9.2
7+
angular: ^5.1.0
8+
angular_components: 0.10.0
99
angular_gallery:
1010
path: ../../angular_gallery
1111
app_layout_example:
@@ -61,7 +61,7 @@ dependencies:
6161
path: ../scorecard_example
6262

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

6767
dependency_overrides:
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: app_layout_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_button_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_card_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: material_checkbox_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
8-
angular_forms: ^2.0.0
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
8+
angular_forms: ^2.1.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section
1111
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_chips_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_datepicker_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_dialog_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: material_expansionpanel_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
8-
angular_forms: ^2.0.0
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
8+
angular_forms: ^2.1.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section
1111
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_icon_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: material_input_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
8-
angular_forms: ^2.0.0
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
8+
angular_forms: ^2.1.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section
1111
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_list_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_menu_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_popup_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: material_progress_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
88
angular_gallery_section:
99
path: ../../angular_gallery_section
1010
build_config: '>=0.2.6 <0.4.0'
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: material_radio_example
22
author: Dart Team <[email protected]>
33
environment:
4-
sdk: '>=2.0.0-dev.69.5 <3.0.0'
4+
sdk: '>=2.1.0-dev.5.0 <3.0.0'
55
dependencies:
6-
angular: ^5.0.0
7-
angular_components: 0.9.2
8-
angular_forms: ^2.0.0
6+
angular: ^5.1.0
7+
angular_components: 0.10.0
8+
angular_forms: ^2.1.0
99
angular_gallery_section:
1010
path: ../../angular_gallery_section
1111
build_config: '>=0.2.6 <0.4.0'

0 commit comments

Comments
 (0)