diff --git a/.travis.yml b/.travis.yml index b52477cb5..261b6060b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,13 +9,13 @@ jobs: env: PKGS="angular_components angular_gallery angular_gallery_section" script: ./tool/travis.sh dartfmt dartanalyzer - stage: analyze_and_format - name: "SDK: 2.2.1-dev.3.0; PKGS: angular_components, angular_gallery, angular_gallery_section; TASKS: `dartanalyzer --fatal-warnings .`" - dart: "2.2.1-dev.3.0" + name: "SDK: 2.3.0-dev.0.1; PKGS: angular_components, angular_gallery, angular_gallery_section; TASKS: `dartanalyzer --fatal-warnings .`" + dart: "2.3.0-dev.0.1" env: PKGS="angular_components angular_gallery angular_gallery_section" script: ./tool/travis.sh dartanalyzer - stage: unit_test - name: "SDK: 2.2.1-dev.3.0; PKG: angular_components; TASKS: [`./tool/travis/install_protoc.sh`, `pub run test --run-skipped`]" - dart: "2.2.1-dev.3.0" + name: "SDK: 2.3.0-dev.0.1; PKG: angular_components; TASKS: [`./tool/travis/install_protoc.sh`, `pub run test --run-skipped`]" + dart: "2.3.0-dev.0.1" env: PKGS="angular_components" script: ./tool/travis.sh command_0 test - stage: unit_test @@ -24,8 +24,8 @@ jobs: env: PKGS="angular_components" script: ./tool/travis.sh command_0 test - stage: build - name: "SDK: 2.2.1-dev.3.0; PKG: examples/angular_components_example; TASKS: [`pub run build_runner build web`, `pub run build_runner build web --release`]" - dart: "2.2.1-dev.3.0" + name: "SDK: 2.3.0-dev.0.1; PKG: examples/angular_components_example; TASKS: [`pub run build_runner build web`, `pub run build_runner build web --release`]" + dart: "2.3.0-dev.0.1" env: PKGS="examples/angular_components_example" script: ./tool/travis.sh command_1 command_2 - stage: build diff --git a/angular_components/CHANGELOG.md b/angular_components/CHANGELOG.md index b5ad74fa2..a5423c246 100644 --- a/angular_components/CHANGELOG.md +++ b/angular_components/CHANGELOG.md @@ -1,3 +1,111 @@ +## 0.14.0-alpha +### Component Updates + +#### Material Auto Suggest Input +* Adding generic type to `factoryRenderers` in items. +* Update blur event logic. +* Add `inputAutocomplete` input. +* Improve a11y with added aria controls. + +#### Material Checkbox +* Add Sass mixin to remove all margins. + +#### Material Date Picker +* Fix issue where given `dateFormat` was not used to decode the input value. +* Apply `FocusableMixin`. +* Modularize and deprecate `timeZoneAwareDatepickerProviders`. +* Prevent wordwrap for the range title. + +#### Material Dialog +* Add Sass mixin to justify footer content. + +#### Material Dropdown Select +* Pass `aria-describedby` through to the dropdown button. + +#### Material Expansion Panel +* Only auto focus a child, when the panel is expanded. +* Only fire events and DOM changes on on-target TransitionEnd events. +* Improve a11y by toggling content visibility when the panel expands or + collapses. +* Add `focusOnOpen` input. + +#### Material Input +* Add Sass mixin to change bottom section width and trailing text. +* Add `inputAriaControls` input. + +#### Material Menu +* Add `popupClass` and `buttonAriaLabelledBy` inputs. +* Add Sass mixin to configure the background color of a selected menu item. + +#### Material Popup +* Fix memory leak. + +#### Material Radio +* Ensure changes are picked up by Angular's change detection. +* Add Sass mixin to configure the content margin. +* Fix issue where programmatic changes to the value model were not shown. + +#### Material Select +* Adding generic type to `factoryRenderers` in items. +* Add Sass mixins to configure item colors. + +#### Material Stepper +* Fix an issue where when `activeStepIndex` is set to a value but the step state + is not updated accordingly. + +#### Material Tab +* Loop items and ignore up and down arrow key presses when focusing. + +#### Material Tooltip +* Add Sass mixin to configure the max width of a tooltip. +* Improve a11y with focus control. + +#### Material Tree +* Properly apply `nested-material-tree-item-style` Sass mixin to nested items. +* Introduce a `allowDeselectInHierarchy` configuration that allows clients to + specify if a user should be allowed to deselect an option that they have + already selected (by clicking on it again). + +#### Material Yes/No Buttons +* Make `EnterAcceptsDirective` use key press instead of key up to align with + button decorator. +* Added `aria-describedby`. + +#### Scorecard +* Only apply tabindex 0 to scorecards that are selectable. + +### Other Updates + +#### Selection Model +* Change `SelectionModel.isSingleSelect` from a field to an abstract getter. +* Add a missing `super.dispose()` call to `_StreamSelectionOptions` + +#### Miscellaneous +* Improve `OverlayService` singleton error message. +* Modularize ruler bindings. +* Fix a bug where scroll host would try to add events to a closed + `StreamController`. +* Update `FocusItemDirective` and `FocusListDirective` to work consistently + under `OnPush` components. +* Use GPU accelerated CSS translate rather than 2D translate in sticky + controller. +* Make the new trigger logic the default for popups. This ignores drag mouse up + calls to that users can more easily select text in popups. +* Mark `DeferredContentDirective` for change detection, after handling event + from deferred content aware parent. +* Fix a scroll host issue where scroll events were not ignored when the `Meta` + key was pressed. +* Cleanup uses of deprecated `getBool()`. +* Replace uses of `detectChanges()` with `runAfterChanges...`. +* Add generic type argument to `AcxImperativeViewUtils.insertComponent()`. +* Add the ability to ignore up and down keys (for moving focus around within + children) when using the focus list. +* Update all components to use `ref="noopener noreferrer"` for `target="_blank"` + links. + +### Documentation +* Minor documentation fixes. + ## 0.13.0 ### Component Updates diff --git a/angular_components/mono_pkg.yaml b/angular_components/mono_pkg.yaml index 1c416b034..77c0480c9 100644 --- a/angular_components/mono_pkg.yaml +++ b/angular_components/mono_pkg.yaml @@ -1,6 +1,6 @@ # See https://github.com/dart-lang/mono_repo for details dart: - - 2.2.1-dev.3.0 + - 2.3.0-dev.0.1 - dev stages: @@ -13,7 +13,7 @@ stages: - group: - dartanalyzer: --fatal-warnings . dart: - - 2.2.1-dev.3.0 + - 2.3.0-dev.0.1 - unit_test: - group: - command: ./tool/travis/install_protoc.sh diff --git a/angular_components/pubspec.yaml b/angular_components/pubspec.yaml index 452963aec..6f385b790 100644 --- a/angular_components/pubspec.yaml +++ b/angular_components/pubspec.yaml @@ -1,5 +1,5 @@ name: angular_components -version: 0.13.0 +version: 0.14.0-alpha description: > The official Material Design components for AngularDart. Used at Google in production apps. @@ -7,13 +7,13 @@ homepage: https://webdev.dartlang.org/components documentation: https://webdev.dartlang.org/api?package=angular_components author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 + angular: ^6.0.0-alpha angular_forms: ^2.1.0 async: ^2.1.0 build: '>=0.11.1 <2.0.0' - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' built_collection: ^4.0.0 collection: ^1.14.10 fixnum: ^0.10.7 diff --git a/angular_gallery/mono_pkg.yaml b/angular_gallery/mono_pkg.yaml index 548199355..c3dbfeaf6 100644 --- a/angular_gallery/mono_pkg.yaml +++ b/angular_gallery/mono_pkg.yaml @@ -9,7 +9,7 @@ stages: - group: - dartanalyzer: --fatal-warnings . dart: - - 2.2.1-dev.3.0 + - 2.3.0-dev.0.1 cache: directories: diff --git a/angular_gallery/pubspec.yaml b/angular_gallery/pubspec.yaml index cf9e422aa..75642f041 100644 --- a/angular_gallery/pubspec.yaml +++ b/angular_gallery/pubspec.yaml @@ -1,14 +1,14 @@ name: angular_gallery author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha angular_forms: ^2.1.0 - angular_router: 2.0.0-alpha+22 + angular_router: 2.0.0-alpha+23 build: '>=0.11.1 <2.0.0' - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' mustache: ^1.0.0 dependency_overrides: diff --git a/angular_gallery_section/mono_pkg.yaml b/angular_gallery_section/mono_pkg.yaml index 548199355..c3dbfeaf6 100644 --- a/angular_gallery_section/mono_pkg.yaml +++ b/angular_gallery_section/mono_pkg.yaml @@ -9,7 +9,7 @@ stages: - group: - dartanalyzer: --fatal-warnings . dart: - - 2.2.1-dev.3.0 + - 2.3.0-dev.0.1 cache: directories: diff --git a/angular_gallery_section/pubspec.yaml b/angular_gallery_section/pubspec.yaml index e4d5435da..b0f90b3d5 100644 --- a/angular_gallery_section/pubspec.yaml +++ b/angular_gallery_section/pubspec.yaml @@ -1,15 +1,15 @@ name: angular_gallery_section author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: analyzer: ^0.36.0 - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha angular_gallery: path: ../angular_gallery build: '>=0.11.1 <2.0.0' - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' glob: ^1.1.5 markdown: ^2.0.3 mustache: ^1.0.0 diff --git a/examples/angular_components_example/mono_pkg.yaml b/examples/angular_components_example/mono_pkg.yaml index 5b07fa8ac..0a94bb21d 100644 --- a/examples/angular_components_example/mono_pkg.yaml +++ b/examples/angular_components_example/mono_pkg.yaml @@ -1,6 +1,6 @@ # See https://github.com/dart-lang/mono_repo for details dart: - - 2.2.1-dev.3.0 + - 2.3.0-dev.0.1 - dev stages: diff --git a/examples/angular_components_example/pubspec.yaml b/examples/angular_components_example/pubspec.yaml index adb05a12e..2f8f93191 100644 --- a/examples/angular_components_example/pubspec.yaml +++ b/examples/angular_components_example/pubspec.yaml @@ -1,16 +1,16 @@ name: angular_components_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery app_layout_example: path: ../app_layout_example - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' material_button_example: path: ../material_button_example material_card_example: @@ -64,7 +64,7 @@ dependencies: dev_dependencies: build_runner: '>=0.10.0 <2.0.0' - build_web_compilers: '>=0.4.0 <2.0.0' + build_web_compilers: '>=0.4.0 <3.0.0' dependency_overrides: angular_components: diff --git a/examples/app_layout_example/pubspec.yaml b/examples/app_layout_example/pubspec.yaml index 089687c1f..cd37f8960 100644 --- a/examples/app_layout_example/pubspec.yaml +++ b/examples/app_layout_example/pubspec.yaml @@ -1,12 +1,12 @@ name: app_layout_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_button_example/pubspec.yaml b/examples/material_button_example/pubspec.yaml index 875371ae8..b08d0d949 100644 --- a/examples/material_button_example/pubspec.yaml +++ b/examples/material_button_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_button_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_card_example/pubspec.yaml b/examples/material_card_example/pubspec.yaml index e03b37113..aa46a6413 100644 --- a/examples/material_card_example/pubspec.yaml +++ b/examples/material_card_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_card_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_checkbox_example/pubspec.yaml b/examples/material_checkbox_example/pubspec.yaml index 4d63325df..c98503006 100644 --- a/examples/material_checkbox_example/pubspec.yaml +++ b/examples/material_checkbox_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_checkbox_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_chips_example/pubspec.yaml b/examples/material_chips_example/pubspec.yaml index b14d09735..ad7af10a7 100644 --- a/examples/material_chips_example/pubspec.yaml +++ b/examples/material_chips_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_chips_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_datepicker_example/pubspec.yaml b/examples/material_datepicker_example/pubspec.yaml index 85c8f940a..6fe5e1d20 100644 --- a/examples/material_datepicker_example/pubspec.yaml +++ b/examples/material_datepicker_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_datepicker_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' quiver: '>=0.24.0 <3.0.0' diff --git a/examples/material_dialog_example/pubspec.yaml b/examples/material_dialog_example/pubspec.yaml index 8a9ba2a85..f6df297a9 100644 --- a/examples/material_dialog_example/pubspec.yaml +++ b/examples/material_dialog_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_dialog_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_expansionpanel_example/pubspec.yaml b/examples/material_expansionpanel_example/pubspec.yaml index f257fa0ed..ec1b96ccb 100644 --- a/examples/material_expansionpanel_example/pubspec.yaml +++ b/examples/material_expansionpanel_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_expansionpanel_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_icon_example/pubspec.yaml b/examples/material_icon_example/pubspec.yaml index 197b58a92..6c745b81c 100644 --- a/examples/material_icon_example/pubspec.yaml +++ b/examples/material_icon_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_icon_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_input_example/pubspec.yaml b/examples/material_input_example/pubspec.yaml index 6e448a8c6..c5f1852af 100644 --- a/examples/material_input_example/pubspec.yaml +++ b/examples/material_input_example/pubspec.yaml @@ -1,14 +1,14 @@ name: material_input_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' intl: '>=0.14.0 <0.16.0' diff --git a/examples/material_list_example/pubspec.yaml b/examples/material_list_example/pubspec.yaml index ca0db8f95..5f3e7cec8 100644 --- a/examples/material_list_example/pubspec.yaml +++ b/examples/material_list_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_list_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_menu_example/pubspec.yaml b/examples/material_menu_example/pubspec.yaml index 24ce0d8d1..7d9c9463a 100644 --- a/examples/material_menu_example/pubspec.yaml +++ b/examples/material_menu_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_menu_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' observable: ^0.22.2 diff --git a/examples/material_popup_example/pubspec.yaml b/examples/material_popup_example/pubspec.yaml index a9a0e18db..58fe0be1e 100644 --- a/examples/material_popup_example/pubspec.yaml +++ b/examples/material_popup_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_popup_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_progress_example/pubspec.yaml b/examples/material_progress_example/pubspec.yaml index f0e6edf7d..fd1f6a893 100644 --- a/examples/material_progress_example/pubspec.yaml +++ b/examples/material_progress_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_progress_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_radio_example/pubspec.yaml b/examples/material_radio_example/pubspec.yaml index ac2a9dd98..2be4d900b 100644 --- a/examples/material_radio_example/pubspec.yaml +++ b/examples/material_radio_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_radio_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_select_example/pubspec.yaml b/examples/material_select_example/pubspec.yaml index 618e0620d..0e80debf3 100644 --- a/examples/material_select_example/pubspec.yaml +++ b/examples/material_select_example/pubspec.yaml @@ -1,13 +1,13 @@ name: material_select_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_slider_example/pubspec.yaml b/examples/material_slider_example/pubspec.yaml index f43182f88..b3d59d121 100644 --- a/examples/material_slider_example/pubspec.yaml +++ b/examples/material_slider_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_slider_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_spinner_example/pubspec.yaml b/examples/material_spinner_example/pubspec.yaml index 754717361..327469cc5 100644 --- a/examples/material_spinner_example/pubspec.yaml +++ b/examples/material_spinner_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_spinner_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_stepper_example/pubspec.yaml b/examples/material_stepper_example/pubspec.yaml index eedaa8ad6..0b6540467 100644 --- a/examples/material_stepper_example/pubspec.yaml +++ b/examples/material_stepper_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_stepper_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_tab_example/pubspec.yaml b/examples/material_tab_example/pubspec.yaml index 2826f4fb4..d1c590d38 100644 --- a/examples/material_tab_example/pubspec.yaml +++ b/examples/material_tab_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_tab_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_toggle_example/pubspec.yaml b/examples/material_toggle_example/pubspec.yaml index b40613479..4cec20588 100644 --- a/examples/material_toggle_example/pubspec.yaml +++ b/examples/material_toggle_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_toggle_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_tooltip_example/pubspec.yaml b/examples/material_tooltip_example/pubspec.yaml index 4f80d6b82..2dd86d7d5 100644 --- a/examples/material_tooltip_example/pubspec.yaml +++ b/examples/material_tooltip_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_tooltip_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_tree_example/pubspec.yaml b/examples/material_tree_example/pubspec.yaml index 44e9e36d3..b146ca449 100644 --- a/examples/material_tree_example/pubspec.yaml +++ b/examples/material_tree_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_tree_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/material_yes_no_buttons_example/pubspec.yaml b/examples/material_yes_no_buttons_example/pubspec.yaml index f7d77c50c..bd8f315d0 100644 --- a/examples/material_yes_no_buttons_example/pubspec.yaml +++ b/examples/material_yes_no_buttons_example/pubspec.yaml @@ -1,12 +1,12 @@ name: material_yes_no_buttons_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/scorecard_example/pubspec.yaml b/examples/scorecard_example/pubspec.yaml index 79864bb7f..5adbbc495 100644 --- a/examples/scorecard_example/pubspec.yaml +++ b/examples/scorecard_example/pubspec.yaml @@ -1,13 +1,13 @@ name: scorecard_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_forms: ^2.1.0 angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' diff --git a/examples/simple_html_example/pubspec.yaml b/examples/simple_html_example/pubspec.yaml index 312439f3a..04692ee77 100644 --- a/examples/simple_html_example/pubspec.yaml +++ b/examples/simple_html_example/pubspec.yaml @@ -1,13 +1,13 @@ name: simple_html_example author: Dart Team environment: - sdk: '>=2.2.1-dev.3.0 <3.0.0' + sdk: '>=2.3.0-dev.0.1 <3.0.0' dependencies: - angular: ^5.3.0 - angular_components: 0.13.0 + angular: ^6.0.0-alpha + angular_components: 0.14.0-alpha-alpha angular_gallery: path: ../../angular_gallery angular_gallery_section: path: ../../angular_gallery_section - build_config: '>=0.2.6 <2.0.0' + build_config: '>=0.2.6 <0.5.0' intl: '>=0.14.0 <0.17.0'