-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…al AoT support. closes(#149) (#209) * upgrade to angular 2.4.1 and rxjs 5.0.1 * upgrade material@beta.1 * replaced svgSrc with svgIcon in layouts * register icons from assets into the MdIconRegistry * updated certain layouts and layout docs * fixed svg usage in home, layouts overview and styleguide * updated icon documentation * updated docs with "assets:iconname" * update unit tests with hammerjs * remove usage of depricated md-input infavor of md-input-container (expect in autocomplete) * remove deprecated kabab md directives * replaced portalHost with cdkPortalHost * replaced md-progress-circle with md-progress-spinner * replaced md-sidenav-layout with md-sidenav-container * replaced align with labelPosition in md-checkbox * used labelPosition="before" explicitly now since default is "after" * renamed focus-trap into cdk-focus-trap * make `npm run test` do an ng test with generated code coverage , check linting and run once * clean scss files and themes for future AoT support * updated build.conf.js to move ts files excluding spec and app/ ts files * fixed chart ParseContent enum so its AoT compatible * missed highlight theme file * upgrade to angular-cli@beta.24 * fixed teradata-ux svg * fixed `npm run test` command * update .npmignore with aot files that dont need to be published * changed TS module compilation to es2015 since its needed for tree shaking * initial AoT tsconfig * add `npm run aot` for AoT compilation on platform * script to remove unwanted AoT files from platform publish * updated `npm run buiild` to include AoT process * removed relative path imports from charts and data-table themes * updated published package.json's from core and http modules * fixed stepper unit tests * feature(nav-list): better responsive widths * fix(manage-list): ensure box shadows are correct on desktop * fix(layout-theme): needed class for bg color * fixed bug in layouts where it didnt close the sidenav in some cases * update(material-components): add md-select & updates * removing obsolete validation * use any[] instead of object in select docs * fixed tslint errors * update copy in FAQ * removed the deprecated md-tooltip * spelling/language check * update(material-components): add chips example * update(platform.css): add sidenav * update(material-components): dialogs from material2
- Loading branch information
1 parent
6486eb5
commit 6cd31f0
Showing
160 changed files
with
1,236 additions
and
872 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# compiled aot output | ||
*.ngsummary.json | ||
*.ngfactory.ts | ||
*.shim.ngstyle.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
'use strict'; | ||
|
||
var gulp = require('gulp-help')(require('gulp')); | ||
var del = require('del'); | ||
|
||
gulp.task('clean-aot', "Clean unwanted AoT files from /deploy folder", function() { | ||
return del([ | ||
'deploy/**/*.ngsummary.json', | ||
'deploy/**/*.ngfactory.ts', | ||
'deploy/**/*.shim.ngstyle.ts', | ||
'deploy/**/node_modules/' | ||
]); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.