Skip to content

Commit

Permalink
feat(docs): initial documentation site w/ examples (#25)
Browse files Browse the repository at this point in the history
* added docs content, routing and initial examples

* cleaned up unused class props

* fixed anguler.json test styles references

* removed unused css overide for mininav

* moved theme-dark css under one theme-dark block

* removed unused npath and data/scatter.ts

* feat(): remove icon property frmo interface since it doesnt belong in echarts

also removed unused imports, styles and commented code

* chore(): upgrade Covalent & Angular to get sidenav containerAutosize

* feat(mininav): streamline mininav
  • Loading branch information
JoshSchoen authored and emoralesb05 committed Oct 26, 2018
1 parent f278d68 commit ea032ac
Show file tree
Hide file tree
Showing 61 changed files with 4,229 additions and 2,342 deletions.
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@
"karmaConfig": "src/karma.conf.js",
"styles": [
{
"input": "styles.scss"
"input": "src/styles.scss"
}, {
"input": "theme.scss"
"input": "src/theme.scss"
}, {
"input": "node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
}
Expand Down
59 changes: 30 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@
"release:finish": "bash scripts/finish-release",
"bundle-report": "npm run build:docs -- --stats-json && webpack-bundle-analyzer dist/stats.json",
"generate:changelog": "./node_modules/.bin/conventional-changelog -i docs/CHANGELOG.md -s -p angular",
"a11y": "scripts/a11y/a11y.sh -r scripts/a11y/routes.txt",
"build_lib": "ng build --prod covalent-docs",
"npm_pack": "cd dist/covalent-docs/platform/echarts && npm pack",
"package": "npm run build_lib && npm run npm_pack"
"a11y": "scripts/a11y/a11y.sh -r scripts/a11y/routes.txt"
},
"engines": {
"node": ">=8.9.4",
Expand Down Expand Up @@ -65,42 +62,46 @@
"ie 11"
],
"dependencies": {
"@angular/animations": "6.0.2",
"@angular/cdk": "6.0.2",
"@angular/common": "6.0.2",
"@angular/compiler": "6.0.2",
"@angular/core": "6.0.2",
"@angular/forms": "6.0.2",
"@angular/http": "6.0.2",
"@angular/material": "^6.4.6",
"@angular/platform-browser": "6.0.2",
"@angular/platform-browser-dynamic": "6.0.2",
"@angular/platform-server": "6.0.2",
"@angular/router": "6.0.2",
"@covalent/core": "2.0.0-beta.2",
"@angular/animations": "7.0.0",
"@angular/cdk": "7.0.1",
"@angular/common": "7.0.0",
"@angular/compiler": "7.0.0",
"@angular/core": "7.0.0",
"@angular/forms": "7.0.0",
"@angular/http": "7.0.0",
"@angular/material": "7.0.1",
"@angular/platform-browser": "7.0.0",
"@angular/platform-browser-dynamic": "7.0.0",
"@angular/platform-server": "7.0.0",
"@angular/router": "7.0.0",
"@covalent/core": "git+https://github.com/Teradata/covalent-nightly",
"@covalent/highlight": "^2.0.0-beta.2",
"@covalent/markdown": "^2.0.0-beta.2",
"@covalent/tools": "2.0.0-beta.2",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"d3": "^4.4.0",
"echarts": "^4.1.0",
"hammerjs": "^2.0.8",
"rxjs": "6.0.0",
"tslib": "^1.9.0",
"highlight.js": "9.13.1",
"rxjs": "6.3.3",
"showdown": "1.6.4",
"tslib": "^1.9.3",
"web-animations-js": "2.3.1",
"zone.js": "^0.8.24"
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.1",
"@angular/cli": "6.0.1",
"@angular/compiler-cli": "6.0.2",
"@angular-devkit/build-angular": "^0.10.2",
"@angular/cli": "7.0.2",
"@angular/compiler-cli": "7.0.0",
"@covalent/tools": "2.0.0-beta.2",
"@types/fs-extra": "^4.0.0",
"@types/hammerjs": "^2.0.30",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/selenium-webdriver": "^2.52.0",
"autoprefixer": "7.1.2",
"codelyzer": "~4.2.1",
"codelyzer": "4.5.0",
"conventional-changelog-cli": "^1.3.5",
"coveralls": "^2.12.0",
"fs-extra": "^4.0.0",
Expand All @@ -119,17 +120,17 @@
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "2.4.2",
"ng-packagr": "4.4.0",
"node-sass": "4.9.0",
"pa11y": "^5.0.0-beta.5",
"pa11y": "^5.1.0",
"protractor": "~5.3.0",
"require-dir": "0.3.2",
"semver": "5.2.0",
"stylelint": "^8.4.0",
"ts-node": "~5.0.1",
"tsickle": "^0.26.0",
"tsickle": "0.33.1",
"tslint": "5.9.1",
"typescript": "~2.7.2",
"typescript": "~3.1.3",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-stats-plugin": "^0.1.5"
}
Expand Down
Loading

0 comments on commit ea032ac

Please sign in to comment.