Skip to content

Commit

Permalink
fix(material-experimental/radio): remove input click handler (angular…
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin authored and josephperrott committed Mar 23, 2020
1 parent 9e1b7ec commit ab7060e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Expand Up @@ -292,6 +292,7 @@ jobs:
- run: yarn ownerslint
- run: yarn stylelint
- run: yarn tslint
- run: yarn -s ts-cirular-deps:check

- *save_cache

Expand Down
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -41,7 +41,9 @@
"ownerslint": "ts-node --project scripts/ scripts/ownerslint.ts",
"tslint": "tslint -c tslint.json --project ./tsconfig.json",
"stylelint": "stylelint \"src/**/*.+(css|scss)\" --config .stylelintrc.json --syntax scss",
"resync-caretaker-app": "ts-node --project scripts scripts/caretaking/resync-caretaker-app-prs.ts"
"resync-caretaker-app": "ts-node --project scripts scripts/caretaking/resync-caretaker-app-prs.ts",
"ts-circular-deps:check": "yarn -s ts-circular-deps check ./goldens/ts-circular-deps.json --base-dir ./src/ --glob \"src/**/*.ts\"",
"ts-circular-deps:approve": "yarn -s ts-circular-deps approve ./goldens/ts-circular-deps.json --base-dir ./src/ --glob \"src/**/*.ts\""
},
"version": "9.2.0-next.0",
"dependencies": {
Expand All @@ -67,6 +69,7 @@
"@angular-devkit/schematics": "^9.0.4",
"@angular/bazel": "^9.1.0-next.4",
"@angular/compiler-cli": "^9.1.0-next.4",
"@angular/dev-infra-private": "angular/dev-infra-private-builds#6218c99",
"@angular/platform-browser-dynamic": "^9.1.0-next.4",
"@angular/platform-server": "^9.1.0-next.4",
"@angular/router": "^9.1.0-next.4",
Expand Down
3 changes: 1 addition & 2 deletions src/material-experimental/mdc-radio/radio.html
Expand Up @@ -12,8 +12,7 @@
[attr.aria-label]="ariaLabel"
[attr.aria-labelledby]="ariaLabelledby"
[attr.aria-describedby]="ariaDescribedby"
(change)="_onInputChange($event)"
(click)="_onInputClick($event)">
(change)="_onInputChange($event)">
<div class="mdc-radio__background">
<div class="mdc-radio__outer-circle"></div>
<div class="mdc-radio__inner-circle"></div>
Expand Down
4 changes: 4 additions & 0 deletions yarn.lock
Expand Up @@ -69,6 +69,10 @@
resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.1.0-next.4.tgz#c9dd97e7019c6d012c90203dbe1527afdeed3841"
integrity sha512-dTfs55fMz1Pkl8xmA8Km72PnLGsvtNjGWLq8VPjn/0m3ZUX1p3/AC0fd/FX90X47oJx5S2/Gf21V3y/Cy6US3w==

"@angular/dev-infra-private@angular/dev-infra-private-builds#6218c99":
version "0.0.0"
resolved "https://codeload.github.com/angular/dev-infra-private-builds/tar.gz/6218c99bbcf4dfc83f8e13e133d4305d0d9cfbe1"

"@angular/elements@^9.1.0-next.4":
version "9.1.0-next.4"
resolved "https://registry.yarnpkg.com/@angular/elements/-/elements-9.1.0-next.4.tgz#b9e61308e5a8f127c5496c2b9163460c0dac03d9"
Expand Down

0 comments on commit ab7060e

Please sign in to comment.