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

Commit 7701d61

Browse files
committed
chore(package): Publish Angular MDC v0.39.1
1 parent 516b865 commit 7701d61

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

demos/components/radio-demo/radio-demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { MdcRadio, MdcRadioChange, MdcRadioGroup } from '@angular-mdc/web';
77
templateUrl: './radio-demo.html'
88
})
99
export class RadioDemo {
10-
favoriteFruit: string;
10+
favoriteSeason: string;
1111
seasons: string[] = ['Winter', 'Spring', 'Summer', 'Autumn'];
1212

1313
alternateColors(input: MdcRadio) {

demos/home/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ <h4 class="demo-landing__label">for Angular</h4>
77
<div class="demo-layout__column demo-layout--center demo-landing__secondary">
88
<p class="demo-landing__subtitle">A faithful and accurate representation of Material Design.</p>
99
<button raised secondary mdc-button [routerLink]="['/getting-started']">Get Started</button>
10-
<span class="demo-landing__version">v0.39.0</span>
10+
<span class="demo-landing__version">v0.39.1</span>
1111
</div>

demos/sass/_demo.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,13 @@
6161

6262
.demo-drawer--fixed {
6363
position: fixed;
64-
height: 100vh;
64+
height: 94vh;
6565
overflow-y: auto;
6666

67+
@media (min-width: 1240px) {
68+
height: 94vh;
69+
}
70+
6771
.mdc-list-item {
6872
cursor: pointer;
6973
}

demos/sass/app.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// Import Angular MDC after _global.scss
66
@import "~@angular-mdc/theme";
7+
@import "~@angular-mdc/theme/scss/shape/mixins";
78
@import "./app-bar";
89
@import "./button";
910
@import "./cards";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://github.com/trimox/angular-mdc-web.git"
99
},
1010
"license": "MIT",
11-
"version": "0.39.0",
11+
"version": "0.39.1",
1212
"engines": {
1313
"node": ">= 9.11.1"
1414
},

packages/material-components-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/trimox/angular-mdc-web.git"
99
},
10-
"version": "0.39.0",
10+
"version": "0.39.1",
1111
"license": "MIT",
1212
"keywords": [
1313
"angular-mdc",

packages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"typings": "./web.d.ts",
2323
"private": false,
2424
"dependencies": {
25-
"@angular-mdc/theme": "0.39.0"
25+
"@angular-mdc/theme": "0.39.1"
2626
},
2727
"peerDependencies": {
2828
"@angular/core": "0.0.0-NG",

0 commit comments

Comments
 (0)