├── .gitignore ├── README.md ├── gulpfile.config.js ├── gulpfile.js ├── package.json ├── src ├── app │ ├── app.module.ts │ ├── controllers │ │ ├── customers.controller.ts │ │ └── orders.controller.ts │ ├── directives │ │ └── filterTextbox.directive.ts │ ├── services │ │ └── data.service.ts │ └── views │ │ ├── customers.html │ │ └── orders.html ├── customers.json ├── index.html ├── orders.json └── styles │ └── animations.css ├── superstatic.json ├── tsconfig.json ├── tslint.json ├── typings.json └── typings ├── browser.d.ts ├── browser └── ambient │ ├── angular-animate │ └── index.d.ts │ ├── angular-route │ └── index.d.ts │ ├── angular │ └── index.d.ts │ └── jquery │ └── index.d.ts ├── main.d.ts └── main └── ambient ├── angular-animate └── index.d.ts ├── angular-route └── index.d.ts ├── angular └── index.d.ts └── jquery └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/gulpfile.config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/controllers/customers.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/controllers/customers.controller.ts -------------------------------------------------------------------------------- /src/app/controllers/orders.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/controllers/orders.controller.ts -------------------------------------------------------------------------------- /src/app/directives/filterTextbox.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/directives/filterTextbox.directive.ts -------------------------------------------------------------------------------- /src/app/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/services/data.service.ts -------------------------------------------------------------------------------- /src/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/views/customers.html -------------------------------------------------------------------------------- /src/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/app/views/orders.html -------------------------------------------------------------------------------- /src/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/customers.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/index.html -------------------------------------------------------------------------------- /src/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/orders.json -------------------------------------------------------------------------------- /src/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/src/styles/animations.css -------------------------------------------------------------------------------- /superstatic.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "src" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings.json -------------------------------------------------------------------------------- /typings/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/browser.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/angular-animate/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/browser/ambient/angular-animate/index.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/angular-route/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/browser/ambient/angular-route/index.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/angular/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/browser/ambient/angular/index.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/jquery/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/browser/ambient/jquery/index.d.ts -------------------------------------------------------------------------------- /typings/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/main.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/angular-animate/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/main/ambient/angular-animate/index.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/angular-route/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/main/ambient/angular-route/index.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/angular/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/main/ambient/angular/index.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/jquery/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularIn20TypeScript/HEAD/typings/main/ambient/jquery/index.d.ts --------------------------------------------------------------------------------