Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
chore(package): Publish Angular MDC v0.40.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox committed Oct 2, 2018
1 parent 1a77566 commit 347477c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions demos/components/dialog-demo/dialog-demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,14 @@ <h3 class="demo-content__headline">Sharing data with the Dialog component</h3>
<pre>
<![CDATA[
import { Component, Inject } from '@angular/core';
import { MdcDialogRef } from '@angular-mdc/web';
import { MdcDialogRef, MDC_DIALOG_DATA } from '@angular-mdc/web';
@Component({
// ...
})
export class YourDialog {
constructor(public dialogRef: MdcDialogRef<YourDialog>) {
userName: string = this.dialogRef.data.userName;
constructor(public dialogRef: MdcDialogRef<YourDialog>,
@Inject(MDC_DIALOG_DATA) public data: DialogData) {
userName: string = data.name;
}
}]]>
</pre>
Expand Down
2 changes: 1 addition & 1 deletion demos/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ <h4 class="demo-landing__label">for Angular</h4>
<div class="demo-layout__column demo-layout--center demo-landing__secondary">
<p class="demo-landing__subtitle">A faithful and accurate representation of Material Design.</p>
<button raised secondary mdc-button [routerLink]="['/getting-started']">Get Started</button>
<span class="demo-landing__version">v0.40.0</span>
<span class="demo-landing__version">v0.40.1</span>
</div>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/trimox/angular-mdc-web.git"
},
"license": "MIT",
"version": "0.40.0",
"version": "0.40.1",
"engines": {
"node": ">= 9.11.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/material-components-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/trimox/angular-mdc-web.git"
},
"version": "0.40.0",
"version": "0.40.1",
"license": "MIT",
"keywords": [
"angular-mdc",
Expand Down
2 changes: 1 addition & 1 deletion packages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"typings": "./web.d.ts",
"private": false,
"dependencies": {
"@angular-mdc/theme": "0.40.0"
"@angular-mdc/theme": "0.40.1"
},
"peerDependencies": {
"@angular/core": "0.0.0-NG",
Expand Down

0 comments on commit 347477c

Please sign in to comment.