-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Comparing changes
Open a pull request
base repository: angular/components
base: 7.2.1
head repository: angular/components
compare: 7.2.2
Commits on Jan 10, 2019
-
build: update nodejs rules (#14622)
Updates to the latest version of the NodeJS rules that includes bazel-contrib/rules_nodejs@c40ceb9
Configuration menu - View commit details
-
Copy full SHA for 68d98c3 - Browse repository at this point
Copy the full SHA 68d98c3View commit details -
build: prepare schematics for v8 (#14667)
* Prepares the schematics for V8 * Dynamically resolves the test cases so that we don't need to hardcode them for each version
Configuration menu - View commit details
-
Copy full SHA for 176a543 - Browse repository at this point
Copy the full SHA 176a543View commit details -
docs(snack-bar): fix 404 for CSS files in examples (#14684)
Fixes a couple of the live examples causing a 404 if the user goes to look at their CSS. Fixes #14682.
Configuration menu - View commit details
-
Copy full SHA for 7f9e7dc - Browse repository at this point
Copy the full SHA 7f9e7dcView commit details -
docs(table): incorrect initial request in http example (#14692)
Fixes the first request in the table HTTP example being incorrect due to some of the data not being initialized. Also cleans up the example a bit. Fixes #14683.
Configuration menu - View commit details
-
Copy full SHA for afac71d - Browse repository at this point
Copy the full SHA afac71dView commit details -
build: do not run docs-package targets on circle (#14706)
* No longer runs expensive `docs-package` Bazel targets as part of the `bazel_build_test` job. These docs-package targets will be built as part of the `publish_snapshots` job where we build the docs-package and push it to the Github `material2-docs-content` repository.
Configuration menu - View commit details
-
Copy full SHA for 54f5bbe - Browse repository at this point
Copy the full SHA 54f5bbeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5482137 - Browse repository at this point
Copy the full SHA 5482137View commit details -
build: run release output validations on circle (#14716)
* Runs the release output validations on CircleCI after all release packages have been built. Closes #12877
Configuration menu - View commit details
-
Copy full SHA for f487c55 - Browse repository at this point
Copy the full SHA f487c55View commit details -
chore(typos): remove extra "the" from comments (#14754)
replace comments that have "the the " with "the "
Configuration menu - View commit details
-
Copy full SHA for 63c8ad5 - Browse repository at this point
Copy the full SHA 63c8ad5View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2352fe - Browse repository at this point
Copy the full SHA b2352feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5465a46 - Browse repository at this point
Copy the full SHA 5465a46View commit details
Commits on Jan 11, 2019
-
build: fix incorrect amd module names (#14786)
* Our UMD bundles currently have wrong AMD module names for secondary entry-points which are dash-cased. e.g. AMD module name for the bottom-sheet is `@angular/material/bottomSheet`. * Our UMD bundles currently reference incorrect rollup globals. e.g. the AMD module name is `ng.material-experimental.{secondary}`, while it should be `ng.materialExperimental`.
Configuration menu - View commit details
-
Copy full SHA for 367a540 - Browse repository at this point
Copy the full SHA 367a540View commit details -
build: run e2e tests with bazel (#14656)
* Builds the e2e app with Bazel * Serves the e2e app with Bazel * Runs the e2e tests with Bazel protractor rules
Configuration menu - View commit details
-
Copy full SHA for e384239 - Browse repository at this point
Copy the full SHA e384239View commit details -
docs(portal): add overview example (#14655)
Adds a basic overview example for the `cdk/portal` package since it doesn't have any live examples.
Configuration menu - View commit details
-
Copy full SHA for 28e1c19 - Browse repository at this point
Copy the full SHA 28e1c19View commit details -
build: bazel repository changes not cached on circleci (#14642)
Currently if we update the Bazel `WORKSPACE` and some external repositories have changed, CircleCI won't be able to cache the bazel repositories because the cache-key has not changed and saving will be skipped. We should make sure that the Bazel repositories will be cached properly because otherwise this can cause a significant slow-down with Bazel managed deps. Additionally we no longer store the cache based on the current `branch` because that means that caching does not always work for pull requests. Since the caching only depends on two inputs (yarn.lock and WORKSPACE), it's safe to just remove the branch from the cache key.
Configuration menu - View commit details
-
Copy full SHA for 9546ac3 - Browse repository at this point
Copy the full SHA 9546ac3View commit details -
build: switch to docs-content from examples package (#14612)
With angular/material.angular.io#565 the docs-content will be pulled from the `@angular/material-examples` package. Changes needed on this repository: * Since we update some styles and logic in favor of simplicity, we need to update the Dgeni templates to conform with these changes. * Remove the unnecessary `examplesPath` property member because we now compute the `docs-content/` asset paths in a consistent way and don't want to mix up the source locations.
Configuration menu - View commit details
-
Copy full SHA for a9c3520 - Browse repository at this point
Copy the full SHA a9c3520View commit details
Commits on Jan 18, 2019
-
build: update to angular 7.2.0 (#14757)
Updates to Angular 7.2.0 which includes: * angular/angular@ef056c5 * angular/angular@1e6c9be
Configuration menu - View commit details
-
Copy full SHA for f051c2f - Browse repository at this point
Copy the full SHA f051c2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 008875d - Browse repository at this point
Copy the full SHA 008875dView commit details -
build: do not build docs-package bazel targets on circle (#14788)
* 74c7681 should have already disabled all `docs-package` targets on the CI, but apparently `bazel test` also builds targets which aren't even tests, so we need to filter `bazel test` as well.
Configuration menu - View commit details
-
Copy full SHA for 8dac174 - Browse repository at this point
Copy the full SHA 8dac174View commit details -
fix(icon): clean up cached references in icon registry on destroy (#1…
…4801) The icon registry can end up caching some fairly large SVG elements which may end up being retained, because we're using a regular `Map`. These changes clear out all the references if the registry is destroyed.
Configuration menu - View commit details
-
Copy full SHA for 96db2d5 - Browse repository at this point
Copy the full SHA 96db2d5View commit details -
refactor: remove deprecated Observable.create usages (#14789)
Replaces the `Observable.create` usages by using the `Observable` constructor directly, because `Observable.create` is being deprecated in the latest RxJS version. Fixes #14785.
Configuration menu - View commit details
-
Copy full SHA for 4d85e03 - Browse repository at this point
Copy the full SHA 4d85e03View commit details -
fix(tabs): better handling of animationDuration without units (#14778)
Based off of the discussions on #13428. Handles values passed to `animationDuration` that don't have units, rather than allowing them to continue through to the `BrowserAnimationsModule` and to throw an error.
Configuration menu - View commit details
-
Copy full SHA for 30a310e - Browse repository at this point
Copy the full SHA 30a310eView commit details -
refactor(table): use DocumentFragment for faster DOM insertions (#14747)
Reworks some code in the table that was creating elements in a loop to use a `DocumentFragment` so it only hits the DOM once, rather than doing so for each element.
Configuration menu - View commit details
-
Copy full SHA for fc114f7 - Browse repository at this point
Copy the full SHA fc114f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59bf7a5 - Browse repository at this point
Copy the full SHA 59bf7a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0050cd - Browse repository at this point
Copy the full SHA c0050cdView commit details -
refactor(drag-drop): clean up DragRef public API (#14654)
Cleans up the API of the DragRef before we can expose it through the public API by making the handle, custom placeholder and custom preview easier to configure.
Configuration menu - View commit details
-
Copy full SHA for 5824450 - Browse repository at this point
Copy the full SHA 5824450View commit details -
Adding a forgotten markForCheck in mat-chip-list (#14758)
This issue causes forward tab navigation to be not the same as backward navigation.
Configuration menu - View commit details
-
Copy full SHA for 677b9c8 - Browse repository at this point
Copy the full SHA 677b9c8View commit details -
fix(drag-drop): dragging styling not being reset in some cases with O…
…nPush change detection (#14725) Fixes the `cdk-drop-list-dragging` and `cdk-drop-list-receiving` not being removed in some cases when using `OnPush` change detection. This seems to have been working until now, because there's always something else to trigger change detection, however if there isn't (e.g. the user isn't listening to the `dropped` event) they won't be reset.
Configuration menu - View commit details
-
Copy full SHA for 49b74a7 - Browse repository at this point
Copy the full SHA 49b74a7View commit details -
fix(list): action list button outline not being reset on firefox (#14693
Configuration menu - View commit details
-
Copy full SHA for 6fd84dc - Browse repository at this point
Copy the full SHA 6fd84dcView commit details -
fix(tabs): pagination not working correctly on chrome in rtl mode (#1…
…4690) In #13223 we added some code that resets the scroll position of the tab header, in order to fix a bug on IE and Edge. The changes seem to have introduced an issue on newer Chrome versions in RTL mode where the transform gets negated and the header content doesn't move. These changes scope the fix only to IE and Edge. Fixes #14689.
Configuration menu - View commit details
-
Copy full SHA for e721664 - Browse repository at this point
Copy the full SHA e721664View commit details -
fix(focus-trap): apply aria-hidden to focus trap tab anchors (#14644)
These anchors at the book ends of a FocusTrap'ed element have focus listeners that redirect focus back to the element. However, some screen readers may access these focus traps without moving programmatic focus, leaving the SR user wondering why an empty control lives on the page. Android TalkBack currently treats this as a stop with no announcement (because it has no content). Adding the aria-hidden should prevent these from being accessed in SR contexts while preserving the core functionality of redirecting focus when it's moved linearly (e.g., with tab).
Configuration menu - View commit details
-
Copy full SHA for 122b148 - Browse repository at this point
Copy the full SHA 122b148View commit details -
chore(tabs): update api goldens (#14844)
Fixes the tabs API goldens not being up to date.
Configuration menu - View commit details
-
Copy full SHA for 086abcd - Browse repository at this point
Copy the full SHA 086abcdView commit details -
Configuration menu - View commit details
-
Copy full SHA for b120f8c - Browse repository at this point
Copy the full SHA b120f8cView commit details -
fix(sort): extra Firefox focus outline not being reset (#14733)
Fixes the extra outline that Firefox adds to focusable buttons not being reset for the sort header buttons.
Configuration menu - View commit details
-
Copy full SHA for 2c5341d - Browse repository at this point
Copy the full SHA 2c5341dView commit details -
fix(drag-drop): apply translation transform before user transforms (#…
Configuration menu - View commit details
-
Copy full SHA for 7322977 - Browse repository at this point
Copy the full SHA 7322977View commit details -
fix(drag-drop): restore initial transform when resetting (#14701)
Currently we preserve the any `transform` that an element might have had before the user started dragging it, however that `transform` is lost if it's position is reset via the `DragRef.reset` method. These changes reset the `transform` back to its initial value.
Configuration menu - View commit details
-
Copy full SHA for 32f990a - Browse repository at this point
Copy the full SHA 32f990aView commit details -
fix(drag-drop): incorrectly preserving transform if root element chan…
…ges (#14697) Currently we cache the element's initial transform so that we can preserve it after the user has dragged it, however if the root element changes, the cached value will be incorrect. These changes reset the transforms if the root element changes.
Configuration menu - View commit details
-
Copy full SHA for c9bafcc - Browse repository at this point
Copy the full SHA c9bafccView commit details -
fix(overlay): not sizing flexible overlay correctly when opening down…
…wards on a scrollable page (#14672) Fixes the height of the bounding box being incorrect, if the overlay is flexible, is opening downwards and the page is scrollable.
Configuration menu - View commit details
-
Copy full SHA for 961d8bc - Browse repository at this point
Copy the full SHA 961d8bcView commit details -
fix(table): not re-rendering when switching to a smaller set of data …
…than the current page (#14665) Fixes the table not rendering correctly when going from a large set of data (e.g. 50 items and on page 10) to a small set of items (e.g. 1 item). The issue comes from the fact that the paginator doesn't emit events if they weren't generated by the user (see discussion on #12586). Fixes #14010.
Configuration menu - View commit details
-
Copy full SHA for 846f5a2 - Browse repository at this point
Copy the full SHA 846f5a2View commit details -
fix(overlay): reset transform when disposing of position strategy (#1…
Configuration menu - View commit details
-
Copy full SHA for 3181ae7 - Browse repository at this point
Copy the full SHA 3181ae7View commit details -
fix(button-toggle): remove references to selected toggle on destroy (#…
…14627) Currently when a button toggle is destroyed, we still keep a reference to it in the selection model which is leaky and causes the model value to be inaccurate. These changes remove the reference.
Configuration menu - View commit details
-
Copy full SHA for 0b16843 - Browse repository at this point
Copy the full SHA 0b16843View commit details -
fix(tooltip): afterHidden stream not being completed (#14620)
Fixes the `afterHidden` stream not being completed, which causes the host tooltip directive to accumulate subscriptions for every time it is opened, until the entire view is destroyed.
Configuration menu - View commit details
-
Copy full SHA for 3931e05 - Browse repository at this point
Copy the full SHA 3931e05View commit details -
fix(overlay): update size if dimensions change in overlay directives (#…
Configuration menu - View commit details
-
Copy full SHA for 0eefaa7 - Browse repository at this point
Copy the full SHA 0eefaa7View commit details -
fix(tabs): don't handle keyboard events with modifier keys (#14234)
Doesn't `preventDefault` or react to any of the keyboard shortcuts, if the user is holding a modifier key, in order to avoid interfering with other OS-level shortcuts.
Configuration menu - View commit details
-
Copy full SHA for 21dc01c - Browse repository at this point
Copy the full SHA 21dc01cView commit details -
fix(bottom-sheet): allow disableClose to be updated after opened (#14711
) Allows for the `disableClose` value of a bottom sheet to be updated after it has been opened, similarly to `MatDialog`. Fixes #14708.
Configuration menu - View commit details
-
Copy full SHA for c11e968 - Browse repository at this point
Copy the full SHA c11e968View commit details -
docs(cdk-stepper): add guide to create stepper (#14710)
* docs(cdk-stepper): add guide to create stepper * Added guide how to create a custom stepper using the CDK * Added a material example to demonstrate the custom CDK stepper * Made steps from CdkStepper public as it is necessary to build a custom stepper * Review comments
Michael Hoffmann authored and Vivian Hu committedJan 18, 2019 Configuration menu - View commit details
-
Copy full SHA for 7887699 - Browse repository at this point
Copy the full SHA 7887699View commit details -
fix(autocomplete): not updating origin if it changes after init (#14677)
* Fixes changes to the `matAutocompleteOrigin` input being ignored if they happen after the overlay has been initialized. * Fixes the `MatAutocompleteOrigin` class not being exported as a part of the public API.
Configuration menu - View commit details
-
Copy full SHA for 4d4b074 - Browse repository at this point
Copy the full SHA 4d4b074View commit details -
fix(drag-drop): unable to move item into connected container by passi…
…ng through another container (#14651) Fixes not being able to move an item from one container into another by passing it through an intermediate container that isn't connected to the final one. The issue comes from the fact that the way things are set up at the moment, the container from which the item started the sequence knows which containers it can go into, however all that knowledge is reset once the item enters into a different container. These changes rework the logic to have the individual containers know whether the item can enter into them and have the source container "ask" each of its siblings whether the item can enter. Fixes #14645.
Configuration menu - View commit details
-
Copy full SHA for 76994f7 - Browse repository at this point
Copy the full SHA 76994f7View commit details -
fix(slide-toggle): use default hue for thumb in dark theme (#14230)
* The thumb should use the `default` hue in dark themes to match the MDC behavior and also make it easier for people to create a custom theme without needing to explicitly specify the `200` hue just for the slide-toggle. This also makes the slide-toggle more consistent with the checkbox and radio (which are considered selection controls as well) Fixes #14192
Configuration menu - View commit details
-
Copy full SHA for d6715d0 - Browse repository at this point
Copy the full SHA d6715d0View commit details -
fix(menu): not unsubscribing from close stream if trigger is destroyed (
#14107) Fixes the menu trigger not unsubscribing from the menu panel's `close` stream. In most cases it isn't an issue, because `close` gets completed when the panel is destroyed, however the user can still run into it if the trigger is destroyed, but the panel stays in place.
Configuration menu - View commit details
-
Copy full SHA for f984a88 - Browse repository at this point
Copy the full SHA f984a88View commit details -
build: fix bazel running out of memory for "publish_snapshots" (#14849)
Due to a bug within Bazel, we need to increase the resource class for the CircleCI jobs that use Bazel. This can be lowered once we run everything with RBE; but for now we need it to get our CI green.
Configuration menu - View commit details
-
Copy full SHA for 6e403b6 - Browse repository at this point
Copy the full SHA 6e403b6View commit details
There are no files selected for viewing