-
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.3.0
head repository: angular/components
compare: 7.3.1
Commits on Feb 4, 2019
-
build: simplify api golden target names (#14973)
* In order to make it easier to test/update goldens, the Bazel targets are updated to the match the actual golden file paths. This is useful because developers can then use terminal autocompletion to go to the desired golden file, and just need to add the `_api` suffix. This easier than manually constructing the Bazel API target name which is not intuitive and takes up time.
Configuration menu - View commit details
-
Copy full SHA for a1fd4bb - Browse repository at this point
Copy the full SHA a1fd4bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for bfd6dd1 - Browse repository at this point
Copy the full SHA bfd6dd1View commit details -
chore: fix dead link in docs (#14962)
Fixes a dead link in the a11y docs. Fixes #14955.
Configuration menu - View commit details
-
Copy full SHA for 39ce618 - Browse repository at this point
Copy the full SHA 39ce618View commit details -
fix(examples): fix form-field custom control
disabled
input (#14957)* fixes form-field custom control example and guide so as not to attempt to use the `disabled` attribute on an input element that has a reactive form directive. see: https://github.com/angular/angular/blob/e2c98fbe11272295c3827b0e54f859d283cd32bf/packages/forms/src/directives/reactive_errors.ts#L64
Configuration menu - View commit details
-
Copy full SHA for ce3926d - Browse repository at this point
Copy the full SHA ce3926dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 46517db - Browse repository at this point
Copy the full SHA 46517dbView commit details -
docs: pointing out breaking change for MatSidenav and MatDrawer in 7.0 (
Configuration menu - View commit details
-
Copy full SHA for 68bbd28 - Browse repository at this point
Copy the full SHA 68bbd28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fcd42b - Browse repository at this point
Copy the full SHA 0fcd42bView commit details -
fix(tree,scrolling): don't require user DataSource to extend DataSour…
…ce (#14966) Currently the way we verify that the passed in data source is by using `instanceof` which assumes that the consumer has extended our `DataSource`. In `cdk/table` we do the verification by checking whether the object matches the interface of a `DataSource` instead. These changes add a utility method to check whether something is a data source and refactor the `tree` and `scrolling` entry points to be consistent with `table`.
Configuration menu - View commit details
-
Copy full SHA for 0f9926a - Browse repository at this point
Copy the full SHA 0f9926aView commit details -
build: fix syntax error within codeowners file (#15014)
Since 88601fa landed, it seems that the Github codeowner's are no longer working. This is because globs with such negations are not supported within the `CODEOWNERS` file The exclusion of `.d.ts` files shouldn't be necessary anyway since the last match in the `CODEOWNERS` file takes precedence over previous matches.
Configuration menu - View commit details
-
Copy full SHA for 4d710e4 - Browse repository at this point
Copy the full SHA 4d710e4View commit details -
docs: fix minor typo on comment (#15002)
extract individual colors a palette -> extract individual colors from a palette.
Configuration menu - View commit details
-
Copy full SHA for 34025d8 - Browse repository at this point
Copy the full SHA 34025d8View commit details -
Update creating-a-custom-stepper-using-the-cdk-stepper.md (#14907)
* Update creating-a-custom-stepper-using-the-cdk-stepper.md Simplified step content projection * Update creating-a-custom-stepper-using-the-cdk-stepper.md * Updated example
Configuration menu - View commit details
-
Copy full SHA for 5ad5176 - Browse repository at this point
Copy the full SHA 5ad5176View commit details -
fix(list): selection list not picking up indirect descendants (#15003)
Fixes `MatSelectionList` not picking up list options that aren't direct descendants. **Note:** this approach can have some side-effects if somebody decided to nest selection lists which would result in the parent picking up the options of its children. We can handle that case with some extra code, however I decided not to for now since it doesn't make sense to nest lists. Fixes #15000.
Configuration menu - View commit details
-
Copy full SHA for 6a07d0d - Browse repository at this point
Copy the full SHA 6a07d0dView commit details -
fix(checkbox): not marked as touched immediately on blur with OnPush …
Configuration menu - View commit details
-
Copy full SHA for 916c532 - Browse repository at this point
Copy the full SHA 916c532View commit details -
fix(chips): newly-added chips not being disabled when added to a disa…
…ble list (#14976) Fixes newly-added chips not being disabled when they're added to a disabled chip list. The problem comes from the fact that the disabled state is only synced to the chips when it changes.
Configuration menu - View commit details
-
Copy full SHA for c23512a - Browse repository at this point
Copy the full SHA c23512aView commit details -
fix(overlay): unnecessarily pushing overlay if it is exactly as wide …
Configuration menu - View commit details
-
Copy full SHA for f4b4e61 - Browse repository at this point
Copy the full SHA f4b4e61View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba6b405 - Browse repository at this point
Copy the full SHA ba6b405View commit details -
fix(table): allow for a caption to be projected (#14965)
Fixes consumers not being allowed to project a caption into a CDK table. Fixes #14948.
Configuration menu - View commit details
-
Copy full SHA for a8a6617 - Browse repository at this point
Copy the full SHA a8a6617View commit details -
fix(button): not updating DOM node name if group name changes (#14963)
Fixes the underlying DOM node's name not being in sync with the group, if the group's name is set through the input.
Configuration menu - View commit details
-
Copy full SHA for 37732cb - Browse repository at this point
Copy the full SHA 37732cbView commit details -
fix(slider): focus ring showing when ancestor has focus monitoring (#…
Configuration menu - View commit details
-
Copy full SHA for 2ec9dff - Browse repository at this point
Copy the full SHA 2ec9dffView commit details -
fix(radio): not updating DOM node name if group name changes (#14950)
Fixes the `name` of the underlying radio button DOM nodes not being updated, if the name of the parent group changes.
Configuration menu - View commit details
-
Copy full SHA for 4d5c5d5 - Browse repository at this point
Copy the full SHA 4d5c5d5View commit details -
fix(table): Clarify unknown table column error (#14947)
Throwing error when column not found in _addStickyColumnStyles to avoid weird error of "Cannot read property 'sticky' of undefined".
Configuration menu - View commit details
-
Copy full SHA for 2782273 - Browse repository at this point
Copy the full SHA 2782273View commit details -
fix(cdk-stepper): coercing selectedIndex value to a Number (#14817)
* fix(cdk-stepper): coercing selectedIndex value to a Number * test(cdk-stepper): preselected value should be number
Configuration menu - View commit details
-
Copy full SHA for b64c08d - Browse repository at this point
Copy the full SHA b64c08dView commit details -
perf(focus-monitor): avoid triggering change detection if there are n…
…o subscribers to stream (#14964) Currently we have an `NgZone.run` call on each `focus` and `blur` event of a monitored element in order to bring its subscribers into the `NgZone`, however this means that we're also triggering change detection to any consumers that aren't subscribed to changes (e.g. `mat-button` only cares about the classes being applied). These changes move around some logic so that the `NgZone.run` is only hit if somebody has subscribed to the observable.
Configuration menu - View commit details
-
Copy full SHA for 011a0d0 - Browse repository at this point
Copy the full SHA 011a0d0View commit details -
fix(radio): unable to click to select button if text is marked (#14967)
Fixes not being able to select a radio button by clicking on it, if part of the text of the label is marked. Fixes #14753.
Configuration menu - View commit details
-
Copy full SHA for 81380d2 - Browse repository at this point
Copy the full SHA 81380d2View commit details -
Revert "perf(focus-monitor): avoid triggering change detection if the…
Configuration menu - View commit details
-
Copy full SHA for e6500fb - Browse repository at this point
Copy the full SHA e6500fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bf1fea - Browse repository at this point
Copy the full SHA 3bf1feaView commit details
There are no files selected for viewing