Skip to content

Commit b5553fe

Browse files
chore: update to v7 (#537)
1 parent 477ff34 commit b5553fe

File tree

3 files changed

+37
-22
lines changed

3 files changed

+37
-22
lines changed

material.angular.io/package.json

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,32 @@
1515
"prod-build": "npm run build-themes && ng build --aot --prod",
1616
"postinstall": "webdriver-manager update && bash ./tools/build-themes.sh && bash ./tools/fetch-assets.sh",
1717
"publish-prod": "bash ./tools/deploy.sh stable prod",
18-
"publish-dev": "bash ./tools/deploy.sh"
18+
"publish-dev": "bash ./tools/deploy.sh",
19+
"publish-beta": "bash ./tools/deploy.sh stable beta"
1920
},
2021
"private": true,
2122
"dependencies": {
22-
"@angular/animations": "^6.0.9",
23-
"@angular/cdk": "^6.4.7",
24-
"@angular/common": "^6.0.9",
25-
"@angular/compiler": "^6.0.9",
26-
"@angular/core": "^6.0.9",
27-
"@angular/forms": "^6.0.9",
28-
"@angular/http": "^6.0.9",
29-
"@angular/material": "^6.4.7",
30-
"@angular/material-moment-adapter": "^6.4.7",
31-
"@angular/platform-browser": "^6.0.9",
32-
"@angular/platform-browser-dynamic": "^6.0.9",
33-
"@angular/router": "^6.0.9",
23+
"@angular/animations": "^7.0.0",
24+
"@angular/cdk": "^7.0.0",
25+
"@angular/common": "^7.0.0",
26+
"@angular/compiler": "^7.0.0",
27+
"@angular/core": "^7.0.0",
28+
"@angular/forms": "^7.0.0",
29+
"@angular/http": "^7.0.0",
30+
"@angular/material": "^7.0.0",
31+
"@angular/material-moment-adapter": "^7.0.0",
32+
"@angular/platform-browser": "^7.0.0",
33+
"@angular/platform-browser-dynamic": "^7.0.0",
34+
"@angular/router": "^7.0.0",
3435
"core-js": "^2.5.6",
3536
"moment": "^2.22.1",
3637
"rxjs": "^6.1.0",
3738
"zone.js": "^0.8.26"
3839
},
3940
"devDependencies": {
40-
"@angular-devkit/build-angular": "^0.6.8",
41-
"@angular/cli": "^6.2.1",
42-
"@angular/compiler-cli": "^6.0.9",
41+
"@angular-devkit/build-angular": "^0.10.1",
42+
"@angular/cli": "^7.0.1",
43+
"@angular/compiler-cli": "^7.0.0",
4344
"@types/jasmine": "^2.5.41",
4445
"@types/node": "^10.0.9",
4546
"firebase-tools": "^3.15.3",
@@ -59,6 +60,6 @@
5960
"protractor": "~5.3.0",
6061
"ts-node": "^6.0.3",
6162
"tslint": "^5.10.0",
62-
"typescript": "~2.7.2"
63+
"typescript": "^3.1.3"
6364
}
6465
}

material.angular.io/src/app/shared/documentation-items/documentation-items.ts

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -397,11 +397,9 @@ const DOCS: {[key: string]: DocCategory[]} = {
397397
'table-row-context',
398398
'table-selection',
399399
'table-sorting',
400-
401-
// Expose these examples with 6.3.0 release (sticky table)
402-
// 'table-sticky-column',
403-
// 'table-sticky-footer',
404-
// 'table-sticky-header',
400+
'table-sticky-column',
401+
'table-sticky-footer',
402+
'table-sticky-header',
405403
]},
406404
]
407405
}
@@ -424,6 +422,21 @@ const DOCS: {[key: string]: DocCategory[]} = {
424422
summary: 'Utilities to respond to changes in LTR/RTL layout direction.',
425423
examples: []
426424
},
425+
{
426+
id: 'drag-drop',
427+
name: 'Drag and Drop',
428+
summary: 'Directives enabling drag-and-drop interactions',
429+
examples: [
430+
'cdk-drag-drop-axis-lock',
431+
'cdk-drag-drop-sorting',
432+
'cdk-drag-drop-overview',
433+
'cdk-drag-drop-horizontal-sorting',
434+
'cdk-drag-drop-custom-preview',
435+
'cdk-drag-drop-root-element',
436+
'cdk-drag-drop-handle',
437+
'cdk-drag-drop-connected-sorting',
438+
],
439+
},
427440
{
428441
id: 'layout',
429442
name: 'Layout',

material.angular.io/tools/deploy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ declare -A PROJECT_ID
77
# Firebase project ids
88
PROJECT_ID["stable", "dev"]="material2-docs-dev"
99
PROJECT_ID["stable", "prod"]="material-angular-io"
10+
PROJECT_ID["stable", "beta"]="beta-angular-material-io"
1011
PROJECT_ID["v5", "dev"]="material2-docs-5"
1112
PROJECT_ID["v5", "prod"]="v5-material-angular-io"
1213
PROJECT_ID["v6", "dev"]="material2-docs-6"

0 commit comments

Comments
 (0)